diff --git a/SpacemanDMM.toml b/SpacemanDMM.toml index ebc374f630..7f74da7824 100644 --- a/SpacemanDMM.toml +++ b/SpacemanDMM.toml @@ -3,4 +3,7 @@ dreamchecker = true [code_standards] disallow_relative_type_definitions = true -disallow_relative_proc_definitions = true \ No newline at end of file +disallow_relative_proc_definitions = true + +[debugger] +engine = "auxtools" diff --git a/_runtimestation.dm b/_runtimestation.dm new file mode 100644 index 0000000000..b0a5aa1a88 --- /dev/null +++ b/_runtimestation.dm @@ -0,0 +1,11 @@ +/* +Toggle this var to 1 to compile using runtime station instead. +Useful if you're constantly having to recompile to debug something. +*/ +#define RUNTIME_STATION 0 + +#if RUNTIME_STATION + #include "modular_chomp/maps/runtime/runtime_station_defines.dm" + #include "modular_chomp/maps/runtime/runtime_station.dmm" + #define USING_MAP_DATUM /datum/map/runtime_station +#endif \ No newline at end of file diff --git a/code/__defines/gamemode.dm b/code/__defines/gamemode.dm index 457b5e5c96..9cd0f6f4aa 100644 --- a/code/__defines/gamemode.dm +++ b/code/__defines/gamemode.dm @@ -43,6 +43,7 @@ #define BE_MORPH 0x40000 #define BE_CORGI 0x80000 #define BE_CURSEDSWORD 0x100000 +#define BE_SURVIVOR 0x200000 //VOREStation Add End var/list/be_special_flags = list( @@ -68,6 +69,7 @@ var/list/be_special_flags = list( "Morph" = BE_MORPH, "Corgi" = BE_CORGI, "Cursed Sword" = BE_CURSEDSWORD, + "Ship Survivor" = BE_SURVIVOR //VOREStation Add End ) @@ -111,6 +113,7 @@ var/list/be_special_flags = list( #define MODE_INFILTRATOR "infiltrator" #define MODE_THUG "thug" #define MODE_STOWAWAY "stowaway" +#define MODE_SURVIVOR "Shipwreck Survivor" #define DEFAULT_TELECRYSTAL_AMOUNT 120 @@ -176,4 +179,4 @@ var/list/be_special_flags = list( #define ASPECT_EMP "emp" //Unused now. #define ASPECT_UNSTABLE "unstable" //Heavily RNG-based, causes instability to the victim. #define ASPECT_CHROMATIC "chromatic" //Used to combine with other spells. -#define ASPECT_UNHOLY "unholy" //Involves the dead, blood, and most things against divine beings. \ No newline at end of file +#define ASPECT_UNHOLY "unholy" //Involves the dead, blood, and most things against divine beings. diff --git a/code/__defines/mobs.dm b/code/__defines/mobs.dm index bedb58855f..b8457de50b 100644 --- a/code/__defines/mobs.dm +++ b/code/__defines/mobs.dm @@ -136,8 +136,9 @@ #define CLASS_MIDDLE "Average" #define CLASS_LOWMID "Underpaid" #define CLASS_LOWER "Poor" +#define CLASS_BROKE "Broke" //VOREStation Add -#define ECONOMIC_CLASS list(CLASS_UPPER,CLASS_UPMID,CLASS_MIDDLE,CLASS_LOWMID,CLASS_LOWER) +#define ECONOMIC_CLASS list(CLASS_UPPER,CLASS_UPMID,CLASS_MIDDLE,CLASS_LOWMID,CLASS_LOWER,CLASS_BROKE) // Defines mob sizes, used by lockers and to determine what is considered a small sized mob, etc. diff --git a/code/__defines/mobs_ch.dm b/code/__defines/mobs_ch.dm new file mode 100644 index 0000000000..45114d7cbd --- /dev/null +++ b/code/__defines/mobs_ch.dm @@ -0,0 +1,3 @@ +#define MARKING_NONDIGI_ONLY (1 << 0) +#define MARKING_DIGITIGRADE_ONLY (1 << 1) +#define MARKING_ALL_LEGS MARKING_NONDIGI_ONLY|MARKING_DIGITIGRADE_ONLY diff --git a/code/_helpers/game.dm b/code/_helpers/game.dm index c241a84994..838b11542a 100644 --- a/code/_helpers/game.dm +++ b/code/_helpers/game.dm @@ -218,40 +218,24 @@ return hear -var/mobs_radio_range_fired = 1 //CHOMPEdit +//CHOMPEdit - entire proc changed basically to use recursive listening /proc/get_mobs_in_radio_ranges(var/list/obj/item/device/radio/radios) set background = 1 - var/our_iter = num2text(++mobs_radio_range_fired) //CHOMPEdit . = list() // Returns a list of mobs who can hear any of the radios given in @radios - var/list/speaker_coverage = list() for(var/obj/item/device/radio/R as anything in radios) - var/turf/speaker = get_turf(R) - if(speaker) + if(get_turf(R)) for(var/turf/T in R.can_broadcast_to()) //CHOMPEdit - T.temp_check[our_iter] = TRUE //CHOMPEdit - speaker_coverage[T] = R + for (var/atom/movable/hearing in T) + if (hearing.recursive_listeners) + . |= hearing.recursive_listeners - CHECK_TICK //CHOMPEdit - // Try to find all the players who can hear the message - //CHOMPEdit Begin - //So, to explain a bit here: The old code that used to be here was pretty slow for a few reasons, most of which have been addressed now. - //Unsurprisingly, checking through the entire list of turfs within a radio's range for every mob's turf to see if it's in there is very slow. - //So, instead, we set a variable in a list on the turf that's unique to this runthrough(and thus multiple of these can run simultaneously) - //Then we just have to check if that variable is true for the turf the mob is on, and if it is, add that mob to our list. - for(var/i = 1; i <= player_list.len; i++) - var/mob/M = player_list[i] - var/turf/T = get_turf(M) - if(istype(T) && T.temp_check[our_iter]) - . += M - else if(istype(M,/mob/observer)) //Give ghosts global hearing. - . += M - CHECK_TICK - for(var/turf/T in speaker_coverage) - T.temp_check -= our_iter //Freeing up the memory. - //CHOMPEdit End - return . + for (var/mob/M as anything in .) + if (!istype(M) || !M.client) + . -= M + for (var/mob/observer/O in player_list) + . |= O /mob/proc/can_hear_radio(var/list/hearturfs) return FALSE diff --git a/code/_helpers/global_lists_vr.dm b/code/_helpers/global_lists_vr.dm index acd2be67ea..02c6b5f495 100644 --- a/code/_helpers/global_lists_vr.dm +++ b/code/_helpers/global_lists_vr.dm @@ -946,6 +946,26 @@ var/global/list/event_wildlife_roaming = list( ) +var/global/list/selectable_speech_bubbles = list( + "default", + "normal", + "slime", + "comm", + "machine", + "synthetic", + "synthetic_evil", + "cyber", + "ghost", + "slime_green", + "dark", + "plant", + "clown", + "fox", + "maus", + "heart", + "textbox", + "posessed") + // AREA GENERATION AND BLUEPRINT STUFF BELOW HERE diff --git a/code/_helpers/icons.dm b/code/_helpers/icons.dm index 2cb3ef5c69..82e135c544 100644 --- a/code/_helpers/icons.dm +++ b/code/_helpers/icons.dm @@ -232,7 +232,7 @@ curblend = BLEND_OVERLAY add = icon(I.icon, I.icon_state, base_icon_dir) else // 'I' is an appearance object. - add = getFlatIcon(image(I), I.dir||curdir, curicon, curstate, curblend, FALSE, no_anim) + add = getFlatIcon(image(I), curdir, curicon, curstate, curblend, FALSE, no_anim) if(!add) continue // Find the new dimensions of the flat icon to fit the added overlay diff --git a/code/_helpers/unsorted.dm b/code/_helpers/unsorted.dm index d9e3be6e7f..d1f96ac81b 100644 --- a/code/_helpers/unsorted.dm +++ b/code/_helpers/unsorted.dm @@ -826,10 +826,22 @@ Turf and target are seperate in case you want to teleport some distance from a t else O=new original.type(locate(0,0,0)) + var/static/list/blacklisted_var_names = list( + "ATOM_TOPIC_EXAMINE", + "type", + "loc", + "locs", + "vars", + "parent", + "parent_type", + "verbs", + "ckey", + "key" + ) if(perfectcopy) if((O) && (original)) for(var/V in original.vars) - if(!(V in list("type","loc","locs","vars", "parent", "parent_type","verbs","ckey","key"))) + if(!(V in blacklisted_var_names)) O.vars[V] = original.vars[V] return O diff --git a/code/controllers/subsystems/vote.dm b/code/controllers/subsystems/vote.dm index 24f7e33d37..fea99b2e4f 100644 --- a/code/controllers/subsystems/vote.dm +++ b/code/controllers/subsystems/vote.dm @@ -79,7 +79,7 @@ SUBSYSTEM_DEF(vote) if(transfer_votes / total_votes > 0.7) greatest_votes = transfer_votes . = list("Initiate Crew Transfer") - else + else greatest_votes = extend_votes . = list("Extend the Shift") else @@ -233,7 +233,7 @@ SUBSYSTEM_DEF(vote) if(ticker.current_state <= GAME_STATE_SETTING_UP) to_chat(initiator_key, "The crew transfer button has been disabled!") return 0 - question = "Your PDA beeps with a message from Central. Would you like an additional hour to finish ongoing projects?" //Yawn Wider Edit //CHOMP EDIT: Changed to 'one' hour. + question = "Your PDA beeps with a message from Central. Would you like an additional hour to finish ongoing projects? (OOC Notice: Transfer votes must have a majority (70%) of all votes to initiate transfer.)" //Yawn Wider Edit //CHOMP EDIT: Changed to 'one' hour. Add notice stating transfer must contain 70% of total vote. choices.Add("Initiate Crew Transfer", "Extend the Shift") //VOREStation Edit if(VOTE_ADD_ANTAGONIST) if(!config.allow_extra_antags || ticker.current_state >= GAME_STATE_SETTING_UP) diff --git a/code/datums/ghost_query.dm b/code/datums/ghost_query.dm index 6a342f5820..47519813e8 100644 --- a/code/datums/ghost_query.dm +++ b/code/datums/ghost_query.dm @@ -198,3 +198,12 @@ Would you like to play as the soul imprisoned within?" be_special_flag = BE_CURSEDSWORD cutoff_number = 1 + +/datum/ghost_query/shipwreck_survivor + role_name = "Shipwreck survivor" + question = "A person suspended in cryosleep has been discovered by a crewmember \ + aboard a wrecked spaceship \ + and they are attempting to open the cryopod.\n \ + Would you like to play as the occupant? \n \ + You MUST NOT use your station character!!!" + cutoff_number = 1 diff --git a/code/datums/looping_sounds/alarm_sounds.dm b/code/datums/looping_sounds/alarm_sounds.dm new file mode 100644 index 0000000000..4453de6de9 --- /dev/null +++ b/code/datums/looping_sounds/alarm_sounds.dm @@ -0,0 +1,62 @@ +/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// + +/datum/looping_sound/alarm + volume_chan = VOLUME_CHANNEL_ALARMS + pref_check = /datum/client_preference/looping_alarms + +/datum/looping_sound/alarm/fire_alarm // Commented out start/end as I don't feel they're very fitting + // start_sound = 'sound/effects/alarms/fire_alarm/fire_alarm_start.ogg' + // start_length = 40 + mid_sounds = list('sound/effects/alarms/fire_alarm/fire_alarm_mid.ogg' = 1) + mid_length = 6 SECONDS // Exact loop, these things should be constantly running while there's a fire actively going + // end_sound = 'sound/effects/alarms/fire_alarm/fire_alarm_stop.ogg' + volume = 30 + extra_range = 60 // Alarms should be clearly heard from far away + +/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// + +/datum/looping_sound/alarm/decompression_alarm + mid_sounds = list('sound/effects/alarms/decon_alarm.ogg'=1) + mid_length = 4 SECONDS // Delay by 1 second so as to not spam it + volume = 100 + extra_range = 20 + +/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// + +/datum/looping_sound/alarm/engineering_alarm + mid_sounds = list('sound/effects/alarms/engineering_alarm.ogg'=1) + mid_length = 30 + volume = 20 + extra_range = 30 + +/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// + +/datum/looping_sound/alarm/threat_level_high + mid_sounds = list('sound/effects/alarms/threat_level_high.ogg'=1) + mid_length = 4 SECONDS + volume = 60 + extra_range = 40 + +/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// + +/datum/looping_sound/alarm/threat_level_extreme + mid_sounds = list('sound/effects/alarms/threat_level_extreme.ogg'=1) + mid_length = 4 SECONDS + volume = 60 + extra_range = 40 + +/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// + +/datum/looping_sound/alarm/sm_critical_alarm + mid_sounds = list('sound/effects/alarms/crit_alarm.ogg'=1) + mid_length = 3 SECONDS + volume = 90 + extra_range = 40 + +/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// + +/datum/looping_sound/alarm/sm_causality_alarm + mid_sounds = list('sound/effects/alarms/causality_alarm.ogg'=1) + mid_length = 9 SECONDS + volume = 80 + extra_range = 60 diff --git a/code/datums/mind_vr.dm b/code/datums/mind_vr.dm index d2ae478410..f6ba695438 100644 --- a/code/datums/mind_vr.dm +++ b/code/datums/mind_vr.dm @@ -4,6 +4,10 @@ var/directory_tag var/directory_erptag var/directory_ad + //CHOMPEdit additions + var/vantag_preference = VANTAG_NONE + var/directory_gendertag + var/directory_sexualitytag /mob/living/mind_initialize() . = ..() @@ -12,3 +16,7 @@ mind.directory_tag = client.prefs.directory_tag mind.directory_erptag = client.prefs.directory_erptag mind.directory_ad = client.prefs.directory_ad + //CHOMPEdit additions + mind.vantag_preference = client.prefs.vantag_preference + mind.directory_gendertag = client.prefs.directory_gendertag + mind.directory_sexualitytag = client.prefs.directory_sexualitytag diff --git a/code/datums/supplypacks/engineering.dm b/code/datums/supplypacks/engineering.dm index 0529f5aedd..2616d0fe6e 100644 --- a/code/datums/supplypacks/engineering.dm +++ b/code/datums/supplypacks/engineering.dm @@ -220,7 +220,7 @@ /datum/supply_pack/eng/smbig name = "Supermatter Core" - contains = list(/obj/machinery/power/supermatter) + contains = list(/obj/machinery/power/supermatter/station) // CHOMPEdit: Station SM for Cargo Orders cost = 150 containertype = /obj/structure/closet/crate/secure/phoron containername = "Supermatter crate (CAUTION)" diff --git a/code/datums/supplypacks/recreation.dm b/code/datums/supplypacks/recreation.dm index 40caa4c405..ca19cc342a 100644 --- a/code/datums/supplypacks/recreation.dm +++ b/code/datums/supplypacks/recreation.dm @@ -72,15 +72,16 @@ /obj/item/device/camera_film = 2, /obj/item/weapon/storage/photo_album, /obj/item/weapon/packageWrap, - /obj/item/weapon/reagent_containers/glass/paint/red, - /obj/item/weapon/reagent_containers/glass/paint/green, - /obj/item/weapon/reagent_containers/glass/paint/blue, - /obj/item/weapon/reagent_containers/glass/paint/yellow, - /obj/item/weapon/reagent_containers/glass/paint/purple, - /obj/item/weapon/reagent_containers/glass/paint/black, - /obj/item/weapon/reagent_containers/glass/paint/white, /obj/item/poster/custom, - /obj/item/weapon/wrapping_paper = 3 + /obj/item/weapon/wrapping_paper = 3, + /obj/structure/easel, + /obj/item/paint_brush, + /obj/item/paint_palette, + /obj/item/canvas = 3, + /obj/item/canvas/nineteen_nineteen = 2, + /obj/item/canvas/twentythree_nineteen = 2, + /obj/item/canvas/twentythree_twentythree = 2, + /obj/item/canvas/twentyfour_twentyfour = 2 ) cost = 10 containertype = /obj/structure/closet/crate/allico @@ -94,7 +95,17 @@ contains = list( /obj/item/device/pipe_painter = 2, /obj/item/device/floor_painter = 2, - ///obj/item/device/closet_painter = 2 + /obj/item/weapon/reagent_containers/glass/paint/red, + /obj/item/weapon/reagent_containers/glass/paint/green, + /obj/item/weapon/reagent_containers/glass/paint/blue, + /obj/item/weapon/reagent_containers/glass/paint/yellow, + /obj/item/weapon/reagent_containers/glass/paint/violet, + /obj/item/weapon/reagent_containers/glass/paint/cyan, + /obj/item/weapon/reagent_containers/glass/paint/orange, + /obj/item/weapon/reagent_containers/glass/paint/purple, + /obj/item/weapon/reagent_containers/glass/paint/grey, + /obj/item/weapon/reagent_containers/glass/paint/black, + /obj/item/weapon/reagent_containers/glass/paint/white = 3 ) /datum/supply_pack/recreation/cheapbait diff --git a/code/datums/underwear/bottom.dm b/code/datums/underwear/bottom.dm index 92578304ad..7f16ba66b7 100644 --- a/code/datums/underwear/bottom.dm +++ b/code/datums/underwear/bottom.dm @@ -77,4 +77,14 @@ /datum/category_item/underwear/bottom/neko name = "Panties, Neko" icon_state = "panties_neko" + has_color = TRUE + +/datum/category_item/underwear/bottom/swimbottom + name = "Swimming Bottoms" + icon_state = "swimbottom" + has_color = TRUE + +/datum/category_item/underwear/bottom/onepiece + name = "Swimming One Piece" + icon_state = "onepiece" has_color = TRUE \ No newline at end of file diff --git a/code/datums/underwear/top.dm b/code/datums/underwear/top.dm index eda79da930..5af7870f04 100644 --- a/code/datums/underwear/top.dm +++ b/code/datums/underwear/top.dm @@ -90,4 +90,9 @@ /datum/category_item/underwear/top/sarashi name = "Sarashi" icon_state = "bandages" + has_color = TRUE + +/datum/category_item/underwear/top/swimtop + name = "Swimming Top" + icon_state = "swimtop" has_color = TRUE \ No newline at end of file diff --git a/code/game/antagonist/outsider/shipwreck_survivor.dm b/code/game/antagonist/outsider/shipwreck_survivor.dm new file mode 100644 index 0000000000..6fdcc47b97 --- /dev/null +++ b/code/game/antagonist/outsider/shipwreck_survivor.dm @@ -0,0 +1,45 @@ +var/datum/antagonist/shipwreck_survivor/survivors + +//Shipwreck survivors can only spawn from ghost_pods at time of this commit. +//These are NOT meant to be real antagonists +//They are, at best, comparable to ERT. +/datum/antagonist/SURVIVOR + id = MODE_SURVIVOR + role_type = BE_SURVIVOR + role_text = "Shipwreck Survivor" + role_text_plural = "Shipwreck Survivors" + bantype = "Shipwreck Survivor" //also blocked by GhostRoles ban, in current implementation at least + welcome_text = "Something disastrous happened to the ship you were on! You awaken to your supposed rescuers in pain..." + antag_text = "You are a NOT an antagonist! All rules apply to you as well. Your job is to help make the world seem more alive. \n \ + You are not an existing station character, but some average person who has suffered a terrible accident. \ + Feel free to make up what happened to the ship you awakened on as you please, \ + but listening to your rescuers for context might help improve your mutual immersion! \n \ + Please play along. It is OK to not be co-operative, but 'yes, and' and \ + 'no, but' are better ways to approach things than to shut them down outright.\n\n \ + Please ahelp if you are uncertain about anything pertaining to this role. \ + It is always better to be safe than sorry! \n\n \ + You will receive the option to set your ambitions. Please remember the server rules \ + abuse can mean being banned from ghost roles \n \ + You should use your ambitions to flesh out why your ship got wrecked \ + and how you wish to proceed now that you were rescued. \n \ + You DON'T need to set your ambitions. Feel free to ignore them." + + antag_sound = 'sound/voice/hiss1.ogg' + + can_speak_aooc = FALSE + can_hear_aooc = FALSE + +/datum/antagonist/SURVIVOR/greet(var/datum/mind/player) + to_chat(player.current, SPAN_WARNING("You are a NOT an antagonist! All rules apply to you as well. Your job is to help make the world seem more alive. \n \ + You are not an existing station character, but some average person who has suffered a terrible accident. \ + Feel free to make up what happened to the ship you awakened on as you please, \ + but listening to your rescuers for context might help improve your mutual immersion! \n \ + Please play along. It is OK to not be co-operative, but 'yes, and' and \ + 'no, but' are better ways to approach things than to shut them down outright.\n\n \ + Please ahelp if you are uncertain about anything pertaining to this role. \ + It is always better to be safe than sorry! \n\n \ + You will receive the option to set your ambitions. Please remember the server rules \ + abuse can mean being banned from ghost roles \n \ + You should use your ambitions to flesh out why your ship got wrecked \ + and how you wish to proceed now that you were rescued. \n \ + You DON'T need to set your ambitions. Feel free to ignore them.")) diff --git a/code/game/atoms_movable_ch.dm b/code/game/atoms_movable_ch.dm new file mode 100644 index 0000000000..33c966a3e0 --- /dev/null +++ b/code/game/atoms_movable_ch.dm @@ -0,0 +1,51 @@ +#define NON_LISTENING_ATOM 0 +#define LISTENING_ATOM 1 +#define LISTENING_PLAYER 2 +//gonna be honest this is really just a ripoff of tg's recursive hearing +/atom/movable + var/recursive_listeners + var/listening_recursive = NON_LISTENING_ATOM + +/atom/movable/New() + . = ..() + if (listening_recursive) + set_listening(listening_recursive) + +/atom/movable/proc/set_listening(var/set_to) + if (listening_recursive && !set_to) + LAZYREMOVE(recursive_listeners, src) + if (!LAZYLEN(recursive_listeners)) + for (var/atom/movable/location as anything in get_nested_locs(src)) + LAZYREMOVE(location.recursive_listeners, src) + if (!listening_recursive && set_to) + LAZYOR(recursive_listeners, src) + for (var/atom/movable/location as anything in get_nested_locs(src)) + LAZYOR(location.recursive_listeners, src) + listening_recursive = set_to + +///Returns a list of all locations (except the area) the movable is within. +/proc/get_nested_locs(atom/movable/atom_on_location, include_turf = FALSE) + . = list() + var/atom/location = atom_on_location.loc + var/turf/our_turf = get_turf(atom_on_location) + while(location && location != our_turf) + . += location + location = location.loc + if(our_turf && include_turf) //At this point, only the turf is left, provided it exists. + . += our_turf + +/atom/movable/Exited(atom/movable/gone, atom/new_loc) + . = ..() + + if (!LAZYLEN(gone.recursive_listeners)) + return + for (var/atom/movable/location as anything in get_nested_locs(src)|src) + LAZYREMOVE(location.recursive_listeners, gone.recursive_listeners) + +/atom/movable/Entered(atom/movable/arrived, atom/old_loc) + . = ..() + + if (!LAZYLEN(arrived.recursive_listeners)) + return + for (var/atom/movable/location as anything in get_nested_locs(src)|src) + LAZYOR(location.recursive_listeners, arrived.recursive_listeners) diff --git a/code/game/jobs/job/job.dm b/code/game/jobs/job/job.dm index b0e678298b..2f1087a271 100644 --- a/code/game/jobs/job/job.dm +++ b/code/game/jobs/job/job.dm @@ -70,6 +70,7 @@ if(CLASS_MIDDLE) income = 1 if(CLASS_LOWMID) income = 0.75 if(CLASS_LOWER) income = 0.50 + if(CLASS_BROKE) income = 0 //VOREStation Add - Rent's not cheap //give them an account in the station database var/money_amount = (rand(15,40) + rand(15,40)) * income * economic_modifier * ECO_MODIFIER //VOREStation Edit - Smoothed peaks, ECO_MODIFIER rather than per-species ones. @@ -186,4 +187,4 @@ return TRUE if(brain_type in banned_job_species) return TRUE - */ \ No newline at end of file + */ diff --git a/code/game/machinery/air_alarm.dm b/code/game/machinery/air_alarm.dm index 874b04b51b..21bba5a1e6 100644 --- a/code/game/machinery/air_alarm.dm +++ b/code/game/machinery/air_alarm.dm @@ -84,6 +84,9 @@ var/alarms_hidden = FALSE //If the alarms from this machine are visible on consoles + var/datum/looping_sound/alarm/decompression_alarm/soundloop // CHOMPEdit: Looping Alarms + var/atmoswarn = FALSE // CHOMPEdit: Looping Alarms + /obj/machinery/alarm/nobreach breach_detection = 0 @@ -128,6 +131,7 @@ if(alarm_area && alarm_area.master_air_alarm == src) alarm_area.master_air_alarm = null elect_master(exclude_self = TRUE) + QDEL_NULL(soundloop) // CHOMPEdit: Looping Alarms return ..() /obj/machinery/alarm/proc/offset_airalarm() @@ -165,6 +169,7 @@ set_frequency(frequency) if(!master_is_operating()) elect_master() + soundloop = new(list(src), FALSE) // CHOMPEdit: Looping Alarms /obj/machinery/alarm/process() if((stat & (NOPOWER|BROKEN)) || shorted) @@ -194,6 +199,13 @@ mode = AALARM_MODE_FILL apply_mode() + if(alarm_area?.atmosalm || danger_level > 0) // CHOMPEdit: Looping Alarms (Trigger Decompression alarm here, on detection of any breach in the area) + soundloop.start() // CHOMPEdit: Looping Alarms + atmoswarn = TRUE // CHOMPEdit: Looping Alarms + else if(danger_level == 0 && alarm_area?.atmosalm == 0) // CHOMPEdit: Looping Alarms (Cancel Decompression alarm here) + soundloop.stop() // CHOMPEdit: Looping Alarms + atmoswarn = FALSE // CHOMPEdit: Looping Alarms + //atmos computer remote controll stuff switch(rcon_setting) if(RCON_NO) @@ -831,6 +843,12 @@ ..() spawn(rand(0,15)) update_icon() + // CHOMPEdit Start: Looping Alarms + if(stat & (NOPOWER | BROKEN)) + soundloop.stop() + else if(atmoswarn) + soundloop.start() + // CHOMPEdit End // VOREStation Edit Start /obj/machinery/alarm/freezer @@ -845,14 +863,14 @@ /obj/machinery/alarm/sifwilderness breach_detection = 0 report_danger_level = 0 - + /obj/machinery/alarm/sifwilderness/first_run() . = ..() - + TLV["oxygen"] = list(16, 17, 135, 140) TLV["pressure"] = list(0,ONE_ATMOSPHERE*0.10,ONE_ATMOSPHERE*1.50,ONE_ATMOSPHERE*1.60) TLV["temperature"] = list(T0C - 40, T0C - 31, T0C + 40, T0C + 120) // CHOMPEdit END #undef LOAD_TLV_VALUES #undef TEST_TLV_VALUES -#undef DECLARE_TLV_VALUES \ No newline at end of file +#undef DECLARE_TLV_VALUES diff --git a/code/game/machinery/fire_alarm.dm b/code/game/machinery/fire_alarm.dm index a7e0da37f6..e8e5e7b4de 100644 --- a/code/game/machinery/fire_alarm.dm +++ b/code/game/machinery/fire_alarm.dm @@ -26,6 +26,16 @@ FIRE ALARM circuit = /obj/item/weapon/circuitboard/firealarm var/alarms_hidden = FALSE //If the alarms from this machine are visible on consoles + var/datum/looping_sound/alarm/fire_alarm/soundloop // CHOMPEdit: Soundloops + var/datum/looping_sound/alarm/engineering_alarm/engalarm // CHOMPEdit: Soundloops + var/datum/looping_sound/alarm/sm_critical_alarm/critalarm // CHOMPEdit: Soundloops + var/datum/looping_sound/alarm/sm_causality_alarm/causality // CHOMPEdit: Soundloops + + var/firewarn = FALSE // CHOMPEdit: Looping Alarms + var/engwarn = FALSE // CHOMPEdit: Looping Alarms + var/critwarn = FALSE // CHOMPEdit: Looping Alarms + var/causalitywarn = FALSE // CHOMPEdit: Looping Alarms + /obj/machinery/firealarm/alarms_hidden alarms_hidden = TRUE @@ -51,6 +61,18 @@ FIRE ALARM if(z in using_map.contact_levels) set_security_level(security_level ? get_security_level() : "green") + soundloop = new(list(src), FALSE) // CHOMPEdit: Create soundloop + engalarm = new(list(src), FALSE) // CHOMPEdit: Create soundloop + critalarm = new(list(src), FALSE) // CHOMPEdit: Create soundloop + causality = new(list(src), FALSE) // CHOMPEdit: Create soundloop + +/obj/machinery/firealarm/Destroy() + QDEL_NULL(soundloop) // CHOMPEdit: Just clearing the loop here + QDEL_NULL(engalarm) // CHOMPEdit: Clearing the loop here too + QDEL_NULL(critalarm) // CHOMPEdit: Clearing the loop here too + QDEL_NULL(causality) // CHOMPEdit: Clearing the loop here too + return ..() + /obj/machinery/firealarm/proc/offset_alarm() pixel_x = (dir & 3) ? 0 : (dir == 4 ? 26 : -26) pixel_y = (dir & 3) ? (dir == 1 ? -26 : 26) : 0 @@ -88,14 +110,14 @@ FIRE ALARM if("blue") set_light(l_range = 2, l_power = 0.25, l_color = "#1024A9") if("red") set_light(l_range = 4, l_power = 0.9, l_color = "#ff0000") if("delta") set_light(l_range = 4, l_power = 0.9, l_color = "#FF6633") - + . += mutable_appearance(icon, fire_state) . += emissive_appearance(icon, fire_state) - + if(seclevel) . += mutable_appearance(icon, "overlay_[seclevel]") . += emissive_appearance(icon, "overlay_[seclevel]") - + add_overlay(.) /obj/machinery/firealarm/fire_act(datum/gas_mixture/air, temperature, volume) @@ -159,6 +181,22 @@ FIRE ALARM ..() spawn(rand(0,15)) update_icon() + // CHOMPEdit Start: Looping Red/Violet/Orange Alarms + if(stat & (NOPOWER | BROKEN)) // Are we broken or out of power? + soundloop.stop() // Stop the loop once we're out of power + engalarm.stop() // Stop these bc we're out of power + critalarm.stop() // Stop these, out of power + causality.stop() // etc etc + else + if(firewarn) + soundloop.start() + if(engwarn) + engalarm.start() + if(critwarn) + critalarm.start() + if(causalitywarn) + causality.start() + // CHOMPEdit End /obj/machinery/firealarm/attack_hand(mob/user as mob) if(user.stat || stat & (NOPOWER | BROKEN)) @@ -177,6 +215,8 @@ FIRE ALARM var/area/area = get_area(src) for(var/obj/machinery/firealarm/FA in area) fire_alarm.clearAlarm(src.loc, FA) + FA.soundloop.stop() // CHOMPEdit: Soundloop + FA.firewarn = FALSE // CHOMPEdit: Soundloop Fix update_icon() if(user) log_game("[user] reset a fire alarm at [COORD(src)]") @@ -187,8 +227,10 @@ FIRE ALARM var/area/area = get_area(src) for(var/obj/machinery/firealarm/FA in area) fire_alarm.triggerAlarm(loc, FA, duration, hidden = alarms_hidden) + FA.soundloop.start() // CHOMPEdit: Soundloop + FA.firewarn = TRUE // CHOMPEdit: Soundloop Fix update_icon() - playsound(src, 'sound/machines/airalarm.ogg', 25, 0, 4, volume_channel = VOLUME_CHANNEL_ALARMS) + // playsound(src, 'sound/machines/airalarm.ogg', 25, 0, 4, volume_channel = VOLUME_CHANNEL_ALARMS) // CHOMPEdit: Disable as per soundloop if(user) log_game("[user] triggered a fire alarm at [COORD(src)]") diff --git a/code/game/machinery/frame.dm b/code/game/machinery/frame.dm index 6c71e63207..c3fa1701fd 100644 --- a/code/game/machinery/frame.dm +++ b/code/game/machinery/frame.dm @@ -202,6 +202,12 @@ frame_class = FRAME_CLASS_MACHINE frame_size = 3 +/datum/frame/frame_types/injector_maker + name = "Ready-to-Use Medicine 3000" + frame_class = FRAME_CLASS_MACHINE + circuit = /obj/machinery/atmospheric_field_generator + frame_size = 3 + ////////////////////////////// // Frame Object (Structure) ////////////////////////////// diff --git a/code/game/mecha/components/armor.dm b/code/game/mecha/components/armor.dm index 54fe413d11..561bc555d1 100644 --- a/code/game/mecha/components/armor.dm +++ b/code/game/mecha/components/armor.dm @@ -101,7 +101,7 @@ required_type = list(/obj/mecha/combat) damage_minimum = 15 - minimum_penetration = 25 + minimum_penetration = 20 //chompedit making this less OP, was 25, is now 20 damage_absorption = list( "brute"=0.5, @@ -216,9 +216,9 @@ /obj/item/mecha_parts/component/armor/alien name = "strange mecha plating" step_delay = 2 - //Chompedit start This armour is dogshit and needs this to improve it. + //Chompedit start Trying to make this armor decent, without making it OP. damage_minimum = 12 - minimum_penetration = 15 + minimum_penetration = 10 //Chompedit end damage_absorption = list( diff --git a/code/game/objects/effects/spiders.dm b/code/game/objects/effects/spiders.dm index db61554bd1..53099410dc 100644 --- a/code/game/objects/effects/spiders.dm +++ b/code/game/objects/effects/spiders.dm @@ -132,15 +132,15 @@ qdel(src) /obj/effect/spider/eggcluster/small - spiders_min = 1 - spiders_max = 3 + spiders_min = 2 //CHOMP Edit + spiders_max = 6 //CHOMP Edit /obj/effect/spider/eggcluster/small/frost spider_type = /obj/effect/spider/spiderling/frost /obj/effect/spider/eggcluster/royal spiders_min = 2 - spiders_max = 5 + spiders_max = 6 //CHOMP Edit spider_type = /obj/effect/spider/spiderling/varied /obj/effect/spider/spiderling diff --git a/code/game/objects/items.dm b/code/game/objects/items.dm index dac041f327..79dabc9a2c 100644 --- a/code/game/objects/items.dm +++ b/code/game/objects/items.dm @@ -509,17 +509,22 @@ var/list/global/slot_flags_enumeration = list( return if(!usr.canmove || usr.stat || usr.restrained() || !Adjacent(usr)) return - if((!istype(usr, /mob/living/carbon)) || (istype(usr, /mob/living/carbon/brain)))//Is humanoid, and is not a brain + if(isanimal(usr)) //VOREStation Edit Start - Allows simple mobs with hands to use the pickup verb + var/mob/living/simple_mob/s = usr + if(!s.has_hands) + to_chat(usr, "You can't pick things up!") + return + else if((!istype(usr, /mob/living/carbon)) || (istype(usr, /mob/living/carbon/brain)))//Is humanoid, and is not a brain to_chat(usr, "You can't pick things up!") return - var/mob/living/carbon/C = usr + var/mob/living/L = usr if( usr.stat || usr.restrained() )//Is not asleep/dead and is not restrained to_chat(usr, "You can't pick things up!") return if(src.anchored) //Object isn't anchored to_chat(usr, "You can't pick that up!") return - if(C.get_active_hand()) //Hand is not full + if(L.get_active_hand()) //Hand is not full //VOREStation Edit End to_chat(usr, "Your hand is full.") return if(!istype(src.loc, /turf)) //Object is on a turf diff --git a/code/game/objects/items/devices/taperecorder.dm b/code/game/objects/items/devices/taperecorder.dm index 88701319cd..30d032215f 100644 --- a/code/game/objects/items/devices/taperecorder.dm +++ b/code/game/objects/items/devices/taperecorder.dm @@ -88,8 +88,18 @@ /obj/item/device/taperecorder/hear_talk(mob/M, list/message_pieces, verb) var/msg = multilingual_to_message(message_pieces, requires_machine_understands = TRUE, with_capitalization = TRUE) + //START OF CHOMPEDIT + var/voice = "Unknown" + if (M.type == /mob/living/carbon/human) + { + var/mob/living/carbon/human/H = M + voice = H.voice + } + else + voice = M.name + //END OF CHOMPEDIT if(mytape && recording) - mytape.record_speech("[M.name] [verb], \"[msg]\"") + mytape.record_speech("[voice] [verb], \"[msg]\"") //CHOMP Edit /obj/item/device/taperecorder/see_emote(mob/M as mob, text, var/emote_type) @@ -432,4 +442,4 @@ //Random colour tapes /obj/item/device/tape/random/New() - icon_state = "tape_[pick("white", "blue", "red", "yellow", "purple")]" \ No newline at end of file + icon_state = "tape_[pick("white", "blue", "red", "yellow", "purple")]" diff --git a/code/game/objects/items/devices/ticket_printer.dm b/code/game/objects/items/devices/ticket_printer.dm index 971580295b..a16fafa2b5 100644 --- a/code/game/objects/items/devices/ticket_printer.dm +++ b/code/game/objects/items/devices/ticket_printer.dm @@ -6,6 +6,7 @@ slot_flags = SLOT_BELT | SLOT_HOLSTER var/print_cooldown = 1 MINUTE var/last_print + w_class = ITEMSIZE_SMALL //CHOMP Add because something so small, trivial, and used for silly RP should not be practically gigantic. /obj/item/device/ticket_printer/attack_self(mob/user) . = ..() diff --git a/code/game/objects/items/paintkit.dm b/code/game/objects/items/paintkit.dm index f172326fce..59e9cb2878 100644 --- a/code/game/objects/items/paintkit.dm +++ b/code/game/objects/items/paintkit.dm @@ -98,10 +98,8 @@ suit.desc = new_desc suit.icon_state = "[new_icon]_suit" suit.toggleicon = "[new_icon]_suit" - suit.item_state = "[new_icon]_suit" var/obj/item/clothing/head/hood/S = suit.hood S.icon_state = "[new_icon]_helmet" - S.item_state = "[new_icon]_helmet" if(new_icon_file) suit.icon = new_icon_file S.icon = new_icon_file diff --git a/code/game/objects/items/toys/toys_vr.dm b/code/game/objects/items/toys/toys_vr.dm index d114b6e4ab..c55a6bf6e4 100644 --- a/code/game/objects/items/toys/toys_vr.dm +++ b/code/game/objects/items/toys/toys_vr.dm @@ -99,16 +99,55 @@ name = "janihound plushie" icon_state = "scrubpuppy" -/obj/item/toy/plushie/borgplushie/drakiesec - name = "security drake plushie" +/obj/item/toy/plushie/borgplushie/drake icon = 'icons/obj/drakietoy_vr.dmi' + var/lights_glowing = FALSE + +/obj/item/toy/plushie/borgplushie/drake/AltClick(mob/living/user) + . = ..() + var/turf/T = get_turf(src) + if(!T.AdjacentQuick(user)) // So people aren't messing with these from across the room + return FALSE + lights_glowing = !lights_glowing + to_chat(user, "You turn the [src]'s glow-fabric [lights_glowing ? "on" : "off"].") + update_icon() + +/obj/item/toy/plushie/borgplushie/drake/update_icon() + cut_overlays() + if (lights_glowing) + add_overlay(emissive_appearance(icon, "[icon_state]-lights")) + +/obj/item/toy/plushie/borgplushie/drake/get_description_info() + return "The lights on the plushie can be toggled [lights_glowing ? "off" : "on"] by alt-clicking on it." + +/obj/item/toy/plushie/borgplushie/drake/sec + name = "security drake plushie" icon_state = "secdrake" -/obj/item/toy/plushie/borgplushie/drakiemed +/obj/item/toy/plushie/borgplushie/drake/med name = "medical drake plushie" - icon = 'icons/obj/drakietoy_vr.dmi' icon_state = "meddrake" +/obj/item/toy/plushie/borgplushie/drake/sci + name = "science drake plushie" + icon_state = "scidrake" + +/obj/item/toy/plushie/borgplushie/drake/jani + name = "janitor drake plushie" + icon_state = "janidrake" + +/obj/item/toy/plushie/borgplushie/drake/eng + name = "engineering drake plushie" + icon_state = "engdrake" + +/obj/item/toy/plushie/borgplushie/drake/mine + name = "mining drake plushie" + icon_state = "minedrake" + +/obj/item/toy/plushie/borgplushie/drake/trauma + name = "trauma drake plushie" + icon_state = "traumadrake" + /obj/item/toy/plushie/foxbear name = "toy fox" desc = "Issa fox!" diff --git a/code/game/objects/items/weapons/capture_crystal.dm b/code/game/objects/items/weapons/capture_crystal.dm index 9b85e43558..56fd9a35dd 100644 --- a/code/game/objects/items/weapons/capture_crystal.dm +++ b/code/game/objects/items/weapons/capture_crystal.dm @@ -452,7 +452,9 @@ //Let's let our mob out! /obj/item/capture_crystal/proc/unleash(mob/living/user, atom/target) if(!user && !target) //We got thrown but we're not sure who did it, let's go to where the crystal is - bound_mob.forceMove(src.drop_location()) + var/drop_loc = get_turf(src) + if (drop_loc) + bound_mob.forceMove(drop_loc) return if(!target) //We know who wants to let us out, but they didn't say where, so let's drop us on them bound_mob.forceMove(user.drop_location()) diff --git a/code/game/objects/items/weapons/circuitboards/frame.dm b/code/game/objects/items/weapons/circuitboards/frame.dm index db3106e635..1db8b10130 100644 --- a/code/game/objects/items/weapons/circuitboards/frame.dm +++ b/code/game/objects/items/weapons/circuitboards/frame.dm @@ -270,4 +270,17 @@ /obj/item/weapon/stock_parts/micro_laser/high = 2, //field emitters /obj/item/weapon/stock_parts/scanning_module = 1, //atmosphere sensor /obj/item/weapon/stock_parts/capacitor/adv = 1, //for the JUICE - /obj/item/stack/cable_coil = 10) \ No newline at end of file + /obj/item/stack/cable_coil = 10) + + +/obj/item/weapon/circuitboard/injector_maker + name = T_BOARD("Ready-to-Use Medicine 3000") + build_path = /obj/machinery/injector_maker + board_type = new /datum/frame/frame_types/injector_maker + origin_tech = list(TECH_BIO = 3, TECH_ENGINEERING = 2, TECH_MATERIAL = 2) + req_components = list( + /obj/item/weapon/stock_parts/matter_bin = 2, + /obj/item/weapon/stock_parts/manipulator = 1, + /obj/item/weapon/stock_parts/micro_laser = 1, + /obj/item/weapon/stock_parts/console_screen = 1 + ) diff --git a/code/game/objects/items/weapons/paint.dm b/code/game/objects/items/weapons/paint.dm index 80ec8d7f7c..a86c3d4bd4 100644 --- a/code/game/objects/items/weapons/paint.dm +++ b/code/game/objects/items/weapons/paint.dm @@ -27,44 +27,52 @@ var/global/list/cached_icons = list() return ..() /obj/item/weapon/reagent_containers/glass/paint/New() - if(paint_type && length(paint_type) > 0) - name = paint_type + " " + name ..() - reagents.add_reagent("water", volume*3/5) - reagents.add_reagent("plasticide", volume/5) - if(paint_type == "white") //why don't white crayons exist - reagents.add_reagent("aluminum", volume/5) - else if (paint_type == "black") - reagents.add_reagent("carbon", volume/5) - else - reagents.add_reagent("marker_ink_[paint_type]", volume/5) - reagents.handle_reactions() + if(paint_type) + reagents.add_reagent("paint", volume, paint_type) /obj/item/weapon/reagent_containers/glass/paint/red icon_state = "paint_red" - paint_type = "red" + paint_type = "#FF0000" /obj/item/weapon/reagent_containers/glass/paint/yellow icon_state = "paint_yellow" - paint_type = "yellow" + paint_type = "#FFFF00" /obj/item/weapon/reagent_containers/glass/paint/green icon_state = "paint_green" - paint_type = "green" + paint_type = "#00FF00" /obj/item/weapon/reagent_containers/glass/paint/blue icon_state = "paint_blue" - paint_type = "blue" + paint_type = "#0000FF" -/obj/item/weapon/reagent_containers/glass/paint/purple +/obj/item/weapon/reagent_containers/glass/paint/violet icon_state = "paint_violet" - paint_type = "purple" + paint_type = "#FF00FF" /obj/item/weapon/reagent_containers/glass/paint/black icon_state = "paint_black" - paint_type = "black" + paint_type = "#000000" + +/obj/item/weapon/reagent_containers/glass/paint/grey + icon_state = "paint_neutral" + paint_type = "#808080" + +/obj/item/weapon/reagent_containers/glass/paint/orange + icon_state = "paint_orange" + paint_type = "#FFA500" + +/obj/item/weapon/reagent_containers/glass/paint/purple + icon_state = "paint_purple" + paint_type = "#A500FF" + +/obj/item/weapon/reagent_containers/glass/paint/cyan + icon_state = "paint_cyan" + paint_type = "#00FFFF" /obj/item/weapon/reagent_containers/glass/paint/white + name = "paint remover bucket" icon_state = "paint_white" - paint_type = "white" + paint_type = "#FFFFFF" diff --git a/code/game/objects/random/misc.dm b/code/game/objects/random/misc.dm index 934d119d77..ce2f20fedd 100644 --- a/code/game/objects/random/misc.dm +++ b/code/game/objects/random/misc.dm @@ -753,8 +753,13 @@ /obj/item/toy/plushie/nukeplushie, /obj/item/toy/plushie/otter, /obj/item/toy/plushie/vox, - /obj/item/toy/plushie/borgplushie/drakiesec, - /obj/item/toy/plushie/borgplushie/drakiemed, + pick(list(/obj/item/toy/plushie/borgplushie/drake/sec, + /obj/item/toy/plushie/borgplushie/drake/med, + /obj/item/toy/plushie/borgplushie/drake/sci, + /obj/item/toy/plushie/borgplushie/drake/jani, + /obj/item/toy/plushie/borgplushie/drake/eng, + /obj/item/toy/plushie/borgplushie/drake/mine, + /obj/item/toy/plushie/borgplushie/drake/trauma)), //VOREStation Add End //YawnWider Add Start /obj/item/toy/plushie/teshari/_yw, diff --git a/code/game/objects/structures/artstuff.dm b/code/game/objects/structures/artstuff.dm index 51c32a1f00..7863a168d7 100644 --- a/code/game/objects/structures/artstuff.dm +++ b/code/game/objects/structures/artstuff.dm @@ -248,7 +248,7 @@ framed_offset_y = 6 /obj/item/canvas/twentyfour_twentyfour - name = "ai universal standard canvas" + //name = "ai universal standard canvas" // Uncomment this when AI can actually //desc = "Besides being very large, the AI can accept these as a display from their internal database after you've hung it up." // Not yet icon_state = "24x24" width = 24 diff --git a/code/game/objects/structures/crates_lockers/__closets.dm b/code/game/objects/structures/crates_lockers/__closets.dm index 454a070cfe..cf196ddf0a 100644 --- a/code/game/objects/structures/crates_lockers/__closets.dm +++ b/code/game/objects/structures/crates_lockers/__closets.dm @@ -397,6 +397,13 @@ if(ishuman(usr) || isrobot(usr)) add_fingerprint(usr) toggle(usr) + else if(isanimal(usr)) //VOREStation Addition Start + var/mob/living/simple_mob/s = usr + if(s.has_hands) + add_fingerprint(usr) + toggle(usr) + else + to_chat(usr, "This mob type can't use this verb.") //VOREStation Addition End else to_chat(usr, "This mob type can't use this verb.") diff --git a/code/game/objects/structures/crates_lockers/_closets_appearance_definitions.dm b/code/game/objects/structures/crates_lockers/_closets_appearance_definitions.dm index c64593078f..262190ee20 100644 --- a/code/game/objects/structures/crates_lockers/_closets_appearance_definitions.dm +++ b/code/game/objects/structures/crates_lockers/_closets_appearance_definitions.dm @@ -1444,7 +1444,7 @@ "stripes" = COLOR_OFF_WHITE, "glass" = COLOR_WHITE ) - + /decl/closet_appearance/wall_double/survival color = COLOR_CYAN_BLUE decals = null @@ -1452,6 +1452,119 @@ "stripe_outer" = COLOR_WHITE ) +/decl/closet_appearance/wall_double/emergency_engi + color = COLOR_YELLOW_GRAY + decals = null + extra_decals = list( + "stripe_inner" = COLOR_ORANGE, + "stripe_outer" = COLOR_OFF_WHITE, + "glass" = COLOR_WHITE + ) + +/decl/closet_appearance/wall_double/security + color = COLOR_NT_RED + decals = null + extra_decals = list( + "vertical_stripe_left_l" = COLOR_WARM_YELLOW, + "vertical_stripe_left_m" = COLOR_WARM_YELLOW + ) + +/decl/closet_appearance/wall_double/cargo + color = COLOR_WARM_YELLOW + +/decl/closet_appearance/wall_double/gaming + color = COLOR_DARK_BLUE_GRAY + decals = null + extra_decals = list( + "stripe_outer" = COLOR_PALE_PINK, + "glass" = COLOR_WHITE + ) + +/decl/closet_appearance/wall_double/science + decals = list( + "holes" + ) + color = COLOR_OFF_WHITE + extra_decals = list( + "stripe_inner_lower" = COLOR_PURPLE, + "stripe_inner_middle" = COLOR_PURPLE + ) + +/decl/closet_appearance/wall_double/command + decals = list( + "holes_right" + ) + color = COLOR_BLUE_GRAY + extra_decals = list( + "vertical_stripe_left_l" = COLOR_GOLD, + "vertical_stripe_left_m" = COLOR_GOLD, + "vertical_stripe_left_r" = COLOR_GOLD + ) + +/decl/closet_appearance/wall_double/ce + decals = list( + "holes_right" + ) + color = COLOR_OFF_WHITE + extra_decals = list( + "vertical_stripe_left_l" = COLOR_DARK_GOLD, + "vertical_stripe_left_m" = COLOR_DARK_GOLD, + "vertical_stripe_left_r" = COLOR_DARK_GOLD + ) + +/decl/closet_appearance/wall_double/rd + decals = list( + "holes_right" + ) + color = COLOR_OFF_WHITE + extra_decals = list( + "vertical_stripe_left_l" = COLOR_PURPLE, + "vertical_stripe_left_m" = COLOR_GOLD, + "vertical_stripe_left_r" = COLOR_PURPLE + ) + +/decl/closet_appearance/wall_double/cmo + decals = list( + "holes_right" + ) + color = COLOR_BABY_BLUE + extra_decals = list( + "vertical_stripe_left_l" = COLOR_GOLD, + "vertical_stripe_left_m" = COLOR_GOLD, + "vertical_stripe_left_r" = COLOR_GOLD + ) + +/decl/closet_appearance/wall_double/hos + decals = list( + "holes_right" + ) + color = COLOR_NT_RED + extra_decals = list( + "vertical_stripe_left_l" = COLOR_GOLD, + "vertical_stripe_left_m" = COLOR_WARM_YELLOW, + "vertical_stripe_left_r" = COLOR_GOLD + ) + +/decl/closet_appearance/wall_double/iaa + decals = list( + "holes_right" + ) + color = COLOR_DARK_BLUE_GRAY + extra_decals = list( + "vertical_stripe_left_l" = COLOR_GOLD, + "vertical_stripe_left_m" = COLOR_GOLD, + "vertical_stripe_left_r" = COLOR_GOLD + ) + +/decl/closet_appearance/wall_double/engineering + decals = list( + "holes" + ) + color = COLOR_YELLOW_GRAY + +/decl/closet_appearance/wall_double/generic_civ + color = COLOR_DARK_BLUE_GRAY + // Carts /decl/closet_appearance/cart color = COLOR_GRAY20 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 c420cd20b2..82a3ac416e 100644 --- a/code/game/objects/structures/crates_lockers/closets/secure/security.dm +++ b/code/game/objects/structures/crates_lockers/closets/secure/security.dm @@ -155,6 +155,7 @@ /obj/item/weapon/gun/projectile/revolvershotgun, /obj/item/ammo_magazine/m12gdrumjack/beanbag, /obj/item/ammo_magazine/m12gdrumjack/beanbag, + /obj/item/device/ticket_printer, //CHOMPStation addition /obj/item/device/retail_scanner/security //CHOMPStation addition ) @@ -198,7 +199,8 @@ /obj/item/device/flashlight/maglight, /obj/item/device/holowarrant, //CHOMPStation addition /obj/item/device/retail_scanner/security, //CHOMPStation addition - /obj/item/clothing/glasses/hud/security //CHOMPStation addition + /obj/item/clothing/glasses/hud/security, //CHOMPStation addition + /obj/item/device/ticket_printer //CHOMPStation addition ) /obj/structure/closet/secure_closet/security/Initialize() diff --git a/code/game/objects/structures/crates_lockers/closets/secure/security_vr.dm b/code/game/objects/structures/crates_lockers/closets/secure/security_vr.dm index 097b1c83bd..9c10286b08 100644 --- a/code/game/objects/structures/crates_lockers/closets/secure/security_vr.dm +++ b/code/game/objects/structures/crates_lockers/closets/secure/security_vr.dm @@ -51,6 +51,7 @@ // /obj/item/clothing/head/beret/sec/corporate/hos, //CHOMP Remove // /obj/item/clothing/suit/storage/hooded/wintercoat/security, //CHOMP Remove // /obj/item/clothing/shoes/boots/winter/security, //CHOMP Remove + /obj/item/device/ticket_printer, //CHOMP Add /obj/item/device/flashlight/maglight) //Custom NT Security Lockers, Only found at central command diff --git a/code/game/objects/structures/crates_lockers/closets/utility_closets.dm b/code/game/objects/structures/crates_lockers/closets/utility_closets.dm index c83dbe0f1a..8fc75b1c8a 100644 --- a/code/game/objects/structures/crates_lockers/closets/utility_closets.dm +++ b/code/game/objects/structures/crates_lockers/closets/utility_closets.dm @@ -196,6 +196,7 @@ /obj/structure/closet/hydrant //wall mounted fire closet name = "fire-safety closet" desc = "It's a storage unit for fire-fighting supplies." + icon = 'icons/obj/closets/bases/wall.dmi' closet_appearance = /decl/closet_appearance/wall/hydrant plane = TURF_PLANE layer = ABOVE_TURF_LAYER @@ -218,7 +219,10 @@ /obj/structure/closet/medical_wall //wall mounted medical closet name = "first-aid closet" desc = "It's wall-mounted storage unit for first aid supplies." + icon = 'icons/obj/closets/bases/wall.dmi' closet_appearance = /decl/closet_appearance/wall/medical + plane = TURF_PLANE + layer = ABOVE_TURF_LAYER anchored = TRUE density = FALSE wall_mounted = 1 diff --git a/code/game/objects/structures/crates_lockers/closets/walllocker.dm b/code/game/objects/structures/crates_lockers/closets/walllocker.dm index f1949dfeb5..1f0f0f6956 100644 --- a/code/game/objects/structures/crates_lockers/closets/walllocker.dm +++ b/code/game/objects/structures/crates_lockers/closets/walllocker.dm @@ -3,7 +3,7 @@ /obj/structure/closet/walllocker desc = "A wall mounted storage locker." - name = "Wall Locker" + name = "wall locker" icon = 'icons/obj/closets/bases/wall.dmi' closet_appearance = /decl/closet_appearance/wall density = FALSE @@ -85,7 +85,7 @@ //double-size "cabinet" lockers, from Killian /obj/structure/closet/walllocker_double desc = "A wall mounted storage cabinet." - name = "Wall Cabinet" + name = "wall cabinet" icon = 'icons/obj/closets/bases/wall_double.dmi' closet_appearance = /decl/closet_appearance/wall_double density = FALSE @@ -116,7 +116,7 @@ /obj/structure/closet/walllocker_double/kitchen desc = "A wall mounted storage cabinet, for the kitchen. Now where's the flour gone..?" - name = "Kitchen Cabinet" + name = "kitchen cabinet" icon = 'icons/obj/closets/bases/wall_double.dmi' closet_appearance = /decl/closet_appearance/wall_double/kitchen density = FALSE @@ -139,7 +139,7 @@ dir = EAST /obj/structure/closet/walllocker_double/medical - name = "Medical Cabinet" + name = "medical cabinet" desc = "A wall mounted medical supply cabinet. Probably full of drugs!" //not actually full of drugs, sorry! closet_appearance = /decl/closet_appearance/wall_double/medical @@ -159,12 +159,37 @@ pixel_x = 32 dir = EAST +/obj/structure/closet/walllocker_double/emergency_engi + name = "emergency supplies cabinet" + desc = "A wall mounted cabinet. Seemingly has cool stuff for 'emergency use only'." + closet_appearance = /decl/closet_appearance/wall_double/emergency_engi + + starts_with = list( + /obj/item/clothing/mask/breath = 2, + /obj/item/weapon/tank/emergency/oxygen/engi = 2, + /obj/item/weapon/storage/briefcase/inflatable, + /obj/item/device/radio = 3) + +/obj/structure/closet/walllocker_double/emergency_engi/north + pixel_y = 32 + dir = SOUTH + +/obj/structure/closet/walllocker_double/emergency_engi/south + pixel_y = -32 + dir = NORTH + +/obj/structure/closet/walllocker_double/emergency_engi/west + pixel_x = -32 + dir = WEST + +/obj/structure/closet/walllocker_double/emergency_engi/east + pixel_x = 32 + dir = EAST + /obj/structure/closet/walllocker_double/hydrant name = "fire-safety closet" desc = "It's a storage cabinet packed with fire-fighting supplies." closet_appearance = /decl/closet_appearance/wall_double/fire_safety - anchored = TRUE - density = FALSE starts_with = list( /obj/item/clothing/suit/fire, @@ -192,7 +217,7 @@ /obj/structure/closet/walllocker_double/survival desc = "A wall mounted storage cabinet. It contains a small amount of emergency supplies for wilderness survival, but they probably won't last very long." - name = "Emergency Survival Wall Cabinet" + name = "emergency survival wall cabinet" icon = 'icons/obj/closets/bases/wall_double.dmi' closet_appearance = /decl/closet_appearance/wall_double/survival density = FALSE @@ -228,5 +253,159 @@ dir = WEST /obj/structure/closet/walllocker_double/survival/east + pixel_x = 32 + dir = EAST + +/obj/structure/closet/walllocker_double/security + name = "security cabinet" + desc = "A wall mounted cabinet. This one is suspiciously red." + closet_appearance = /decl/closet_appearance/wall_double/security + +/obj/structure/closet/walllocker_double/security/north + pixel_y = 32 + dir = SOUTH + +/obj/structure/closet/walllocker_double/security/south + pixel_y = -32 + dir = NORTH + +/obj/structure/closet/walllocker_double/security/west + pixel_x = -32 + dir = WEST + +/obj/structure/closet/walllocker_double/security/east + pixel_x = 32 + dir = EAST + +/obj/structure/closet/walllocker_double/misc_civ + closet_appearance = /decl/closet_appearance/wall_double/gaming + +/obj/structure/closet/walllocker_double/misc_civ/north + pixel_y = 32 + dir = SOUTH + +/obj/structure/closet/walllocker_double/misc_civ/south + pixel_y = -32 + dir = NORTH + +/obj/structure/closet/walllocker_double/misc_civ/west + pixel_x = -32 + dir = WEST + +/obj/structure/closet/walllocker_double/misc_civ/east + pixel_x = 32 + dir = EAST + +/obj/structure/closet/walllocker_double/generic_civ + closet_appearance = /decl/closet_appearance/wall_double/generic_civ + +/obj/structure/closet/walllocker_double/generic_civ/north + pixel_y = 32 + dir = SOUTH + +/obj/structure/closet/walllocker_double/generic_civ/south + pixel_y = -32 + dir = NORTH + +/obj/structure/closet/walllocker_double/generic_civ/west + pixel_x = -32 + dir = WEST + +/obj/structure/closet/walllocker_double/generic_civ/east + pixel_x = 32 + dir = EAST + +/obj/structure/closet/walllocker_double/cargo + desc = "A wall mounted cabinet. This one is in cargo colors." + closet_appearance = /decl/closet_appearance/wall_double/cargo + +/obj/structure/closet/walllocker_double/cargo/north + pixel_y = 32 + dir = SOUTH + +/obj/structure/closet/walllocker_double/cargo/south + pixel_y = -32 + dir = NORTH + +/obj/structure/closet/walllocker_double/cargo/west + pixel_x = -32 + dir = WEST + +/obj/structure/closet/walllocker_double/cargo/east + pixel_x = 32 + dir = EAST + +/obj/structure/closet/walllocker_double/science + desc = "A wall mounted cabinet. This one is in research colors." + closet_appearance = /decl/closet_appearance/wall_double/science + +/obj/structure/closet/walllocker_double/science/north + pixel_y = 32 + dir = SOUTH + +/obj/structure/closet/walllocker_double/science/south + pixel_y = -32 + dir = NORTH + +/obj/structure/closet/walllocker_double/science/west + pixel_x = -32 + dir = WEST + +/obj/structure/closet/walllocker_double/science/east + pixel_x = 32 + dir = EAST + +/obj/structure/closet/walllocker_double/command + desc = "A wall mounted cabinet. This one is in command colors." + closet_appearance = /decl/closet_appearance/wall_double/command + +/obj/structure/closet/walllocker_double/command/north + pixel_y = 32 + dir = SOUTH + +/obj/structure/closet/walllocker_double/command/south + pixel_y = -32 + dir = NORTH + +/obj/structure/closet/walllocker_double/command/west + pixel_x = -32 + dir = WEST + +/obj/structure/closet/walllocker_double/command/east + pixel_x = 32 + dir = EAST + +/obj/structure/closet/walllocker_double/command/ce + closet_appearance = /decl/closet_appearance/wall_double/ce + +/obj/structure/closet/walllocker_double/command/cmo + closet_appearance = /decl/closet_appearance/wall_double/cmo + +/obj/structure/closet/walllocker_double/command/rd + closet_appearance = /decl/closet_appearance/wall_double/rd + +/obj/structure/closet/walllocker_double/command/hos + closet_appearance = /decl/closet_appearance/wall_double/hos + +/obj/structure/closet/walllocker_double/command/iaa + closet_appearance = /decl/closet_appearance/wall_double/iaa + +/obj/structure/closet/walllocker_double/engineering + desc = "A wall mounted cabinet. This one is in engineering colors." + closet_appearance = /decl/closet_appearance/wall_double/engineering + +/obj/structure/closet/walllocker_double/engineering/north + pixel_y = 32 + dir = SOUTH + +/obj/structure/closet/walllocker_double/engineering/south + pixel_y = -32 + dir = NORTH + +/obj/structure/closet/walllocker_double/engineering/west + pixel_x = -32 + dir = WEST + +/obj/structure/closet/walllocker_double/engineering/east pixel_x = 32 dir = EAST \ No newline at end of file diff --git a/code/game/objects/structures/ghost_pods/survivor.dm b/code/game/objects/structures/ghost_pods/survivor.dm new file mode 100644 index 0000000000..62dbc2441d --- /dev/null +++ b/code/game/objects/structures/ghost_pods/survivor.dm @@ -0,0 +1,138 @@ +//Based on /manual/human but not created as a child for better control over how we create a mob. +/obj/structure/ghost_pod/manual/survivor + name = "Emergency Cryopod" + desc = "A damaged cryopod smeared with blood. An injured body seems frozen in time within." + description_info = "This contains a body, which may wake at any time. The external controls\ + seem to be functioning, though the warning lights that flash give no solace.." + ghost_query_type = /datum/ghost_query/shipwreck_survivor + var/occupant_type = "shipwreck survivor" + + icon = 'icons/obj/Cryogenic2.dmi' + icon_state = "sleeper_1" + icon_state_opened = "sleeper_0" + density = TRUE + + var/allow_appearance_change = TRUE + var/special_role = MODE_SURVIVOR //Set this to NULL as GM if you don't want the "survivor" stuff to fire. + var/list/clothing_possibilities + + var/start_injured = FALSE //failsafe to prevent accidentally making a pod that deals damage when not intended + + var/suffer_brute = FALSE + var/brute_severity = 20 //We inflict UP TO this much damage. Range is 1 to this value + var/brute_instances = 3 //We inflict damage this many times. Helps spread it around multiple limbs! + + + var/suffer_burn = FALSE + var/burn_severity = 20 + var/burn_instances = 3 + + var/suffer_toxloss = FALSE + var/tox_severity = 20 + + var/suffer_oxloss = FALSE + var/oxy_severity = 20 + + var/suffer_cloneloss = FALSE + var/clone_severity = 5 + +/obj/structure/ghost_pod/manual/survivor/Initialize() + . = ..() + + handle_clothing_setup() + +/obj/structure/ghost_pod/manual/survivor/proc/handle_clothing_setup() + clothing_possibilities = list() + + clothing_possibilities |= subtypesof(/obj/item/clothing/under/utility) + clothing_possibilities |= subtypesof(/obj/item/clothing/head/beret) + clothing_possibilities |= /obj/item/clothing/shoes/black + clothing_possibilities |= /obj/item/device/radio/headset + +/obj/structure/ghost_pod/manual/survivor/create_occupant(var/mob/M) + ..() + var/turf/T = get_turf(src) + var/mob/living/carbon/human/H = new(src) + if(M.mind) + M.mind.transfer_to(H) + to_chat(M, "You are a [occupant_type]!") + H.ckey = M.ckey + visible_message("As \the [src] opens, the pipes on \the [src] surge, before it grows dark.") + log_and_message_admins("successfully opened \a [src] and got a [occupant_type].") + + var/list/uniform_options + var/list/shoe_options + var/list/head_options + var/list/headset_options + + if(clothing_possibilities && clothing_possibilities.len) + for(var/path in clothing_possibilities) + if(ispath(path, /obj/item/clothing/under)) + if(!uniform_options) + uniform_options = list() + uniform_options |= path + if(ispath(path, /obj/item/clothing/shoes)) + if(!shoe_options) + shoe_options = list() + shoe_options |= path + if(ispath(path, /obj/item/clothing/head)) + if(!head_options) + head_options = list() + head_options |= path + if(ispath(path, /obj/item/device/radio/headset)) + if(!headset_options) + headset_options = list() + headset_options |= path + + if(uniform_options && uniform_options.len) + var/newpath = pick(uniform_options) + var/obj/item/clothing/C = new newpath(H) + H.equip_to_appropriate_slot(C) + + if(shoe_options && shoe_options.len) + var/newpath = pick(shoe_options) + var/obj/item/clothing/C = new newpath(H) + H.equip_to_appropriate_slot(C) + + if(head_options && head_options.len) + var/newpath = pick(head_options) + var/obj/item/clothing/C = new newpath(H) + H.equip_to_appropriate_slot(C) + + if(headset_options && headset_options.len) + var/newpath = pick(headset_options) + var/obj/item/C = new newpath(H) + H.equip_to_appropriate_slot(C) + + var/newname = sanitize(tgui_input_text(H, "Your mind feels foggy, and you recall your name might be [H.real_name]. Would you like to change your name?", "Name change", null, MAX_NAME_LEN), MAX_NAME_LEN) + if (newname) + H.real_name = newname + + icon_state = icon_state_opened + + H.forceMove(T) + + if(special_role) + var/datum/antagonist/role = all_antag_types[special_role] //Explicitly NOT an antagonist. + if(role) + if(role.add_antagonist(H.mind, 1, 1, 0, 1, 1)) + log_admin("\The [src] made [key_name(src)] into a [role.role_text].") + + if(start_injured) //Doublechecking if we actually want them to be injured + if(suffer_brute) + for(var/br = 1, br < brute_instances, br++) + H.adjustBruteLoss(rand(1,brute_severity)) + if(suffer_burn) + for(var/bu = 1, bu < burn_instances, bu++) + H.adjustFireLoss(rand(1,burn_severity)) + if(suffer_oxloss) + H.adjustOxyLoss(rand(1,oxy_severity)) + if(suffer_toxloss) + H.adjustToxLoss(rand(1,tox_severity)) + if(suffer_cloneloss) + H.adjustCloneLoss(rand(1,clone_severity)) + + if(allow_appearance_change) + H.change_appearance(APPEARANCE_ALL, H, check_species_whitelist = 1) + + visible_message("\The [src] [pick("gurgles", "seizes", "clangs")] before releasing \the [H]!") diff --git a/code/game/objects/structures/safe.dm b/code/game/objects/structures/safe.dm index 50071efe4e..6ac0d6b502 100644 --- a/code/game/objects/structures/safe.dm +++ b/code/game/objects/structures/safe.dm @@ -22,15 +22,17 @@ FLOOR SAFES var/maxspace = 24 //the maximum combined w_class of stuff in the safe -/obj/structure/safe/New() +/obj/structure/safe/Initialize() tumbler_1_pos = rand(0, 72) tumbler_1_open = rand(0, 72) tumbler_2_pos = rand(0, 72) tumbler_2_open = rand(0, 72) + if(. != INITIALIZE_HINT_QDEL) + return INITIALIZE_HINT_LATELOAD -/obj/structure/safe/Initialize() +/obj/structure/safe/LateInitialize() . = ..() for(var/obj/item/I in loc) if(space >= maxspace) @@ -115,7 +117,7 @@ FLOOR SAFES if(canhear) to_chat(user, "You hear a [pick("click", "chink", "clink")] from \the [src].") playsound(src, 'sound/machines/click.ogg', 20, 1) - check_unlocked(user, canhear) + check_unlocked(user, canhear) updateUsrDialog() return diff --git a/code/game/objects/structures/simple_doors.dm b/code/game/objects/structures/simple_doors.dm index 675216fe7a..81a957d473 100644 --- a/code/game/objects/structures/simple_doors.dm +++ b/code/game/objects/structures/simple_doors.dm @@ -14,7 +14,7 @@ var/oreAmount = 7 var/knock_sound = 'sound/machines/door/knock_glass.ogg' var/knock_hammer_sound = 'sound/weapons/sonic_jackhammer.ogg' - + /obj/structure/simple_door/fire_act(datum/gas_mixture/air, exposed_temperature, exposed_volume) TemperatureAct(exposed_temperature) @@ -173,7 +173,7 @@ return /obj/structure/simple_door/bullet_act(var/obj/item/projectile/Proj) - hardness -= Proj.force/10 + take_damage(Proj.damage/10) CheckHardness() /obj/structure/simple_door/take_damage(var/damage) diff --git a/code/game/turfs/flooring/flooring_decals_ch.dm b/code/game/turfs/flooring/flooring_decals_ch.dm index 3d648ccb36..1021ae947b 100644 --- a/code/game/turfs/flooring/flooring_decals_ch.dm +++ b/code/game/turfs/flooring/flooring_decals_ch.dm @@ -10,4 +10,4 @@ icon_state = "wood_stairs2" /obj/effect/floor_decal/stairs/dark_stairs - icon_state = "dark_stairs" \ No newline at end of file + icon_state = "dark_stairs" diff --git a/code/game/turfs/flooring/flooring_decals_yw.dm b/code/game/turfs/flooring/flooring_decals_yw.dm index 75983e086f..2c948bb9b3 100644 --- a/code/game/turfs/flooring/flooring_decals_yw.dm +++ b/code/game/turfs/flooring/flooring_decals_yw.dm @@ -18,3 +18,4 @@ /obj/effect/floor_decal/snow/floor/pointy icon_state = "snowfloorpointy" + diff --git a/code/game/turfs/flooring/seasonal.dm b/code/game/turfs/flooring/seasonal.dm index 1e57f6bfa8..e67d6ba9c5 100644 --- a/code/game/turfs/flooring/seasonal.dm +++ b/code/game/turfs/flooring/seasonal.dm @@ -31,7 +31,7 @@ var/world_time_season var/tree_types = list() var/snow_chance = 10 -/turf/simulated/floor/outdoors/grass/seasonal/Initialize() +/turf/simulated/floor/outdoors/grass/seasonal/Initialize() //There are A LOT of chompedits here, I guess. switch(world_time_season) if("spring") @@ -41,10 +41,10 @@ var/world_time_season /obj/structure/flora/tree/jungle ) animal_types = list( - /mob/living/simple_mob/vore/alienanimals/teppi = 10, - /mob/living/simple_mob/vore/alienanimals/teppi/mutant = 1, + /mob/living/simple_mob/vore/alienanimals/teppi = 10, //CHOMP Edit + /mob/living/simple_mob/vore/alienanimals/teppi/mutant = 1, //CHOMP Edit /mob/living/simple_mob/vore/redpanda = 40, - /mob/living/simple_mob/vore/redpanda/fae = 2, + /mob/living/simple_mob/vore/redpanda/fae = 2, //CHOMP Edit /mob/living/simple_mob/vore/sheep = 20, /mob/living/simple_mob/vore/rabbit/black = 20, /mob/living/simple_mob/vore/rabbit/white = 20, @@ -52,7 +52,12 @@ var/world_time_season /mob/living/simple_mob/vore/leopardmander = 2, /mob/living/simple_mob/vore/horse/big = 10, /mob/living/simple_mob/vore/bigdragon/friendly = 1, - /mob/living/simple_mob/vore/alienanimals/dustjumper = 20 + /mob/living/simple_mob/vore/alienanimals/dustjumper = 20, + /mob/living/simple_mob/vore/bee = 20, + /mob/living/simple_mob/vore/horse/big = 5, + /mob/living/simple_mob/animal/wolf = 5, + /mob/living/simple_mob/animal/wolf/direwolf = 1, + /mob/living/simple_mob/animal/wolf/direwolf/dog = 1 ) grass_types = list( /obj/structure/flora/ausbushes/sparsegrass, @@ -77,8 +82,8 @@ var/world_time_season animal_types = list( /mob/living/simple_mob/vore/alienanimals/teppi = 10, /mob/living/simple_mob/vore/alienanimals/teppi/mutant = 1, - /mob/living/simple_mob/vore/redpanda = 40, - /mob/living/simple_mob/vore/redpanda/fae = 2, + /mob/living/simple_mob/vore/redpanda = 40, //CHOMP Edit + /mob/living/simple_mob/vore/redpanda/fae = 2, //CHOMP Edit /mob/living/simple_mob/vore/sheep = 20, /mob/living/simple_mob/vore/rabbit/black = 20, /mob/living/simple_mob/vore/rabbit/white = 20, @@ -86,7 +91,13 @@ var/world_time_season /mob/living/simple_mob/vore/leopardmander = 2, /mob/living/simple_mob/vore/horse/big = 10, /mob/living/simple_mob/vore/bigdragon/friendly = 1, - /mob/living/simple_mob/vore/alienanimals/dustjumper = 20 + /mob/living/simple_mob/vore/alienanimals/dustjumper = 20, + /mob/living/simple_mob/vore/bee = 5, + /mob/living/simple_mob/vore/horse/big = 5, + /mob/living/simple_mob/vore/pakkun = 2, + /mob/living/simple_mob/vore/fennix = 1, + /mob/living/simple_mob/animal/wolf/direwolf/dog = 1, + /mob/living/simple_mob/animal/passive/bird/parrot = 1 ) grass_types = list( /obj/structure/flora/ausbushes/sparsegrass, @@ -108,7 +119,11 @@ var/world_time_season /mob/living/simple_mob/vore/rabbit/white = 20, /mob/living/simple_mob/vore/rabbit/brown = 20, /mob/living/simple_mob/vore/horse/big = 10, - /mob/living/simple_mob/vore/alienanimals/dustjumper = 20 + /mob/living/simple_mob/vore/alienanimals/dustjumper = 20, + /mob/living/simple_mob/vore/horse/big = 1, + /mob/living/simple_mob/animal/wolf = 1, + /mob/living/simple_mob/animal/wolf/direwolf = 1, + /mob/living/simple_mob/animal/wolf/direwolf/dog = 1 ) grass_types = list( /obj/structure/flora/ausbushes/sparsegrass, @@ -129,7 +144,14 @@ var/world_time_season /mob/living/simple_mob/vore/rabbit/white = 40, /mob/living/simple_mob/vore/alienanimals/teppi = 10, /mob/living/simple_mob/vore/alienanimals/teppi/mutant = 1, - /mob/living/simple_mob/vore/redpanda = 10 + /mob/living/simple_mob/vore/redpanda = 10, + /mob/living/simple_mob/animal/wolf = 10, + /mob/living/simple_mob/animal/wolf/direwolf = 1, + /mob/living/simple_mob/animal/wolf/direwolf/dog = 1, + /mob/living/simple_mob/otie/friendly = 2, + /mob/living/simple_mob/otie/friendly/chubby = 1, + /mob/living/simple_mob/otie/red/friendly = 1, + /mob/living/simple_mob/otie/red/chubby = 1 ) if(prob(snow_chance)) chill() diff --git a/code/game/turfs/simulated/outdoors/survival_action_vr.dm b/code/game/turfs/simulated/outdoors/survival_action_vr.dm index c7f90171c7..9f88959493 100644 --- a/code/game/turfs/simulated/outdoors/survival_action_vr.dm +++ b/code/game/turfs/simulated/outdoors/survival_action_vr.dm @@ -1,9 +1,12 @@ +var/static/list/has_rocks = list("dirt5", "dirt6", "dirt7", "dirt8", "dirt9") + /turf/simulated/floor/outdoors/newdirt/attack_hand(mob/user) if(user.pulling) return ..() - var/static/list/has_rocks = list("dirt5", "dirt6", "dirt7", "dirt8", "dirt9") if(!Adjacent(user)) return ..() + if(user.a_intent != I_HELP) + return ..() if(icon_state in has_rocks) user.visible_message("[user] loosens rocks from \the [src]...", "You loosen rocks from \the [src]...") if(do_after(user, 5 SECONDS, exclusive = TASK_USER_EXCLUSIVE)) @@ -76,4 +79,4 @@ S.pixel_y = rand(-6,6) sticks = FALSE else - to_chat(user, "You don't see any loose sticks...") \ No newline at end of file + to_chat(user, "You don't see any loose sticks...") diff --git a/code/game/turfs/turf_ch.dm b/code/game/turfs/turf_ch.dm deleted file mode 100644 index 403e60a319..0000000000 --- a/code/game/turfs/turf_ch.dm +++ /dev/null @@ -1,2 +0,0 @@ -/turf - var/list/temp_check = list() \ No newline at end of file diff --git a/code/game/world.dm b/code/game/world.dm index 96b2249363..b204bc94fa 100644 --- a/code/game/world.dm +++ b/code/game/world.dm @@ -41,6 +41,13 @@ src.update_status() setup_season() //VOREStation Addition + // CHOMPStation Addition: Spaceman DMM Debugging + var/debug_server = world.GetConfig("env", "AUXTOOLS_DEBUG_DLL") + if (debug_server) + call(debug_server, "auxtools_init")() + enable_debugging() + // CHOMPStation Add End + . = ..() #if UNIT_TEST @@ -597,7 +604,7 @@ var/failed_old_db_connections = 0 if(num_tries==5) log_admin("ERROR TRYING TO CLEAR erro_attacklog") qdel(query_truncate2) - else + else to_world_log("Feedback database connection failed.") //CHOMPEdit End return 1 @@ -775,3 +782,21 @@ var/global/game_id = null game_id = "[c[(t % l) + 1]][game_id]" t = round(t / l) return 1 + +// CHOMPStation Add: Spaceman DMM Debugger +/proc/auxtools_stack_trace(msg) + CRASH(msg) + +/proc/auxtools_expr_stub() + CRASH("auxtools not loaded") + +/proc/enable_debugging(mode, port) + CRASH("auxtools not loaded") + +/world/Del() + var/debug_server = world.GetConfig("env", "AUXTOOLS_DEBUG_DLL") + if (debug_server) + call(debug_server, "auxtools_shutdown")() + . = ..() + +// CHOMPStation Add End: Spaceman DMM Debugger diff --git a/code/global.dm b/code/global.dm index 2270f276f6..fd8183a714 100644 --- a/code/global.dm +++ b/code/global.dm @@ -145,7 +145,6 @@ var/list/robot_module_types = list( "Miner", "Janitor", "Service", "Clerical", "Security", "Research", "Medihound", "K9", "Janihound", "Sci-borg", "Pupdozer", "Service-Hound", "BoozeHound", "KMine", "TraumaHound" - , "UnityHound", "Honk-Hound" // CHOMPEdit -- Adds the UnityHound drone to the list. ) // List of modules added during code red var/list/emergency_module_types = list( diff --git a/code/modules/admin/DB ban/functions.dm b/code/modules/admin/DB ban/functions.dm index 19e1bc5093..1f1e3aea4e 100644 --- a/code/modules/admin/DB ban/functions.dm +++ b/code/modules/admin/DB ban/functions.dm @@ -283,7 +283,8 @@ output += "" - output += "
Add custom ban: (ONLY use this if you can't ban through any other method)" + output += "[HrefTokenFormField()]" + output += "Add custom ban: (ONLY use this if you can't ban through any other method)" output += "" output += "" output += "" output += "
Ban type:
" - output += "
Search:" + output += "[HrefTokenFormField()]" + output += "" output += "" output += "" diff --git a/code/modules/ai/ai_holder_targeting.dm b/code/modules/ai/ai_holder_targeting.dm index bec114ff34..52ebc7294f 100644 --- a/code/modules/ai/ai_holder_targeting.dm +++ b/code/modules/ai/ai_holder_targeting.dm @@ -70,10 +70,10 @@ // Step 4, give us our selected target. /datum/ai_holder/proc/give_target(new_target, urgent = FALSE) ai_log("give_target() : Given '[new_target]', urgent=[urgent].", AI_LOG_TRACE) - + if(target) remove_target() - + target = new_target if(target != null) @@ -282,7 +282,7 @@ // Checks to see if an atom attacked us lately /datum/ai_holder/proc/check_attacker(var/atom/movable/A) - return (A in attackers) + return (A.name in attackers) // We were attacked by this thing recently /datum/ai_holder/proc/add_attacker(var/atom/movable/A) diff --git a/code/modules/ai/ai_holder_targeting_vr.dm b/code/modules/ai/ai_holder_targeting_vr.dm index 4c7ef85403..10bbd99a05 100644 --- a/code/modules/ai/ai_holder_targeting_vr.dm +++ b/code/modules/ai/ai_holder_targeting_vr.dm @@ -3,3 +3,14 @@ return FALSE return ..() +/* +/datum/ai_holder/can_see_target(atom/movable/the_target, view_range = vision_range) + log_world("TARGET: [the_target] and TARGET.LOC: [the_target.loc]") + if(the_target && !isturf(the_target.loc)) //CHOMPEdit, AI shouldn't be targetting people inside objects of any kind + if(ismecha(the_target.loc)) //Except mechs, of course + target = the_target.loc + else + return FALSE + + return ..() +*/ \ No newline at end of file diff --git a/code/modules/client/preference_setup/general/03_body.dm b/code/modules/client/preference_setup/general/03_body.dm index dd6e247f78..353d5ea49e 100644 --- a/code/modules/client/preference_setup/general/03_body.dm +++ b/code/modules/client/preference_setup/general/03_body.dm @@ -896,9 +896,10 @@ var/global/list/valid_bloodtypes = list("A+", "A-", "B+", "B-", "AB+", "AB-", "O /* VOREStation Removal - No markings whitelist, let people mix/match for(var/M in usable_markings) var/datum/sprite_accessory/S = usable_markings[M] + var/datum/species/spec = GLOB.all_species[pref.species] if(!S.species_allowed.len) continue - else if(!(pref.species in S.species_allowed)) + else if(!(pref.species in S.species_allowed) && !(pref.custom_base in S.species_allowed) && !(spec.base_species in S.species_allowed)) usable_markings -= M */ //VOREStation Removal End var/new_marking = tgui_input_list(user, "Choose a body marking:", "Character Preference", usable_markings) diff --git a/code/modules/client/preference_setup/global/setting_datums.dm b/code/modules/client/preference_setup/global/setting_datums.dm index 0c66e7ac66..e9f4de8bda 100644 --- a/code/modules/client/preference_setup/global/setting_datums.dm +++ b/code/modules/client/preference_setup/global/setting_datums.dm @@ -157,6 +157,12 @@ var/list/_client_preferences_by_type enabled_description = "Audible" disabled_description = "Silent" +/datum/client_preference/looping_alarms // CHOMPStation Add: Looping Alarms + description ="Looping Alarm Sounds" + key = "SOUND_ALARMLOOP" + enabled_description = "Audible" + disabled_description = "Silent" + /datum/client_preference/old_door_sounds description ="Old Door Sounds" key = "SOUND_OLDDOORS" @@ -375,6 +381,14 @@ var/list/_client_preferences_by_type key = "RECEIVE_TIPS" enabled_description = "Enabled" disabled_description = "Disabled" + +/datum/client_preference/pain_frequency + description = "Pain Messages Cooldown" + key = "PAIN_FREQUENCY" + enabled_by_default = FALSE + enabled_description = "Extended" + disabled_description = "Default" + /******************** * Staff Preferences * diff --git a/code/modules/client/preference_setup/loadout/loadout_general.dm b/code/modules/client/preference_setup/loadout/loadout_general.dm index 53caa5bc8b..8f48544039 100644 --- a/code/modules/client/preference_setup/loadout/loadout_general.dm +++ b/code/modules/client/preference_setup/loadout/loadout_general.dm @@ -57,6 +57,7 @@ // look if theres a better way to do this im all ears blacklisted_types += subtypesof(/obj/item/toy/plushie/therapy) blacklisted_types += subtypesof(/obj/item/toy/plushie/fluff) + blacklisted_types += /obj/item/toy/plushie/borgplushie/drake //VOREStation addition for(var/obj/item/toy/plushie/plushie_type as anything in subtypesof(/obj/item/toy/plushie) - blacklisted_types) plushies[initial(plushie_type.name)] = plushie_type gear_tweaks += new/datum/gear_tweak/path(sortAssoc(plushies)) diff --git a/code/modules/client/preference_setup/loadout/loadout_head_vr.dm b/code/modules/client/preference_setup/loadout/loadout_head_vr.dm index 62794cbf45..2d4c242ae6 100644 --- a/code/modules/client/preference_setup/loadout/loadout_head_vr.dm +++ b/code/modules/client/preference_setup/loadout/loadout_head_vr.dm @@ -72,6 +72,22 @@ ..() gear_tweaks += gear_tweak_free_color_choice +/datum/gear/head/halo/alt + display_name = "halo, alt" + path = /obj/item/clothing/head/halo/alt + +/datum/gear/head/buckethat + display_name = "hat, bucket" + path = /obj/item/clothing/head/buckethat + +/datum/gear/head/buckethat/New() + ..() + gear_tweaks += gear_tweak_free_color_choice + +/datum/gear/head/nonla + display_name = "hat, non la" + path = /obj/item/clothing/head/nonla + /* Talon hats */ diff --git a/code/modules/client/preference_setup/loadout/loadout_mask.dm b/code/modules/client/preference_setup/loadout/loadout_mask.dm index 600683d043..0d82eb0efa 100644 --- a/code/modules/client/preference_setup/loadout/loadout_mask.dm +++ b/code/modules/client/preference_setup/loadout/loadout_mask.dm @@ -74,4 +74,11 @@ for(var/gaiter in typesof(/obj/item/clothing/accessory/gaiter)) var/obj/item/clothing/accessory/gaiter_type = gaiter gaiters[initial(gaiter_type.name)] = gaiter_type - gear_tweaks += new/datum/gear_tweak/path(sortTim(gaiters, /proc/cmp_text_asc)) \ No newline at end of file + gear_tweaks += new/datum/gear_tweak/path(sortTim(gaiters, /proc/cmp_text_asc)) + +/datum/gear/mask/lace + display_name = "lace veil" + path = /obj/item/clothing/mask/lacemask + +/datum/gear/mask/lace/New() + gear_tweaks += gear_tweak_free_color_choice \ No newline at end of file diff --git a/code/modules/client/preference_setup/loadout/loadout_shoes_vr.dm b/code/modules/client/preference_setup/loadout/loadout_shoes_vr.dm index a7fd80961b..95ca1c9414 100644 --- a/code/modules/client/preference_setup/loadout/loadout_shoes_vr.dm +++ b/code/modules/client/preference_setup/loadout/loadout_shoes_vr.dm @@ -30,5 +30,9 @@ path = /obj/item/clothing/shoes/boots/singer/yellow /datum/gear/shoes/antediluvian - display_name = "antediluvian legwraps" - path = /obj/item/clothing/shoes/antediluvian \ No newline at end of file + display_name = "legwraps, antediluvian" + path = /obj/item/clothing/shoes/antediluvian + +/datum/gear/shoes/flats/alt + display_name = "flats, alt" + path = /obj/item/clothing/shoes/flats/white/color/alt \ No newline at end of file diff --git a/code/modules/client/preference_setup/loadout/loadout_suit_vr.dm b/code/modules/client/preference_setup/loadout/loadout_suit_vr.dm index 23bb1afa94..43eaf0986a 100644 --- a/code/modules/client/preference_setup/loadout/loadout_suit_vr.dm +++ b/code/modules/client/preference_setup/loadout/loadout_suit_vr.dm @@ -225,4 +225,96 @@ Talon winter coat "blue mantle"=/obj/item/clothing/accessory/poncho/roles/cloak/mantle/hop, "gold mantle"=/obj/item/clothing/accessory/poncho/roles/cloak/mantle/cap ) - gear_tweaks += new/datum/gear_tweak/path(mantles) \ No newline at end of file + gear_tweaks += new/datum/gear_tweak/path(mantles) + +//Boat cloaks +/datum/gear/suit/roles/boatcloak + display_name = "boat cloak, colorable" + path = /obj/item/clothing/accessory/poncho/roles/cloak/boat + +/datum/gear/suit/roles/boatcloak/New() + gear_tweaks += gear_tweak_free_color_choice + +/datum/gear/suit/roles/capboatcloak + display_name = "boat cloak, site manager" + path = /obj/item/clothing/accessory/poncho/roles/cloak/boat/cap + allowed_roles = list("Site Manager") + +/datum/gear/suit/roles/hopboatcloak + display_name = "boat cloak, head of personnel" + path = /obj/item/clothing/accessory/poncho/roles/cloak/boat/hop + allowed_roles = list("Head of Personnel") + +/datum/gear/suit/roles/boatcloaks + display_name = "boat cloak selection" + path = /obj/item/clothing/accessory/poncho/roles/cloak/boat/security + +/datum/gear/suit/roles/boatcloaks/New() + ..() + var/list/boatcloaks = list( + "security boat cloak"=/obj/item/clothing/accessory/poncho/roles/cloak/boat/security, + "engineering boat cloak"=/obj/item/clothing/accessory/poncho/roles/cloak/boat/engineering, + "atmospherics boat cloak"=/obj/item/clothing/accessory/poncho/roles/cloak/boat/atmos, + "medical boat cloak"=/obj/item/clothing/accessory/poncho/roles/cloak/boat/medical, + "service boat cloak"=/obj/item/clothing/accessory/poncho/roles/cloak/boat/service, + "cargo boat cloak"=/obj/item/clothing/accessory/poncho/roles/cloak/boat/cargo, + "mining boat cloak"=/obj/item/clothing/accessory/poncho/roles/cloak/boat/mining, + "research boat cloak"=/obj/item/clothing/accessory/poncho/roles/cloak/boat/science + ) + gear_tweaks += new/datum/gear_tweak/path(boatcloaks) + +//Shrouds +/datum/gear/suit/roles/shroud + display_name = "shroud, colorable" + path = /obj/item/clothing/accessory/poncho/roles/cloak/shroud + +/datum/gear/suit/roles/shroud/New() + gear_tweaks += gear_tweak_free_color_choice + +/datum/gear/suit/roles/capshroud + display_name = "shroud, site manager" + path = /obj/item/clothing/accessory/poncho/roles/cloak/shroud/cap + allowed_roles = list("Site Manager") + +/datum/gear/suit/roles/hopshroud + display_name = "shroud, head of personnel" + path = /obj/item/clothing/accessory/poncho/roles/cloak/shroud/hop + allowed_roles = list("Head of Personnel") + +/datum/gear/suit/roles/shrouds + display_name = "shroud selection" + path = /obj/item/clothing/accessory/poncho/roles/cloak/shroud/security + +/datum/gear/suit/roles/shrouds/New() + ..() + var/list/shrouds = list( + "security shroud"=/obj/item/clothing/accessory/poncho/roles/cloak/shroud/security, + "engineering shroud"=/obj/item/clothing/accessory/poncho/roles/cloak/shroud/engineering, + "atmospherics shroud"=/obj/item/clothing/accessory/poncho/roles/cloak/shroud/atmos, + "medical shroud"=/obj/item/clothing/accessory/poncho/roles/cloak/shroud/medical, + "service shroud"=/obj/item/clothing/accessory/poncho/roles/cloak/shroud/service, + "cargo shroud"=/obj/item/clothing/accessory/poncho/roles/cloak/shroud/cargo, + "mining shroud"=/obj/item/clothing/accessory/poncho/roles/cloak/shroud/mining, + "research shroud"=/obj/item/clothing/accessory/poncho/roles/cloak/shroud/science + ) + gear_tweaks += new/datum/gear_tweak/path(shrouds) + +//Actually colorable hoodies +/datum/gear/suit/roles/choodies + display_name = "hoodie selection, colorable" + path = /obj/item/clothing/suit/storage/hooded/toggle/colorable + +/datum/gear/suit/roles/choodies/New() + ..() + var/list/choodies = list( + "normal hoodie"=/obj/item/clothing/suit/storage/hooded/toggle/colorable, + "sleeveless hoodie"=/obj/item/clothing/suit/storage/hooded/toggle/colorable/sleeveless, + "cropped hoodie"=/obj/item/clothing/suit/storage/hooded/toggle/colorable/cropped + ) + gear_tweaks += gear_tweak_free_color_choice + gear_tweaks += new/datum/gear_tweak/path(choodies) + +//ABOUT TIME SOMEONE ADDED THIS TO A LOADOUT +/datum/gear/suit/bladerunnercoat + display_name = "leather coat, massive" + path = /obj/item/clothing/suit/storage/bladerunner \ No newline at end of file diff --git a/code/modules/client/preference_setup/loadout/loadout_uniform_vr.dm b/code/modules/client/preference_setup/loadout/loadout_uniform_vr.dm index 980cad6c51..b554e951f2 100644 --- a/code/modules/client/preference_setup/loadout/loadout_uniform_vr.dm +++ b/code/modules/client/preference_setup/loadout/loadout_uniform_vr.dm @@ -346,4 +346,27 @@ Talon jumpsuit /datum/gear/uniform/antediluvianalt display_name = "corset, antediluvian alt" - path = /obj/item/clothing/under/dress/antediluvian/sheerless \ No newline at end of file + path = /obj/item/clothing/under/dress/antediluvian/sheerless + +//Colorable skirts +/datum/gear/uniform/coloredskirts + display_name = "skirt selection, colorable" + path = /obj/item/clothing/under/skirt/colorable + +/datum/gear/uniform/coloredskirts/New() + ..() + var/list/skirts = list( + "casual skirt"=/obj/item/clothing/under/skirt/colorable, + "puffy skirt"=/obj/item/clothing/under/skirt/colorable/puffy, + "skater skirt"=/obj/item/clothing/under/skirt/colorable/skater, + "pleated skirt"=/obj/item/clothing/under/skirt/colorable/pleated, + "pencil skirt"=/obj/item/clothing/under/skirt/colorable/pencil, + "plaid skirt"=/obj/item/clothing/under/skirt/colorable/plaid, + "tube skirt"=/obj/item/clothing/under/skirt/colorable/tube, + "long skirt"=/obj/item/clothing/under/skirt/colorable/long, + "high skirt"=/obj/item/clothing/under/skirt/colorable/high, + "swept skirt"=/obj/item/clothing/under/skirt/colorable/swept, + "jumper skirt"=/obj/item/clothing/under/skirt/colorable/jumper, + "jumper dress"=/obj/item/clothing/under/skirt/colorable/jumperdress + ) + gear_tweaks += list(new/datum/gear_tweak/path(skirts), gear_tweak_free_color_choice) \ No newline at end of file diff --git a/code/modules/client/preference_setup/vore/02_size.dm b/code/modules/client/preference_setup/vore/02_size.dm index 6e5bb0f6ba..e741c385e3 100644 --- a/code/modules/client/preference_setup/vore/02_size.dm +++ b/code/modules/client/preference_setup/vore/02_size.dm @@ -17,6 +17,7 @@ var/offset_override = FALSE //CHOMPEdit var/voice_freq = 42500 //CHOMPEdit - Why was the default 0 var/voice_sound = "goon speak 1" //CHOMPEdit - Changed the default voice to one less jarring + var/custom_speech_bubble = "default" // Definition of the stuff for Sizing /datum/category_item/player_setup_item/vore/size @@ -32,6 +33,7 @@ S["offset_override"] >> pref.offset_override //CHOMPEdit S["voice_freq"] >> pref.voice_freq S["voice_sound"] >> pref.voice_sound + S["custom_speech_bubble"] >> pref.custom_speech_bubble /datum/category_item/player_setup_item/vore/size/save_character(var/savefile/S) S["size_multiplier"] << pref.size_multiplier @@ -42,6 +44,7 @@ S["offset_override"] << pref.offset_override //CHOMPEdit S["voice_freq"] << pref.voice_freq S["voice_sound"] << pref.voice_sound + S["custom_speech_bubble"] << pref.custom_speech_bubble /datum/category_item/player_setup_item/vore/size/sanitize_character() @@ -54,6 +57,8 @@ pref.voice_freq = sanitize_integer(pref.voice_freq, MIN_VOICE_FREQ, MAX_VOICE_FREQ, initial(pref.fuzzy)) if(pref.size_multiplier == null || pref.size_multiplier < RESIZE_TINY || pref.size_multiplier > RESIZE_HUGE) pref.size_multiplier = initial(pref.size_multiplier) + if(!(pref.custom_speech_bubble in selectable_speech_bubbles)) + pref.custom_speech_bubble = "default" /datum/category_item/player_setup_item/vore/size/copy_to_mob(var/mob/living/carbon/human/character) character.weight = pref.weight_vr @@ -95,6 +100,7 @@ character.voice_sounds_list = goon_speak_roach_sound if("goon speak skelly") character.voice_sounds_list = goon_speak_skelly_sound + character.custom_speech_bubble = pref.custom_speech_bubble /datum/category_item/player_setup_item/vore/size/content(var/mob/user) . += "
" @@ -103,7 +109,8 @@ . += "Scaling Center:[pref.offset_override ? "Odd" : "Even"]
" //CHOMPEdit . += "Voice Frequency:[pref.voice_freq]
" . += "Voice Sounds:[pref.voice_sound]
" -// . += "Test Voice:
" Maybe later + . += "Test Selected Voice
" + . += "Custom Speech Bubble:[pref.custom_speech_bubble]
" . += "
" . += "Relative Weight:[pref.weight_vr]
" . += "Weight Gain Rate:[pref.weight_gain]
" @@ -200,8 +207,48 @@ pref.voice_sound = "goon speak 1" //CHOMPEdit - Defaults voice to a less jarring sound else pref.voice_sound = choice - /* Maybe later + return TOPIC_REFRESH + else if(href_list["customize_speech_bubble"]) + var/choice = tgui_input_list(usr, "What speech bubble style do you want to use? (default for automatic selection)", "Custom Speech Bubble", selectable_speech_bubbles) + if(!choice) + pref.custom_speech_bubble = "default" + else + pref.custom_speech_bubble = choice + return TOPIC_REFRESH + else if(href_list["voice_test"]) - SEND_SOUND(user, sound(pick(voice_sounds_list), 50, frequency = pref.voice_freq)) - */ - return ..(); + var/sound/S = pick(pref.voice_sound) + switch(pref.voice_sound) + if("beep-boop") + S = sound(pick(talk_sound)) + if("goon speak 1") + S = sound(pick(goon_speak_one_sound)) + if("goon speak 2") + S = sound(pick(goon_speak_two_sound)) + if("goon speak 3") + S = sound(pick(goon_speak_three_sound)) + if("goon speak 4") + S = sound(pick(goon_speak_four_sound)) + if("goon speak blub") + S = sound(pick(goon_speak_blub_sound)) + if("goon speak bottalk") + S = sound(pick(goon_speak_bottalk_sound)) + if("goon speak buwoo") + S = sound(pick(goon_speak_buwoo_sound)) + if("goon speak cow") + S = sound(pick(goon_speak_cow_sound)) + if("goon speak lizard") + S = sound(pick(goon_speak_lizard_sound)) + if("goon speak pug") + S = sound(pick(goon_speak_pug_sound)) + if("goon speak pugg") + S = sound(pick(goon_speak_pugg_sound)) + if("goon speak roach") + S = sound(pick(goon_speak_roach_sound)) + if("goon speak skelly") + S = sound(pick(goon_speak_skelly_sound)) + S.frequency = pick(pref.voice_freq) + S.volume = 50 + SEND_SOUND(user, S) + + return ..(); \ No newline at end of file diff --git a/code/modules/client/preference_setup/vore/08_nif.dm b/code/modules/client/preference_setup/vore/08_nif.dm index c618341344..d502fb447b 100644 --- a/code/modules/client/preference_setup/vore/08_nif.dm +++ b/code/modules/client/preference_setup/vore/08_nif.dm @@ -26,6 +26,9 @@ pref.nif_path = null //Kill! WARNING("Loaded a NIF but it was an invalid path, [pref.real_name]") + if (ispath(pref.nif_path, /obj/item/device/nif/protean) && pref.species != SPECIES_PROTEAN) //no free nifs + pref.nif_path = null + if(ispath(pref.nif_path) && isnull(pref.nif_durability)) //How'd you lose this? pref.nif_durability = initial(pref.nif_path.durability) //Well, have a new one, my bad. WARNING("Loaded a NIF but with no durability, [pref.real_name]") diff --git a/code/modules/client/preferences.dm b/code/modules/client/preferences.dm index d742bd9b60..cc8716c0a2 100644 --- a/code/modules/client/preferences.dm +++ b/code/modules/client/preferences.dm @@ -413,6 +413,7 @@ var/list/preferences_datums = list() var/name var/nickname //vorestation edit - This set appends nicknames to the save slot var/list/charlist = list() + var/default //VOREStation edit for(var/i=1, i<= config.character_slots, i++) S.cd = "/character[i]" S["real_name"] >> name @@ -423,10 +424,12 @@ var/list/preferences_datums = list() name = "►[i] - [name]" else name = "[i] - [name]" + if (i == default_slot) //VOREStation edit + default = "[name][nickname ? " ([nickname])" : ""]" charlist["[name][nickname ? " ([nickname])" : ""]"] = i selecting_slots = TRUE - var/choice = tgui_input_list(user, "Select a character to load:", "Load Slot", charlist) + var/choice = tgui_input_list(user, "Select a character to load:", "Load Slot", charlist, default) selecting_slots = FALSE if(!choice) return diff --git a/code/modules/client/preferences_ch.dm b/code/modules/client/preferences_ch.dm new file mode 100644 index 0000000000..b020257736 --- /dev/null +++ b/code/modules/client/preferences_ch.dm @@ -0,0 +1,14 @@ +/client/verb/toggle_looping_alarms() + set name = "Looping Alarms" + set category = "Preferences" + set desc = "Toggles alarm sound loops." + + var/pref_path = /datum/client_preference/looping_alarms + + toggle_preference(pref_path) + + to_chat(src, "You will [ (is_preference_enabled(pref_path)) ? "now" : "no longer"] hear alarm sounds looping.") + + SScharacter_setup.queue_preferences_save(prefs) + + feedback_add_details("admin_verb","TAlarmLoops") //If you are copy-pasting this, ensure the 2nd parameter is unique to the new proc! diff --git a/code/modules/client/preferences_vr.dm b/code/modules/client/preferences_vr.dm index 330b9b6f36..8ac78b09f0 100644 --- a/code/modules/client/preferences_vr.dm +++ b/code/modules/client/preferences_vr.dm @@ -135,3 +135,18 @@ toggle_preference(pref_path) to_chat(src, "You are [ (is_preference_enabled(pref_path)) ? "now" : "no longer"] periodically receiving advice on gameplay and roleplay.") + + SScharacter_setup.queue_preferences_save(prefs) + + feedback_add_details("admin_verb", "TReceivePlayerTips") + +/client/verb/toggle_pain_frequency() + set name = "Toggle Pain Frequency" + set category = "Preferences" + set desc = "When toggled on, increases the cooldown of pain messages sent to chat for minor injuries" + + var/pref_path = /datum/client_preference/pain_frequency + + toggle_preference(pref_path) + + to_chat(src, "The cooldown between pain messages for minor (under 20/5 injury. Multi-limb injuries are still faster) is now [ (is_preference_enabled(pref_path)) ? "extended" : "default"].") diff --git a/code/modules/client/verbs/character_directory.dm b/code/modules/client/verbs/character_directory.dm index ddea49806b..d4441af20b 100644 --- a/code/modules/client/verbs/character_directory.dm +++ b/code/modules/client/verbs/character_directory.dm @@ -34,9 +34,9 @@ GLOBAL_DATUM(character_directory, /datum/character_directory) data["personalVisibility"] = user.mind.show_in_directory data["personalTag"] = user.mind.directory_tag || "Unset" data["personalErpTag"] = user.mind.directory_erptag || "Unset" - data["personalEventTag"] = vantag_choices_list[user.client.prefs.vantag_preference] //CHOMPEdit - data["personalGenderTag"] = user.client.prefs.directory_gendertag || "Unset" // CHOMPStation Edit: Character Directory Update - data["personalSexualityTag"] = user.client.prefs.directory_sexualitytag || "Unset" // CHOMPStation Edit: Character Directory Update + data["personalEventTag"] = vantag_choices_list[user.mind.vantag_preference] //CHOMPEdit + data["personalGenderTag"] = user.mind.directory_gendertag || "Unset" // CHOMPStation Edit: Character Directory Update + data["personalSexualityTag"] = user.mind.directory_sexualitytag || "Unset" // CHOMPStation Edit: Character Directory Update else if (user?.client?.prefs) data["personalVisibility"] = user.client.prefs.show_in_directory data["personalTag"] = user.client.prefs.directory_tag || "Unset" @@ -62,9 +62,9 @@ GLOBAL_DATUM(character_directory, /datum/character_directory) var/species = null var/ooc_notes = null var/flavor_text = null - var/gendertag = C.prefs.directory_gendertag || "Unset" // CHOMPStation Edit: Character Directory Update - var/sexualitytag = C.prefs.directory_sexualitytag || "Unset" // CHOMPStation Edit: Character Directory Update - var/eventtag = vantag_choices_list[C.prefs.vantag_preference] //CHOMPEdit + var/gendertag = null // CHOMPStation Edit: Character Directory Update + var/sexualitytag = null // CHOMPStation Edit: Character Directory Update + var/eventtag = vantag_choices_list[VANTAG_NONE] //CHOMPEdit var/tag var/erptag var/character_ad @@ -72,10 +72,16 @@ GLOBAL_DATUM(character_directory, /datum/character_directory) tag = C.mob.mind.directory_tag || "Unset" erptag = C.mob.mind.directory_erptag || "Unset" character_ad = C.mob.mind.directory_ad + gendertag = C.mob.mind.directory_gendertag || "Unset" + sexualitytag = C.mob.mind.directory_sexualitytag || "Unset" + eventtag = vantag_choices_list[C.mob.mind.vantag_preference] else tag = C.prefs.directory_tag || "Unset" erptag = C.prefs.directory_erptag || "Unset" character_ad = C.prefs.directory_ad + gendertag = C.prefs.directory_gendertag || "Unset" + sexualitytag = C.prefs.directory_sexualitytag || "Unset" + eventtag = vantag_choices_list[C.prefs.vantag_preference] //CHOMPEdit Start if(ishuman(C.mob)) @@ -176,19 +182,6 @@ GLOBAL_DATUM(character_directory, /datum/character_directory) if(!new_tag) return return set_for_mind_or_prefs(user, action, new_tag, can_set_prefs, can_set_mind) - // CHOMPStation Edit Start: Directory Update - if("setGenderTag") - var/list/new_gendertag = tgui_input_list(usr, "Pick a new Gender tag for the character directory. This is YOUR gender, not what you prefer.", "Character Gender Tag", GLOB.char_directory_gendertags) - if(!new_gendertag) - return - usr?.client?.prefs?.directory_gendertag = new_gendertag - return TRUE - if("setSexualityTag") - var/list/new_sexualitytag = tgui_input_list(usr, "Pick a new Sexuality/Orientation tag for the character directory", "Character Sexuality/Orientation Tag", GLOB.char_directory_sexualitytags) - if(!new_sexualitytag) - return - usr?.client?.prefs?.directory_sexualitytag = new_sexualitytag - return TRUE // CHOMPStation Edit End: Directory Update if("setErpTag") var/list/new_erptag = tgui_input_list(usr, "Pick a new ERP tag for the character directory", "Character ERP Tag", GLOB.char_directory_erptags) @@ -209,8 +202,17 @@ GLOBAL_DATUM(character_directory, /datum/character_directory) if(isnull(new_ad)) return return set_for_mind_or_prefs(user, action, new_ad, can_set_prefs, can_set_mind) - //CHOMPEdit start - //CHOMPEdit begin + // CHOMPStation Edit Start: Directory Update + if("setGenderTag") + var/list/new_gendertag = tgui_input_list(usr, "Pick a new Gender tag for the character directory. This is YOUR gender, not what you prefer.", "Character Gender Tag", GLOB.char_directory_gendertags) + if(!new_gendertag) + return + return set_for_mind_or_prefs(user, action, new_gendertag, can_set_prefs, can_set_mind) + if("setSexualityTag") + var/list/new_sexualitytag = tgui_input_list(usr, "Pick a new Sexuality/Orientation tag for the character directory", "Character Sexuality/Orientation Tag", GLOB.char_directory_sexualitytags) + if(!new_sexualitytag) + return + return set_for_mind_or_prefs(user, action, new_sexualitytag, can_set_prefs, can_set_mind) if("setEventTag") var/list/names_list = list() for(var/C in vantag_choices_list) @@ -218,9 +220,8 @@ GLOBAL_DATUM(character_directory, /datum/character_directory) var/list/new_eventtag = input(usr, "Pick your preference for event involvement", "Event Preference Tag", usr?.client?.prefs?.vantag_preference) as null|anything in names_list if(!new_eventtag) return - usr?.client?.prefs?.vantag_preference = names_list[new_eventtag] - return TRUE - //CHOMPEdit end + return set_for_mind_or_prefs(user, action, names_list[new_eventtag], can_set_prefs, can_set_mind) + //CHOMPEdit end /datum/character_directory/proc/set_for_mind_or_prefs(mob/user, action, new_value, can_set_prefs, can_set_mind) can_set_prefs &&= !!user.client.prefs @@ -253,3 +254,18 @@ GLOBAL_DATUM(character_directory, /datum/character_directory) if (can_set_mind) user.mind.directory_ad = new_value return TRUE + if ("setEventTag") + if (can_set_prefs) + user.client.prefs.vantag_preference = new_value + if (can_set_mind) + user.mind.vantag_preference = new_value + if ("setGenderTag") + if (can_set_prefs) + user.client.prefs.directory_gendertag = new_value + if (can_set_mind) + user.mind.directory_gendertag = new_value + if ("setSexualityTag") + if (can_set_prefs) + user.client.prefs.directory_sexualitytag = new_value + if (can_set_mind) + user.mind.directory_sexualitytag = new_value \ No newline at end of file diff --git a/code/modules/clothing/clothing.dm b/code/modules/clothing/clothing.dm index 2d5c26e984..da3706dcfb 100644 --- a/code/modules/clothing/clothing.dm +++ b/code/modules/clothing/clothing.dm @@ -214,7 +214,8 @@ throwforce = 2 slot_flags = SLOT_EARS sprite_sheets = list( - SPECIES_TESHARI = 'icons/inventory/ears/mob_teshari.dmi') + SPECIES_TESHARI = 'icons/inventory/ears/mob_teshari.dmi', + SPECIES_VOX = 'icons/inventory/hands/mob_vox.dmi') /obj/item/clothing/ears/attack_hand(mob/user as mob) if (!user) return @@ -473,7 +474,7 @@ /obj/item/clothing/head/proc/update_flashlight(var/mob/user = null) set_light_on(!light_on) - + if(light_system == STATIC_LIGHT) update_light() @@ -786,7 +787,7 @@ var/image/standing = ..() if(taurized) //Special snowflake var on suits standing.pixel_x = -16 - standing.layer = BODY_LAYER + 17 // 17 is above tail layer, so will not be covered by taurbody. TAIL_UPPER_LAYER +1 + standing.layer = BODY_LAYER + 18 // 17 is above tail layer, so will not be covered by taurbody. TAIL_UPPER_LAYER +1 return standing /obj/item/clothing/suit/apply_accessories(var/image/standing) @@ -828,7 +829,7 @@ var/rolled_down = -1 //0 = unrolled, 1 = rolled, -1 = cannot be toggled var/rolled_down_icon_override = TRUE var/rolled_sleeves = -1 //0 = unrolled, 1 = rolled, -1 = cannot be toggled - var/rolled_sleeves_icon_override = TRUE + var/rolled_sleeves_icon_override = TRUE sprite_sheets = list( SPECIES_TESHARI = 'icons/inventory/uniform/mob_teshari.dmi', SPECIES_VOX = 'icons/inventory/uniform/mob_vox.dmi' @@ -1058,10 +1059,10 @@ /obj/item/clothing/under/rank/New() sensor_mode = pick(0,1,2,3) ..() - + //Vorestation edit - eject mobs from clothing before deletion /obj/item/clothing/Destroy() for(var/mob/living/M in contents) M.forceMove(get_turf(src)) return ..() -//Vorestation edit end +//Vorestation edit end diff --git a/code/modules/clothing/clothing_vr.dm b/code/modules/clothing/clothing_vr.dm index fe3f99c947..b56e84921e 100644 --- a/code/modules/clothing/clothing_vr.dm +++ b/code/modules/clothing/clothing_vr.dm @@ -100,6 +100,7 @@ /obj/item/clothing/ears sprite_sheets = list( SPECIES_TESHARI = 'icons/inventory/ears/mob_teshari.dmi', + SPECIES_VOX = 'icons/inventory/ears/mob_vox.dmi', SPECIES_WEREBEAST = 'icons/inventory/ears/mob_vr_werebeast.dmi') /obj/item/clothing/relaymove(var/mob/living/user,var/direction) diff --git a/code/modules/clothing/glasses/glasses_vr.dm b/code/modules/clothing/glasses/glasses_vr.dm index 880547db4b..b573fbee34 100644 --- a/code/modules/clothing/glasses/glasses_vr.dm +++ b/code/modules/clothing/glasses/glasses_vr.dm @@ -122,6 +122,7 @@ item_state = "tajblind" prescription = 1 body_parts_covered = EYES + sprite_sheets = list(SPECIES_VOX = 'icons/inventory/eyes/mob_vox.dmi') /obj/item/clothing/glasses/hud/health/tajblind name = "lightweight veil" @@ -131,6 +132,7 @@ icon_state = "tajblind_med" item_state = "tajblind_med" body_parts_covered = EYES + sprite_sheets = list(SPECIES_VOX = 'icons/inventory/eyes/mob_vox.dmi') /obj/item/clothing/glasses/sunglasses/sechud/tajblind name = "sleek veil" @@ -141,6 +143,7 @@ item_state = "tajblind_sec" prescription = 1 body_parts_covered = EYES + sprite_sheets = list(SPECIES_VOX = 'icons/inventory/eyes/mob_vox.dmi') /obj/item/clothing/glasses/meson/prescription/tajblind name = "industrial veil" @@ -151,6 +154,7 @@ item_state = "tajblind_meson" off_state = "tajblind" body_parts_covered = EYES + sprite_sheets = list(SPECIES_VOX = 'icons/inventory/eyes/mob_vox.dmi') /obj/item/clothing/glasses/material/prescription/tajblind name = "mining veil" @@ -161,6 +165,7 @@ item_state = "tajblind_meson" off_state = "tajblind" body_parts_covered = EYES + sprite_sheets = list(SPECIES_VOX = 'icons/inventory/eyes/mob_vox.dmi') /obj/item/clothing/glasses sprite_sheets = list( diff --git a/code/modules/clothing/head/hood_vr.dm b/code/modules/clothing/head/hood_vr.dm index 442e9eefea..fe11d5a900 100644 --- a/code/modules/clothing/head/hood_vr.dm +++ b/code/modules/clothing/head/hood_vr.dm @@ -76,3 +76,20 @@ /obj/item/clothing/head/hood/winter sprite_sheets = list( SPECIES_TESHARI = 'icons/inventory/head/mob_vr_teshari.dmi', SPECIES_VOX = 'icons/inventory/head/mob_vox.dmi') + +//Better hoodies hood +/obj/item/clothing/head/hood/toggleable + name = "super special hood" + desc = "This hood is so special that you weren't even supposed to lay eyes on it! Tell a developer!" + var/open = FALSE + +/obj/item/clothing/head/hood/toggleable/colorable + name = "hoodie hood" + desc = "It's the hood part of a hoodie. What kind of hoodie would it be without one? A poser, obviously." + icon = 'icons/inventory/head/item_vr.dmi' + icon_override = 'icons/inventory/head/mob_vr.dmi' + icon_state = "choodie" + +/obj/item/clothing/head/hood/toggleable/colorable/update_icon() + . = ..() + icon_state = "[initial(icon_state)][open ? "_open" : ""]" \ No newline at end of file diff --git a/code/modules/clothing/head/misc_vr.dm b/code/modules/clothing/head/misc_vr.dm index 323fa9bcda..bd7cb68db9 100644 --- a/code/modules/clothing/head/misc_vr.dm +++ b/code/modules/clothing/head/misc_vr.dm @@ -96,9 +96,30 @@ /obj/item/clothing/head/wedding name = "wedding veil" desc = "A lace veil worn over the face, typically by a bride during their wedding." - icon_state = "weddingveil" icon = 'icons/inventory/head/item_vr.dmi' icon_override = 'icons/inventory/head/mob_vr.dmi' + icon_state = "weddingveil" + +/obj/item/clothing/head/halo/alt + name = "metal halo" + desc = "A halo made of a light metal. This one doesn't float, but it's still a circle on your head!" + icon = 'icons/inventory/head/item_vr.dmi' + icon_override = 'icons/inventory/head/mob_vr.dmi' + icon_state = "halo_alt" + +/obj/item/clothing/head/buckethat + name = "bucket hat" + desc = "Turns out these are actually called 'gatsby caps' but telling people you wear a bucket is slightly more interesting, so that's what it's called." + icon = 'icons/inventory/head/item_vr.dmi' + icon_override = 'icons/inventory/head/mob_vr.dmi' + icon_state = "buckethat" + +/obj/item/clothing/head/nonla + name = "non la" + desc = "A conical hat typically woven from leaves, good for keeping the sun AND rain off your head, in case it happens to be sunny while raining." + icon = 'icons/inventory/head/item_vr.dmi' + icon_override = 'icons/inventory/head/mob_vr.dmi' + icon_state = "nonla" //////////TALON HATS////////// diff --git a/code/modules/clothing/masks/miscellaneous_vr.dm b/code/modules/clothing/masks/miscellaneous_vr.dm index 7792ecc8e3..f728dc20fe 100644 --- a/code/modules/clothing/masks/miscellaneous_vr.dm +++ b/code/modules/clothing/masks/miscellaneous_vr.dm @@ -1,4 +1,11 @@ /obj/item/clothing/mask/emotions sprite_sheets = list( SPECIES_TESHARI = 'icons/inventory/face/mob_vr_teshari.dmi' - ) \ No newline at end of file + ) + +/obj/item/clothing/mask/lacemask + name = "lace mask" + desc = "A sheer lace mask that rests above the nose and trails down below the chin." + icon = 'icons/inventory/face/item_vr.dmi' + icon_state = "lace_mask" + icon_override = 'icons/inventory/face/mob_vr.dmi' \ No newline at end of file diff --git a/code/modules/clothing/shoes/miscellaneous.dm b/code/modules/clothing/shoes/miscellaneous.dm index 5653d79007..7221f30d8e 100644 --- a/code/modules/clothing/shoes/miscellaneous.dm +++ b/code/modules/clothing/shoes/miscellaneous.dm @@ -144,7 +144,7 @@ item_state_slots = list(slot_r_hand_str = "slippers", slot_l_hand_str = "slippers") /obj/item/clothing/shoes/laceup - name = "black oxford shoes" + name = "black oxford shoes" icon_state = "oxford_black" /obj/item/clothing/shoes/laceup/grey diff --git a/code/modules/clothing/shoes/miscellaneous_vr.dm b/code/modules/clothing/shoes/miscellaneous_vr.dm index 4a4c17d5cf..f7cd8bd097 100644 --- a/code/modules/clothing/shoes/miscellaneous_vr.dm +++ b/code/modules/clothing/shoes/miscellaneous_vr.dm @@ -98,4 +98,11 @@ icon = 'icons/inventory/feet/item_vr.dmi' icon_override = 'icons/inventory/feet/mob_vr.dmi' icon_state = "antediluvian" - item_state = "antediluvian" \ No newline at end of file + item_state = "antediluvian" + +//Alternative flats +/obj/item/clothing/shoes/flats/white/color/alt + icon = 'icons/inventory/feet/item_vr.dmi' + icon_override = 'icons/inventory/feet/mob_vr.dmi' + icon_state = "flatsalt" + item_state = "flatsalt" \ No newline at end of file diff --git a/code/modules/clothing/spacesuits/rig/rig.dm b/code/modules/clothing/spacesuits/rig/rig.dm index 441c584dd1..7d06f0a66c 100644 --- a/code/modules/clothing/spacesuits/rig/rig.dm +++ b/code/modules/clothing/spacesuits/rig/rig.dm @@ -536,7 +536,8 @@ offline = 0 if(istype(wearer) && !wearer.wearing_rig) wearer.wearing_rig = src - slowdown = initial(slowdown) + if(!istype(src,/obj/item/weapon/rig/protean)) //CHOMPEdit - Stupid snowflake protean special check for rig assimilation code + slowdown = initial(slowdown) if(offline) if(offline == 1) @@ -921,9 +922,13 @@ return //CHOMP Addition - Added this for protean living hardsuit + wearer_move_delay = world.time + 2 if(ai_moving) if(!ai_can_move_suit(user, check_user_module = 1)) return + // AIs are a bit slower than regular and ignore move intent. + //CHOMPEdit - Moved this to where it's relevant + wearer_move_delay = world.time + ai_controlled_move_delay //This is sota the goto stop mobs from moving var if(wearer.transforming || !wearer.canmove) @@ -955,9 +960,6 @@ to_chat(src, "Your host is pinned to a wall by [wearer.pinned[1]]!") return 0 - // AIs are a bit slower than regular and ignore move intent. - wearer_move_delay = world.time + ai_controlled_move_delay - if(istype(wearer.buckled, /obj/vehicle)) //manually set move_delay for vehicles so we don't inherit any mob movement penalties //specific vehicle move delays are set in code\modules\vehicles\vehicle.dm diff --git a/code/modules/clothing/suits/hooded.dm b/code/modules/clothing/suits/hooded.dm index 0921d3b07b..eba5cb2b37 100644 --- a/code/modules/clothing/suits/hooded.dm +++ b/code/modules/clothing/suits/hooded.dm @@ -32,8 +32,8 @@ ..() /obj/item/clothing/suit/storage/hooded/proc/RemoveHood() - icon_state = toggleicon hood_up = FALSE + update_icon() hood.canremove = TRUE // This shouldn't matter anyways but just incase. if(ishuman(hood.loc)) var/mob/living/carbon/H = hood.loc @@ -55,16 +55,20 @@ to_chat(H, "You're already wearing something on your head!") return else + if(color != hood.color) + hood.color = color H.equip_to_slot_if_possible(hood,slot_head,0,0,1) hood_up = TRUE hood.canremove = FALSE - icon_state = "[toggleicon]_t" + update_icon() H.update_inv_wear_suit() - if(color != hood.color) - hood.color = color else RemoveHood() +/obj/item/clothing/suit/storage/hooded/update_icon() + . = ..() + icon_state = "[toggleicon][hood_up ? "_t" : ""]" + /obj/item/clothing/suit/storage/hooded/costume body_parts_covered = UPPER_TORSO|LOWER_TORSO|ARMS flags_inv = HIDEJUMPSUIT|HIDETIE|HIDEHOLSTER diff --git a/code/modules/clothing/suits/hooded_vr.dm b/code/modules/clothing/suits/hooded_vr.dm index f2e1fc1f4d..f8a0cc46af 100644 --- a/code/modules/clothing/suits/hooded_vr.dm +++ b/code/modules/clothing/suits/hooded_vr.dm @@ -159,3 +159,23 @@ /obj/item/clothing/suit/storage/hooded/wintercoat sprite_sheets = list( SPECIES_TESHARI = 'icons/inventory/suit/mob_vr_teshari.dmi', SPECIES_VOX = 'icons/inventory/suit/mob_vox.dmi') + +//Hoodies worth their weight in gold (as in you can unbutton them and toggle the hood independently) +/obj/item/clothing/suit/storage/hooded/toggle/colorable + name = "hoodie" + desc = "A rather plain hoodie. If you can't find it in your closet, chances are your significant other is borrowing it." + icon = 'icons/inventory/suit/item_vr.dmi' + icon_override = 'icons/inventory/suit/mob_vr.dmi' + icon_state = "choodie" + hoodtype = /obj/item/clothing/head/hood/toggleable/colorable + open = FALSE + +/obj/item/clothing/suit/storage/hooded/toggle/colorable/sleeveless + name = "sleeveless hoodie" + desc = "Either your arms were too hot or the sleeves vaporized when you gave someone a 'gunshow' with your muscles. Either way, the sleeves are missing." + icon_state = "choodie_sleeveless" + +/obj/item/clothing/suit/storage/hooded/toggle/colorable/cropped + name = "cropped hoodie" + desc = "It's not that this is a size too small, you just like showing off your tum. I guess." + icon_state = "choodie_crop" \ No newline at end of file diff --git a/code/modules/clothing/suits/storage.dm b/code/modules/clothing/suits/storage.dm index b962e88e67..7d201bc7d6 100644 --- a/code/modules/clothing/suits/storage.dm +++ b/code/modules/clothing/suits/storage.dm @@ -68,19 +68,27 @@ if(open == 1) //Will check whether icon state is currently set to the "open" or "closed" state and switch it around with a message to the user open = 0 - icon_state = initial(icon_state) + update_icon() flags_inv = HIDETIE|HIDEHOLSTER to_chat(usr, "You button up the coat.") else if(open == 0) open = 1 - icon_state = "[icon_state]_open" + update_icon() flags_inv = HIDEHOLSTER to_chat(usr, "You unbutton the coat.") else //in case some goofy admin switches icon states around without switching the icon_open or icon_closed to_chat(usr, "You attempt to button-up the velcro on your [src], before promptly realising how silly you are.") return - update_clothing_icon() //so our overlays update + if(istype(hood,/obj/item/clothing/head/hood/toggleable)) //checks if a hood (which you should use) is attached + var/obj/item/clothing/head/hood/toggleable/T = hood + T.open = open //copy the jacket's open state to the hood + T.update_icon(usr) //usr as an arg to fix a weird runtime + T.update_clothing_icon() + update_clothing_icon() //so our overlays update +/obj/item/clothing/suit/storage/hooded/toggle/update_icon() + . = ..() + icon_state = "[toggleicon][open ? "_open" : ""][hood_up ? "_t" : ""]" //New Vest 4 pocket storage and badge toggles, until suit accessories are a thing. /obj/item/clothing/suit/storage/vest/heavy/New() diff --git a/code/modules/clothing/under/accessories/accessory_vr.dm b/code/modules/clothing/under/accessories/accessory_vr.dm index 087b669b59..46b4a4233f 100644 --- a/code/modules/clothing/under/accessories/accessory_vr.dm +++ b/code/modules/clothing/under/accessories/accessory_vr.dm @@ -572,3 +572,117 @@ desc = "A shoulder mantle bearing the colors usually found on a Site Manager, a commanding blue with regal gold inlay." icon_state = "capmantle" item_state = "capmantle" + +//Boat cloaks +/obj/item/clothing/accessory/poncho/roles/cloak/boat + name = "boat cloak" + desc = "A cloak that might've been worn on boats once or twice. It's just a flappy cape otherwise." + icon_state = "boatcloak" + item_state = "boatcloak" + +/obj/item/clothing/accessory/poncho/roles/cloak/boat/cap + name = "site manager boat cloak" + icon_state = "capboatcloak" + item_state = "capboatcloak" + +/obj/item/clothing/accessory/poncho/roles/cloak/boat/hop + name = "head of personnel boat cloak" + icon_state = "hopboatcloak" + item_state = "hopboatcloak" + +/obj/item/clothing/accessory/poncho/roles/cloak/boat/security + name = "security boat cloak" + icon_state = "secboatcloak" + item_state = "secboatcloak" + +/obj/item/clothing/accessory/poncho/roles/cloak/boat/engineering + name = "engineering boat cloak" + icon_state = "engboatcloak" + item_state = "engboatcloak" + +/obj/item/clothing/accessory/poncho/roles/cloak/boat/atmos + name = "atmospherics boat cloak" + icon_state = "atmosboatcloak" + item_state = "atmosboatcloak" + +/obj/item/clothing/accessory/poncho/roles/cloak/boat/medical + name = "medical boat cloak" + icon_state = "medboatcloak" + item_state = "medboatcloak" + +/obj/item/clothing/accessory/poncho/roles/cloak/boat/service + name = "service boat cloak" + icon_state = "botboatcloak" + item_state = "botboatcloak" + +/obj/item/clothing/accessory/poncho/roles/cloak/boat/cargo + name = "cargo boat cloak" + icon_state = "supboatcloak" + item_state = "supboatcloak" + +/obj/item/clothing/accessory/poncho/roles/cloak/boat/mining + name = "mining boat cloak" + icon_state = "minboatcloak" + item_state = "minboatcloak" + +/obj/item/clothing/accessory/poncho/roles/cloak/boat/science + name = "research boat cloak" + icon_state = "sciboatcloak" + item_state = "sciboatcloak" + +//Shrouds +/obj/item/clothing/accessory/poncho/roles/cloak/shroud + name = "shroud cape" + desc = "A sharp looking cape that covers more of one side than the other. Just a bit edgy." + icon_state = "shroud" + item_state = "shroud" + +/obj/item/clothing/accessory/poncho/roles/cloak/shroud/cap + name = "site manager shroud" + icon_state = "capshroud" + item_state = "capshroud" + +/obj/item/clothing/accessory/poncho/roles/cloak/shroud/hop + name = "head of personnel shroud" + icon_state = "hopshroud" + item_state = "hopshroud" + +/obj/item/clothing/accessory/poncho/roles/cloak/shroud/security + name = "security shroud" + icon_state = "secshroud" + item_state = "secshroud" + +/obj/item/clothing/accessory/poncho/roles/cloak/shroud/engineering + name = "engineering shroud" + icon_state = "engshroud" + item_state = "engshroud" + +/obj/item/clothing/accessory/poncho/roles/cloak/shroud/atmos + name = "atmospherics shroud" + icon_state = "atmosshroud" + item_state = "atmosshroud" + +/obj/item/clothing/accessory/poncho/roles/cloak/shroud/medical + name = "medical shroud" + icon_state = "medshroud" + item_state = "medshroud" + +/obj/item/clothing/accessory/poncho/roles/cloak/shroud/service + name = "service shroud" + icon_state = "botshroud" + item_state = "botshroud" + +/obj/item/clothing/accessory/poncho/roles/cloak/shroud/cargo + name = "cargo shroud" + icon_state = "supshroud" + item_state = "supshroud" + +/obj/item/clothing/accessory/poncho/roles/cloak/shroud/mining + name = "mining shroud" + icon_state = "minshroud" + item_state = "minshroud" + +/obj/item/clothing/accessory/poncho/roles/cloak/shroud/science + name = "research shroud" + icon_state = "scishroud" + item_state = "scishroud" diff --git a/code/modules/clothing/under/miscellaneous_vr.dm b/code/modules/clothing/under/miscellaneous_vr.dm index 51496674da..196024ef98 100644 --- a/code/modules/clothing/under/miscellaneous_vr.dm +++ b/code/modules/clothing/under/miscellaneous_vr.dm @@ -505,4 +505,85 @@ /obj/item/clothing/under/dress/antediluvian/sheerless desc = "A regal black and gold tight corset with silky sleeves. This one is just the corset and sleeves, sans lace stockings and gloves." - worn_state = "antediluvian_c" \ No newline at end of file + worn_state = "antediluvian_c" + +//Colorable skirts +/obj/item/clothing/under/skirt/colorable + name = "skirt" + desc = "A rather plain looking skirt." + icon = 'icons/inventory/uniform/item_vr.dmi' + default_worn_icon = 'icons/inventory/uniform/mob_vr.dmi' + icon_state = "skirt_casual" + item_state = "skirt_casual" + worn_state = "skirt_casual" + +/obj/item/clothing/under/skirt/colorable/puffy + icon_state = "skirt_puffy" + item_state = "skirt_puffy" + worn_state = "skirt_puffy" + +/obj/item/clothing/under/skirt/colorable/skater + desc = "A skirt with loose frills." + icon_state = "skirt_skater" + item_state = "skirt_skater" + worn_state = "skirt_skater" + +/obj/item/clothing/under/skirt/colorable/pleated + desc = "A short skirt featuring pleat trailing up from the hem." + icon_state = "skirt_pleated" + item_state = "skirt_pleated" + worn_state = "skirt_pleated" + +/obj/item/clothing/under/skirt/colorable/pencil + name = "pencil skirt" + desc = "A short skirt that's almost as thin as a pencil. Almost." + icon_state = "skirt_pencil" + item_state = "skirt_pencil" + worn_state = "skirt_pencil" + +/obj/item/clothing/under/skirt/colorable/plaid + name = "plaid skirt" + desc = "A skirt featuring a plaid pattern." + icon_state = "skirt_plaid" + item_state = "skirt_plaid" + worn_state = "skirt_plaid" + +/obj/item/clothing/under/skirt/colorable/tube + desc = "A long thin skirt that trails beyond the knees." + icon_state = "skirt_tube" + item_state = "skirt_tube" + worn_state = "skirt_tube" + +/obj/item/clothing/under/skirt/colorable/long + name = "long skirt" + icon_state = "skirt_long" + item_state = "skirt_long" + worn_state = "skirt_long" + +/obj/item/clothing/under/skirt/colorable/high + name = "high skirt" + desc = "A skirt that rests at the waist instead of the hips." + icon_state = "skirt_high" + item_state = "skirt_high" + worn_state = "skirt_high" + +/obj/item/clothing/under/skirt/colorable/swept + name = "swept skirt" + desc = "A skirt with an angled hem; shorter on one side, longer on the other, like a sweep." + icon_state = "skirt_swept" + item_state = "skirt_swept" + worn_state = "skirt_swept" + +/obj/item/clothing/under/skirt/colorable/jumper + name = "jumper skirt" + desc = "A skirt that's held up by suspenders." + icon_state = "skirt_jumper" + item_state = "skirt_jumper" + worn_state = "skirt_jumper" + +/obj/item/clothing/under/skirt/colorable/jumperdress + name = "jumper dress" + desc = "A dress held up by suspenders. Not quite a skirt anymore." + icon_state = "skirt_jumperdress" + item_state = "skirt_jumperdress" + worn_state = "skirt_jumperdress" \ No newline at end of file diff --git a/code/modules/emotes/definitions/audible_furry_vr.dm b/code/modules/emotes/definitions/audible_furry_vr.dm index a4b4945836..a3ac8727f9 100644 --- a/code/modules/emotes/definitions/audible_furry_vr.dm +++ b/code/modules/emotes/definitions/audible_furry_vr.dm @@ -198,6 +198,10 @@ emote_sound = pick(smolsound) else emote_sound = pick(bigsound) + else if(istype(user, /mob/living/silicon/pai)) + var/mob/living/silicon/pai/me = user + if(me.chassis == "teppi") + emote_sound = pick(bigsound) else if(user.size_multiplier >= 1.5) emote_sound = pick(bigsound) else diff --git a/code/modules/emotes/definitions/audible_snap.dm b/code/modules/emotes/definitions/audible_snap.dm index d098839f5b..24d78db239 100644 --- a/code/modules/emotes/definitions/audible_snap.dm +++ b/code/modules/emotes/definitions/audible_snap.dm @@ -13,7 +13,14 @@ var/obj/item/organ/external/L = H.get_organ(limb) if(istype(L) && L.is_usable() && !L.splinted) return TRUE - return FALSE + else if(isanimal(user)) //VOREStation Addition Start + var/mob/living/simple_mob/S = user + if(S.has_hands) + return TRUE + else if(ispAI(user)) + return TRUE + else //VOREStation Addition End + return FALSE /decl/emote/audible/snap/do_emote(var/atom/user, var/extra_params) if(!can_snap(user)) diff --git a/code/modules/events/carp_migration.dm b/code/modules/events/carp_migration.dm index 7c4519f2d8..c4161150e3 100644 --- a/code/modules/events/carp_migration.dm +++ b/code/modules/events/carp_migration.dm @@ -7,6 +7,7 @@ /datum/event/carp_migration/setup() if(prob(50)) + log_debug("Carp migration failed successfully.") kill() return announceWhen = rand(30, 60) // 1 to 2 minutes diff --git a/code/modules/events/event_container_vr.dm b/code/modules/events/event_container_vr.dm index 6c1eea9d60..ecc47a09b1 100644 --- a/code/modules/events/event_container_vr.dm +++ b/code/modules/events/event_container_vr.dm @@ -46,6 +46,7 @@ new /datum/event_meta(EVENT_LEVEL_MUNDANE, "Shipping Error", /datum/event/shipping_error , 30, list(ASSIGNMENT_ANY = 2), 0), new /datum/event_meta(EVENT_LEVEL_MUNDANE, "Trivial News", /datum/event/trivial_news, 400), new /datum/event_meta(EVENT_LEVEL_MUNDANE, "Lore News", /datum/event/lore_news, 400), + new /datum/event_meta(EVENT_LEVEL_MUNDANE, "Supply Demand", /datum/event/supply_demand, 0, list(ASSIGNMENT_ANY = 5, ASSIGNMENT_SCIENCE = 15, ASSIGNMENT_GARDENER = 10, ASSIGNMENT_ENGINEER = 10, ASSIGNMENT_MEDICAL = 15), 1, min_jobs = list(ASSIGNMENT_CARGO = 1)), // Spawns mice, lizards, or dud spiderlings new /datum/event_meta(EVENT_LEVEL_MUNDANE, "Vermin Infestation",/datum/event/infestation, 100, list(ASSIGNMENT_ANY = 5, ASSIGNMENT_JANITOR = 100), 1), // Rot only weakens walls, not destroy them @@ -94,6 +95,7 @@ // Radiation, but only in space. new /datum/event_meta(EVENT_LEVEL_MODERATE, "Solar Storm", /datum/event/solar_storm, 20, list(ASSIGNMENT_ENGINEER = 40, ASSIGNMENT_SECURITY = 20), 1), new /datum/event_meta(EVENT_LEVEL_MODERATE, "Spider Infestation", /datum/event/spider_infestation, -20, list(ASSIGNMENT_SECURITY = 30, ASSIGNMENT_HOS = 20, ASSIGNMENT_WARDEN = 20), 0, min_jobs = list(ASSIGNMENT_SECURITY = 1)), + new /datum/event_meta(EVENT_LEVEL_MODERATE, "Supply Demand", /datum/event/supply_demand, 0, list(ASSIGNMENT_ANY = 5, ASSIGNMENT_SCIENCE = 15, ASSIGNMENT_GARDENER = 10, ASSIGNMENT_ENGINEER = 10, ASSIGNMENT_MEDICAL = 15), 1), new /datum/event_meta(EVENT_LEVEL_MODERATE, "Virology Breach", /datum/event/prison_break/virology, 0, list(ASSIGNMENT_MEDICAL = 100), 1, min_jobs = list(ASSIGNMENT_MEDICAL = 1)), new /datum/event_meta(EVENT_LEVEL_MODERATE, "Xenobiology Breach", /datum/event/prison_break/xenobiology, 0, list(ASSIGNMENT_SCIENCE = 100), 1, min_jobs = list(ASSIGNMENT_SCIENTIST = 1), min_jobs = list(ASSIGNMENT_SCIENTIST = 1, ASSIGNMENT_SECURITY =1)), new /datum/event_meta(EVENT_LEVEL_MODERATE, "Jellyfish School", /datum/event/jellyfish_migration, 5, list(ASSIGNMENT_ANY = 1, ASSIGNMENT_SECURITY = 5, ASSIGNMENT_MEDICAL = 3), 1), @@ -116,12 +118,14 @@ available_events = list( new /datum/event_meta(EVENT_LEVEL_MAJOR, "Nothing", /datum/event/nothing, 900), new /datum/event_meta(EVENT_LEVEL_MAJOR, "Atmos Leak", /datum/event/atmos_leak, 5, list(ASSIGNMENT_ENGINEER = 35), 1), - new /datum/event_meta(EVENT_LEVEL_MAJOR, "Blob", /datum/event/blob, -100, list(ASSIGNMENT_SECURITY = 40, ASSIGNMENT_HOS = 10, ASSIGNMENT_WARDEN = 10, ASSIGNMENT_ENGINEER = 5), 1, min_jobs = list(ASSIGNMENT_SECURITY = 3)), + new /datum/event_meta(EVENT_LEVEL_MAJOR, "Blob", /datum/event/blob, -100, list(ASSIGNMENT_SECURITY = 40, ASSIGNMENT_HOS = 10, ASSIGNMENT_WARDEN = 10, ASSIGNMENT_ENGINEER = 5), 1, min_jobs = list(ASSIGNMENT_SECURITY = 1)), new /datum/event_meta(EVENT_LEVEL_MAJOR, "Carp Migration", /datum/event/carp_migration, -110, list(ASSIGNMENT_SECURITY = 50, ASSIGNMENT_HOS = 10, ASSIGNMENT_WARDEN = 10), 1, min_jobs = list(ASSIGNMENT_SECURITY = 3)), new /datum/event_meta(EVENT_LEVEL_MAJOR, "Jellyfish Migration", /datum/event/jellyfish_migration, 5, list(ASSIGNMENT_ANY = 1, ASSIGNMENT_SECURITY = 5, ASSIGNMENT_MEDICAL = 3), 1), - new /datum/event_meta(EVENT_LEVEL_MAJOR, "Meteor Wave", /datum/event/meteor_wave, -110, list(ASSIGNMENT_ENGINEER = 50), 1, min_jobs = list(ASSIGNMENT_ENGINEER = 3)), - new /datum/event_meta(EVENT_LEVEL_MAJOR, "Metroid Infestation", /datum/event/metroid_infestation, -105, list(ASSIGNMENT_SECURITY = 30, ASSIGNMENT_SCIENCE = 20, ASSIGNMENT_HOS = 15, ASSIGNMENT_WARDEN = 15), 1 , min_jobs = list(ASSIGNMENT_SECURITY = 3, ASSIGNMENT_SCIENCE = 1)), + new /datum/event_meta(EVENT_LEVEL_MAJOR, "Meteor Wave", /datum/event/meteor_wave, -90, list(ASSIGNMENT_ENGINEER = 50, ASSIGNMENT_MEDICAL = 10, ASSIGNMENT_ANY = 1), 1, min_jobs = list(ASSIGNMENT_ENGINEER = 1)), + new /datum/event_meta(EVENT_LEVEL_MAJOR, "Metroid Infestation", /datum/event/metroid_infestation, -100, list(ASSIGNMENT_SECURITY = 30, ASSIGNMENT_SCIENCE = 20, ASSIGNMENT_HOS = 15, ASSIGNMENT_WARDEN = 15, ASSIGNMENT_ANY = 2), 1 , min_jobs = list(ASSIGNMENT_SECURITY = 2, ASSIGNMENT_SCIENCE = 1)), new /datum/event_meta(EVENT_LEVEL_MAJOR, "Space Vines", /datum/event/spacevine, 20, list(ASSIGNMENT_ENGINEER = 15), 1), + new /datum/event_meta(EVENT_LEVEL_MAJOR, "Spider Infestation", /datum/event/spider_infestation, -60, list(ASSIGNMENT_SECURITY = 20, ASSIGNMENT_HOS = 10, ASSIGNMENT_WARDEN = 10, ASSIGNMENT_ANY = 3), 0), + new /datum/event_meta(EVENT_LEVEL_MAJOR, "Supply Demand", /datum/event/supply_demand, 0, list(ASSIGNMENT_ANY = 5, ASSIGNMENT_SCIENCE = 15, ASSIGNMENT_GARDENER = 10, ASSIGNMENT_ENGINEER = 10, ASSIGNMENT_MEDICAL = 15), 1, min_jobs = list(ASSIGNMENT_CARGO = 1)), new /datum/event_meta(EVENT_LEVEL_MAJOR, "Viral Infection", /datum/event/viral_infection, -50, list(ASSIGNMENT_MEDICAL = 25), 1, min_jobs = list(ASSIGNMENT_MEDICAL = 2)), ) add_disabled_events(list( @@ -129,7 +133,6 @@ //Needs Xenobio containment breach fixed //new /datum/event_meta(EVENT_LEVEL_MAJOR, "Xenobiology Breach", /datum/event/prison_break/xenobiology, -10, list(ASSIGNMENT_SCIENCE = 30, ASSIGNMENT_ENGINEER = 20), 1), //new /datum/event_meta(EVENT_LEVEL_MAJOR, "Meteor Strike", /datum/event/meteor_strike, 10, list(ASSIGNMENT_ENGINEER = 15), 1), - new /datum/event_meta(EVENT_LEVEL_MAJOR, "Supply Demand", /datum/event/supply_demand, 0, list(ASSIGNMENT_ANY = 5, ASSIGNMENT_SCIENCE = 15, ASSIGNMENT_GARDENER = 10, ASSIGNMENT_ENGINEER = 10, ASSIGNMENT_MEDICAL = 15), 1, min_jobs = list(ASSIGNMENT_CARGO = 1)), )) #undef ASSIGNMENT_ANY diff --git a/code/modules/events/metroid_infestation.dm b/code/modules/events/metroid_infestation.dm index c23e14dd74..99e6a1a292 100644 --- a/code/modules/events/metroid_infestation.dm +++ b/code/modules/events/metroid_infestation.dm @@ -4,11 +4,18 @@ var/spawncount = 1 var/list/vents = list() var/give_positions = 0 + var/active_metroid_event = TRUE /datum/event/metroid_infestation/setup() + if(prob(50)) //50% chance of the event to even occur if procced + active_metroid_event = FALSE + log_debug("Metroid infestation failed successfully.") + kill() + return + active_metroid_event = TRUE announceWhen = rand(announceWhen, announceWhen + 60) - spawncount = rand(1 * severity, 2 * severity) + spawncount = rand(2 * severity, 4 * severity) for(var/obj/machinery/atmospherics/unary/vent_pump/temp_vent in machines) //CHOMPEdit: Added a couple areas to the exclusion. Also made this actually work. @@ -25,7 +32,15 @@ /datum/event/metroid_infestation/start() while((spawncount >= 1) && vents.len) var/obj/vent = pick(vents) - new /mob/living/simple_mob/metroid/juvenile/baby(get_turf(vent)) + var/spawn_metroids = pickweight(list( + /mob/living/simple_mob/metroid/juvenile/baby = 60, + /mob/living/simple_mob/metroid/juvenile/super = 30, + /mob/living/simple_mob/metroid/juvenile/alpha = 10, + /mob/living/simple_mob/metroid/juvenile/gamma = 3, + /mob/living/simple_mob/metroid/juvenile/zeta = 2, + /mob/living/simple_mob/metroid/juvenile/omega = 1, + )) + new spawn_metroids(get_turf(vent)) vents -= vent spawncount-- vents.Cut() @@ -42,6 +57,6 @@ qdel(M) //Must have been nullspaced continue area_names |= metroid_area.name - if(area_names.len) + if(area_names.len && active_metroid_event == TRUE) var/english_list = english_list(area_names) command_announcement.Announce("Sensors have narrowed down remaining lifeforms to the followng areas: [english_list]", "Lifesign Alert") diff --git a/code/modules/events/spider_infestation.dm b/code/modules/events/spider_infestation.dm index a5ca92b650..2f3234d0db 100644 --- a/code/modules/events/spider_infestation.dm +++ b/code/modules/events/spider_infestation.dm @@ -6,8 +6,12 @@ /datum/event/spider_infestation/setup() + if(prob(25) && severity == 3) //CHOMP Add 25% chance for the event to fail if chosen and is major severity + log_debug("Major spider infestation failed successfully.") + kill() + return announceWhen = rand(announceWhen, announceWhen + 60) - spawncount = rand(6 * severity, 12 * severity) //spiderlings only have a 50% chance to grow big and strong //CHOMP Edit: Tripled amount spawned + spawncount = rand(6 * severity, 14 * severity) //spiderlings only have a 50% chance to grow big and strong //CHOMP Edit: old: 2/4 new: 6/14 sent_spiders_to_station = 0 /datum/event/spider_infestation/announce() @@ -29,6 +33,6 @@ while((spawncount >= 1) && vents.len) var/obj/vent = pick(vents) - new /obj/effect/spider/spiderling/virgo(vent.loc) //VOREStation Edit - No nurses + new /obj/effect/spider/spiderling(vent.loc) //VOREStation Edit - No nurses //Oh my JESUS CHRIST, this slipped past me. Literally no nurses. Well guess what, nurses are back. vents -= vent spawncount-- diff --git a/code/modules/food/food/z_custom_food_vr.dm b/code/modules/food/food/z_custom_food_vr.dm index 3ca9b4fa9a..3fcd9d990c 100644 --- a/code/modules/food/food/z_custom_food_vr.dm +++ b/code/modules/food/food/z_custom_food_vr.dm @@ -55,7 +55,7 @@ var/global/ingredientLimit = 20000 if(src.addTop) cut_overlay(topping) - if(!fullyCustom && !stackIngredients && our_overlays.len) + if(!fullyCustom && !stackIngredients && LAZYLEN(our_overlays)) cut_overlay(filling) //we can't directly modify the overlay, so we have to remove it and then add it again var/newcolor = S.filling_color != "#FFFFFF" ? S.filling_color : AverageColor(getFlatIcon(S, S.dir, 0), 1, 1) filling.color = BlendRGB(filling.color, newcolor, 1/ingredients.len) diff --git a/code/modules/lighting/lighting_fake_sun_vr.dm b/code/modules/lighting/lighting_fake_sun_vr.dm index 4a1b332986..654f84f35f 100644 --- a/code/modules/lighting/lighting_fake_sun_vr.dm +++ b/code/modules/lighting/lighting_fake_sun_vr.dm @@ -102,7 +102,7 @@ for(var/turf/T as anything in all_turfs) if(T.is_outdoors()) turfs_to_use += T - + if(!turfs_to_use.len) warning("Fake sun placed on a level where it can't find any outdoor turfs to color at [x],[y],[z].") return @@ -131,23 +131,14 @@ "color" = "#F4EA55" ), list( - "brightness" = 1.0, + "brightness" = 4.0, "color" = "#F07AD8" ), list( - "brightness" = 1.0, - "color" = "#b4361f" - ), - - list( - "brightness" = 0.7, + "brightness" = 4.0, "color" = "#f3932d" - ), - - list( - "brightness" = 0.1, - "color" = "#B92B00" ) + ) /obj/effect/fake_sun/cool diff --git a/code/modules/materials/materials/_materials.dm b/code/modules/materials/materials/_materials.dm index 99027a8de7..05046ba85a 100644 --- a/code/modules/materials/materials/_materials.dm +++ b/code/modules/materials/materials/_materials.dm @@ -65,7 +65,18 @@ var/list/name_to_material . = list() for(var/mat in matter) var/datum/material/M = GET_MATERIAL_REF(mat) - .[M] = matter[mat] + if(M.composite_material && M.composite_material.len) + for(var/submat in M.composite_material) + var/datum/material/SM = GET_MATERIAL_REF(submat) + if(SM in .) + .[SM] += matter[mat]*(M.composite_material[submat]/SHEET_MATERIAL_AMOUNT) + else + .[SM] = matter[mat]*(M.composite_material[submat]/SHEET_MATERIAL_AMOUNT) + else + if(M in .) + .[M] += matter[mat] + else + .[M] = matter[mat] // Builds the datum list above. /proc/populate_material_list(force_remake=0) diff --git a/code/modules/mining/machinery/machine_processing.dm b/code/modules/mining/machinery/machine_processing.dm index c6a3d35ddf..62842e9ebb 100644 --- a/code/modules/mining/machinery/machine_processing.dm +++ b/code/modules/mining/machinery/machine_processing.dm @@ -253,6 +253,12 @@ ore_chunk.stored_ore[ore] = 0 qdel(ore_chunk) + for(var/obj/item/weapon/ore/O in input.loc) + if(!isnull(ores_stored[O.material])) + ores_stored[O.material]++ + points += (ore_values[O.material]*points_mult) + qdel(O) + if(!active) return diff --git a/code/modules/mob/holder.dm b/code/modules/mob/holder.dm index ab3c3e0505..eb6ba185c7 100644 --- a/code/modules/mob/holder.dm +++ b/code/modules/mob/holder.dm @@ -86,6 +86,7 @@ var/list/holder_mob_icon_cache = list() /obj/item/weapon/holder/Exited(atom/movable/thing, atom/OldLoc) if(thing == held_mob) held_mob.transform = original_transform + held_mob.update_transform() //VOREStation edit held_mob.vis_flags = original_vis_flags held_mob = null ..() @@ -106,11 +107,14 @@ var/list/holder_mob_icon_cache = list() /obj/item/weapon/holder/proc/dump_mob() if(!held_mob) return - held_mob.transform = original_transform - held_mob.vis_flags = original_vis_flags - held_mob.forceMove(get_turf(src)) - held_mob.reset_view(null) - held_mob = null + if (held_mob.loc == src || isnull(held_mob.loc)) //VOREStation edit + held_mob.transform = original_transform + held_mob.update_transform() //VOREStation edit + held_mob.vis_flags = original_vis_flags + held_mob.forceMove(get_turf(src)) + held_mob.reset_view(null) + held_mob = null + invisibility = INVISIBILITY_ABSTRACT //VOREStation edit /obj/item/weapon/holder/throw_at(atom/target, range, speed, thrower) if(held_mob) diff --git a/code/modules/mob/living/carbon/brain/brain.dm b/code/modules/mob/living/carbon/brain/brain.dm index cfa6421c6f..d4c40c6179 100644 --- a/code/modules/mob/living/carbon/brain/brain.dm +++ b/code/modules/mob/living/carbon/brain/brain.dm @@ -48,7 +48,7 @@ /mob/living/carbon/brain/runechat_holder(datum/chatmessage/CM) if(isturf(loc)) return ..() - + return loc /mob/living/carbon/brain/set_typing_indicator(var/state) @@ -59,8 +59,11 @@ loc.cut_overlay(typing_indicator, TRUE) return - if(!typing_indicator) - init_typing_indicator("[speech_bubble_appearance()]_typing") + var/cur_bubble_appearance = custom_speech_bubble + if(!cur_bubble_appearance || cur_bubble_appearance == "default") + cur_bubble_appearance = speech_bubble_appearance() + if(!typing_indicator || cur_typing_indicator != cur_bubble_appearance) + init_typing_indicator("[cur_bubble_appearance]_typing") if(state && !typing) loc.add_overlay(typing_indicator, TRUE) @@ -80,7 +83,7 @@ var/datum/transcore_db/db = SStranscore.db_by_mind_name(mind.name) if(db) var/datum/transhuman/mind_record/record = db.backed_up[src.mind.name] - if(!(record.dead_state == MR_DEAD)) + if(!(record.dead_state == MR_DEAD)) if((world.time - timeofhostdeath ) > 5 MINUTES) //Allows notify transcore to be used if you have an entry but for some reason weren't marked as dead record.dead_state = MR_DEAD //Such as if you got scanned but didn't take an implant. It's a little funky, but I mean, you got scanned db.notify(record) //So you probably will want to let someone know if you die. diff --git a/code/modules/mob/living/carbon/human/human_damage.dm b/code/modules/mob/living/carbon/human/human_damage.dm index d8dda93705..d65357e27e 100644 --- a/code/modules/mob/living/carbon/human/human_damage.dm +++ b/code/modules/mob/living/carbon/human/human_damage.dm @@ -10,7 +10,7 @@ var/total_burn = 0 var/total_brute = 0 for(var/obj/item/organ/external/O in organs) //hardcoded to streamline things a bit - if((O.robotic >= ORGAN_ROBOT) && !O.vital) + if((O.robotic >= ORGAN_ROBOT) && !O.vital && !(O.robotic ==ORGAN_NANOFORM)) //CHOMPEdit - Protean changes continue //*non-vital* robot limbs don't count towards shock and crit total_brute += O.brute_dam total_burn += O.burn_dam @@ -68,7 +68,7 @@ /mob/living/carbon/human/getBruteLoss() var/amount = 0 for(var/obj/item/organ/external/O in organs) - if(O.robotic >= ORGAN_ROBOT && !O.vital) + if(O.robotic >= ORGAN_ROBOT && !O.vital && !(O.robotic ==ORGAN_NANOFORM)) //CHOMPEdit - Protean changes continue //*non-vital*robot limbs don't count towards death, or show up when scanned amount += O.brute_dam return amount @@ -90,7 +90,7 @@ /mob/living/carbon/human/getFireLoss() var/amount = 0 for(var/obj/item/organ/external/O in organs) - if(O.robotic >= ORGAN_ROBOT && !O.vital) + if(O.robotic >= ORGAN_ROBOT && !O.vital && !(O.robotic ==ORGAN_NANOFORM)) //CHOMPEdit - Protean changes continue //*non-vital*robot limbs don't count towards death, or show up when scanned amount += O.burn_dam return amount @@ -318,7 +318,7 @@ halloss = 0 else ..() - + /mob/living/carbon/human/Stun(var/amount) if(amount > 0) //only multiply it by the mod if it's positive, or else it takes longer to fade too! amount = amount*species.stun_mod @@ -326,12 +326,12 @@ /mob/living/carbon/human/SetStunned(var/amount) ..() - + /mob/living/carbon/human/AdjustStunned(var/amount) if(amount > 0) // Only multiply it if positive. amount = amount*species.stun_mod ..(amount) - + /mob/living/carbon/human/Weaken(var/amount) if(amount > 0) //only multiply it by the mod if it's positive, or else it takes longer to fade too! amount = amount*species.weaken_mod @@ -339,7 +339,7 @@ /mob/living/carbon/human/SetWeakened(var/amount) ..() - + /mob/living/carbon/human/AdjustWeakened(var/amount) if(amount > 0) // Only multiply it if positive. amount = amount*species.weaken_mod diff --git a/code/modules/mob/living/carbon/human/say.dm b/code/modules/mob/living/carbon/human/say.dm index f8e7aa157b..51916b3b73 100644 --- a/code/modules/mob/living/carbon/human/say.dm +++ b/code/modules/mob/living/carbon/human/say.dm @@ -129,7 +129,7 @@ message_data[2] = pick(M.say_verbs) . = 1 - if(CE_SPEEDBOOST in chem_effects || is_jittery) // motor mouth + else if(CE_SPEEDBOOST in chem_effects || is_jittery) // motor mouth // Despite trying to url/html decode these, byond is just being bad and I dunno. var/static/regex/speedboost_initial = new (@"&[a-z]{2,5};|&#\d{2};","g") // Not herestring because bad vs code syntax highlight panics at apostrophe @@ -137,6 +137,7 @@ for(var/datum/multilingual_say_piece/S in message_data[1]) S.message = speedboost_initial.Replace(S.message, "") S.message = speedboost_main.Replace(S.message, "") + . = 1 else . = ..(message_data) diff --git a/code/modules/mob/living/carbon/human/species/outsider/vox.dm b/code/modules/mob/living/carbon/human/species/outsider/vox.dm index 5093c4e821..29117ede0a 100644 --- a/code/modules/mob/living/carbon/human/species/outsider/vox.dm +++ b/code/modules/mob/living/carbon/human/species/outsider/vox.dm @@ -50,7 +50,8 @@ siemens_coefficient = 0.2 flags = NO_SCAN | NO_DEFIB - appearance_flags = HAS_EYE_COLOR | HAS_HAIR_COLOR | HAS_SKIN_COLOR //CHOMP Edit + spawn_flags = SPECIES_IS_WHITELISTED + appearance_flags = HAS_EYE_COLOR | HAS_HAIR_COLOR | HAS_SKIN_COLOR blood_color = "#9066BD" flesh_color = "#808D11" diff --git a/code/modules/mob/living/carbon/human/species/species_shapeshift.dm b/code/modules/mob/living/carbon/human/species/species_shapeshift.dm index 59d64d2019..3e7ab6f035 100644 --- a/code/modules/mob/living/carbon/human/species/species_shapeshift.dm +++ b/code/modules/mob/living/carbon/human/species/species_shapeshift.dm @@ -16,7 +16,7 @@ var/list/wrapped_species_by_ref = list() //var/default_form = SPECIES_HUMAN //VOREStation edit /datum/species/shapeshifter/get_valid_shapeshifter_forms(var/mob/living/carbon/human/H) - return valid_transform_species + return list(vanity_base_fit)|valid_transform_species //CHOMPEdit /datum/species/shapeshifter/get_icobase(var/mob/living/carbon/human/H, var/get_deform) if(!H) return ..(null, get_deform) diff --git a/code/modules/mob/living/carbon/human/species/species_shapeshift_vr.dm b/code/modules/mob/living/carbon/human/species/species_shapeshift_vr.dm index c8e67a39cd..ed744e9fb6 100644 --- a/code/modules/mob/living/carbon/human/species/species_shapeshift_vr.dm +++ b/code/modules/mob/living/carbon/human/species/species_shapeshift_vr.dm @@ -190,4 +190,4 @@ wrapped_species_by_ref["\ref[src]"] = new_species if (visible) visible_message("\The [src] shifts and contorts, taking the form of \a [new_species]!") - regenerate_icons() + regenerate_icons() \ No newline at end of file diff --git a/code/modules/mob/living/carbon/human/species/station/prometheans_vr.dm b/code/modules/mob/living/carbon/human/species/station/prometheans_vr.dm index 2d8dfc0050..675265bb5d 100644 --- a/code/modules/mob/living/carbon/human/species/station/prometheans_vr.dm +++ b/code/modules/mob/living/carbon/human/species/station/prometheans_vr.dm @@ -34,6 +34,7 @@ /mob/living/carbon/human/proc/prommie_blobform, /mob/living/proc/set_size, /mob/living/carbon/human/proc/promethean_select_opaqueness, + /mob/living/carbon/human/proc/shapeshifter_reassemble //CHOMPEdit: reform verb ) /mob/living/carbon/human/proc/prommie_blobform() diff --git a/code/modules/mob/living/carbon/human/species/station/prommie_blob.dm b/code/modules/mob/living/carbon/human/species/station/prommie_blob.dm index ee7b2d473f..c7c9d0b101 100644 --- a/code/modules/mob/living/carbon/human/species/station/prommie_blob.dm +++ b/code/modules/mob/living/carbon/human/species/station/prommie_blob.dm @@ -404,6 +404,7 @@ blob.ooc_notes = ooc_notes blob.transforming = FALSE blob.name = name + blob.real_name = real_name //CHOMPEdit blob.nutrition = nutrition blob.color = rgb(r_skin, g_skin, b_skin) playsound(src.loc, "sound/effects/slime_squish.ogg", 15) @@ -514,9 +515,9 @@ B.owner = src //vore_organs.Cut() - + //ChompEdit begin. And let's drop them again. -// if(blob.prev_left_hand) put_in_l_hand(blob.prev_left_hand) +// if(blob.prev_left_hand) put_in_l_hand(blob.prev_left_hand) // if(blob.prev_right_hand) put_in_r_hand(blob.prev_right_hand) if(blob.l_hand) blob.drop_from_inventory(blob.l_hand) diff --git a/code/modules/mob/living/carbon/human/species/station/station_special_vr.dm b/code/modules/mob/living/carbon/human/species/station/station_special_vr.dm index 5239589931..7f730d6b58 100644 --- a/code/modules/mob/living/carbon/human/species/station/station_special_vr.dm +++ b/code/modules/mob/living/carbon/human/species/station/station_special_vr.dm @@ -27,8 +27,9 @@ /mob/living/carbon/human/proc/reconstitute_form, /mob/living/carbon/human/proc/sonar_ping, /mob/living/carbon/human/proc/tie_hair, - /mob/living/carbon/human/proc/lick_wounds) //Xenochimera get all the special verbs since they can't select traits. - // CHOMPEdit: Lick Wounds Verb + /mob/living/carbon/human/proc/lick_wounds, + /mob/living/carbon/human/proc/shapeshifter_reassemble) //Xenochimera get all the special verbs since they can't select traits. + // CHOMPEdit: Lick Wounds Verb, reform verb virus_immune = 1 // They practically ARE one. min_age = 18 @@ -445,7 +446,7 @@ catalogue_data = list(/datum/category_item/catalogue/fauna/vulpkanin) - spawn_flags = SPECIES_CAN_JOIN | SPECIES_IS_WHITELISTED | SPECIES_WHITELIST_SELECTABLE//Whitelisted as restricted is broken. ChompEdit;renable + spawn_flags = SPECIES_CAN_JOIN | SPECIES_IS_WHITELISTED | SPECIES_WHITELIST_SELECTABLE//Whitelisted as restricted is broken. ChompEdit;renable appearance_flags = HAS_HAIR_COLOR | HAS_SKIN_COLOR | HAS_EYE_COLOR flesh_color = "#AFA59E" diff --git a/code/modules/mob/living/carbon/human/species/station/station_vr.dm b/code/modules/mob/living/carbon/human/species/station/station_vr.dm index 0182045c53..ce30464ade 100644 --- a/code/modules/mob/living/carbon/human/species/station/station_vr.dm +++ b/code/modules/mob/living/carbon/human/species/station/station_vr.dm @@ -413,7 +413,11 @@ min_age = 18 inherent_verbs = list(/mob/living/carbon/human/proc/tie_hair) //Get ya quills done did icobase = 'icons/mob/human_races/r_vox_old.dmi' + tail = "voxtail" + tail_animation = 'icons/mob/species/vox/tail.dmi' deform = 'icons/mob/human_races/r_def_vox_old.dmi' + color_mult = 1 + descriptors = list( /datum/mob_descriptor/vox_markings = 0 ) diff --git a/code/modules/mob/living/carbon/human/species/station/traits_vr/negative_ch.dm b/code/modules/mob/living/carbon/human/species/station/traits_vr/negative_ch.dm index fb91b0cce7..de898f80a7 100644 --- a/code/modules/mob/living/carbon/human/species/station/traits_vr/negative_ch.dm +++ b/code/modules/mob/living/carbon/human/species/station/traits_vr/negative_ch.dm @@ -391,20 +391,23 @@ /datum/trait/negative/reduced_biocompat_minor name = "Reduced Biocompatibility, Minor" desc = "For whatever reason, you're one of the unlucky few who don't get as much benefit from modern-day chemicals. Remember to note this down in your medical records! Chems are only 80% as effective on you!" - cost = -1 + cost = -2 var_changes = list("chem_strength_heal" = 0.8) + can_take = ORGANICS /datum/trait/negative/reduced_biocompat name = "Reduced Biocompatibility" desc = "For whatever reason, you're one of the unlucky few who don't get as much benefit from modern-day chemicals. Remember to note this down in your medical records! Chems are only 60% as effective on you!" cost = -4 var_changes = list("chem_strength_heal" = 0.6) + can_take = ORGANICS /datum/trait/negative/reduced_biocompat_extreme name = "Reduced Biocompatibility, Major" desc = "For whatever reason, you're one of the unlucky few who don't get as much benefit from modern-day chemicals. Remember to note this down in your medical records! Chems are only 30% as effective on you!" cost = -8 var_changes = list("chem_strength_heal" = 0.3) + can_take = ORGANICS // Rykkanote: Relocated these here as we're no longer a YW downstream. /datum/trait/negative/light_sensitivity diff --git a/code/modules/mob/living/carbon/human/species/station/traits_vr/neutral_ch.dm b/code/modules/mob/living/carbon/human/species/station/traits_vr/neutral_ch.dm index 422fc6f621..881c2d266d 100644 --- a/code/modules/mob/living/carbon/human/species/station/traits_vr/neutral_ch.dm +++ b/code/modules/mob/living/carbon/human/species/station/traits_vr/neutral_ch.dm @@ -79,3 +79,13 @@ ), autohiss_exempt = list("Vespinae")) excludes = list(/datum/trait/neutral/autohiss_tajaran, /datum/trait/neutral/autohiss_unathi) + +/datum/trait/neutral/gargoyle + name = "Gargoyle" + desc = "You turn into a statue at will, but also whenever you run out of energy. Being a statue replenishes your energy slowly." + cost = 0 + custom_only = TRUE //slimes, xenochimera, diona, proteans, etc, basically anything but custom doesn't make sense (as much as I wanna play a petrifying slime) + +/datum/trait/neutral/gargoyle/apply(var/datum/species/S,var/mob/living/carbon/human/H) + ..(S,H) + H.LoadComponent(/datum/component/gargoyle) diff --git a/code/modules/mob/living/carbon/human/update_icons.dm b/code/modules/mob/living/carbon/human/update_icons.dm index cd4e116cfd..3942f0c25d 100644 --- a/code/modules/mob/living/carbon/human/update_icons.dm +++ b/code/modules/mob/living/carbon/human/update_icons.dm @@ -59,46 +59,48 @@ var/global/list/damage_icon_parts = list() //see UpdateDamageIcon() // These are used as the layers for the icons, as well as indexes in a list that holds onto them. // Technically the layers used are all -100+layer to make them FLOAT_LAYER overlays. +//CHOMPEDIT: edit the file human/update_icons.dm in the modular_chomp folder as well, if you update these (and clothing/clothing.dm line 789, the hardcoded layer there in /obj/item/clothing/suit/make_worn_icon) //Human Overlays Indexes///////// #define MUTATIONS_LAYER 1 //Mutations like fat, and lasereyes -#define SKIN_LAYER 2 //Skin things added by a call on species -#define BLOOD_LAYER 3 //Bloodied hands/feet/anything else -#define MOB_DAM_LAYER 4 //Injury overlay sprites like open wounds -#define SURGERY_LAYER 5 //Overlays for open surgical sites -#define UNDERWEAR_LAYER 6 //Underwear/bras/etc -#define TAIL_LOWER_LAYER 7 //Tail as viewed from the south -#define WING_LOWER_LAYER 8 //Wings as viewed from the south -#define SHOES_LAYER_ALT 9 //Shoe-slot item (when set to be under uniform via verb) -#define UNIFORM_LAYER 10 //Uniform-slot item -#define ID_LAYER 11 //ID-slot item -#define SHOES_LAYER 12 //Shoe-slot item -#define GLOVES_LAYER 13 //Glove-slot item -#define BELT_LAYER 14 //Belt-slot item -#define SUIT_LAYER 15 //Suit-slot item -#define TAIL_UPPER_LAYER 16 //Some species have tails to render (As viewed from the N, E, or W) -#define GLASSES_LAYER 17 //Eye-slot item -#define BELT_LAYER_ALT 18 //Belt-slot item (when set to be above suit via verb) -#define SUIT_STORE_LAYER 19 //Suit storage-slot item -#define BACK_LAYER 20 //Back-slot item -#define HAIR_LAYER 21 //The human's hair -#define HAIR_ACCESSORY_LAYER 22 //VOREStation edit. Simply move this up a number if things are added. -#define EARS_LAYER 23 //Both ear-slot items (combined image) -#define EYES_LAYER 24 //Mob's eyes (used for glowing eyes) -#define FACEMASK_LAYER 25 //Mask-slot item -#define HEAD_LAYER 26 //Head-slot item -#define HANDCUFF_LAYER 27 //Handcuffs, if the human is handcuffed, in a secret inv slot -#define LEGCUFF_LAYER 28 //Same as handcuffs, for legcuffs -#define L_HAND_LAYER 29 //Left-hand item -#define R_HAND_LAYER 30 //Right-hand item -#define WING_LAYER 31 //Wings or protrusions over the suit. -#define VORE_BELLY_LAYER 32 //CHOMPStation edit - Move this and everything after up if things are added. -#define VORE_TAIL_LAYER 33 //CHOMPStation edit - Move this and everything after up if things are added. -#define TAIL_UPPER_LAYER_ALT 34 //Modified tail-sprite layer. Tend to be larger. -#define MODIFIER_EFFECTS_LAYER 35 //Effects drawn by modifiers -#define FIRE_LAYER 36 //'Mob on fire' overlay layer -#define MOB_WATER_LAYER 37 //'Mob submerged' overlay layer -#define TARGETED_LAYER 38 //'Aimed at' overlay layer -#define TOTAL_LAYERS 38 //CHOMPStation edit. <---- KEEP THIS UPDATED, should always equal the highest number here, used to initialize a list. +#define TAIL_LOWER_LAYER 2 //Tail as viewed from the south //CHOMPStation edit - underneath bodyparts +#define WING_LOWER_LAYER 3 //Wings as viewed from the south //CHOMPStation edit - underneath bodyparts +#define BODYPARTS_LAYER 4 //Bodyparts layer - CHOMPStation edit +#define SKIN_LAYER 5 //Skin things added by a call on species +#define BLOOD_LAYER 6 //Bloodied hands/feet/anything else +#define MOB_DAM_LAYER 7 //Injury overlay sprites like open wounds +#define SURGERY_LAYER 8 //Overlays for open surgical sites +#define UNDERWEAR_LAYER 9 //Underwear/bras/etc +#define SHOES_LAYER_ALT 10 //Shoe-slot item (when set to be under uniform via verb) +#define UNIFORM_LAYER 11 //Uniform-slot item +#define ID_LAYER 12 //ID-slot item +#define SHOES_LAYER 13 //Shoe-slot item +#define GLOVES_LAYER 14 //Glove-slot item +#define BELT_LAYER 15 //Belt-slot item +#define SUIT_LAYER 16 //Suit-slot item +#define TAIL_UPPER_LAYER 17 //Some species have tails to render (As viewed from the N, E, or W) +#define GLASSES_LAYER 18 //Eye-slot item +#define BELT_LAYER_ALT 19 //Belt-slot item (when set to be above suit via verb) +#define SUIT_STORE_LAYER 20 //Suit storage-slot item +#define BACK_LAYER 21 //Back-slot item +#define HAIR_LAYER 22 //The human's hair +#define HAIR_ACCESSORY_LAYER 23 //VOREStation edit. Simply move this up a number if things are added. +#define EARS_LAYER 24 //Both ear-slot items (combined image) +#define EYES_LAYER 25 //Mob's eyes (used for glowing eyes) +#define FACEMASK_LAYER 26 //Mask-slot item +#define HEAD_LAYER 27 //Head-slot item +#define HANDCUFF_LAYER 28 //Handcuffs, if the human is handcuffed, in a secret inv slot +#define LEGCUFF_LAYER 29 //Same as handcuffs, for legcuffs +#define L_HAND_LAYER 30 //Left-hand item +#define R_HAND_LAYER 31 //Right-hand item +#define WING_LAYER 32 //Wings or protrusions over the suit. +#define VORE_BELLY_LAYER 33 //CHOMPStation edit - Move this and everything after up if things are added. +#define VORE_TAIL_LAYER 34 //CHOMPStation edit - Move this and everything after up if things are added. +#define TAIL_UPPER_LAYER_ALT 35 //Modified tail-sprite layer. Tend to be larger. +#define MODIFIER_EFFECTS_LAYER 36 //Effects drawn by modifiers +#define FIRE_LAYER 37 //'Mob on fire' overlay layer +#define MOB_WATER_LAYER 38 //'Mob submerged' overlay layer +#define TARGETED_LAYER 39 //'Aimed at' overlay layer +#define TOTAL_LAYERS 39 //CHOMPStation edit. <---- KEEP THIS UPDATED, should always equal the highest number here, used to initialize a list. ////////////////////////////////// /mob/living/carbon/human @@ -235,6 +237,8 @@ var/global/list/damage_icon_parts = list() //see UpdateDamageIcon() if(QDESTROYING(src)) return + remove_layer(BODYPARTS_LAYER) + var/husk_color_mod = rgb(96,88,80) var/hulk_color_mod = rgb(48,224,40) @@ -393,6 +397,13 @@ var/global/list/damage_icon_parts = list() //see UpdateDamageIcon() //END CACHED ICON GENERATION. stand_icon.Blend(base_icon,ICON_OVERLAY) + + var/image/body = image(stand_icon) + if (body) + body.layer = BODY_LAYER + BODYPARTS_LAYER + overlays_standing[BODYPARTS_LAYER] = body + apply_layer(BODYPARTS_LAYER) + icon = stand_icon //tail @@ -432,7 +443,7 @@ var/global/list/damage_icon_parts = list() //see UpdateDamageIcon() //Bloody feet if(feet_blood_DNA) - var/image/bloodsies = image(icon = species.get_blood_mask(src), icon_state = "shoeblood", layer = BODY_LAYER+BLOOD_LAYER) + var/image/bloodsies = image(icon = digitigrade ? 'modular_chomp/icons/mob/human_races/masks/blood_digitigrade.dmi' : species.get_blood_mask(src), icon_state = "shoeblood", layer = BODY_LAYER+BLOOD_LAYER) //CHOMPEdit: digitigrade feeties bloodsies.color = feet_blood_color both.add_overlay(bloodsies) diff --git a/code/modules/mob/living/living.dm b/code/modules/mob/living/living.dm index 75f76e53be..f0bac492f7 100644 --- a/code/modules/mob/living/living.dm +++ b/code/modules/mob/living/living.dm @@ -384,7 +384,17 @@ return result /mob/living/proc/setMaxHealth(var/newMaxHealth) - health = (health/maxHealth) * (newMaxHealth) //VOREStation Add - Adjust existing health + var/h_mult = maxHealth / newMaxHealth //VOREStation Add Start - Calculate change multiplier + if(bruteloss) //In case a damage value is 0, divide by 0 bad + bruteloss = round(bruteloss / h_mult) //Health is calculated on life based on damage types, so we update the damage and let life handle health + if(fireloss) + fireloss = round(fireloss / h_mult) + if(toxloss) + toxloss = round(toxloss / h_mult) + if(oxyloss) + oxyloss = round(oxyloss / h_mult) + if(cloneloss) + cloneloss = round(cloneloss / h_mult) //VOREStation Add End maxHealth = newMaxHealth /mob/living/Stun(amount) diff --git a/code/modules/mob/living/living_defense.dm b/code/modules/mob/living/living_defense.dm index 5c4673db1d..e7d0378238 100644 --- a/code/modules/mob/living/living_defense.dm +++ b/code/modules/mob/living/living_defense.dm @@ -501,11 +501,12 @@ to_chat(src, span("critical", "You've been struck by lightning!")) // Called when touching a lava tile. -// Does roughly 100 damage to unprotected mobs, and 20 to fully protected mobs. +// Does roughly 70 damage (30 instantly, up to ~40 over time) to unprotected mobs, and 10 to fully protected mobs. /mob/living/lava_act() - add_modifier(/datum/modifier/fire/intense, 8 SECONDS) // Around 40 total if left to burn and without fire protection per stack. - inflict_heat_damage(40) // Another 40, however this is instantly applied to unprotected mobs. - adjustFireLoss(20) // Lava cannot be 100% resisted with fire protection. + adjust_fire_stacks(1) + add_modifier(/datum/modifier/fire/stack_managed/intense, 8 SECONDS) // Around 40 total if left to burn and without fire protection per stack. + inflict_heat_damage(20) // Another 20, however this is instantly applied to unprotected mobs. + adjustFireLoss(10) // Lava cannot be 100% resisted with fire protection. /mob/living/proc/reagent_permeability() return 1 diff --git a/code/modules/mob/living/say.dm b/code/modules/mob/living/say.dm index 4e34ec87a3..fb78f1b550 100644 --- a/code/modules/mob/living/say.dm +++ b/code/modules/mob/living/say.dm @@ -341,7 +341,9 @@ var/list/channel_to_radio_key = new //The 'post-say' static speech bubble var/speech_bubble_test = say_test(message) //var/image/speech_bubble = image('icons/mob/talk_vr.dmi',src,"h[speech_bubble_test]") //VOREStation Edit. Commented this out in case we need to reenable. - var/speech_type = speech_bubble_appearance() + var/speech_type = custom_speech_bubble + if(!speech_type || speech_type == "default") + speech_type = speech_bubble_appearance() var/image/speech_bubble = generate_speech_bubble(src, "[speech_type][speech_bubble_test]") var/sb_alpha = 255 var/atom/loc_before_turf = src diff --git a/code/modules/mob/living/silicon/ai/ai_remote_control.dm b/code/modules/mob/living/silicon/ai/ai_remote_control.dm index 6fdbbbe4a9..d8f302eb94 100644 --- a/code/modules/mob/living/silicon/ai/ai_remote_control.dm +++ b/code/modules/mob/living/silicon/ai/ai_remote_control.dm @@ -55,6 +55,8 @@ else if(mind) soul_link(/datum/soul_link/shared_body, src, target) deployed_shell = target + if(src.client) //CHOMPADDITION: Resize shell based on our preffered size + target.resize(src.client.prefs.size_multiplier) //CHOMPADDITION: Resize shell based on our preffered size target.deploy_init(src) mind.transfer_to(target) teleop = target // So the AI 'hears' messages near its core. diff --git a/code/modules/mob/living/silicon/emote.dm b/code/modules/mob/living/silicon/emote.dm index 5bb86dac68..728b4d9f84 100644 --- a/code/modules/mob/living/silicon/emote.dm +++ b/code/modules/mob/living/silicon/emote.dm @@ -17,7 +17,8 @@ var/list/_silicon_default_emotes = list( /mob/living/silicon/pai/get_available_emotes() - var/list/fulllist = global._silicon_default_emotes.Copy() + var/list/fulllist = list() + fulllist |= _silicon_default_emotes fulllist |= _robot_default_emotes fulllist |= _human_default_emotes - return fulllist \ No newline at end of file + return fulllist diff --git a/code/modules/mob/living/silicon/robot/robot_modules/station_ch.dm b/code/modules/mob/living/silicon/robot/robot_modules/Widerobot_Clown_ch.dm similarity index 68% rename from code/modules/mob/living/silicon/robot/robot_modules/station_ch.dm rename to code/modules/mob/living/silicon/robot/robot_modules/Widerobot_Clown_ch.dm index e90b557d20..e03afd9a93 100644 --- a/code/modules/mob/living/silicon/robot/robot_modules/station_ch.dm +++ b/code/modules/mob/living/silicon/robot/robot_modules/Widerobot_Clown_ch.dm @@ -1,28 +1,11 @@ -//TFF 5/1/20 - Add Ore Scanner for mining drones -/obj/item/weapon/robot_module/drone/mining/New() - ..() - src.modules += new /obj/item/weapon/mining_scanner(src) +//Modular honk borg +//This restructures how borg additions are done to make them sane/modular/maintainable +//Also makes it easier to make new borgs -/obj/item/weapon/robot_module/robot/engineering/New() - ..() - src.modules += new /obj/item/weapon/pipe_dispenser(src) - - -/obj/item/weapon/robot_module/robot/medihound/New() - ..() - src.modules += new /obj/item/weapon/autopsy_scanner(src) - src.modules += new /obj/item/weapon/surgical/scalpel/cyborg(src) - src.modules += new /obj/item/weapon/surgical/hemostat/cyborg(src) - src.modules += new /obj/item/weapon/surgical/retractor/cyborg(src) - src.modules += new /obj/item/weapon/surgical/cautery/cyborg(src) - src.modules += new /obj/item/weapon/surgical/bonegel/cyborg(src) - src.modules += new /obj/item/weapon/surgical/FixOVein/cyborg(src) - src.modules += new /obj/item/weapon/surgical/bonesetter/cyborg(src) - src.modules += new /obj/item/weapon/surgical/circular_saw/cyborg(src) - src.modules += new /obj/item/weapon/surgical/surgicaldrill/cyborg(src) - src.modules += new /obj/item/weapon/surgical/bioregen(src) - src.modules += new /obj/item/weapon/gripper/no_use/organ(src) - src.modules += new /obj/item/weapon/reagent_containers/dropper(src) +//Add ourselves to the borg list +/hook/startup/proc/Modular_Borg_init_Honk() + robot_modules["Honk-Hound"] = /obj/item/weapon/robot_module/robot/clerical/honkborg + robot_module_types += "Honk-Hound" //Add ourselves to global /obj/item/weapon/robot_module/robot/clerical/honkborg @@ -93,4 +76,6 @@ R.verbs |= /mob/living/proc/toggle_rider_reins R.verbs |= /mob/living/proc/shred_limb R.verbs |= /mob/living/silicon/robot/proc/rest_style - ..() \ No newline at end of file + ..() + + diff --git a/code/modules/mob/living/silicon/robot/robot_modules/Widerobot_Command_ch.dm b/code/modules/mob/living/silicon/robot/robot_modules/Widerobot_Command_ch.dm new file mode 100644 index 0000000000..587cc8b1e2 --- /dev/null +++ b/code/modules/mob/living/silicon/robot/robot_modules/Widerobot_Command_ch.dm @@ -0,0 +1,95 @@ +//Modular command borg +//This restructures how borg additions are done to make them sane/modular/maintainable +//Also makes it easier to make new borgs + +//Add ourselves to the borg list +/hook/startup/proc/Modular_Borg_init_Unity() + robot_modules["UnityHound"] = /obj/item/weapon/robot_module/robot/chound //Add to module array + robot_module_types += "UnityHound" //Add ourselves to global + +//Create our list of known languages. +/obj/item/weapon/robot_module/robot/chound + languages = list( + LANGUAGE_SOL_COMMON = 1, + LANGUAGE_TRADEBAND = 1, + LANGUAGE_UNATHI = 1, + LANGUAGE_SIIK = 1, + LANGUAGE_SKRELLIAN = 1, + LANGUAGE_ROOTLOCAL = 0, + LANGUAGE_GUTTER = 0, + LANGUAGE_SCHECHI = 1, + LANGUAGE_EAL = 1, + LANGUAGE_SIGN = 0, + LANGUAGE_BIRDSONG = 1, + LANGUAGE_SAGARU = 1, + LANGUAGE_CANILUNZT = 1, + LANGUAGE_ECUREUILIAN= 1, + LANGUAGE_DAEMON = 1, + LANGUAGE_ENOCHIAN = 1, + LANGUAGE_DRUDAKAR = 1, + LANGUAGE_TAVAN = 1 + ) + +//Build our Module +/obj/item/weapon/robot_module/robot/chound + name = "Unity Hound Module" + sprites = list( + "Kcom" = "kcom", + "Raptor V-4.1" = "chraptor" + ) + channels = list( + "Medical" = 1, + "Engineering" = 1, + "Security" = 1, + "Service" = 1, + "Supply" = 0, + "Science" = 1, + "Command" = 1, + "Explorer" = 0 + ) + pto_type = PTO_CIVILIAN + can_be_pushed = 0 + +/obj/item/weapon/robot_module/robot/chound/New(var/mob/living/silicon/robot/R) + src.modules += new /obj/item/weapon/pen/robopen(src) + src.modules += new /obj/item/weapon/form_printer(src) + src.modules += new /obj/item/weapon/gripper/paperwork(src) + src.modules += new /obj/item/weapon/hand_labeler(src) + src.modules += new /obj/item/weapon/stamp(src) + src.modules += new /obj/item/weapon/stamp/denied(src) + src.modules += new /obj/item/weapon/taskmanager(src) + src.emag = new /obj/item/weapon/stamp/chameleon(src) + //src.emag = new /obj/item/weapon/pen/chameleon(src) + + var/datum/matter_synth/water = new /datum/matter_synth(500) + water.name = "Water reserves" + water.recharge_rate = 0 + R.water_res = water + synths += water + + var/obj/item/device/dogborg/tongue/T = new /obj/item/device/dogborg/tongue(src) + T.water = water + src.modules += T + + var/obj/item/device/dogborg/sleeper/B = new /obj/item/device/dogborg/sleeper/command(src) + B.water = water + src.modules += B + + R.icon = 'modular_chomp/icons/mob/widerobot_ch.dmi' + R.wideborg_dept = 'modular_chomp/icons/mob/widerobot_ch.dmi' + R.hands.icon = 'icons/mob/screen1_robot_vr.dmi' + R.ui_style_vr = TRUE + R.pixel_x = -16 + R.old_x = -16 + R.default_pixel_x = -16 + R.dogborg = TRUE + R.vore_capacity = 1 + R.vore_capacity_ex = list("stomach" = 1) + R.wideborg = TRUE + R.verbs |= /mob/living/silicon/robot/proc/ex_reserve_refill + R.verbs |= /mob/living/silicon/robot/proc/robot_mount + R.verbs |= /mob/living/proc/toggle_rider_reins + R.verbs |= /mob/living/proc/shred_limb + R.verbs |= /mob/living/silicon/robot/proc/rest_style + + ..() diff --git a/code/modules/mob/living/silicon/robot/robot_modules/Widerobot_Exploration_ch.dm b/code/modules/mob/living/silicon/robot/robot_modules/Widerobot_Exploration_ch.dm new file mode 100644 index 0000000000..a622e744fa --- /dev/null +++ b/code/modules/mob/living/silicon/robot/robot_modules/Widerobot_Exploration_ch.dm @@ -0,0 +1,86 @@ +//Lets make this shit more sane-shark +//Modular Exploration borg +//This restructures how borg additions are done to make them sane/modular/maintainable +//Also makes it easier to make new borgs +/hook/startup/proc/Modular_Borg_init_Exploration() + robot_modules["ExploreHound"] = /obj/item/weapon/robot_module/robot/exploration //add to array + robot_module_types += "ExploreHound" //Add to global list + +//Explo doggos +/obj/item/weapon/robot_module/robot/exploration + name = "ExploreHound" + channels = list("Exploration" = 1) + languages = list( + LANGUAGE_SOL_COMMON = 1, + LANGUAGE_UNATHI = 1, + LANGUAGE_SIIK = 1, + LANGUAGE_AKHANI = 1, + LANGUAGE_SKRELLIAN = 1, + LANGUAGE_SKRELLIANFAR = 0, + LANGUAGE_ROOTLOCAL = 0, + LANGUAGE_TRADEBAND = 1, + LANGUAGE_GUTTER = 0, + LANGUAGE_SCHECHI = 1, + LANGUAGE_EAL = 1, + LANGUAGE_TERMINUS = 1, + LANGUAGE_SIGN = 0 + ) + +/obj/item/weapon/robot_module/robot/exploration + sprites = list( + "ExploreHound" = "exploration", + ) + can_be_pushed = 0 +/obj/item/weapon/robot_module/robot/exploration/New(var/mob/living/silicon/robot/R) + src.modules += new /obj/item/weapon/dogborg/jaws/small(src) + src.modules += new /obj/item/device/dogborg/boop_module(src) + src.modules += new /obj/item/device/dogborg/sleeper/K9/exploration(src) + src.modules += new /obj/item/weapon/gun/energy/locked/phasegun/unlocked/mounted/cyborg(src) + src.modules += new /obj/item/device/cataloguer(src) + src.modules += new /obj/item/roller_holder(src) + src.modules += new /obj/item/weapon/gun/energy/taser/mounted/cyborg/flare(src) + + src.emag = new /obj/item/weapon/dogborg/pounce(src) + + var/datum/matter_synth/water = new /datum/matter_synth(500) + water.name = "Water reserves" + water.recharge_rate = 0 + R.water_res = water + synths += water + + var/obj/item/device/dogborg/tongue/T = new /obj/item/device/dogborg/tongue(src) + T.water = water + src.modules += T + + var/obj/item/device/dogborg/sleeper/B = new /obj/item/device/dogborg/sleeper/command(src) + B.water = water + src.modules += B + + R.can_buckle = 1 + R.icon = 'modular_chomp/icons/mob/widerobot_exp_ch.dmi' + R.wideborg_dept = R.icon + R.hands.icon = 'icons/mob/screen1_robot_vr.dmi' + R.ui_style_vr = TRUE + R.pixel_x = -16 + R.old_x = -16 + R.default_pixel_x = -16 + R.dogborg = TRUE + R.vore_capacity = 1 + R.vore_capacity_ex = list("stomach" = 1) + R.wideborg = TRUE + ..() + +/obj/item/device/dogborg/sleeper/K9/exploration //The K9 portabrig + name = "Store-Belly" + desc = "Equipment for a ExploreHound unit. A mounted portable-storage device that holds supplies/person." + icon_state = "sleeperb" + injection_chems = null + medsensor = FALSE + recycles = TRUE + max_item_count = 4 + +/obj/item/weapon/gun/energy/taser/mounted/cyborg/flare + name = "flare gun" + desc = "A flare-gun" + projectile_type = /obj/item/projectile/energy/flash/flare + fire_sound = 'sound/weapons/tablehit1.ogg' \ No newline at end of file diff --git a/code/modules/mob/living/silicon/robot/robot_modules/__Widerobot_Misc_Tools_ch.dm b/code/modules/mob/living/silicon/robot/robot_modules/__Widerobot_Misc_Tools_ch.dm new file mode 100644 index 0000000000..68bdb8f417 --- /dev/null +++ b/code/modules/mob/living/silicon/robot/robot_modules/__Widerobot_Misc_Tools_ch.dm @@ -0,0 +1,30 @@ +//This file is where we define modules we made but where we did not make the borg +//as an example, Medihound has some new additions from us but upstream defines its additions +//This file is offset in compilation to run before any of the station files. + +/obj/item/weapon/robot_module/robot/medihound/New() + ..() + src.modules += new /obj/item/weapon/autopsy_scanner(src) + src.modules += new /obj/item/weapon/surgical/scalpel/cyborg(src) + src.modules += new /obj/item/weapon/surgical/hemostat/cyborg(src) + src.modules += new /obj/item/weapon/surgical/retractor/cyborg(src) + src.modules += new /obj/item/weapon/surgical/cautery/cyborg(src) + src.modules += new /obj/item/weapon/surgical/bonegel/cyborg(src) + src.modules += new /obj/item/weapon/surgical/FixOVein/cyborg(src) + src.modules += new /obj/item/weapon/surgical/bonesetter/cyborg(src) + src.modules += new /obj/item/weapon/surgical/circular_saw/cyborg(src) + src.modules += new /obj/item/weapon/surgical/surgicaldrill/cyborg(src) + src.modules += new /obj/item/weapon/surgical/bioregen(src) + src.modules += new /obj/item/weapon/gripper/no_use/organ(src) + src.modules += new /obj/item/weapon/reagent_containers/dropper(src) + src.modules += new /obj/item/roller_holder(src) //So we can save people without voring them + +//TFF 5/1/20 - Add Ore Scanner for mining drones +/obj/item/weapon/robot_module/drone/mining/New() + ..() + src.modules += new /obj/item/weapon/mining_scanner(src) + +/obj/item/weapon/robot_module/robot/engineering/New() + ..() + src.modules += new /obj/item/weapon/pipe_dispenser(src) + diff --git a/code/modules/mob/living/silicon/robot/robot_modules/station_vr.dm b/code/modules/mob/living/silicon/robot/robot_modules/station_vr.dm index a8b2cb6194..29d56e57b5 100644 --- a/code/modules/mob/living/silicon/robot/robot_modules/station_vr.dm +++ b/code/modules/mob/living/silicon/robot/robot_modules/station_vr.dm @@ -40,28 +40,6 @@ LANGUAGE_TAVAN = 1 ) -/obj/item/weapon/robot_module/robot/chound - languages = list( - LANGUAGE_SOL_COMMON = 1, - LANGUAGE_TRADEBAND = 1, - LANGUAGE_UNATHI = 1, - LANGUAGE_SIIK = 1, - LANGUAGE_SKRELLIAN = 1, - LANGUAGE_ROOTLOCAL = 0, - LANGUAGE_GUTTER = 0, - LANGUAGE_SCHECHI = 1, - LANGUAGE_EAL = 1, - LANGUAGE_SIGN = 0, - LANGUAGE_BIRDSONG = 1, - LANGUAGE_SAGARU = 1, - LANGUAGE_CANILUNZT = 1, - LANGUAGE_ECUREUILIAN= 1, - LANGUAGE_DAEMON = 1, - LANGUAGE_ENOCHIAN = 1, - LANGUAGE_DRUDAKAR = 1, - LANGUAGE_TAVAN = 1 - ) - /hook/startup/proc/robot_modules_vr() robot_modules["Medihound"] = /obj/item/weapon/robot_module/robot/medical/medihound robot_modules["K9"] = /obj/item/weapon/robot_module/robot/security/knine @@ -72,8 +50,6 @@ robot_modules["Service-Hound"] = /obj/item/weapon/robot_module/robot/clerical/butler/brodog robot_modules["BoozeHound"] = /obj/item/weapon/robot_module/robot/clerical/butler/booze robot_modules["KMine"] = /obj/item/weapon/robot_module/robot/miner/kmine - robot_modules["UnityHound"] = /obj/item/weapon/robot_module/robot/chound //CHOMP Addition Unity - robot_modules["Honk-Hound"] = /obj/item/weapon/robot_module/robot/clerical/honkborg //CHOMP Addition Honk robot_modules["Stray"] = /obj/item/weapon/robot_module/robot/stray robot_modules["TraumaHound"] = /obj/item/weapon/robot_module/robot/medical/traumahound return 1 @@ -749,9 +725,9 @@ src.modules += new /obj/item/device/floor_painter(src) src.modules += new /obj/item/weapon/rms(src) src.modules += new /obj/item/weapon/rcd/electric/mounted/borg(src) //CHOMPedit: add RCD - src.modules += new /obj/item/weapon/pipe_dispenser(src) + src.modules |= new /obj/item/weapon/pipe_dispenser(src) //CHOMPEDIT: only add one if our core didnt already src.emag = new /obj/item/weapon/dogborg/pounce(src) - src.modules += new /obj/item/weapon/pipe_dispenser(src) //YW change + //src.modules += new /obj/item/weapon/pipe_dispenser(src) //YW change //CHOMPREMOVE: duplicate definition //Painfully slow charger regen but high capacity. Also starts with low amount. var/datum/matter_synth/metal = new /datum/matter_synth/metal() @@ -1110,71 +1086,6 @@ possible_transfer_amounts = list(1 ,5, 10, 20, 30) //Chomp addition end -// CH Changes - Unity Hound begin -/obj/item/weapon/robot_module/robot/chound - name = "Unity Hound Module" - sprites = list( - "Kcom" = "kcom" - ) - channels = list( - "Medical" = 1, - "Engineering" = 1, - "Security" = 1, - "Service" = 1, - "Supply" = 0, - "Science" = 1, - "Command" = 1, - "Explorer" = 0 - ) - pto_type = PTO_CIVILIAN - can_be_pushed = 0 - -/obj/item/weapon/robot_module/robot/chound/New(var/mob/living/silicon/robot/R) - src.modules += new /obj/item/weapon/pen/robopen(src) - src.modules += new /obj/item/weapon/form_printer(src) - src.modules += new /obj/item/weapon/gripper/paperwork(src) - src.modules += new /obj/item/weapon/hand_labeler(src) - src.modules += new /obj/item/weapon/stamp(src) - src.modules += new /obj/item/weapon/stamp/denied(src) - src.modules += new /obj/item/weapon/taskmanager(src) - src.emag = new /obj/item/weapon/stamp/chameleon(src) - src.emag = new /obj/item/weapon/pen/chameleon(src) - - var/datum/matter_synth/water = new /datum/matter_synth(500) - water.name = "Water reserves" - water.recharge_rate = 0 - R.water_res = water - synths += water - - var/obj/item/device/dogborg/tongue/T = new /obj/item/device/dogborg/tongue(src) - T.water = water - src.modules += T - - var/obj/item/device/dogborg/sleeper/B = new /obj/item/device/dogborg/sleeper/command(src) - B.water = water - src.modules += B - - R.icon = 'modular_chomp/icons/mob/widerobot_ch.dmi' - R.wideborg_dept = 'modular_chomp/icons/mob/widerobot_ch.dmi' - R.hands.icon = 'icons/mob/screen1_robot_vr.dmi' - R.ui_style_vr = TRUE - R.pixel_x = -16 - R.old_x = -16 - R.default_pixel_x = -16 - R.dogborg = TRUE - //CHOMPEdit - Add vore capacity - R.vore_capacity = 1 - R.vore_capacity_ex = list("stomach" = 1) - //CHOMPEdit End - R.wideborg = TRUE - R.verbs |= /mob/living/silicon/robot/proc/ex_reserve_refill - R.verbs |= /mob/living/silicon/robot/proc/robot_mount - R.verbs |= /mob/living/proc/toggle_rider_reins - R.verbs |= /mob/living/proc/shred_limb - R.verbs |= /mob/living/silicon/robot/proc/rest_style - - ..() - /obj/item/weapon/robot_module/Reset(var/mob/living/silicon/robot/R) R.pixel_x = initial(pixel_x) R.pixel_y = initial(pixel_y) diff --git a/code/modules/mob/living/silicon/robot/robot_remote_control.dm b/code/modules/mob/living/silicon/robot/robot_remote_control.dm index c605584aa0..9daf706003 100644 --- a/code/modules/mob/living/silicon/robot/robot_remote_control.dm +++ b/code/modules/mob/living/silicon/robot/robot_remote_control.dm @@ -9,6 +9,7 @@ GLOBAL_LIST_EMPTY(available_ai_shells) // Premade AI shell, for roundstart shells. /mob/living/silicon/robot/ai_shell/Initialize() + src.verbs |= /mob/living/silicon/robot/proc/transfer_shell_act //CHOMPEDIT: add sideloader mmi = new /obj/item/device/mmi/inert/ai_remote(src) post_mmi_setup() return ..() @@ -23,6 +24,7 @@ GLOBAL_LIST_EMPTY(available_ai_shells) return /mob/living/silicon/robot/proc/make_shell() + src.verbs |= /mob/living/silicon/robot/proc/transfer_shell_act //CHOMPEDIT: add sideloader shell = TRUE braintype = "AI Shell" SetName("[modtype] AI Shell [num2text(ident)]") @@ -34,9 +36,93 @@ GLOBAL_LIST_EMPTY(available_ai_shells) notify_ai(ROBOT_NOTIFICATION_AI_SHELL) updateicon() +//CHOMPADDITION: Ai shell sideloading +/mob/living/silicon/robot/proc/transfer_shell_act() + set category = "Robot Commands" + set name = "Transfer to Shell" + transfer_shell() + + +/mob/living/silicon/robot/proc/transfer_shell(var/mob/living/silicon/robot/target) + var/mob/living/silicon/ai/AI = mainframe + //relay AI + if(!config.allow_ai_shells) + to_chat(src, span("warning", "AI Shells are not allowed on this server. You shouldn't have this verb because of it, so consider making a bug report.")) + return + + if(incapacitated()) + to_chat(src, span("warning", "You are incapacitated!")) + return + + if(AI.lacks_power()) + to_chat(src, span("warning", "Your core lacks power, wireless is disabled.")) + return + + if(AI.control_disabled) + to_chat(src, span("warning", "Wireless networking module is offline.")) + return + + var/list/possible = list() + for(var/mob/living/silicon/robot/R as anything in GLOB.available_ai_shells) + if(R != src && R.shell && !R.deployed && (R.stat != DEAD) && (!R.connected_ai || (R.connected_ai == AI) ) ) //VOREStation Edit: shell restrictions + if(istype(R.loc, /obj/machinery/recharge_station)) //Check Rechargers + var/obj/machinery/recharge_station/RS = R.loc + if(!(using_map.ai_shell_restricted && !(RS.z in using_map.ai_shell_allowed_levels))) //Allow station borgs to be redeployed from Chargers. + possible += R + + if(isbelly(R.loc)) //check belly space + var/obj/belly/B = R.loc + if(!(using_map.ai_shell_restricted && !(B.owner.z in using_map.ai_shell_allowed_levels))) //No smuggling in borgs + possible += R + + if(!(using_map.ai_shell_restricted && !(R.z in using_map.ai_shell_allowed_levels))) + possible += R + + if(!LAZYLEN(possible)) + to_chat(src, span("warning", "No usable AI shell beacons detected.")) + + if(LAZYLEN(possible) < 2) + target = possible[1] + + if(!target || !(target in possible)) //If the AI is looking for a new shell, or its pre-selected shell is no longer valid + target = tgui_input_list(src, "Which body to control?", "Shell Choice", possible) + + + if(!target || target.stat == DEAD || target.deployed || !(!target.connected_ai || (target.connected_ai == AI) ) ) + if(target) + to_chat(src, span("warning", "It is no longer possible to deploy to \the [target].")) + else + to_chat(src, span("notice", "Deployment aborted.")) + return + + else if(mind) + to_chat(src, span("notice", "Transferring Shell")) + deployed = FALSE + updateicon() + mainframe.teleop = null + mainframe.deployed_shell = null + SetName("[modtype] AI Shell [num2text(ident)]") + if(radio) //Return radio to normal + radio.recalculateChannels() + if(!QDELETED(camera)) + camera.c_tag = real_name //update the camera name too + if(mainframe.laws) + mainframe.laws.show_laws(mainframe) //Always remind the AI when switching + mainframe = null + soul_link(/datum/soul_link/shared_body, src, target) + AI.deployed_shell = target + target.deploy_init(AI) + if(src.client) //CHOMPADDITION: Resize shell based on our preffered size + target.resize(src.client.prefs.size_multiplier) //CHOMPADDITION: Resize shell based on our preffered size + mind.transfer_to(target) + teleop = target // So the AI 'hears' messages near its core. + target.post_deploy() +//CHOMPADDITION END + /mob/living/silicon/robot/proc/revert_shell() if(!shell) return + src.verbs -= /mob/living/silicon/robot/proc/transfer_shell_act //CHOMPEDIT: remove sideloader undeploy() shell = FALSE GLOB.available_ai_shells -= src diff --git a/code/modules/mob/living/silicon/robot/robot_vr.dm b/code/modules/mob/living/silicon/robot/robot_vr.dm index 1a16ed9b04..d8956ee500 100644 --- a/code/modules/mob/living/silicon/robot/robot_vr.dm +++ b/code/modules/mob/living/silicon/robot/robot_vr.dm @@ -172,6 +172,8 @@ icon = 'modular_chomp/icons/mob/catborg/catborg.dmi' else if(icontype == "Raptor V-4") //Added for raptor sprites icon = 'icons/mob/raptorborg/raptor.dmi' + else if(icontype == "Raptor V-4.1") //CHOMPADDITION: letting us redurect to our raptor dmi + icon = 'modular_chomp/icons/mob/raptor_ch.dmi' //CHOMPADDITION: letting us redurect to our raptor dmi else icon = wideborg_dept return diff --git a/code/modules/mob/living/simple_mob/subtypes/mechanical/drones/mining_drone.dm b/code/modules/mob/living/simple_mob/subtypes/mechanical/drones/mining_drone.dm index 22af8baaa4..1bd3b9279a 100644 --- a/code/modules/mob/living/simple_mob/subtypes/mechanical/drones/mining_drone.dm +++ b/code/modules/mob/living/simple_mob/subtypes/mechanical/drones/mining_drone.dm @@ -43,7 +43,7 @@ organ_names = /decl/mob_organ_names/miningdrone ai_holder_type = /datum/ai_holder/simple_mob/ranged/kiting/threatening - say_list_type = /datum/say_list/malf_drone + say_list_type = /datum/say_list/malf_drone/mining tame_items = list( /obj/item/weapon/ore/verdantium = 90, @@ -66,6 +66,8 @@ var/last_search = 0 var/search_cooldown = 5 SECONDS + var/ignoreunarmed = TRUE + var/allowedtools = list(/obj/item/weapon/pickaxe, /obj/item/weapon/gun/energy/kinetic_accelerator, /obj/item/weapon/gun/magnetic/matfed/phoronbore, /obj/item/weapon/kinetic_crusher) /mob/living/simple_mob/mechanical/mining_drone/Initialize() ion_trail = new @@ -99,12 +101,52 @@ return . if(!.) + if(ai_holder.check_attacker(H)) //it doesn't care how nicely you're geared if you've attacked it + return FALSE + var/has_tool = FALSE var/obj/item/I = H.get_active_hand() - if(istype(I,/obj/item/weapon/pickaxe)) - has_tool = TRUE + if(!istype(I,/obj/item/weapon)) + if(ignoreunarmed) + return TRUE + else //just so they don't attack "miners" for having their mining gear in their offhand + var/obj/item/OH = H.get_inactive_hand() + if(OH) + for (var/path in allowedtools) + if(istype(OH,path)) + has_tool = TRUE + break + else + for (var/path in allowedtools) + if(istype(I,path)) + has_tool = TRUE + break + if(!has_tool) //if a valid tool not found in main hand, check offhand + var/obj/item/OH = H.get_inactive_hand() + if(OH) + for (var/path in allowedtools) + if(istype(OH,path)) + has_tool = TRUE + break return has_tool +// extra IFF aside from the above - will detect and react to the following attacks from allies (necessary as IIsAlly prevents retaliation if true) +/mob/living/simple_mob/mechanical/mining_drone/attack_hand(mob/living/L) + ..() + if(istype(L) && L.a_intent != I_HELP) + if(ai_holder) + ai_holder.add_attacker(L) + +/mob/living/simple_mob/mechanical/mining_drone/bullet_act(var/obj/item/projectile/P, var/def_zone) + ..() + if(ai_holder && P.firer) + ai_holder.add_attacker(P.firer) + +/mob/living/simple_mob/mechanical/mining_drone/hit_with_weapon(obj/item/I, mob/living/user, var/effective_force, var/hit_zone) + ..() + if(ai_holder) + ai_holder.add_attacker(user) + /mob/living/simple_mob/mechanical/mining_drone/handle_special() if(my_storage && (get_AI_stance() in list(STANCE_APPROACH, STANCE_IDLE, STANCE_FOLLOW)) && !is_AI_busy() && isturf(loc) && (world.time > last_search + search_cooldown) && (my_storage.contents.len < my_storage.max_storage_space)) last_search = world.time @@ -128,4 +170,13 @@ my_storage.remove_from_storage(I, OB) /decl/mob_organ_names/miningdrone - hit_zones = list("chassis", "comms array", "sensor suite", "left excavator module", "right excavator module", "maneuvering thruster") \ No newline at end of file + hit_zones = list("chassis", "comms array", "sensor suite", "left excavator module", "right excavator module", "maneuvering thruster") + +/datum/say_list/malf_drone/mining + say_threaten = list("Armed intruder detected.", "Lay down your weapons.", "Mining personnel only.", "Threat detected.", "Mining gear check: negative.") + +/mob/living/simple_mob/mechanical/mining_drone/scavenger //more aggro version for the debris field, with a weaker weapon + name = "scavenger drone" + ignoreunarmed = FALSE + allowedtools = list(/obj/item/weapon/pickaxe) + projectiletype = /obj/item/projectile/energy/excavate/weak \ No newline at end of file diff --git a/code/modules/mob/living/simple_mob/subtypes/vore/demon/demonAI_ch.dm b/code/modules/mob/living/simple_mob/subtypes/vore/demon/demonAI_ch.dm index ddd5898dc7..51e1f8ca99 100644 --- a/code/modules/mob/living/simple_mob/subtypes/vore/demon/demonAI_ch.dm +++ b/code/modules/mob/living/simple_mob/subtypes/vore/demon/demonAI_ch.dm @@ -136,28 +136,22 @@ /mob/living/simple_mob/vore/demonAI/break_cloak() uncloak() - /mob/living/simple_mob/vore/demonAI/is_cloaked() return cloaked - // Cloaks the spider automatically, if possible. /mob/living/simple_mob/vore/demonAI/handle_special() if(!cloaked && can_cloak()) cloak() - // Applies bonus base damage if cloaked. /mob/living/simple_mob/vore/demonAI/apply_bonus_melee_damage(atom/A, damage_amount) - var/turf/T = get_turf(src) if(cloaked) - new /obj/effect/gibspawner/generic(T) playsound(src.loc, 'sound/effects/blobattack.ogg', 50, 1) uncloak() return damage_amount + cloaked_bonus_damage return ..() - // Force uncloaking if attacked. /mob/living/simple_mob/vore/demonAI/bullet_act(obj/item/projectile/P) . = ..() @@ -199,4 +193,12 @@ /mob/living/simple_mob/vore/demonAI/attackby() playsound(src, 'sound/misc/demonlaugh.ogg', 50, 1) - ..() \ No newline at end of file + ..() + +/mob/living/simple_mob/vore/demonAI/gibspam + +/mob/living/simple_mob/vore/demonAI/gibspam/apply_bonus_melee_damage(atom/A, damage_amount) + var/turf/T = get_turf(src) + if(cloaked) + new /obj/effect/gibspawner/generic(T) + return ..() diff --git a/code/modules/mob/living/voice/voice.dm b/code/modules/mob/living/voice/voice.dm index 2752292ee2..901807583a 100644 --- a/code/modules/mob/living/voice/voice.dm +++ b/code/modules/mob/living/voice/voice.dm @@ -109,7 +109,9 @@ if(comm) var/speech_bubble_test = say_test(message) //var/image/speech_bubble = image('icons/mob/talk_vr.dmi',comm,"h[speech_bubble_test]") //VOREStation Edit - Commented out in case of needed reenable. - var/speech_type = speech_bubble_appearance() + var/speech_type = custom_speech_bubble + if(!speech_type || speech_type == "default") + speech_type = speech_bubble_appearance() var/image/speech_bubble = generate_speech_bubble(comm, "[speech_type][speech_bubble_test]") spawn(30) qdel(speech_bubble) diff --git a/code/modules/mob/login_ch.dm b/code/modules/mob/login_ch.dm new file mode 100644 index 0000000000..f61bb37ab0 --- /dev/null +++ b/code/modules/mob/login_ch.dm @@ -0,0 +1,3 @@ +/mob/Login() + . = ..() + set_listening(LISTENING_PLAYER) \ No newline at end of file diff --git a/code/modules/mob/logout.dm b/code/modules/mob/logout.dm index d965956dfe..ced40de20d 100644 --- a/code/modules/mob/logout.dm +++ b/code/modules/mob/logout.dm @@ -12,6 +12,7 @@ message_admins("Admin logout: [key_name(src)]") if(admins_number == 0) //Apparently the admin logging out is no longer an admin at this point, so we have to check this towards 0 and not towards 1. Awell. send2adminirc("[key_name(src)] logged out - no more admins online.") + set_listening(NON_LISTENING_ATOM) //maybe remove this, even if it will cause a teensy bit more lag ..() return 1 \ No newline at end of file diff --git a/code/modules/mob/mob_defines.dm b/code/modules/mob/mob_defines.dm index ceb49fa47a..2529936a7a 100644 --- a/code/modules/mob/mob_defines.dm +++ b/code/modules/mob/mob_defines.dm @@ -218,6 +218,8 @@ var/typing var/obj/effect/decal/typing_indicator + var/cur_typing_indicator + var/custom_speech_bubble = "default" var/low_priority = FALSE //Skip processing life() if there's just no players on this Z-level diff --git a/code/modules/mob/mob_helpers.dm b/code/modules/mob/mob_helpers.dm index 0a4e270ed6..3271bfaea2 100644 --- a/code/modules/mob/mob_helpers.dm +++ b/code/modules/mob/mob_helpers.dm @@ -481,9 +481,13 @@ var/list/intents = list(I_HELP,I_DISARM,I_GRAB,I_HURT) if(!name) name = (C.holder && C.holder.fakekey) ? C.holder.fakekey : C.key if(joined_ghosts) - say_dead_direct("The ghost of [name] now [pick("skulks","lurks","prowls","creeps","stalks")] among the dead. [message]") + //say_dead_direct("The ghost of [name] now [pick("skulks","lurks","prowls","creeps","stalks")] among the dead. [message]") //ChompEDIT - Removed for ghost privacy + log_and_message_admins("[name] entered ghost/observe mode. [message]") //ChompEDIT + else - say_dead_direct("[name] no longer [pick("skulks","lurks","prowls","creeps","stalks")] in the realm of the dead. [message]") + //say_dead_direct("[name] no longer [pick("skulks","lurks","prowls","creeps","stalks")] in the realm of the dead. [message]") //ChompEDIT - Removed for ghost privacy + log_and_message_admins("[name] left ghost/observe mode. [message]") //ChompEDIT + /mob/proc/switch_to_camera(var/obj/machinery/camera/C) if (!C.can_use() || stat || (get_dist(C, src) > 1 || machine != src || blinded || !canmove)) diff --git a/code/modules/mob/new_player/sprite_accessories.dm b/code/modules/mob/new_player/sprite_accessories.dm index a64def1f49..aae978f405 100644 --- a/code/modules/mob/new_player/sprite_accessories.dm +++ b/code/modules/mob/new_player/sprite_accessories.dm @@ -29,7 +29,7 @@ var/gender = NEUTER // Restrict some styles to specific species. Set to null to perform no checking. - var/list/species_allowed = list(SPECIES_HUMAN,SPECIES_PROMETHEAN,SPECIES_HUMAN_VATBORN) + var/list/species_allowed = list() // Whether or not the accessory can be affected by colouration var/do_colouration = 1 @@ -2093,10 +2093,12 @@ shaved //Empty list is unrestricted. Should only restrict the ones that make NO SENSE on other species, //like Tajaran inner-ear coloring overlay stuff. species_allowed = list() + //This lets all races use color_blend_mode = ICON_ADD var/genetic = TRUE + var/organ_override = FALSE var/body_parts = list() //A list of bodyparts this covers, in organ_tag defines //Reminder: BP_L_FOOT,BP_R_FOOT,BP_L_LEG,BP_R_LEG,BP_L_ARM,BP_R_ARM,BP_L_HAND,BP_R_HAND,BP_TORSO,BP_GROIN,BP_HEAD @@ -2266,19 +2268,19 @@ shaved name = "Color Bands (Face)" icon_state = "bandsface" body_parts = list(BP_HEAD) - species_allowed = list(SPECIES_TAJ,SPECIES_UNATHI) + //species_allowed = list(SPECIES_TAJ,SPECIES_UNATHI) //Removing Polaris whitelits /datum/sprite_accessory/marking/bandsface_human name = "Color Bands (Face)" icon_state = "bandshumanface" body_parts = list(BP_HEAD) - species_allowed = list(SPECIES_HUMAN,SPECIES_HUMAN_VATBORN,SPECIES_SKRELL) + //species_allowed = list(SPECIES_HUMAN,SPECIES_HUMAN_VATBORN,SPECIES_SKRELL) //Removing Polaris whitelits /datum/sprite_accessory/marking/tiger_stripes name = "Tiger Stripes" icon_state = "tiger" body_parts = list(BP_L_FOOT,BP_R_FOOT,BP_L_LEG,BP_R_LEG,BP_L_ARM,BP_R_ARM,BP_TORSO,BP_GROIN) - species_allowed = list(SPECIES_TAJ) //There's a tattoo for non-cats + //species_allowed = list(SPECIES_TAJ) //Removing Polaris whitelits //There's a tattoo for non-cats /datum/sprite_accessory/marking/tigerhead name = "Tiger Stripes (Head, Minor)" @@ -2289,7 +2291,7 @@ shaved name = "Tiger Stripes (Head, Major)" icon_state = "tigerface" body_parts = list(BP_HEAD) - species_allowed = list(SPECIES_TAJ) //There's a tattoo for non-cats + //species_allowed = list(SPECIES_TAJ) //Removing Polaris whitelits //There's a tattoo for non-cats /datum/sprite_accessory/marking/backstripe name = "Back Stripe" @@ -2385,7 +2387,7 @@ shaved name = "Full Face Paint" icon_state = "fullface" body_parts = list(BP_HEAD) - species_allowed = list(SPECIES_HUMAN,SPECIES_HUMAN_VATBORN,SPECIES_SKRELL) + //species_allowed = list(SPECIES_HUMAN,SPECIES_HUMAN_VATBORN,SPECIES_SKRELL) //Removing Polaris whitelits /datum/sprite_accessory/marking/lips name = "Lips" @@ -2807,55 +2809,55 @@ shaved name = "Socks Coloration (Taj)" icon_state = "taj_pawsocks" body_parts = list(BP_L_FOOT,BP_R_FOOT,BP_L_LEG,BP_R_LEG,BP_L_ARM,BP_R_ARM,BP_L_HAND,BP_R_HAND) - species_allowed = list(SPECIES_TAJ) + //species_allowed = list(SPECIES_TAJ) //Removing Polaris whitelits /datum/sprite_accessory/marking/una_paw_socks name = "Socks Coloration (Una)" icon_state = "una_pawsocks" body_parts = list(BP_L_FOOT,BP_R_FOOT,BP_L_LEG,BP_R_LEG,BP_L_ARM,BP_R_ARM,BP_L_HAND,BP_R_HAND) - species_allowed = list(SPECIES_UNATHI) + //species_allowed = list(SPECIES_UNATHI) //Removing Polaris whitelits /datum/sprite_accessory/marking/paw_socks name = "Socks Coloration (Generic)" icon_state = "pawsocks" body_parts = list(BP_L_FOOT,BP_R_FOOT,BP_L_LEG,BP_R_LEG,BP_L_ARM,BP_R_ARM,BP_L_HAND,BP_R_HAND) - species_allowed = list(SPECIES_TAJ, SPECIES_UNATHI) + //species_allowed = list(SPECIES_TAJ, SPECIES_UNATHI) //Removing Polaris whitelits /datum/sprite_accessory/marking/paw_socks_belly name = "Socks,Belly Coloration (Generic)" icon_state = "pawsocksbelly" body_parts = list(BP_L_FOOT,BP_R_FOOT,BP_L_LEG,BP_R_LEG,BP_L_ARM,BP_R_ARM,BP_L_HAND,BP_R_HAND,BP_GROIN,BP_TORSO) - species_allowed = list(SPECIES_TAJ, SPECIES_UNATHI) + //species_allowed = list(SPECIES_TAJ, SPECIES_UNATHI) //Removing Polaris whitelits /datum/sprite_accessory/marking/belly_hands_feet name = "Hands,Feet,Belly Color (Minor)" icon_state = "bellyhandsfeetsmall" body_parts = list(BP_L_FOOT,BP_R_FOOT,BP_L_LEG,BP_R_LEG,BP_L_ARM,BP_R_ARM,BP_L_HAND,BP_R_HAND,BP_GROIN,BP_TORSO) - species_allowed = list(SPECIES_TAJ, SPECIES_UNATHI) + //species_allowed = list(SPECIES_TAJ, SPECIES_UNATHI) //Removing Polaris whitelits /datum/sprite_accessory/marking/hands_feet_belly_full name = "Hands,Feet,Belly Color (Major)" icon_state = "bellyhandsfeet" body_parts = list(BP_L_FOOT,BP_R_FOOT,BP_L_LEG,BP_R_LEG,BP_L_ARM,BP_R_ARM,BP_L_HAND,BP_R_HAND,BP_GROIN,BP_TORSO) - species_allowed = list(SPECIES_TAJ, SPECIES_UNATHI) + //SPECIES_TAJ, SPECIES_UNATHI) //Removing Polaris whitelits /datum/sprite_accessory/marking/hands_feet_belly_full_female name = "Hands,Feet,Belly Color (Major, Female)" icon_state = "bellyhandsfeet_female" body_parts = list(BP_L_FOOT,BP_R_FOOT,BP_L_LEG,BP_R_LEG,BP_L_ARM,BP_R_ARM,BP_L_HAND,BP_R_HAND,BP_GROIN,BP_TORSO) - species_allowed = list(SPECIES_TAJ) + //species_allowed = list(SPECIES_TAJ) //Removing Polaris whitelits /datum/sprite_accessory/marking/patches name = "Color Patches" icon_state = "patches" body_parts = list(BP_L_FOOT,BP_R_FOOT,BP_L_LEG,BP_R_LEG,BP_L_ARM,BP_R_ARM,BP_L_HAND,BP_R_HAND,BP_TORSO,BP_GROIN) - species_allowed = list(SPECIES_TAJ) + //species_allowed = list(SPECIES_TAJ) //Removing Polaris whitelits /datum/sprite_accessory/marking/patchesface name = "Color Patches (Face)" icon_state = "patchesface" body_parts = list(BP_HEAD) - species_allowed = list(SPECIES_TAJ) + //species_allowed = list(SPECIES_TAJ) //Removing Polaris whitelits //Taj specific stuff @@ -2863,74 +2865,74 @@ shaved name = "Belly Fur (Taj)" icon_state = "taj_belly" body_parts = list(BP_TORSO) - species_allowed = list(SPECIES_TAJ) + //species_allowed = list(SPECIES_TAJ) //Removing Polaris whitelits /datum/sprite_accessory/marking/taj_bellyfull name = "Belly Fur Wide (Taj)" icon_state = "taj_bellyfull" body_parts = list(BP_TORSO) - species_allowed = list(SPECIES_TAJ) + //species_allowed = list(SPECIES_TAJ) //Removing Polaris whitelits /datum/sprite_accessory/marking/taj_earsout name = "Outer Ear (Taj)" icon_state = "taj_earsout" body_parts = list(BP_HEAD) - species_allowed = list(SPECIES_TAJ) + //species_allowed = list(SPECIES_TAJ) //Removing Polaris whitelits /datum/sprite_accessory/marking/taj_earsin name = "Inner Ear (Taj)" icon_state = "taj_earsin" body_parts = list(BP_HEAD) - species_allowed = list(SPECIES_TAJ) + //species_allowed = list(SPECIES_TAJ) //Removing Polaris whitelits /datum/sprite_accessory/marking/taj_nose name = "Nose Color (Taj)" icon_state = "taj_nose" body_parts = list(BP_HEAD) - species_allowed = list(SPECIES_TAJ) + //species_allowed = list(SPECIES_TAJ) //Removing Polaris whitelits /datum/sprite_accessory/marking/taj_crest name = "Chest Fur Crest (Taj)" icon_state = "taj_crest" body_parts = list(BP_TORSO) - species_allowed = list(SPECIES_TAJ) + //species_allowed = list(SPECIES_TAJ) //Removing Polaris whitelits /datum/sprite_accessory/marking/taj_muzzle name = "Muzzle Color (Taj)" icon_state = "taj_muzzle" body_parts = list(BP_HEAD) - species_allowed = list(SPECIES_TAJ) + //species_allowed = list(SPECIES_TAJ) //Removing Polaris whitelits /datum/sprite_accessory/marking/taj_face name = "Cheeks Color (Taj)" icon_state = "taj_face" body_parts = list(BP_HEAD) - species_allowed = list(SPECIES_TAJ) + //species_allowed = list(SPECIES_TAJ) //Removing Polaris whitelits /datum/sprite_accessory/marking/taj_all name = "All Taj Head (Taj)" icon_state = "taj_all" body_parts = list(BP_HEAD) - species_allowed = list(SPECIES_TAJ) + //species_allowed = list(SPECIES_TAJ) //Removing Polaris whitelits //Una specific stuff /datum/sprite_accessory/marking/una_face name = "Face Color (Una)" icon_state = "una_face" body_parts = list(BP_HEAD) - species_allowed = list(SPECIES_UNATHI) + //species_allowed = list(SPECIES_UNATHI) //Removing Polaris whitelits /datum/sprite_accessory/marking/una_facelow name = "Face Color Low (Una)" icon_state = "una_facelow" body_parts = list(BP_HEAD) - species_allowed = list(SPECIES_UNATHI) + //species_allowed = list(SPECIES_UNATHI) //Removing Polaris whitelits /datum/sprite_accessory/marking/una_scutes name = "Scutes (Una)" icon_state = "una_scutes" body_parts = list(BP_TORSO) - species_allowed = list(SPECIES_UNATHI) + //species_allowed = list(SPECIES_UNATHI) //Removing Polaris whitelits //Tesh stuff. @@ -2952,41 +2954,41 @@ shaved name = "Leaves (Diona)" icon_state = "diona_leaves" body_parts = list(BP_L_FOOT, BP_R_FOOT, BP_L_LEG, BP_R_LEG, BP_L_ARM, BP_R_ARM, BP_L_HAND, BP_R_HAND, BP_TORSO, BP_GROIN, BP_HEAD) - species_allowed = list(SPECIES_DIONA) + //species_allowed = list(SPECIES_DIONA) //Removing Polaris whitelits /datum/sprite_accessory/marking/diona_thorns name = "Thorns (Diona)" icon_state = "diona_thorns" body_parts =list(BP_TORSO, BP_HEAD) - species_allowed = list(SPECIES_DIONA) + //species_allowed = list(SPECIES_DIONA) //Removing Polaris whitelits do_colouration = 0 /datum/sprite_accessory/marking/diona_flowers name = "Flowers (Diona)" icon_state = "diona_flowers" body_parts =list(BP_TORSO, BP_HEAD) - species_allowed = list(SPECIES_DIONA) + //species_allowed = list(SPECIES_DIONA) //Removing Polaris whitelits do_colouration = 0 /datum/sprite_accessory/marking/diona_moss name = "Moss (Diona)" icon_state = "diona_moss" body_parts =list(BP_TORSO) - species_allowed = list(SPECIES_DIONA) + //species_allowed = list(SPECIES_DIONA) //Removing Polaris whitelits do_colouration = 0 /datum/sprite_accessory/marking/diona_mushroom name = "Mushroom (Diona)" icon_state = "diona_mushroom" body_parts =list(BP_HEAD) - species_allowed = list(SPECIES_DIONA) + //species_allowed = list(SPECIES_DIONA) //Removing Polaris whitelits do_colouration = 0 /datum/sprite_accessory/marking/diona_antennae name = "Antennae (Diona)" icon_state = "diona_antennae" body_parts =list(BP_HEAD) - species_allowed = list(SPECIES_DIONA) + //species_allowed = list(SPECIES_DIONA) //Removing Polaris whitelits do_colouration = 0 //Skrell stuff. @@ -2995,7 +2997,7 @@ shaved name = "Countershading (Skrell)" icon_state = "skr_shade" body_parts = list(BP_TORSO, BP_GROIN, BP_HEAD) - species_allowed = list(SPECIES_SKRELL) + //species_allowed = list(SPECIES_SKRELL) //Removing Polaris whitelits /datum/sprite_accessory/marking/skrell/stripes name = "Poison Dart Stripes (Skrell)" @@ -3009,7 +3011,7 @@ shaved icon_state = "aug_backports" genetic = FALSE body_parts = list(BP_TORSO) - species_allowed = list(SPECIES_HUMAN,SPECIES_SKRELL,SPECIES_TAJ,SPECIES_HUMAN_VATBORN,SPECIES_UNATHI,SPECIES_ZADDAT) + species_allowed = list() //Removing Polaris whitelits /datum/sprite_accessory/marking/aug/diode name = "Augment (Backports Diode, Back)" @@ -3047,7 +3049,7 @@ shaved name = "Augment (Lower Jaw, Head)" icon_state = "aug_lowerjaw" body_parts = list(BP_HEAD) - species_allowed = list(SPECIES_HUMAN,SPECIES_SKRELL,SPECIES_HUMAN_VATBORN,SPECIES_ZADDAT) + species_allowed = list() //Removing Polaris whitelits /datum/sprite_accessory/marking/aug/scalpports name = "Augment (Scalp Ports)" @@ -3489,27 +3491,64 @@ shaved /datum/sprite_accessory/skin/human name = "Default human skin" icon_state = "default" - species_allowed = list(SPECIES_HUMAN,SPECIES_HUMAN_VATBORN) + //species_allowed = list(SPECIES_HUMAN,SPECIES_HUMAN_VATBORN) //Removing Polaris whitelits /datum/sprite_accessory/skin/human_tatt01 name = "Tatt01 human skin" icon_state = "tatt1" - species_allowed = list(SPECIES_HUMAN,SPECIES_HUMAN_VATBORN) + //species_allowed = list(SPECIES_HUMAN,SPECIES_HUMAN_VATBORN) //Removing Polaris whitelits /datum/sprite_accessory/skin/tajaran name = "Default tajaran skin" icon_state = "default" icon = 'icons/mob/human_races/r_tajaran.dmi' - species_allowed = list(SPECIES_TAJ) + //species_allowed = list(SPECIES_TAJ) //Removing Polaris whitelits /datum/sprite_accessory/skin/unathi name = "Default Unathi skin" icon_state = "default" icon = 'icons/mob/human_races/r_lizard.dmi' - species_allowed = list(SPECIES_UNATHI) + //species_allowed = list(SPECIES_UNATHI) //Removing Polaris whitelits /datum/sprite_accessory/skin/skrell name = "Default skrell skin" icon_state = "default" icon = 'icons/mob/human_races/r_skrell.dmi' - species_allowed = list(SPECIES_SKRELL) + //species_allowed = list(SPECIES_SKRELL) //Removing Polaris whitelits + +//Vox Exclusives +/datum/sprite_accessory/marking/vox + name = "Vox Beak" + icon = 'icons/mob/human_races/markings_vox.dmi' + icon_state = "vox_beak" + species_allowed = list(SPECIES_VOX) + color_blend_mode = ICON_MULTIPLY + body_parts = list(BP_HEAD) + +/datum/sprite_accessory/marking/vox/voxtalons + name = "Vox scales" + icon_state = "vox_talons" + color_blend_mode = ICON_MULTIPLY + body_parts = list(BP_R_ARM,BP_L_ARM,BP_R_HAND,BP_L_HAND,BP_R_LEG,BP_L_LEG,BP_R_FOOT,BP_L_FOOT) + +/datum/sprite_accessory/marking/vox/voxclaws + name = "Vox Claws" + icon_state = "Voxclaws" + color_blend_mode = ICON_MULTIPLY + body_parts = list(BP_L_FOOT,BP_R_FOOT,BP_L_HAND,BP_R_HAND) + +/datum/sprite_accessory/marking/vox/vox_alt + name = "Vox Alternate" + icon_state = "bay_vox" + body_parts = list(BP_L_FOOT,BP_R_FOOT,BP_L_LEG,BP_R_LEG,BP_L_ARM,BP_R_ARM,BP_L_HAND,BP_R_HAND,BP_TORSO,BP_GROIN,BP_HEAD) + +/datum/sprite_accessory/marking/vox/vox_alt_eyes + name = "Alternate Vox Eyes" + icon_state = "bay_vox_eyes" + body_parts = list(BP_HEAD) + +/datum/sprite_accessory/marking/vox/voxscales + name = "Alternate Vox scales" + icon_state = "Voxscales" + color_blend_mode = ICON_MULTIPLY + body_parts = list(BP_R_ARM,BP_L_ARM,BP_R_HAND,BP_L_HAND,BP_R_LEG,BP_L_LEG,BP_R_FOOT,BP_L_FOOT) diff --git a/code/modules/mob/new_player/sprite_accessories_ear_ch.dm b/code/modules/mob/new_player/sprite_accessories_ear_ch.dm index 05533bcc76..4ff1e83c1a 100644 --- a/code/modules/mob/new_player/sprite_accessories_ear_ch.dm +++ b/code/modules/mob/new_player/sprite_accessories_ear_ch.dm @@ -1,11 +1,11 @@ -/datum/sprite_accessory/ears/alien_slug +/*/datum/sprite_accessory/ears/alien_slug //Is now a base vorestation feature name = "Alien slug ears" desc = "The ears of a slug from space" icon = 'icons/mob/vore/ears_ch.dmi' icon_state = "alien_slug" do_colouration = 1 color_blend_mode = ICON_MULTIPLY - +*/ /datum/sprite_accessory/ears/zorgoia name = "Zorgoia" desc = "Ears only the slinkiest of noodles can have!" @@ -14,6 +14,33 @@ do_colouration = 1 color_blend_mode = ICON_MULTIPLY +/datum/sprite_accessory/ears/protogen + name = "Protogen" + desc = "" + icon = 'icons/mob/vore/ears_ch.dmi' + icon_state = "protogen" + extra_overlay = "protogen_fluff" + do_colouration = 1 + color_blend_mode = ICON_MULTIPLY + +/datum/sprite_accessory/ears/miqote + name = "Miqo'te" + desc = "" + icon = 'icons/mob/vore/ears_ch.dmi' + icon_state = "miqote" + extra_overlay = "miqote_inner" + do_colouration = 1 + color_blend_mode = ICON_MULTIPLY + +/datum/sprite_accessory/ears/fourears + name = "Four Ears" + desc = "" + icon = 'icons/mob/vore/ears_ch.dmi' + icon_state = "fourears" + extra_overlay = "fourears_fluff" + do_colouration = 1 + color_blend_mode = ICON_MULTIPLY + /datum/sprite_accessory/ears/vale name = "VALE Model Ear Coloring" desc = "" @@ -153,4 +180,4 @@ icon_state = "goatflops" extra_overlay = "goatflops_horn" do_colouration = 1 - color_blend_mode = ICON_MULTIPLY \ No newline at end of file + color_blend_mode = ICON_MULTIPLY diff --git a/code/modules/mob/new_player/sprite_accessories_ear_vr.dm b/code/modules/mob/new_player/sprite_accessories_ear_vr.dm index 4b9e3f6ddf..8ba31db639 100644 --- a/code/modules/mob/new_player/sprite_accessories_ear_vr.dm +++ b/code/modules/mob/new_player/sprite_accessories_ear_vr.dm @@ -32,6 +32,14 @@ // Ears avaliable to anyone +/datum/sprite_accessory/ears/alien_slug + name = "Alien slug antennae" + desc = "" + icon = 'icons/mob/vore/ears_vr.dmi' + icon_state = "alien_slug" + do_colouration = 1 + color_blend_mode = ICON_MULTIPLY + /datum/sprite_accessory/ears/taj_ears name = "tajaran, colorable (old)" species_allowed = list(SPECIES_HUMAN, SPECIES_SKRELL, SPECIES_UNATHI, SPECIES_TAJ, SPECIES_TESHARI, SPECIES_NEVREAN, SPECIES_AKULA, SPECIES_SERGAL, SPECIES_FENNEC, SPECIES_ZORREN_HIGH, SPECIES_VULPKANIN, SPECIES_XENOCHIMERA, SPECIES_XENOHYBRID, SPECIES_VASILISSAN, SPECIES_RAPALA, SPECIES_PROTEAN, SPECIES_ALRAUNE, SPECIES_WEREBEAST, SPECIES_SHADEKIN, SPECIES_SHADEKIN_CREW, SPECIES_ALTEVIAN) //This lets all races use @@ -893,4 +901,9 @@ icon = 'icons/mob/vore/ears_vr.dmi' icon_state = "curly_bug_tesh" do_colouration = 1 - color_blend_mode = ICON_MULTIPLY \ No newline at end of file + color_blend_mode = ICON_MULTIPLY + +/datum/sprite_accessory/ears/syrishroom + name = "Orange Mushroom Cap" + icon = 'icons/mob/vore/ears_vr.dmi' + icon_state = "syrishroom" \ No newline at end of file diff --git a/code/modules/mob/new_player/sprite_accessories_extra.dm b/code/modules/mob/new_player/sprite_accessories_extra.dm index 0e8b603a7f..3569d1badd 100644 --- a/code/modules/mob/new_player/sprite_accessories_extra.dm +++ b/code/modules/mob/new_player/sprite_accessories_extra.dm @@ -1,7 +1,7 @@ /datum/sprite_accessory/marking/vr icon = 'icons/mob/human_races/markings_alt.dmi' - species_allowed = list(SPECIES_EVENT1, SPECIES_EVENT2, SPECIES_EVENT3) + species_allowed = list() /datum/sprite_accessory/marking/vr/vulp_belly name = "belly fur (Vulp)" @@ -68,14 +68,14 @@ icon_state = "sergal_full" color_blend_mode = ICON_MULTIPLY body_parts = list(BP_L_FOOT,BP_R_FOOT,BP_L_LEG,BP_R_LEG,BP_L_ARM,BP_R_ARM,BP_L_HAND,BP_R_HAND,BP_GROIN,BP_TORSO,BP_HEAD) - species_allowed = list("Sergal") + //species_allowed = list("Sergal") //Removing Polaris whitelits /datum/sprite_accessory/marking/vr/sergal_full_female name = "Sergal Markings (Female)" icon_state = "sergal_full_female" color_blend_mode = ICON_MULTIPLY body_parts = list(BP_L_FOOT,BP_R_FOOT,BP_L_LEG,BP_R_LEG,BP_L_ARM,BP_R_ARM,BP_L_HAND,BP_R_HAND,BP_GROIN,BP_TORSO,BP_HEAD) - species_allowed = list("Sergal") + //species_allowed = list("Sergal") //Removing Polaris whitelits /datum/sprite_accessory/marking/vr/monoeye name = "Monoeye" @@ -337,6 +337,7 @@ icon_state = "tesh-feathers" color_blend_mode = ICON_MULTIPLY body_parts = list(BP_L_FOOT,BP_R_FOOT,BP_L_HAND,BP_R_HAND) + species_allowed = list(SPECIES_TESHARI) /datum/sprite_accessory/marking/vr/harpy_feathers name = "Rapala leg Feather" @@ -406,13 +407,13 @@ name = "Anime Eyes Outer" icon_state = "animeeyesouter" body_parts = list(BP_HEAD) - +/* /datum/sprite_accessory/marking/vr/panda_eye_marks name = "Panda Eye Markings" icon_state = "eyes_panda" body_parts = list(BP_HEAD) species_allowed = list(SPECIES_EVENT1, SPECIES_EVENT2, SPECIES_EVENT3) - +*/ /datum/sprite_accessory/marking/vr/catwomantorso name = "Catwoman chest stripes" icon_state = "catwomanchest" @@ -442,6 +443,7 @@ icon_state = "teshi_sf" color_blend_mode = ICON_MULTIPLY body_parts = list(BP_L_FOOT,BP_R_FOOT,BP_L_HAND,BP_R_HAND,BP_TORSO) + species_allowed = list(SPECIES_TESHARI) /datum/sprite_accessory/marking/vr/spirit_lights name = "Ward - Spirit FBP Lights" @@ -564,7 +566,7 @@ shadekin_snoot icon_state = "dnose" color_blend_mode = ICON_MULTIPLY body_parts = list(BP_HEAD) - + /datum/sprite_accessory/marking/vr/vulp_skull name = "Vulpkanin Skull Face" icon_state = "vulp_skull" @@ -612,13 +614,14 @@ shadekin_snoot icon_state = "chest_fluff" color_blend_mode = ICON_MULTIPLY body_parts = list(BP_TORSO) - + /datum/sprite_accessory/marking/vr/tesh_skull name = "Teshari Skull Face" icon_state = "teshari_skull" color_blend_mode = ICON_MULTIPLY body_parts = list(BP_HEAD) - + species_allowed = list(SPECIES_TESHARI) + /datum/sprite_accessory/marking/vr/shoulder_fluff name = "Shoulder Fluff" icon_state = "shoulder_markings" diff --git a/code/modules/mob/new_player/sprite_accessories_extra_ch.dm b/code/modules/mob/new_player/sprite_accessories_extra_ch.dm index cb65a846f6..a702297cc1 100644 --- a/code/modules/mob/new_player/sprite_accessories_extra_ch.dm +++ b/code/modules/mob/new_player/sprite_accessories_extra_ch.dm @@ -1,3 +1,7 @@ +/datum/sprite_accessory/marking + var/digitigrade_acceptance = MARKING_NONDIGI_ONLY + var/digitigrade_icon = 'icons/mob/human_races/markings_digi_ch.dmi' + /datum/sprite_accessory/marking/ch icon = 'icons/mob/human_races/markings_ch.dmi' @@ -149,65 +153,167 @@ color_blend_mode = ICON_MULTIPLY body_parts = list(BP_HEAD) +/datum/sprite_accessory/marking/ch/protogen_snout + name = "Protogen Snout" + icon_state = "protogen_snout" + color_blend_mode = ICON_MULTIPLY + body_parts = list(BP_HEAD) + +/datum/sprite_accessory/marking/ch/hshark_snout + name = "HShark Snout" + icon_state = "hshark_snout" + color_blend_mode = ICON_MULTIPLY + body_parts = list(BP_HEAD) + +/datum/sprite_accessory/marking/ch/hshark_head + name = "HShark Head" + icon_state = "hshark" + color_blend_mode = ICON_MULTIPLY + body_parts = list(BP_HEAD) + +/datum/sprite_accessory/marking/ch/ram_horns + name = "Ram Horns" + icon_state = "ram_horns" + color_blend_mode = ICON_MULTIPLY + body_parts = list(BP_HEAD) + +/datum/sprite_accessory/marking/ch/neckfluff + name = "Neck Fluff" + icon_state = "neckfluff" + color_blend_mode = ICON_MULTIPLY + body_parts = list(BP_HEAD) + +/datum/sprite_accessory/marking/ch/husky_chest + name = "Husky Chest" + icon_state = "husky" + color_blend_mode = ICON_MULTIPLY + body_parts = list(BP_TORSO, BP_GROIN) + +/datum/sprite_accessory/marking/ch/fox_head + name = "Fox Head" + icon_state = "fox" + color_blend_mode = ICON_MULTIPLY + body_parts = list(BP_HEAD) + +/datum/sprite_accessory/marking/ch/fox_chest + name = "Fox Chest" + icon_state = "fox" + color_blend_mode = ICON_MULTIPLY + body_parts = list(BP_TORSO, BP_GROIN) + +/datum/sprite_accessory/marking/ch/fox_hsocks + name = "Fox Hand Socks" + icon_state = "fox" + color_blend_mode = ICON_MULTIPLY + body_parts = list(BP_R_ARM, BP_R_HAND, BP_L_ARM, BP_L_HAND) + +/datum/sprite_accessory/marking/ch/fox_lsocks + name = "Fox Leg Socks" + icon_state = "fox" + color_blend_mode = ICON_MULTIPLY + body_parts = list(BP_R_LEG,BP_R_FOOT,BP_L_LEG,BP_L_FOOT) + digitigrade_acceptance = MARKING_ALL_LEGS + +/datum/sprite_accessory/marking/ch/tiger_head + name = "Tiger Head" + icon_state = "tiger" + color_blend_mode = ICON_MULTIPLY + body_parts = list(BP_HEAD) + +/datum/sprite_accessory/marking/ch/tiger_chest + name = "Tiger Chest" + icon_state = "tiger" + color_blend_mode = ICON_MULTIPLY + body_parts = list(BP_TORSO, BP_GROIN) + +/datum/sprite_accessory/marking/ch/tiger_arms + name = "Tiger Arms" + icon_state = "tiger" + color_blend_mode = ICON_MULTIPLY + body_parts = list(BP_R_ARM, BP_R_HAND, BP_L_ARM, BP_L_HAND) + +/datum/sprite_accessory/marking/ch/tiger_legs + name = "Tiger Legs" + icon_state = "tiger" + color_blend_mode = ICON_MULTIPLY + body_parts = list(BP_R_LEG,BP_R_FOOT,BP_L_LEG,BP_L_FOOT) + digitigrade_acceptance = MARKING_ALL_LEGS + +/datum/sprite_accessory/marking/ch/gradient_arms + name = "Gradient Arms" + icon_state = "gradient" + color_blend_mode = ICON_MULTIPLY + body_parts = list(BP_R_ARM, BP_R_HAND, BP_L_ARM, BP_L_HAND) + +/datum/sprite_accessory/marking/ch/gradient_legs + name = "Gradient Legs" + icon_state = "gradient" + color_blend_mode = ICON_MULTIPLY + body_parts = list(BP_R_LEG,BP_R_FOOT,BP_L_LEG,BP_L_FOOT) + digitigrade_acceptance = MARKING_ALL_LEGS + +/datum/sprite_accessory/marking/ch/hawk_talons + name = "Hawk Talons (Legs)" + icon_state = "hawktalon" + color_blend_mode = ICON_MULTIPLY + body_parts = list(BP_R_LEG,BP_R_FOOT,BP_L_LEG,BP_L_FOOT) + digitigrade_acceptance = MARKING_ALL_LEGS + +/datum/sprite_accessory/marking/ch/deer_hooves + name = "Deer Hooves" + icon_state = "deerhoof" + color_blend_mode = ICON_MULTIPLY + body_parts = list(BP_R_FOOT, BP_L_FOOT) + digitigrade_acceptance = MARKING_ALL_LEGS + +/datum/sprite_accessory/marking/ch/frills_simple + name = "Frills (Simple)" + icon_state = "frills_simple" + color_blend_mode = ICON_MULTIPLY + body_parts = list(BP_HEAD) + +/datum/sprite_accessory/marking/ch/frills_short + name = "Frills (Short)" + icon_state = "frills_short" + color_blend_mode = ICON_MULTIPLY + body_parts = list(BP_HEAD) + +/datum/sprite_accessory/marking/ch/frills_aquatic + name = "Frills (Aquatic)" + icon_state = "frills_aqua" + color_blend_mode = ICON_MULTIPLY + body_parts = list(BP_HEAD) + /datum/sprite_accessory/marking/ch/guilmonhead - name = "Guilmon head" - icon_state = "guilmon_head" - color_blend_mode = ICON_MULTIPLY - body_parts = list(BP_HEAD) + name = "Guilmon Head" + icon_state = "guilmon_head" + color_blend_mode = ICON_MULTIPLY + body_parts = list(BP_HEAD) /datum/sprite_accessory/marking/ch/guilmonchest - name = "Guilmon Chest" - icon_state = "guilmon_chest" - color_blend_mode = ICON_MULTIPLY - body_parts = list(BP_TORSO) + name = "Guilmon Chest" + icon_state = "guilmon_chest" + color_blend_mode = ICON_MULTIPLY + body_parts = list(BP_TORSO) /datum/sprite_accessory/marking/ch/guilmonchestmarking - name = "Guilmon Chest Markings" - icon_state = "guilmon_marking" - color_blend_mode = ICON_MULTIPLY - body_parts = list(BP_TORSO) + name = "Guilmon Chest Markings" + icon_state = "guilmon_marking" + color_blend_mode = ICON_MULTIPLY + body_parts = list(BP_TORSO) /datum/sprite_accessory/marking/ch/guilmonarms - name = "Guilmon arms" - icon_state = "guilmon" - color_blend_mode = ICON_MULTIPLY - body_parts = list(BP_R_ARM,BP_L_ARM,BP_R_HAND,BP_L_HAND) + name = "Guilmon Arms" + icon_state = "guilmon" + color_blend_mode = ICON_MULTIPLY + body_parts = list(BP_R_ARM,BP_L_ARM,BP_R_HAND,BP_L_HAND) -/datum/sprite_accessory/marking/ch/guilmonRLeg - name = "Guilmon Right leg" - icon_state = "guilmon" - color_blend_mode = ICON_MULTIPLY - body_parts = list(BP_R_LEG) - -/datum/sprite_accessory/marking/ch/guilmonLleg - name = "Guilmon Left leg" - icon_state = "guilmon" - color_blend_mode = ICON_MULTIPLY - body_parts = list(BP_L_LEG) - -/datum/sprite_accessory/marking/ch/guilmondigiRleg1 - name = "Guilmon digigrade right leg 1" - icon_state = "guilmon_digitigrade_1" - color_blend_mode = ICON_MULTIPLY - body_parts = list(BP_R_LEG) - -/datum/sprite_accessory/marking/ch/guilmondigiLleg1 - name = "Guilmon digigrade left leg 1" - icon_state = "guilmon_digitigrade_1" - color_blend_mode = ICON_MULTIPLY - body_parts = list(BP_L_LEG) - -/datum/sprite_accessory/marking/ch/guilmondigiRleg2 - name = "Guilmon digigrade right leg 2" - icon_state = "guilmon_digitigrade_2" - color_blend_mode = ICON_MULTIPLY - body_parts = list(BP_R_LEG) - -/datum/sprite_accessory/marking/ch/guilmondigiLleg2 - name = "Guilmon digigrade left leg 2" - icon_state = "guilmon_digitigrade_2" - color_blend_mode = ICON_MULTIPLY - body_parts = list(BP_L_LEG) +/datum/sprite_accessory/marking/ch/guilmonlegs + name = "Guilmon Legs" + icon_state = "guilmon" + color_blend_mode = ICON_MULTIPLY + body_parts = list(BP_R_LEG,BP_R_FOOT,BP_L_LEG,BP_L_FOOT) + digitigrade_acceptance = MARKING_ALL_LEGS /datum/sprite_accessory/tail/special/orca_tail name = "Orca Tail" @@ -332,6 +438,7 @@ //Digitigrade markings /datum/sprite_accessory/marking/digi icon = 'icons/mob/human_races/markings_digi_ch.dmi' + digitigrade_acceptance = MARKING_DIGITIGRADE_ONLY /datum/sprite_accessory/marking/digi/fullleft name = "Digitigrade Full Left Leg(Only works with digitigrade legs)" diff --git a/code/modules/mob/new_player/sprite_accessories_extra_vr.dm b/code/modules/mob/new_player/sprite_accessories_extra_vr.dm index e3ee23efe4..942f49087d 100644 --- a/code/modules/mob/new_player/sprite_accessories_extra_vr.dm +++ b/code/modules/mob/new_player/sprite_accessories_extra_vr.dm @@ -2,9 +2,8 @@ //Reminder: BP_L_FOOT,BP_R_FOOT,BP_L_LEG,BP_R_LEG,BP_L_ARM,BP_R_ARM,BP_L_HAND,BP_R_HAND,BP_TORSO,BP_GROIN,BP_HEAD /datum/sprite_accessory/marking //Override for base markings - var/organ_override = FALSE color_blend_mode = ICON_ADD - species_allowed = list(SPECIES_HUMAN, SPECIES_SKRELL, SPECIES_UNATHI, SPECIES_TAJ, SPECIES_TESHARI, SPECIES_NEVREAN, SPECIES_AKULA, SPECIES_SERGAL, SPECIES_FENNEC, SPECIES_ZORREN_HIGH, SPECIES_VULPKANIN, SPECIES_XENOCHIMERA, SPECIES_XENOHYBRID, SPECIES_VASILISSAN, SPECIES_RAPALA, SPECIES_PROTEAN, SPECIES_ALRAUNE, SPECIES_WEREBEAST, SPECIES_SHADEKIN, SPECIES_SHADEKIN_CREW, SPECIES_ALTEVIAN) //This lets all races use + species_allowed = list() //This lets all races use /datum/sprite_accessory/marking/vr_vulp_belly name = "belly fur (Vulp)" @@ -82,7 +81,7 @@ icon_state = "sergal_full" color_blend_mode = ICON_MULTIPLY body_parts = list(BP_L_FOOT,BP_R_FOOT,BP_L_LEG,BP_R_LEG,BP_L_ARM,BP_R_ARM,BP_L_HAND,BP_R_HAND,BP_GROIN,BP_TORSO,BP_HEAD) - species_allowed = list("Sergal") + //species_allowed = list("Sergal") //Removing Polaris whitelits /datum/sprite_accessory/marking/vr_sergal_full_female name = "Sergal Markings (Female)" @@ -90,7 +89,7 @@ icon_state = "sergal_full_female" color_blend_mode = ICON_MULTIPLY body_parts = list(BP_L_FOOT,BP_R_FOOT,BP_L_LEG,BP_R_LEG,BP_L_ARM,BP_R_ARM,BP_L_HAND,BP_R_HAND,BP_GROIN,BP_TORSO,BP_HEAD) - species_allowed = list("Sergal") + //("Sergal") /datum/sprite_accessory/marking/vr_monoeye name = "Monoeye" @@ -402,6 +401,7 @@ icon_state = "tesh-feathers" color_blend_mode = ICON_MULTIPLY body_parts = list(BP_L_FOOT,BP_R_FOOT,BP_L_HAND,BP_R_HAND) + species_allowed = list(SPECIES_TESHARI) /datum/sprite_accessory/marking/vr_harpy_feathers name = "Rapala leg Feather" @@ -489,7 +489,7 @@ icon = 'icons/mob/human_races/markings_vr.dmi' icon_state = "eyes_panda" body_parts = list(BP_HEAD) - species_allowed = list(SPECIES_EVENT1, SPECIES_EVENT2, SPECIES_EVENT3) + //species_allowed = list(SPECIES_EVENT1, SPECIES_EVENT2, SPECIES_EVENT3) //Removing Polaris whitelits /datum/sprite_accessory/marking/vr_catwomantorso name = "Catwoman chest stripes" @@ -525,6 +525,7 @@ icon_state = "teshi_sf" color_blend_mode = ICON_MULTIPLY body_parts = list(BP_L_FOOT,BP_R_FOOT,BP_L_HAND,BP_R_HAND,BP_TORSO) + species_allowed = list(SPECIES_TESHARI) /datum/sprite_accessory/marking/vr_spirit_lights name = "Ward - Spirit FBP Lights" @@ -681,19 +682,6 @@ body_parts = list(BP_L_FOOT,BP_R_FOOT) //CitRP stuff -/datum/sprite_accessory/marking/vr_vox_alt - name = "Vox Alternate" - icon = 'icons/mob/human_races/markings_vr.dmi' - icon_state = "bay_vox" - body_parts = list(BP_L_FOOT,BP_R_FOOT,BP_L_LEG,BP_R_LEG,BP_L_ARM,BP_R_ARM,BP_L_HAND,BP_R_HAND,BP_TORSO,BP_GROIN,BP_HEAD) - species_allowed = list(SPECIES_VOX) - -/datum/sprite_accessory/marking/vr_vox_alt_eyes - name = "Alternate Vox Eyes" - icon = 'icons/mob/human_races/markings_vr.dmi' - icon_state = "bay_vox_eyes" - body_parts = list(BP_HEAD) - species_allowed = list(SPECIES_VOX) /datum/sprite_accessory/marking/vr_c_beast_body name = "Cyber Body" @@ -769,27 +757,6 @@ body_parts = list(BP_L_LEG,BP_R_LEG,BP_L_HAND,BP_R_HAND,BP_TORSO,BP_GROIN,BP_HEAD) species_allowed = list(SPECIES_TESHARI) -/datum/sprite_accessory/marking/vr_voxscales - name = "Vox Scales" - icon = 'icons/mob/human_races/markings_vr.dmi' - icon_state = "Voxscales" - color_blend_mode = ICON_MULTIPLY - body_parts = list(BP_L_FOOT,BP_R_FOOT,BP_L_LEG,BP_R_LEG,BP_L_ARM,BP_R_ARM,BP_L_HAND,BP_R_HAND,BP_HEAD) - -/datum/sprite_accessory/marking/vr_voxclaws - name = "Vox Claws" - icon = 'icons/mob/human_races/markings_vr.dmi' - icon_state = "Voxclaws" - color_blend_mode = ICON_MULTIPLY - body_parts = list(BP_L_FOOT,BP_R_FOOT,BP_L_HAND,BP_R_HAND) - -/datum/sprite_accessory/marking/vr_voxbeak - name = "Vox Beak" - icon = 'icons/mob/human_races/markings_vr.dmi' - icon_state = "Voxscales" - color_blend_mode = ICON_MULTIPLY - body_parts = list(BP_HEAD) - /datum/sprite_accessory/marking/vr_unathihood name = "Cobra Hood" icon = 'icons/mob/human_races/markings_vr.dmi' @@ -901,6 +868,7 @@ icon_state = "tesh-beak" color_blend_mode = ICON_MULTIPLY body_parts = list(BP_HEAD) + species_allowed = list(SPECIES_TESHARI) /datum/sprite_accessory/marking/vr_tesh_beak_alt name = "Teshari beak, rounded" @@ -908,6 +876,7 @@ icon_state = "tesh-beak-alt" color_blend_mode = ICON_MULTIPLY body_parts = list(BP_HEAD) + species_allowed = list(SPECIES_TESHARI) /datum/sprite_accessory/marking/vr_generic_hooves name = "Generic Hooves" @@ -917,4 +886,3 @@ body_parts = list(BP_L_FOOT,BP_R_FOOT) hide_body_parts = list(BP_L_FOOT,BP_R_FOOT) organ_override = TRUE - diff --git a/code/modules/mob/new_player/sprite_accessories_tail_ch.dm b/code/modules/mob/new_player/sprite_accessories_tail_ch.dm index 8ffb4054c4..57a67aa199 100644 --- a/code/modules/mob/new_player/sprite_accessories_tail_ch.dm +++ b/code/modules/mob/new_player/sprite_accessories_tail_ch.dm @@ -1,4 +1,4 @@ -/datum/sprite_accessory/tail/alien_slug +/*/datum/sprite_accessory/tail/alien_slug //Is now a base vorestation feature name = "Alien slug tail" desc = "The tail of a slug from space" icon = 'icons/mob/vore/tails_ch.dmi' @@ -6,7 +6,7 @@ do_colouration = 1 color_blend_mode = ICON_MULTIPLY extra_overlay = "alien_slug_markings" - +*/ /datum/sprite_accessory/tail/snaketail_stripes name = "snake tail with stripes, dual-color" desc = "" @@ -22,6 +22,17 @@ icon = 'icons/mob/vore/tails_ch.dmi' icon_state = "zorgoia" extra_overlay = "zorgoia_fluff" + extra_overlay2 = "zorgoia_fluff_top" + do_colouration = 1 + color_blend_mode = ICON_MULTIPLY + +/datum/sprite_accessory/tail/leopard + name = "Leopard tail, dual-color (vwag)" + icon = 'icons/mob/vore/tails_ch.dmi' + icon_state = "leopard" + ani_state = "leopard_w" + extra_overlay = "leopard_spots" + extra_overlay_w = "leopard_spots_w" do_colouration = 1 color_blend_mode = ICON_MULTIPLY @@ -144,17 +155,17 @@ extra_overlay = "bigringtail_markings" /datum/sprite_accessory/tail/longtail/desert_nightstalker - name = "Desert Nightstalker Tail (vwag)" - icon = 'icons/mob/vore/taurs_ch.dmi' - icon_state = "nightstalker_desert" - ani_state = "nightstalker_desert_w" - do_colouration = 0 // We're not coloring this, these are pre-colored - color_blend_mode = ICON_ADD + name = "Desert Nightstalker Tail (vwag)" + icon = 'icons/mob/vore/taurs_ch.dmi' + icon_state = "nightstalker_desert" + ani_state = "nightstalker_desert_w" + do_colouration = 0 // We're not coloring this, these are pre-colored + color_blend_mode = ICON_ADD /datum/sprite_accessory/tail/longtail/diamondback_nightstalker - name = "Diamondback Nightstalker Tail (dual-color, vwag)" - icon = 'icons/mob/vore/taurs_ch.dmi' - icon_state = "nightstalker_diamondback" - ani_state = "nightstalker_diamondback_w" - extra_overlay = "nightstalker_diamondback_markings" - extra_overlay_w = "nightstalker_diamondback_markings_w" \ No newline at end of file + name = "Diamondback Nightstalker Tail (dual-color, vwag)" + icon = 'icons/mob/vore/taurs_ch.dmi' + icon_state = "nightstalker_diamondback" + ani_state = "nightstalker_diamondback_w" + extra_overlay = "nightstalker_diamondback_markings" + extra_overlay_w = "nightstalker_diamondback_markings_w" diff --git a/code/modules/mob/new_player/sprite_accessories_tail_vr.dm b/code/modules/mob/new_player/sprite_accessories_tail_vr.dm index 2ab7b9d9c7..5e5abce21b 100644 --- a/code/modules/mob/new_player/sprite_accessories_tail_vr.dm +++ b/code/modules/mob/new_player/sprite_accessories_tail_vr.dm @@ -23,6 +23,15 @@ // Everyone tails +/datum/sprite_accessory/tail/alien_slug + name = "Alien slug tail" + desc = "" + icon = 'icons/mob/vore/tails_vr.dmi' + icon_state = "alien_slug" + do_colouration = 1 + color_blend_mode = ICON_MULTIPLY + extra_overlay = "alien_slug_markings" + /datum/sprite_accessory/tail/invisible name = "hide species-sprite tail" icon = null @@ -238,49 +247,49 @@ color_blend_mode = ICON_MULTIPLY extra_overlay = "eboop_mark" -/datum/sprite_accessory/tail/molenar_kitsune +/*/datum/sprite_accessory/tail/molenar_kitsune //CHOMP Remove name = "quintail kitsune tails (Molenar)" desc = "" icon_state = "molenar-kitsune" ckeys_allowed = list("molenar") -/datum/sprite_accessory/tail/miria_fluffdragon +/datum/sprite_accessory/tail/miria_fluffdragon //CHOMP Remove name = "fluffdragon tail (Miria Masters)" desc = "" icon_state = "miria-fluffdragontail" ckeys_allowed = list("miriamasters") -/datum/sprite_accessory/tail/miria_kitsune +/datum/sprite_accessory/tail/miria_kitsune //CHOMP Remove name = "Black kitsune tails (Miria Masters)" desc = "" icon_state = "miria-kitsunetail" ckeys_allowed = list("miriamasters") -/datum/sprite_accessory/tail/molenar_deathclaw +/datum/sprite_accessory/tail/molenar_deathclaw //CHOMP Remove name = "deathclaw bits (Molenar)" desc = "" icon_state = "molenar-deathclaw" ckeys_allowed = list("molenar","silvertalismen","jertheace") -/datum/sprite_accessory/tail/runac +/datum/sprite_accessory/tail/runac //CHOMP Remove name = "fennecsune tails (Runac)" desc = "" icon_state = "runac" ckeys_allowed = list("rebcom1807") -/datum/sprite_accessory/tail/reika //Leaving this since it was too hard to split the wings from the tail. +/datum/sprite_accessory/tail/reika //Leaving this since it was too hard to split the wings from the tail. //CHOMP Remove name = "fox tail (+ beewings) (Reika)" desc = "" icon_state = "reika" ckeys_allowed = list("rikaru19xjenkins") -/datum/sprite_accessory/tail/rosey +/datum/sprite_accessory/tail/rosey //CHOMP Remove name = "tritail kitsune tails (Rosey)" desc = "" icon_state = "rosey_three" ckeys_allowed = list("joey4298") -/datum/sprite_accessory/tail/rosey2 +/datum/sprite_accessory/tail/rosey2 //CHOMP Remove name = "pentatail kitsune tails (Rosey)" //I predict seven tails next. ~CK desc = "" icon_state = "rosey_five" @@ -288,31 +297,31 @@ color_blend_mode = ICON_MULTIPLY ckeys_allowed = list("joey4298") -/datum/sprite_accessory/tail/scree +/datum/sprite_accessory/tail/scree //CHOMP Remove name = "green taj tail (Scree)" desc = "" icon_state = "scree" ckeys_allowed = list("scree") -/datum/sprite_accessory/tail/aronai +/datum/sprite_accessory/tail/aronai //CHOMP Remove name = "aronai tail (Aronai)" desc = "" icon_state = "aronai" ckeys_allowed = list("arokha") -/datum/sprite_accessory/tail/cabletail +/datum/sprite_accessory/tail/cabletail //CHOMP Remove name = "cabletail" desc = "cabletail" icon_state = "cabletail" ckeys_allowed = list("tucker0666") -/datum/sprite_accessory/tail/featherfluff_tail +/datum/sprite_accessory/tail/featherfluff_tail //CHOMP Remove name = "featherfluff_tail" desc = "" icon_state = "featherfluff_tail" ckeys_allowed = list("tucker0666") - -/datum/sprite_accessory/tail/ketrai_wag +*/ //CHOMP Remove end +/datum/sprite_accessory/tail/ketrai_wag //CHOMP Remove name = "fennix tail (vwag)" desc = "" icon_state = "ketraitail" @@ -338,12 +347,12 @@ color_blend_mode = ICON_MULTIPLY extra_overlay = "ringtail_mark" -/datum/sprite_accessory/tail/holly +/*/datum/sprite_accessory/tail/holly //CHOMP Remove name = "tigress tail (Holly)" desc = "" icon_state = "tigresstail" ckeys_allowed = list("hoodoo") - +*/ //CHOMP Remove end /datum/sprite_accessory/tail/satyr name = "goat legs, colorable" desc = "" @@ -1160,7 +1169,7 @@ do_colouration = 1 color_blend_mode = ICON_MULTIPLY -/datum/sprite_accessory/tail/peacocktail_red //this is ckey locked for now, but prettiebyrd wants these tails to be unlocked at a later date +/*/datum/sprite_accessory/tail/peacocktail_red //this is ckey locked for now, but prettiebyrd wants these tails to be unlocked at a later date //CHOMP Remove and now it'll never be unlocked name = "Peacock tail (vwag)" desc = "" icon = 'icons/mob/vore/tails_vr.dmi' @@ -1177,7 +1186,7 @@ do_colouration = 1 color_blend_mode = ICON_MULTIPLY ckeys_allowed = list("prettiebyrd") - +*/ //CHOMP Remove end /datum/sprite_accessory/tail/altevian name = "Altevian Tail" icon = 'icons/mob/vore/tails_vr.dmi' @@ -1201,13 +1210,13 @@ ani_state = "tentacle_w" do_colouration = 1 color_blend_mode = ICON_MULTIPLY - -/datum/sprite_accessory/tail/perrin_tentacles - name = "octopus tentacles (Perrin Kade)" + +/*/datum/sprite_accessory/tail/perrin_tentacles //CHOMP Remove + name = "octopus tentacles" desc = "" icon_state = "perrintentacles" - ckeys_allowed = list("codeme") - + ckeys_allowed = list("codeme", "siennaathens") +*/ /datum/sprite_accessory/tail/teshbeethorax name = "Teshari bee thorax" desc = "" @@ -1301,7 +1310,7 @@ do_colouration = 1 color_blend_mode = ICON_MULTIPLY extra_overlay = "teshfatfirefly_markings" - + /datum/sprite_accessory/tail/synthetic_stilt_legs name = "synthetic stilt-legs, colorable" desc = "" diff --git a/code/modules/mob/say_vr.dm b/code/modules/mob/say_vr.dm index b7ab56d0c2..f0c1ffb88a 100644 --- a/code/modules/mob/say_vr.dm +++ b/code/modules/mob/say_vr.dm @@ -482,3 +482,11 @@ continue to_chat(M, message) log_emote(message, src) + +/mob/verb/select_speech_bubble() + set name = "Select Speech Bubble" + set category = "OOC" + + var/new_speech_bubble = tgui_input_list(src, "Pick new voice (default for automatic selection)", "Character Preference", selectable_speech_bubbles) + if(new_speech_bubble) + custom_speech_bubble = new_speech_bubble diff --git a/code/modules/mob/typing_indicator.dm b/code/modules/mob/typing_indicator.dm index bdd5865a9b..5bbce21356 100644 --- a/code/modules/mob/typing_indicator.dm +++ b/code/modules/mob/typing_indicator.dm @@ -12,6 +12,9 @@ return I /mob/proc/init_typing_indicator(var/set_state = "typing") + if(typing_indicator) + qdel(typing_indicator) + typing_indicator = null typing_indicator = new typing_indicator.appearance = generate_speech_bubble(null, set_state) typing_indicator.appearance_flags |= (RESET_COLOR|PIXEL_SCALE) //VOREStation Edit @@ -23,8 +26,11 @@ cut_overlay(typing_indicator, TRUE) return - if(!typing_indicator) - init_typing_indicator("[speech_bubble_appearance()]_typing") + var/cur_bubble_appearance = custom_speech_bubble + if(!cur_bubble_appearance || cur_bubble_appearance == "default") + cur_bubble_appearance = speech_bubble_appearance() + if(!typing_indicator || cur_typing_indicator != cur_bubble_appearance) + init_typing_indicator("[cur_bubble_appearance]_typing") if(state && !typing) add_overlay(typing_indicator, TRUE) diff --git a/code/modules/multiz/movement.dm b/code/modules/multiz/movement.dm index b44529d0f5..c04d1d43fd 100644 --- a/code/modules/multiz/movement.dm +++ b/code/modules/multiz/movement.dm @@ -173,6 +173,9 @@ if(Process_Spacemove()) return TRUE + if(has_hands) + return TRUE + /mob/living/carbon/human/can_ztravel() if(incapacitated()) return FALSE diff --git a/code/modules/organs/organ_external.dm b/code/modules/organs/organ_external.dm index 8587d1a7f8..170f107821 100644 --- a/code/modules/organs/organ_external.dm +++ b/code/modules/organs/organ_external.dm @@ -117,8 +117,7 @@ /obj/item/organ/external/emp_act(severity) for(var/obj/O as anything in src.contents) O.emp_act(severity) - - if(!(robotic >= ORGAN_ROBOT)) + if(!(robotic >= ORGAN_ROBOT) || robotic == ORGAN_NANOFORM) //CHOMPEdit - Proteans handle EMP's differently return var/burn_damage = 0 for(var/i = 1; i <= robotic; i++) @@ -1140,7 +1139,8 @@ Note that amputating the affected organ does in fact remove the infection from t force_icon = R.icon brute_mod *= R.robo_brute_mod burn_mod *= R.robo_burn_mod - prosthetic_digi = R.can_be_digitigrade //CHOMPStation edit + skip_robo_icon = R.no_icon //CHOMPStation edit + digi_prosthetic = R.can_be_digitigrade //CHOMPStation edit if(R.lifelike) robotic = ORGAN_LIFELIKE name = "[initial(name)]" diff --git a/code/modules/organs/pain.dm b/code/modules/organs/pain.dm index b65b3fc2fb..d26b7e3088 100644 --- a/code/modules/organs/pain.dm +++ b/code/modules/organs/pain.dm @@ -4,6 +4,8 @@ /mob/var/list/pain_stored = list() /mob/var/last_pain_message = "" /mob/var/next_pain_time = 0 +/mob/var/multilimb_pain_time = 0 // Global pain cooldown exists to prevent spam for multi-limb damage + // message is the custom message to be displayed // power decides how much painkillers will stop the message @@ -16,10 +18,32 @@ message = "[message]" // Anti message spam checks - if(force || (message != last_pain_message) || (world.time >= next_pain_time)) + // If multiple limbs are injured, cooldown is ignored to print all injuries until all limbs are iterated over + if(src.is_preference_enabled(/datum/client_preference/pain_frequency)) + switch(power) + if(0 to 5) + force = 0 + if(6 to 20) + force = prob(1) + if(force || (message != last_pain_message) || (world.time >= next_pain_time)) + switch(power) + if(0 to 5) + next_pain_time = world.time + 300 SECONDS + multilimb_pain_time = world.time + 45 SECONDS + if(6 to 20) + next_pain_time = world.time + clamp((30 - power) SECONDS, 10 SECONDS, 30 SECONDS) + multilimb_pain_time = world.time + clamp((30 - power) SECONDS, 10 SECONDS, 30 SECONDS) + if(21 to INFINITY) + next_pain_time = world.time + (100 - power) + multilimb_pain_time = world.time + (100 - power) + last_pain_message = message + to_chat(src,message) + + else if(force || (message != last_pain_message) || (world.time >= next_pain_time)) last_pain_message = message to_chat(src,message) - next_pain_time = world.time + (100-power) + next_pain_time = world.time + (100 - power) + multilimb_pain_time = world.time + (100 - power) /mob/living/carbon/human/proc/handle_pain() if(stat) @@ -28,7 +52,7 @@ if(!can_feel_pain() && !synth_cosmetic_pain) return - if(world.time < next_pain_time) + if(world.time < multilimb_pain_time) //prevents spam in case of multi-limb injuries. return var/maxdam = 0 var/obj/item/organ/external/damaged_organ = null @@ -77,4 +101,4 @@ if(31 to 60) custom_pain("Your whole body hurts badly.", getToxLoss()) if(61 to INFINITY) - custom_pain("Your body aches all over, it's driving you mad.", getToxLoss()) \ No newline at end of file + custom_pain("Your body aches all over, it's driving you mad.", getToxLoss()) diff --git a/code/modules/organs/robolimbs_ch.dm b/code/modules/organs/robolimbs_ch.dm index d882d3ba96..a5c7add14b 100644 --- a/code/modules/organs/robolimbs_ch.dm +++ b/code/modules/organs/robolimbs_ch.dm @@ -1,5 +1,10 @@ +GLOBAL_LIST_INIT(dsi_to_species, list(SPECIES_TAJARAN = "DSI - Tajaran", SPECIES_UNATHI = "DSI - Lizard", SPECIES_SERGAL = "DSI - Sergal", SPECIES_NEVREAN = "DSI - Nevrean", \ + SPECIES_VULPKANIN = "DSI - Vulpkanin", SPECIES_AKULA = "DSI - Akula", SPECIES_VASILISSAN = "DSI - Vasilissan", SPECIES_ZORREN = "DSI - Zorren",\ + SPECIES_TESHARI = "DSI - Teshari", SPECIES_FENNEC = "DSI - Fennec")) + /datum/robolimb - var/can_be_digitigrade = FALSE //maybe move this over into more of a "does this have a custom digitigrade sprite, and if so, what is its icon file/icon name in the limb's file" when someone can be bothered making them + var/no_icon = FALSE //specifically for DSI things, makes it so it doesn't override the species icons + var/can_be_digitigrade = FALSE //used for skipping the icon if it can be digitigrade - maybe turn this into more of a 'use this icon/iconstate' instead later, when actual prosthetic digi icons get made /datum/robolimb/valehoundhead company = "VALE Hound- Head" @@ -37,4 +42,14 @@ /datum/robolimb/dsi_teshari/New() . = ..() - species_cannot_use -= SPECIES_PROTEAN \ No newline at end of file + species_cannot_use -= SPECIES_PROTEAN + + +/datum/robolimb/dsi_other + company = "DSI - Adaptive" + desc = "This limb has a realistic design and squish. By Darkside Incorperated." + blood_color = "#ffe2ff" + lifelike = 1 + unavailable_to_build = 1 + skin_tone = 1 + no_icon = TRUE diff --git a/code/modules/overmap/sectors.dm b/code/modules/overmap/sectors.dm index e6624de848..edd3b13d67 100644 --- a/code/modules/overmap/sectors.dm +++ b/code/modules/overmap/sectors.dm @@ -72,7 +72,7 @@ icon_state = unknown_state color = null desc = "Scan this to find out more information." - + // You generally shouldn't destroy these. /obj/effect/overmap/visitable/Destroy() @@ -143,7 +143,7 @@ if(A in SSshuttles.shuttle_areas) return 0 if(is_type_in_list(A, unowned_areas)) - return 0 + return 0 if(get_z(object) in map_z) return 1 @@ -213,17 +213,17 @@ This beacon was launched from '[initial(name)]'. I can provide this additional information to rescuers: [get_distress_info()]. \ Per the Interplanetary Convention on Space SAR, those receiving this message must attempt rescue, \ or relay the message to those who can. This message will repeat one time in 5 minutes. Thank you for your urgent assistance." - + if(!levels_for_distress) levels_for_distress = list(1) for(var/zlevel in levels_for_distress) priority_announcement.Announce(message, new_title = "Automated Distress Signal", new_sound = 'sound/AI/sos.ogg', zlevel = zlevel) - + var/image/I = image(icon, icon_state = "distress") I.plane = PLANE_LIGHTING_ABOVE I.appearance_flags = KEEP_APART|RESET_TRANSFORM|RESET_COLOR add_overlay(I) - + addtimer(CALLBACK(src, .proc/distress_update), 5 MINUTES) return TRUE @@ -256,6 +256,8 @@ global.using_map.sealed_levels |= global.using_map.overmap_z + if(!GLOB.dynamic_sector_master) //CHOMPedit: hook dynamic sector generation into overmap gen + new /obj/effect/overmap/visitable/dynamic // CHOMPedit, glob var assignment is handled in the object. + testing("Overmap build complete.") return 1 - diff --git a/code/modules/persistence/effects/filth_vr.dm b/code/modules/persistence/effects/filth_vr.dm index deea9cb877..34733d4bc8 100644 --- a/code/modules/persistence/effects/filth_vr.dm +++ b/code/modules/persistence/effects/filth_vr.dm @@ -4,6 +4,8 @@ /datum/persistent/filth/CreateEntryInstance(var/turf/creating, var/list/token) var/_path = token["path"] + if (isspace(creating) || iswall(creating) ||isopenspace(creating)) + return if (saves_dirt) new _path(creating, token["age"]+1, token["dirt"]) else diff --git a/code/modules/player_tips_vr/player_tips_controller_vr.dm b/code/modules/player_tips_vr/player_tips_controller_vr.dm index fc4ffbcf2b..90a542838a 100644 --- a/code/modules/player_tips_vr/player_tips_controller_vr.dm +++ b/code/modules/player_tips_vr/player_tips_controller_vr.dm @@ -11,10 +11,13 @@ Controlled by the player_tips subsystem under code/controllers/subsystems/player var/tip_delay = 5 MINUTES //10 minute initial delay for first tip of the day. Timer starts 5 minutes after game starts, plus 5 minutes here. Gets overwritten afterwards var/last_tip_time = 0 var/last_tip = null + var/list/HasReceived = list() //Tracking who received tips. We let them know how to turn them off if they're not on this list. Stores CKeys until round-end. //Called every 5 minutes as defined in the subsystem. /datum/player_tips/proc/send_tips() if(world.time > last_tip_time + tip_delay) + last_tip_time = world.time + tip_delay = rand(min_tip_delay, max_tip_delay) var/tip = pick_tip("none") //"none" picks a random topic of advice. var/stopWhile = 0 while(tip == last_tip) //Prevent posting the same tip twice in a row if possible, but don't force it. @@ -22,16 +25,14 @@ Controlled by the player_tips subsystem under code/controllers/subsystems/player stopWhile = stopWhile + 1 if(stopWhile >= 10) break - + last_tip = tip for(var/mob/M in player_list) if(M.is_preference_enabled(/datum/client_preference/player_tips)) - if(!last_tip) //Notifying players how to turn tips off, or call them on-demand in a personalized manner. + if(!M.key && !(M.key in HasReceived)) to_chat(M, SPAN_WARNING("You have periodic player tips enabled. You may turn them off at any time with the Toggle Receiving Player Tips verb in Preferences, or in character set up under the OOC tab!\n Player tips appear every 45-75 minutes.")) + HasReceived.Add(M.key) to_chat(M, SPAN_NOTICE("[tip]")) - last_tip = tip - tip_delay = rand(min_tip_delay, max_tip_delay) - diff --git a/code/modules/player_tips_vr/player_tips_list_vr.dm b/code/modules/player_tips_vr/player_tips_list_vr.dm index a22990b309..36af915bba 100644 --- a/code/modules/player_tips_vr/player_tips_list_vr.dm +++ b/code/modules/player_tips_vr/player_tips_list_vr.dm @@ -11,9 +11,9 @@ When editing the list, please try and keep similar probabilities near each other choice = "none" //Making sure that wrong arguments still give tips. if(isSpecific == "none") choice = pick ( - prob(50); "general", prob(50); "gameplay", - prob(25); "roleplay", + prob(40); "general", + prob(40); "roleplay", prob(20); "lore" ) else @@ -23,15 +23,18 @@ When editing the list, please try and keep similar probabilities near each other if("general") var/info = "The following is a general tip to playing on VOREStation! \n" return pick( - prob(60); "[info] Got a question about gameplay, roleplay or the setting? Press F1 to Mentorhelp!", - prob(60); "[info] We have a wiki that is actively updated! Please check it out at https://wiki.vore-station.net/Main_Page for help!", - prob(60); "[info] Unsure about rules? Press F1 and ask our admins for clarification - they are happy to help.", - prob(30); "[info] Don't be afraid to approach your fellow players for advice! Learning things ICly can help build powerful bonds!", - prob(30); "[info] Need some guideance making a character or with roleplay concepts? Our discord's Cadet-Academy and Lore channels are happy to help!", - prob(30); "[info] Having difficulties getting started? Pressing F3 to speak and typing '; Hello! I'm a new hire. Could someone please give me a tour?' or as appropriate for your character is a good way to start! More help available at: https://wiki.vore-station.net/The_Basics", - prob(30); "[info] Want to try out a new department? Consider joining as an intern when it's well-staffed. Our players enjoy teaching eager students. You can approach such roleplay as simply getting taught the local technologies, procedures - you don't need to be 'fresh out of school' to justify it!", - prob(30); "[info] Our discord is an excellent resource to stay up to date about changes and events! If wanting to separate your kink and real identities, Discord has a built in means to swap accounts within the client. It is OK to lurk!", - prob(5); "[info] Got another tip for the list? Please let us know on Discord/Dev-suggestions!" + prob(60); "[info] Got a question about gameplay, roleplay or the setting? Press F1 to Mentorhelp!", + prob(60); "[info] We have a wiki that is actively updated! Please check it out at https://wiki.vore-station.net/Main_Page for help!", + prob(60); "[info] Unsure about rules? Press F1 and ask our admins for clarification - they are happy to help.", + prob(50); "[info] To make this server fun for all types of vore enjoyment, including conflicting desires, we have a firm policy of Bystander Consent, be mindful of those around you! https://wiki.vore-station.net/Rules#Bystander_Consent_Policy", + prob(35); "[info] Our discord is an excellent resource to stay up to date about changes and events! If wanting to separate your kink and real identities, Discord has a built in means to swap accounts within the client. It is OK to lurk!", + prob(35); "[info] Encountered what seems like a bug? Even if uncertain, feel free to go ahead and report it at https://github.com/VOREStation/VOREStation/issues !", + prob(30); "[info] Having difficulties getting started? Pressing F3 to speak and typing '; Hello! I'm a new hire. Could someone please give me a tour?' or as appropriate for your character is a good way to start! More help available at: https://wiki.vore-station.net/The_Basics", + prob(30); "[info] Building a custom-species, or just trying to spice up a canon one? Take a look at our possible traits at https://wiki.vore-station.net/Traits", + prob(30); "[info] Don't be afraid to approach your fellow players for advice! Learning things ICly can help build powerful bonds!", + prob(30); "[info] Need some guideance making a character or with roleplay concepts? Our discord's Cadet-Academy and Lore channels are happy to help!", + prob(30); "[info] Want to try out a new department? Consider joining as an intern when it's well-staffed. Our players enjoy teaching eager students. You can approach such roleplay as simply getting taught the local technologies, procedures - you don't need to be 'fresh out of school' to justify it!", + prob(5); "[info] Got another tip for the list? Please let us know on Discord/Dev-suggestions!" ) @@ -41,7 +44,9 @@ When editing the list, please try and keep similar probabilities near each other prob(50); "[info] To talk to your fellow coworkers, use ';'! You may append it by an exclamation mark, like ';!' to perform an audiable emote. ", prob(50); "[info] Lost on the map? You can find In-Character help by speaking on the Common Radio. You can do this by pressing F3 and typing ' ; ' before your message. Your fellow co-workers will likely help. If OOC help is preferred, press F1 for mentorhelp. ", prob(50); "[info] You may set your suit sensors by clicking on the icon in the bottom left corner, then right click the clothes that appear right above it. It is recommended to turn on suit sensors to 'TRACKING' before doing anything dangerous like mining, and to turn them off before digestion scenes as prey.", + prob(35); "[info] You can insert your I.D into your PDA. This frees up your belt from having to carry your PDA. Furthermore, by clicking and dragging the PDA to game screen, you can use it without holding it!", prob(35); "[info] It is never a bad idea to visit the medbay if you get injured - small burns and cuts can get infected and become harder to treat! If there is no medical staff, bathrooms and the bar often has a NanoMed on the wall - with ointments to disinfect cuts and burns, bandages to treat bruises and encourage healing.", + prob(35); "[info] Your vore-bellies have multiple add-ons! Muffling is excellent to ensure your prey does not accidentally inform everyone about their predicament, and jam suit sensors is a great courtesy to avoid medical being worried about your prey!", prob(25); "[info] Two control modes exist for SS13 - hotkey ON and hotkey OFF. You can swap between the two modes by pressing TAB. In hotkey mode, to chat you need to press T to say anything which creates a small talking bubble. You can consult our list of hotkeys at https://wiki.vore-station.net/Keyboard_Shortcuts", prob(25); "[info] Do you want to shift your character around, for instance to appear as if leaning on the wall? Press CTRL + SHIFT + arrow keys to do so! Moving resets this.", prob(25); "[info] Emergency Fire Doors seal breaches and keep active fires out. Please do not open them without good reason.", @@ -53,12 +58,19 @@ When editing the list, please try and keep similar probabilities near each other if("roleplay") var/info = "The following is a roleplay-focused tip to playing on VOREStation \n" return pick( - prob(50); "[info] Having difficulty finding scenes? The number one tip that people should take for finding scenes is to be active! Generally speaking, people are more likely to interact with you if you are moving about and doing things. Don't be afraid to talk to people, you're less likely to be approached if you're sat alone at a table silently. People that are looking for scenes generally like to see how you type and RP before they'll start working towards a scene with you.", - prob(50); "[info] Please avoid a character that knows everything. Having only a small set of jobs you are capable of doing can help flesh out your character! It's OK for things to break and fail if nobody is around to fix it - you do not need to do others' jobs.", - prob(25); "[info] Embrace the limits of your character's skillsets! Seeking out other players to help you with a more challenging task might build friendships, or even lead to a scene!", - prob(25); "[info] Slowing down when meeting another player can help with finding roleplay! Your fellow player might be typing up a greeting or an emote, and if you run off you won't see it!", + prob(45); "[info] Our server has a strong 'Bystander Consent' policy, meaning that scenes are expected to be mindful of the preferences of those around them in public, not just their partners. When in doubt, keep it subtle, and communicate via looc!", + prob(40); "[info] Please avoid a character that knows everything. Having only a small set of jobs you are capable of doing can help flesh out your character! It's OK for things to break and fail if nobody is around to fix it - you do not need to do others' jobs.", + prob(40); "[info] Just because you see something doesn't mean your character has to. A courtesy 'missing' of contraband or scene details can go a long way towards preserving everyone's fun!", + prob(40); "[info] Embrace the limits of your character's skillsets! Seeking out other players to help you with a more challenging task might build friendships, or even lead to a scene!", + prob(35); "[info] Slowing down when meeting another player can help with finding roleplay! Your fellow player might be typing up a greeting or an emote, and if you run off you won't see it!", + prob(35); "[info] Having difficulty finding scenes? The number one tip that people should take for finding scenes is to be active! Generally speaking, people are more likely to interact with you if you are moving about and doing things. Sitting at a table passively might make others think you are AFK or busy!", prob(25); "[info] It is a good idea to wait a few moments after using mechanics like lick, hug or headpat on another player. They might be typing up a response or wish to reciprocate, and if you run away you might miss out!", prob(25); "[info] Participating in an away mission and see something acting strange? Try emoting or talking to it before resorting to fighting. It may be a GM event!", + prob(25); "[info] It is always a good idea to communicate on your department's private channel (whose key you can learn by examining your headset) when responding to an emergency! This lets your coworkers know if they might be needed!", + prob(25); "[info] While following the SOP is not mandatory, and you are free to break it (albeit, with potential in-character consequences), departments like security and medical do well to be familiar with them! https://wiki.vore-station.net/Standard_Operating_Procedure", + prob(25); "[info] Think a player is acting especially antagonistic? It might be better to Ahelp (with F1) rather than try to deal with it icly, staff can make sure it's all okay.", + prob(20); "[info] See a minor infraction as Security with a minimal time punishment? Consider using your ticket printer to give a non obtrusive punishment.", + prob(20); "[info] Unwilling vore may be a crime, but not every instance of it you see may be so. It's better to default to not accusing people of felonies!", prob(15); "[info] We are a heavy roleplay server. This does not neccessarily mean 'serious' roleplay, levity and light-hearted RP is more than welcome! Please do not ignore people just because it is unlikely you will be able to scene.", prob(10); "[info] Sending faxes to central command, using the 'pray' verb or pressing F1 to ahelp are highly encouraged when exploring the gateway or overmap locations! Letting GMs know something fun is happening allows them to spice things up and make the world feel alive!" ) @@ -68,7 +80,22 @@ When editing the list, please try and keep similar probabilities near each other return pick( prob(75); "[info] Our lore significantly differs from that of other servers. You can find the key differences at https://wiki.vore-station.net/Key_differences#We_have_a_well_fleshed_out_lore._We_are_not_comically_grimdark,_but_neither_a_utopia.", prob(75); "[info] You can find a short summary of our setting that everyone should know at https://wiki.vore-station.net/Vital_Lore", - prob(50); "[info] You are currently working in the Virgo-Erigone system. It takes weeks to months (depending on your wealth) to return to Earth from here. https://wiki.vore-station.net/Infrastructure#Bluespace_Gate", + prob(75); "[info] Unlike other servers, our synthetics (cyborgs, positronics) are more often than not have equal rights as humanity. Drones, inspired by realistic A.I, are more complicated https://wiki.vore-station.net/Synthetics", + prob(75); "[info] Unlike other servers, all species are allowed to be heads of staff. While discrimination definitely occurs, out in the isolated colonies things are much more cosmopolitan https://wiki.vore-station.net/Commonwealth_of_Sol-Procyon#Baby,_lock_the_door._They_are_out", + prob(50); "[info] Unlike other servers, Tajara and Unathi were not uplifted by humanity and are instead their own cultures and can generally find themselves being treated as legal equals in human controlled space. https://wiki.vore-station.net/Backstory#Catalogued_Species", + prob(50); "[info] You are currently working in the Virgo-Erigone system. It is part of the Coreward Periphery, and quite isolated thanks to being a long distance away from any major faction. https://wiki.vore-station.net/File:Virgo_map.png", prob(50); "[info] The majority of employees live at the colony of Al'Qasbah. Most people live underground, with only the wealthiest living out in the habitation bubble. This is the place the tram/shuttle takes you at the end of the round. https://wiki.vore-station.net/Al%27Qasbah", +<<<<<<< HEAD prob(10); "[info] Thaler is a universal currency. Its value is set to 1 second of FTL 'bluespace' travel. While ubiquitous in frontier worlds, it has an unfavourable exchange rate with most currencies used by well-settled regions, limiting immigration to places such as Earth. https://wiki.vore-station.net/Thaler" - ) \ No newline at end of file + ) +======= + prob(25); "[info] The Virgo-Erigone system is natively inhabited by the Zorren, a traditionalist, interstellar-capable fox-like alien species. https://wiki.vore-station.net/Zorren", + prob(10); "[info] Earth is very far from Virgo-Eirogne, taking months of travel through stutter drives or use of expensive Bluespace Gates to cut the time down to a few weeks. https://wiki.vore-station.net/Infrastructure#Bluespace_Gate", + prob(10); "[info] Thaler is a universal currency. Its value is set to 1 second of FTL 'bluespace' travel. While ubiquitous in frontier worlds, it has an unfavourable exchange rate with most currencies used by well-settled regions, limiting immigration to places such as Earth. https://wiki.vore-station.net/Thaler", + prob(10); "[info] Sol is where NanoTrasen is headquartered, and follows its laws and customs, even out in its distant colonies. https://wiki.vore-station.net/Commonwealth_of_Sol-Procyon#Culture_and_Society", + prob(10); "[info] In certain silicon jobs or bodies there may be hard-wired functions ('laws') to limit dangerous behaviors or to encourage productivity. Remember that these are tied to the body, not the mind controlling the body! https://wiki.vore-station.net/Cyborg", + prob(5); "[info] Positronic minds are valued for their resilience, self sufficiency, and resistance to tampering. Each one is comparable to a typical human mind in capability, with similar properties of memory and cognitive alacrity.", + prob(5); "[info] Drones are much like our A.I in real life at their lower levels. At higher sophistication, they become like classic sci-fi robots. Drones' personalities can be overwritten by a skilled coder, memories tampered with.", + prob(5); "[info] Cyborgs are organic brains in a jar. While historically, wiping their minds to use as a wetware processor had been a thing - today, this only happens where Commonwealth law does not reach." + ) +>>>>>>> f13f494dbf... Merge pull request #14512 from Runa-Dacino/more_tips diff --git a/code/modules/power/lighting.dm b/code/modules/power/lighting.dm index e1b41b602e..044b0e2fa9 100644 --- a/code/modules/power/lighting.dm +++ b/code/modules/power/lighting.dm @@ -451,6 +451,18 @@ var/global/list/light_type_cache = list() update() //VOREstation Edit End + +//CHOMPStation Edit Start +/obj/machinery/light/proc/set_alert_engineering() + if(!shows_alerts) + return + current_alert = "eng" + light_color = "#ff9900" + brightness_color = "#ff9900" + update() + +// CHOMPStation Edit End + // update lighting /obj/machinery/light/proc/update(var/trigger = 1) update_icon() diff --git a/code/modules/power/supermatter/supermatter.dm b/code/modules/power/supermatter/supermatter.dm index 4687f79b94..fea483fcc2 100644 --- a/code/modules/power/supermatter/supermatter.dm +++ b/code/modules/power/supermatter/supermatter.dm @@ -114,12 +114,19 @@ var/datum/looping_sound/supermatter/soundloop + var/engwarn = 0 // CHOMPEdit: Looping Alarms + var/critwarn = 0 // CHOMPEdit: Looping Alarms + var/causalitywarn = 0 // CHOMPEdit: Looping Alarms + var/stationcrystal = FALSE // CHOMPEdit: Looping Alarms + /obj/machinery/power/supermatter/New() ..() uid = gl_uid++ /obj/machinery/power/supermatter/Initialize() soundloop = new(list(src), TRUE) + if(src.z in using_map.station_levels) // CHOMPEdit: Looping Alarms + stationcrystal = TRUE // CHOMPEdit: Looping Alarms return ..() /obj/machinery/power/supermatter/Destroy() @@ -174,6 +181,11 @@ anchored = TRUE grav_pulling = 1 exploded = 1 + // CHOMPEdit Start - Looping Alarms. We want to stop the alarm here. + if(stationcrystal) // Are we an on-station crystal? + addtimer(CALLBACK(src, .proc/reset_alarms), 10 SECONDS, TIMER_STOPPABLE) + // CHOMPEdit End + sleep(pull_time) var/turf/TS = get_turf(src) // The turf supermatter is on. SM being in a locker, exosuit, or other container shouldn't block it's effects that way. if(!istype(TS)) @@ -249,19 +261,46 @@ var/alert_msg = " Integrity at [integrity]%" var/message_sound = 'sound/ambience/matteralarm.ogg' + if(!(src.z in using_map.station_levels)) // CHOMPEdit: SM Global Warn Fix; Is our location the same as the station? If no, then we're not going to warn. + return // CHOMPEdit: SM Global Warn Fix; No need to announce if we're outside the station's Z, at a POI, etc. + if(final_countdown) // Chompers additon return if(damage > emergency_point) alert_msg = emergency_alert + alert_msg lastwarning = world.timeofday - WARNING_DELAY * 4 + // CHOMPEdit Start + if(!critwarn) + if(src.z in using_map.station_levels) + for(var/obj/machinery/firealarm/candidate_alarm in global.machines) + var/area/our_area = get_area(candidate_alarm) + if(istype(our_area, /area/engineering)) + candidate_alarm.critalarm.start() + candidate_alarm.critwarn = TRUE // Tell the fire alarm we're warning engineering + critwarn = 1 + // CHOMPEdit End else if(damage >= damage_archived) // The damage is still going up + // CHOMPEdit: Looping Alarms - we're not making a proc for initiating the alarms in this case. + if(!engwarn) + if(src.z in using_map.station_levels) + for(var/obj/machinery/firealarm/candidate_alarm in global.machines) + var/area/our_area = get_area(candidate_alarm) + if(istype(our_area, /area/engineering)) + for(var/obj/machinery/light/L in our_area) + L.set_alert_engineering() + candidate_alarm.engalarm.start() + candidate_alarm.engwarn = TRUE // Tell the fire alarm we're warning engineering + engwarn = 1 // So we don't repeatedly try and start over the soundloop/etc + // CHOMPEdit End safe_warned = 0 alert_msg = warning_alert + alert_msg lastwarning = world.timeofday + else if(!safe_warned) safe_warned = 1 // We are safe, warn only once alert_msg = safe_alert lastwarning = world.timeofday + reset_alarms() // CHOMPEdit: Looping Alarms else alert_msg = null if(alert_msg) @@ -407,6 +446,20 @@ /obj/machinery/power/supermatter/proc/countdown() set waitfor = FALSE + if(!final_countdown) + if(!causalitywarn) + if(src.z in using_map.station_levels) + for(var/obj/machinery/firealarm/candidate_alarm in global.machines) + var/area/our_area = get_area(candidate_alarm) + if(istype(our_area, /area/engineering)) + candidate_alarm.causality.start() + candidate_alarm.causalitywarn = TRUE // Tell the fire alarm it's warning, too + causalitywarn = 1 + + if(!(src.z in using_map.station_levels)) // CHOMPEdit: SM Global Warn Fix; Is our location the same as the station? If no, then we're not going to use a stabilization field. + explode() // CHOMPEdit: SM Global Warn Fix; Just exploding, because we're not on the station's Z. No safety countdown. + return // CHOMPEdit: SM Global Warn Fix; Stops the code here. + if(final_countdown) // We're already doing it go away return final_countdown = TRUE @@ -588,3 +641,24 @@ /obj/item/broken_sm/Destroy() STOP_PROCESSING(SSobj, src) return ..() + +// CHOMP Edit Start +/obj/machinery/power/supermatter/station + stationcrystal = TRUE + +/obj/machinery/power/supermatter/proc/reset_alarms() + for(var/obj/machinery/firealarm/candidate_alarm in global.machines) + var/area/our_area = get_area(candidate_alarm) + if(istype(our_area, /area/engineering)) + for(var/obj/machinery/light/L in our_area) + L.reset_alert() + candidate_alarm.engalarm.stop() + candidate_alarm.engwarn = FALSE // Tell the fire alarm we're done, too. Yes this is janky, someone will come along and fix it later:tm: + candidate_alarm.causality.stop() // Somehow, in case they reset the alarms and fix the SM. + candidate_alarm.causalitywarn = FALSE // Tell the fire alarm we're done, too. Yes this is janky, someone will come along and fix it later:tm: + candidate_alarm.critalarm.stop() + candidate_alarm.critwarn = FALSE // Tell the fire alarm we're done, too. Yes this is janky, someone will come along and fix it later:tm: + engwarn = 0 + critwarn = 0 + causalitywarn = 0 +// CHOMPEdit End diff --git a/code/modules/projectiles/projectile/energy.dm b/code/modules/projectiles/projectile/energy.dm index 8fd06c93aa..511c1e85e7 100644 --- a/code/modules/projectiles/projectile/energy.dm +++ b/code/modules/projectiles/projectile/energy.dm @@ -131,6 +131,10 @@ combustion = FALSE hud_state = "plasma_blast" +/obj/item/projectile/energy/excavate/weak + damage = 15 + excavation_amount = 100 + /obj/item/projectile/energy/dart name = "dart" icon_state = "toxin" diff --git a/code/modules/projectiles/projectile/magic.dm b/code/modules/projectiles/projectile/magic.dm index 9fcc1c1979..720e1dde06 100644 --- a/code/modules/projectiles/projectile/magic.dm +++ b/code/modules/projectiles/projectile/magic.dm @@ -11,10 +11,10 @@ /obj/item/projectile/energy/fireball/on_hit(var/atom/target, var/blocked = 0) new /obj/effect/explosion(get_turf(target)) - explosion(target, -1, 0, 2) + explosion(target, -1, 0, 2, 0, 0) //CHOMPEdit - Don't spam admins ..() /obj/item/projectile/energy/fireball/on_impact(var/atom/target) new /obj/effect/explosion(get_turf(target)) - explosion(target, -1, 0, 2) + explosion(target, -1, 0, 2, 0, 0) //CHOMPEdit - Don't spam admins ..() diff --git a/code/modules/projectiles/projectile/special.dm b/code/modules/projectiles/projectile/special.dm index e45e4ee3a5..d1db24718a 100644 --- a/code/modules/projectiles/projectile/special.dm +++ b/code/modules/projectiles/projectile/special.dm @@ -48,7 +48,7 @@ hud_state = "rocket_fire" /obj/item/projectile/bullet/gyro/on_hit(var/atom/target, var/blocked = 0) - explosion(target, -1, 0, 2) + explosion(target, -1, 0, 2, 0, 0) //CHOMPEdit - Don't spam admins ..() /obj/item/projectile/temp diff --git a/code/modules/reagents/machinery/injector_maker.dm b/code/modules/reagents/machinery/injector_maker.dm new file mode 100644 index 0000000000..2c561dcc7b --- /dev/null +++ b/code/modules/reagents/machinery/injector_maker.dm @@ -0,0 +1,281 @@ +/obj/machinery/injector_maker + name = "Ready-to-Use Medicine 3000" + desc = "Fills plastic autoinjectors with chemicals! Molds new injectors if needed! \n Add a beaker or a bottle filled with chemicals and an autoinjector of appropriate size or sheets of plastic to use!" + icon = 'icons/obj/chemical_vr.dmi' + icon_state = "injector" + use_power = USE_POWER_IDLE + anchored = TRUE + density = FALSE + layer = ABOVE_WINDOW_LAYER + vis_flags = VIS_HIDE + unacidable = TRUE + clicksound = "button" + clickvol = 60 + idle_power_usage = 5 + active_power_usage = 100 + circuit = /obj/item/weapon/circuitboard/injector_maker + var/obj/item/weapon/reagent_containers/beaker = null + var/list/beaker_reagents_list = list() + + + var/count_large_injector = 0 + var/count_small_injector = 0 + var/capacity_large_injector = 40 + var/capacity_small_injector = 40 + + var/count_plastic = 0 //Given in "units", not sheets + var/value_plastic = 2000 //1 sheet translates to 2000 units + var/cost_plastic_small = 30 + var/cost_plastic_large = 1500 + var/capacity_plastic = 60000 // cost_plastic_large * 40 + + +/obj/machinery/injector_maker/Initialize() + . = ..() + default_apply_parts() + +/obj/machinery/injector_maker/update_icon() + if(!beaker && !count_plastic && !count_small_injector && !count_large_injector) //Empty + icon_state = "injector" + else if(beaker != null && !count_plastic && !count_small_injector && !count_large_injector ) //Has just beaker + icon_state = "injector_b" + else if(!beaker && !count_plastic && (count_large_injector > 0 || count_small_injector > 0)) //Has just injectors + icon_state = "injector_i" + else if(!beaker && count_plastic > 0 && !count_large_injector && !count_small_injector) //Has just plastic + icon_state = "injector_p" + else if(beaker != null && !count_plastic && (count_large_injector > 0 || count_small_injector > 0)) //beaker + injectors + icon_state = "injector_ib" + else if(beaker != null && count_plastic > 0 && !count_large_injector && !count_small_injector) //beaker + plastic + icon_state = "injector_pb" + else if(beaker != null && count_plastic > 0 && (count_large_injector > 0 || count_small_injector > 0)) //Has everything + icon_state = "injector_ipb" + return + + +/obj/machinery/injector_maker/attackby(var/obj/item/O as obj, var/mob/user as mob) + + if (istype(O, /obj/item/device/multitool)) + return ..() + + if(istype(O,/obj/item/weapon/reagent_containers/glass) || \ + istype(O,/obj/item/weapon/reagent_containers/food/drinks/glass2) || \ + istype(O,/obj/item/weapon/reagent_containers/food/drinks/shaker)) + + if (beaker) + return 1 + else + src.beaker = O + user.drop_item() + O.loc = src + update_icon() + src.updateUsrDialog() + return 0 + + + + if(istype(O,/obj/item/weapon/reagent_containers/hypospray/autoinjector/empty)) + var/obj/item/weapon/reagent_containers/hypospray/autoinjector/empty/E = O + if(src.count_small_injector >= src.capacity_small_injector) + to_chat(user, SPAN_WARNING("Storage is full! It can only hold [capacity_small_injector]")) + return + if(E.reagents.total_volume > 0) + to_chat(user, SPAN_WARNING("You cannot put a filled injector into the machine!")) + return + src.count_small_injector = src.count_small_injector + 1 + qdel(E) + update_icon() + if(istype(O,/obj/item/weapon/reagent_containers/hypospray/autoinjector/biginjector/empty)) + var/obj/item/weapon/reagent_containers/hypospray/autoinjector/biginjector/empty/E = O + if(src.count_large_injector >= src.capacity_large_injector) + to_chat(user, SPAN_WARNING("Storage is full! It can only hold [capacity_large_injector]")) + return + if(E.reagents.total_volume > 0) + to_chat(user, SPAN_WARNING("You cannot put a filled injector into the machine!")) + return + src.count_large_injector = src.count_large_injector + 1 + qdel(E) + update_icon() + + + if(istype(O,/obj/item/stack/material)) + if(O.get_material_name() == MAT_PLASTIC) + var/obj/item/stack/S = O + var/input_amount = tgui_input_number(user, "How many sheets would you like to add?", "Add plastic", 0, S.get_amount(), 0, 0, TRUE) + if(input_amount == 0) + return + var/plastic_input = input_amount * value_plastic + var/free_space = capacity_plastic - src.count_plastic + if(plastic_input > free_space) + to_chat(user, SPAN_WARNING("Storage is full! There is only [free_space] units worth of space left!")) + else + S.use(input_amount) + src.count_plastic = src.count_plastic + plastic_input + update_icon() + + +/obj/machinery/injector_maker/AltClick(mob/user) + . = ..() + if(beaker) + if(!user.incapacitated() && Adjacent(user)) + user.put_in_hands(beaker) + else + beaker.forceMove(drop_location()) + src.beaker = null + update_icon() + +/obj/machinery/injector_maker/examine(mob/user) + . = ..() + if(!in_range(user, src) && !issilicon(user) && !isobserver(user)) + . += "You're too far away to examine [src]'s contents and display!" + return + + if(beaker) + . += "\The [src] contains:" + if(beaker) + . += "- \A [beaker]." + + . += "\The [src] contains [src.count_small_injector] small injectors and [src.count_large_injector] large injectors.\n " + . += " It can hold [capacity_small_injector] small and [capacity_large_injector] large injectors respectively.\n " + . += " \The [src] contains [src.count_plastic] units of plastic. It can hold up to [capacity_plastic] units.\n " + + if(!(stat & (NOPOWER|BROKEN))) + . += "The status display reads the following reagents:\n" + if(beaker) + for(var/datum/reagent/R in beaker.reagents.reagent_list) + . += "- [R.volume] units of [R.name]." + +/obj/machinery/injector_maker/attack_hand(mob/user as mob) + interact(user) + +/obj/machinery/injector_maker/interact(mob/user as mob) + if(user.incapacitated() || !beaker) + return + + var/choice = tgui_input_list(user, "There are [src.count_small_injector] small and [src.count_large_injector] large injectors left.", "Choose what to do", list("large injector", "small injector", "eject beaker", "cancel")) + + switch(choice) + if("cancel") + return + if("eject beaker") + if(!user.incapacitated() && Adjacent(user)) + user.put_in_hands(beaker) + else + beaker.forceMove(drop_location()) + src.beaker = null + update_icon() + + + if("small injector") + var/material = tgui_input_list(user, "Use autoinjector storage, or mold new injectors to fill?", "Choose Material", list("mold plastic", "use injectors")) + switch(material) + if("mold plastic") + if(src.count_plastic < cost_plastic_small) + to_chat(user, SPAN_WARNING("Not enough plastic! Need at least [cost_plastic_small] units.")) + return + if("use injectors") + if(!src.count_small_injector) + to_chat(user, SPAN_WARNING("Small injector rack is empty!")) + return + if(!beaker.reagents.total_volume) + to_chat(user, SPAN_WARNING("Chemical storage is empty!")) + return + var/injector_amount = tgui_input_number(user, "How many injectors would you like?", "Make small injectors", 0, 100, 0, 0, TRUE) + if(injector_amount > 0) + switch(material) + if("mold plastic") + var/plastic_cost = cost_plastic_small * injector_amount + if(src.count_plastic < plastic_cost) + to_chat(user, SPAN_WARNING("Not enough plastic! Need at least [plastic_cost] units.")) + return + if("use injectors") + if(src.count_small_injector < injector_amount) + to_chat(user, SPAN_WARNING("Not enough autoinjectors! You only have [src.count_small_injector]")) + return + var/name = sanitize(tgui_input_text(user, "Name Injector", "Naming", null, 32, 0, 0, 0, 0),MAX_MESSAGE_LEN,0,0,0) + make_injector("large injector", injector_amount, name, material, user) + update_icon() + + + if("large injector") + var/material = tgui_input_list(user, "Use autoinjector storage, or mold new injectors to fill?", "Choose Material", list("mold plastic", "use injectors")) + switch(material) + if("mold plastic") + if(src.count_plastic < cost_plastic_large) + to_chat(user, SPAN_WARNING("Not enough plastic! Need at least [cost_plastic_large] units.")) + return + if("use injectors") + if(!src.count_large_injector) + to_chat(user, SPAN_WARNING("Large injector rack is empty!")) + return + if(!beaker.reagents.total_volume) + to_chat(user, SPAN_WARNING("Chemical storage is empty!")) + return + var/injector_amount = tgui_input_number(user, "How many injectors would you like?", "Make large injectors", 0, 100, 0, 0, TRUE) + if(injector_amount > 0) + switch(material) + if("mold plastic") + var/plastic_cost = cost_plastic_large * injector_amount + if(src.count_plastic < plastic_cost) + to_chat(user, SPAN_WARNING("Not enough plastic! Need at least [plastic_cost] units.")) + return + if("use injectors") + if(src.count_large_injector < injector_amount) + to_chat(user, SPAN_WARNING("Not enough autoinjectors! You only have [src.count_large_injector]")) + return + var/name = sanitize(tgui_input_text(user, "Name Injector", "Naming", null, 32, 0, 0, 0, 0),MAX_MESSAGE_LEN,0,0,0) + make_injector("large injector", injector_amount, name, material,user) + update_icon() + + +/obj/machinery/injector_maker/proc/make_injector(var/size, var/amount, var/new_name, var/material, mob/user as mob) + if(!beaker) + return + var/amount_per_injector = null + var/proceed = "Yes" //Defaulting to Yes. We only check if the amount/injector gets under max volume + switch(size) + if("small injector") + amount_per_injector = CLAMP(beaker.reagents.total_volume / amount, 0, 5) + if("large injector") + amount_per_injector = CLAMP(beaker.reagents.total_volume / amount, 0, 15) + if((size == "small injector" && amount_per_injector < 5) || size == "large injector" && amount_per_injector < 15) + proceed = tgui_alert(usr, "Heads up! Less than max volume per injector!\n Making [amount] [size](s) filled with [amount_per_injector] total reagent volume each!","Proceed?",list("No","Yes")) + if(proceed == "No" || !amount_per_injector) + return + for(var/i, i < amount, i++) + switch(size) + if("small injector") + switch(material) + if("mold plastic") + if(src.count_plastic < cost_plastic_small) + return + else + src.count_plastic = src.count_plastic - cost_plastic_small + if("use injectors") + if(!src.count_small_injector) + return + else + src.count_small_injector = src.count_small_injector - 1 + var/obj/item/weapon/reagent_containers/hypospray/autoinjector/empty/P = new(loc) + beaker.reagents.trans_to_obj(P, amount_per_injector) + P.update_icon() + if(new_name) + P.name = new_name + + + if("large injector") + switch(material) + if("mold plastic") + if(src.count_plastic < cost_plastic_large) + return + else + src.count_plastic = src.count_plastic - cost_plastic_large + if("use injectors") + if(!src.count_large_injector) + return + else + src.count_large_injector = src.count_large_injector - 1 + var/obj/item/weapon/reagent_containers/hypospray/autoinjector/biginjector/empty/P = new(loc) + beaker.reagents.trans_to_obj(P, amount_per_injector) + P.update_icon() + if(new_name) + P.name = new_name diff --git a/code/modules/reagents/reagents/medicine.dm b/code/modules/reagents/reagents/medicine.dm index 897c125b45..3a3b73842a 100644 --- a/code/modules/reagents/reagents/medicine.dm +++ b/code/modules/reagents/reagents/medicine.dm @@ -1440,7 +1440,7 @@ reagent_state = LIQUID color = "#80af9c" metabolism = REM * 0.002 - overdose = REAGENTS_OVERDOSE * 0.25 + overdose = REAGENTS_OVERDOSE scannable = 1 /datum/reagent/earthsblood diff --git a/code/modules/shieldgen/directional_shield.dm b/code/modules/shieldgen/directional_shield.dm index 209dc9ca9a..b298e028a7 100644 --- a/code/modules/shieldgen/directional_shield.dm +++ b/code/modules/shieldgen/directional_shield.dm @@ -66,7 +66,7 @@ /obj/effect/directional_shield/bullet_act(var/obj/item/projectile/P) adjust_health(-P.get_structure_damage()) - P.on_hit() + P.on_hit(src) playsound(src, 'sound/effects/EMPulse.ogg', 75, 1) // All the shields tied to their projector are one 'unit', and don't have individualized health values like most other shields. diff --git a/code/modules/vore/eating/belly_obj_vr.dm b/code/modules/vore/eating/belly_obj_vr.dm index 68aeaea695..afe99433b0 100644 --- a/code/modules/vore/eating/belly_obj_vr.dm +++ b/code/modules/vore/eating/belly_obj_vr.dm @@ -308,6 +308,7 @@ // Called whenever an atom enters this belly /obj/belly/Entered(atom/movable/thing, atom/OldLoc) + . = ..() //CHOMPEdit: radios thing.belly_cycles = 0 //CHOMPEdit: reset cycle count if(istype(thing, /mob/observer)) //CHOMPEdit. Silence, spook. if(desc) diff --git a/code/modules/vore/eating/living_vr.dm b/code/modules/vore/eating/living_vr.dm index cc32178387..f67254b888 100644 --- a/code/modules/vore/eating/living_vr.dm +++ b/code/modules/vore/eating/living_vr.dm @@ -618,6 +618,10 @@ to_chat(user, "They aren't able to be devoured.") log_and_message_admins("[key_name_admin(src)] attempted to devour [key_name_admin(prey)] against their prefs ([prey ? ADMIN_JMP(prey) : "null"])") return FALSE + if(prey.absorbed || pred.absorbed) + to_chat(user, "They aren't aren't in a state to be devoured.") + return FALSE + // Slipnoms from chompstation downstream, credit to cadyn for the original PR. // Prepare messages if(prey.is_slipping) diff --git a/code/modules/vore/eating/vorepanel_vr.dm b/code/modules/vore/eating/vorepanel_vr.dm index ea42c9b8dc..9c138efbf2 100644 --- a/code/modules/vore/eating/vorepanel_vr.dm +++ b/code/modules/vore/eating/vorepanel_vr.dm @@ -1095,8 +1095,9 @@ var/mob/living/carbon/human/h = l thismuch = thismuch * h.species.digestion_nutrition_modifier l.adjust_nutrition(thismuch) - ourtarget.death() //CHOMPEdit - Call .death() on process digest to trigger death hooks like nif_soulcatcher or digest_check (setting vore respawn timer) - b.handle_digestion_death(ourtarget, instant = TRUE) //CHOMPEdit + ourtarget.death() // To make sure all on-death procs get properly called + if(ourtarget) + b.handle_digestion_death(ourtarget) if("Absorb") if(tgui_alert(ourtarget, "\The [usr] is attempting to instantly absorb you. Is this something you are okay with happening to you?","Instant Absorb", list("No", "Yes")) != "Yes") to_chat(usr, "\The [ourtarget] declined your absorb attempt.") diff --git a/code/modules/vore/fluffstuff/custom_boxes_vr.dm b/code/modules/vore/fluffstuff/custom_boxes_vr.dm index 9ab72130f0..2c771bd456 100644 --- a/code/modules/vore/fluffstuff/custom_boxes_vr.dm +++ b/code/modules/vore/fluffstuff/custom_boxes_vr.dm @@ -227,7 +227,7 @@ /obj/item/clothing/head/fluff/nikki, /obj/item/clothing/under/skirt/outfit/fluff/nikki, /obj/item/clothing/shoes/fluff/nikki) - + // DefiintelyNotARock:Aku Zoles /obj/item/weapon/storage/secure/briefcase/dealer name = "Aku's Dealer briefcase" @@ -299,6 +299,18 @@ Swimsuits, for general use, to avoid arriving to work with your swimsuit. name = "Cow Bikini Swimsuit capsule" has_items = list(/obj/item/clothing/under/swimsuit/cowbikini) +/obj/item/weapon/storage/box/fluff/swimsuit/stripperpink + name = "Skimpy Pink Swimsuit capsule" + has_items = list(/obj/item/clothing/under/swimsuit/stripper/stripper_pink) + +/obj/item/weapon/storage/box/fluff/swimsuit/strippergreen + name = "Skimpy Green Swimsuit capsule" + has_items = list(/obj/item/clothing/under/swimsuit/stripper/stripper_green) + +/obj/item/weapon/storage/box/fluff/swimsuit/mankini + name = "Pink Mankini capsule" + has_items = list(/obj/item/clothing/under/swimsuit/stripper/mankini) + //Monkey boxes for the new primals we have /obj/item/weapon/storage/box/monkeycubes/sobakacubes name = "sobaka cube box" diff --git a/code/modules/vore/resizing/holder_vr.dm b/code/modules/vore/resizing/holder_vr.dm new file mode 100644 index 0000000000..2d79d5eda9 --- /dev/null +++ b/code/modules/vore/resizing/holder_vr.dm @@ -0,0 +1,59 @@ +/obj/item/weapon/holder/dropped(mob/user) + if (held_mob?.loc != src || isturf(loc)) + var/held = held_mob + dump_mob() + held_mob = held + +/obj/item/weapon/holder/attack_hand(mob/living/user as mob) //straight up just copypasted from objects/items.dm with a few things changed (doesn't called dropped unless +actually dropped+) + if (!user) return + if(anchored) + to_chat(user, span("notice", "\The [src] won't budge, you can't pick it up!")) + return + if (hasorgans(user)) + var/mob/living/carbon/human/H = user + var/obj/item/organ/external/temp = H.organs_by_name["r_hand"] + if (user.hand) + temp = H.organs_by_name["l_hand"] + if(temp && !temp.is_usable()) + to_chat(user, "You try to move your [temp.name], but cannot!") + return + if(!temp) + to_chat(user, "You try to use your hand, but realize it is no longer attached!") + return + if(held_mob == user) return // No picking your own micro self up + + var/old_loc = src.loc + if (istype(src.loc, /obj/item/weapon/storage)) + var/obj/item/weapon/storage/S = src.loc + if(!S.remove_from_storage(src)) + return + + src.pickup(user) + src.throwing = 0 + if (src.loc == user) + if(!mob_can_unequip(user, user.get_inventory_slot(src))) //VOREStation Edit + return + else //VOREStation Edit + user.temporarilyRemoveItemFromInventory(src) + else + if(isliving(src.loc)) + return + + if(user.put_in_active_hand(src)) + if(isturf(old_loc)) + var/obj/effect/temporary_effect/item_pickup_ghost/ghost = new(old_loc) + ghost.assumeform(src) + ghost.animate_towards(user) + else if (old_loc == user) //VOREStation Edit + dropInto(user.drop_location()) + dropped(user) + //VORESTATION EDIT START. This handles possessed items. + if(src.possessed_voice && src.possessed_voice.len && !(user.ckey in warned_of_possession)) //Is this item possessed? + warned_of_possession |= user.ckey + tgui_alert_async(user,{" + THIS ITEM IS POSSESSED BY A PLAYER CURRENTLY IN THE ROUND. This could be by anomalous means or otherwise. + If this is not something you wish to partake in, it is highly suggested you place the item back down. + If this is fine to you, ensure that the other player is fine with you doing things to them beforehand! + "},"OOC Warning") + //VORESTATION EDIT END. + return \ No newline at end of file diff --git a/code/modules/vore/resizing/resize_vr.dm b/code/modules/vore/resizing/resize_vr.dm index 214c8967d9..4999c3df3a 100644 --- a/code/modules/vore/resizing/resize_vr.dm +++ b/code/modules/vore/resizing/resize_vr.dm @@ -65,7 +65,7 @@ /atom/movable/proc/has_large_resize_bounds() var/area/A = get_area(src) //Get the atom's area to check for size limit. - return !A.limit_mob_size + return A ? !A.limit_mob_size : FALSE //CHOMPEdit /proc/is_extreme_size(size) return (size < RESIZE_MINIMUM || size > RESIZE_MAXIMUM) @@ -281,13 +281,14 @@ var/mob/living/carbon/human/prey = tmob var/can_pass = TRUE + var/size_ratio_needed = (a_intent == I_DISARM || a_intent == I_HURT) ? 0.75 : (a_intent == I_GRAB ? 0.5 : 0) if (isturf(prey.loc)) for (var/atom/movable/M in prey.loc) - if (prey == M) + if (prey == M || pred == M) continue if (istype(M, /mob/living)) var/mob/living/L = M - if (!(M.CanPass(src, prey.loc) || get_effective_size(FALSE) - L.get_effective_size(TRUE) >= 0.75)) + if (!M.CanPass(src, prey.loc) && !(get_effective_size(FALSE) - L.get_effective_size(TRUE) >= size_ratio_needed || L.lying)) can_pass = FALSE continue if (!M.CanPass(src, prey.loc)) diff --git a/code/modules/xenobio/items/slimepotions_vr.dm b/code/modules/xenobio/items/slimepotions_vr.dm index 540a610056..0bd4db66f7 100644 --- a/code/modules/xenobio/items/slimepotions_vr.dm +++ b/code/modules/xenobio/items/slimepotions_vr.dm @@ -47,7 +47,7 @@ to_chat(user, "The slime cannot get any more fertile!") return ..() - to_chat(user, "You feed the slime the infertility agent. It will now have less offspring.") + to_chat(user, "You feed the slime the fertility agent. It will now have more offspring.") M.split_amount = between(2, M.split_amount + 2, 6) playsound(src, 'sound/effects/bubbles.ogg', 50, 1) qdel(src) @@ -192,4 +192,4 @@ if(istype(AI) && justified) AI.obedience = 10 playsound(src, 'sound/effects/bubbles.ogg', 50, 1) - qdel(src) \ No newline at end of file + qdel(src) diff --git a/config/jukebox.json b/config/jukebox.json index 52fdbda902..5b93475567 100644 --- a/config/jukebox.json +++ b/config/jukebox.json @@ -4364,7 +4364,7 @@ "artist": "Network Music Ensemble", "genre": "Rock", "secret": false, -"lobby": true, +"lobby": false, "jukebox": true }, { @@ -4424,7 +4424,7 @@ "artist": "Fiona Apple", "genre": "Electronic", "secret": false, -"lobby": true, +"lobby": false, "jukebox": true }, { @@ -4434,7 +4434,7 @@ "artist": "Kamil Hala, Slovak Philharmonic Orchestra, Libor Pešek", "genre": "Classical and Orchestral", "secret": false, -"lobby": true, +"lobby": false, "jukebox": true }, { @@ -4574,7 +4574,7 @@ "artist": "Julia Ecklar & Anne Prather", "genre": "Folk and Indie", "secret": false, -"lobby": true, +"lobby": false, "jukebox": true }, { @@ -4624,7 +4624,7 @@ "artist": "Free Fall & Other Delights", "genre": "Folk and Indie", "secret": false, -"lobby": true, +"lobby": false, "jukebox": true }, { @@ -4644,7 +4644,7 @@ "artist": "Duane Elms", "genre": "Folk and Indie", "secret": false, -"lobby": true, +"lobby": false, "jukebox": true }, { @@ -4654,7 +4654,7 @@ "artist": "Duane Elms", "genre": "Folk and Indie", "secret": false, -"lobby": true, +"lobby": false, "jukebox": true }, { @@ -4664,7 +4664,7 @@ "artist": "Duane Elms", "genre": "Folk and Indie", "secret": false, -"lobby": true, +"lobby": false, "jukebox": true }, { diff --git a/icons/inventory/accessory/item.dmi b/icons/inventory/accessory/item.dmi index 0be80e8ef5..ddda9fff64 100644 Binary files a/icons/inventory/accessory/item.dmi and b/icons/inventory/accessory/item.dmi differ diff --git a/icons/inventory/accessory/mob.dmi b/icons/inventory/accessory/mob.dmi index 99bf8e66ed..04030363ce 100644 Binary files a/icons/inventory/accessory/mob.dmi and b/icons/inventory/accessory/mob.dmi differ diff --git a/icons/inventory/eyes/mob_vox.dmi b/icons/inventory/eyes/mob_vox.dmi index 4a22391b11..f6cfbf5b2e 100644 Binary files a/icons/inventory/eyes/mob_vox.dmi and b/icons/inventory/eyes/mob_vox.dmi differ diff --git a/icons/inventory/face/item_vr.dmi b/icons/inventory/face/item_vr.dmi index c621b7dadd..e8fe737655 100644 Binary files a/icons/inventory/face/item_vr.dmi and b/icons/inventory/face/item_vr.dmi differ diff --git a/icons/inventory/face/mob_vr.dmi b/icons/inventory/face/mob_vr.dmi index fb826bda1d..5181307aa3 100644 Binary files a/icons/inventory/face/mob_vr.dmi and b/icons/inventory/face/mob_vr.dmi differ diff --git a/icons/inventory/feet/item_vr.dmi b/icons/inventory/feet/item_vr.dmi index 11f16cfba3..3ac5e1b9f2 100644 Binary files a/icons/inventory/feet/item_vr.dmi and b/icons/inventory/feet/item_vr.dmi differ diff --git a/icons/inventory/feet/mob_vr.dmi b/icons/inventory/feet/mob_vr.dmi index 72fb1efec7..1a393e68db 100644 Binary files a/icons/inventory/feet/mob_vr.dmi and b/icons/inventory/feet/mob_vr.dmi differ diff --git a/icons/inventory/suit/item_vr.dmi b/icons/inventory/suit/item_vr.dmi index 2ec42eea27..e7116d9dc7 100644 Binary files a/icons/inventory/suit/item_vr.dmi and b/icons/inventory/suit/item_vr.dmi differ diff --git a/icons/inventory/suit/mob_vox.dmi b/icons/inventory/suit/mob_vox.dmi index 0702ce5337..afb8a2a200 100644 Binary files a/icons/inventory/suit/mob_vox.dmi and b/icons/inventory/suit/mob_vox.dmi differ diff --git a/icons/inventory/suit/mob_vr.dmi b/icons/inventory/suit/mob_vr.dmi index 52f5e50e15..91c916553a 100644 Binary files a/icons/inventory/suit/mob_vr.dmi and b/icons/inventory/suit/mob_vr.dmi differ diff --git a/icons/inventory/uniform/item_vr.dmi b/icons/inventory/uniform/item_vr.dmi index 47c0fcbd15..40659b94f8 100644 Binary files a/icons/inventory/uniform/item_vr.dmi and b/icons/inventory/uniform/item_vr.dmi differ diff --git a/icons/inventory/uniform/mob_vr.dmi b/icons/inventory/uniform/mob_vr.dmi index a9fc8c37d4..400e781f9e 100644 Binary files a/icons/inventory/uniform/mob_vr.dmi and b/icons/inventory/uniform/mob_vr.dmi differ diff --git a/icons/mob/drakeborg/Drakeborg-Licensing.txt b/icons/mob/drakeborg/Drakeborg-Licensing.txt index f2d3ca925c..013b2e8376 100644 --- a/icons/mob/drakeborg/Drakeborg-Licensing.txt +++ b/icons/mob/drakeborg/Drakeborg-Licensing.txt @@ -1,5 +1,8 @@ Drakeborg & drakeplushies are created by deviantart.com/mizartz +Drakeplushies science, engineering, mining, trauma and janitorial are Adaptations of the drakeplushies above, created by github.com/Seris02. +Drakeborg (science) in this codebase is an Adaptation of the science drakeborg (lights have been altered), altered by github.com/Seris02. + https://creativecommons.org/licenses/by-nc-sa/3.0/ Attribution-NonCommercial-ShareAlike 3.0 Unported diff --git a/icons/mob/drakeborg/drakeborg_vr.dmi b/icons/mob/drakeborg/drakeborg_vr.dmi index 56a79ce19c..2165e78525 100644 Binary files a/icons/mob/drakeborg/drakeborg_vr.dmi and b/icons/mob/drakeborg/drakeborg_vr.dmi differ diff --git a/icons/mob/human.dmi b/icons/mob/human.dmi index 810911b73a..8d0a1f5e2e 100644 Binary files a/icons/mob/human.dmi and b/icons/mob/human.dmi differ diff --git a/icons/mob/human_races/markings_ch.dmi b/icons/mob/human_races/markings_ch.dmi index 267bcb7bf9..a978210c24 100644 Binary files a/icons/mob/human_races/markings_ch.dmi and b/icons/mob/human_races/markings_ch.dmi differ diff --git a/icons/mob/human_races/markings_digi_ch.dmi b/icons/mob/human_races/markings_digi_ch.dmi index dbe633fac4..88e16de29a 100644 Binary files a/icons/mob/human_races/markings_digi_ch.dmi and b/icons/mob/human_races/markings_digi_ch.dmi differ diff --git a/icons/mob/human_races/markings_vox.dmi b/icons/mob/human_races/markings_vox.dmi new file mode 100644 index 0000000000..e60cb65e38 Binary files /dev/null and b/icons/mob/human_races/markings_vox.dmi differ diff --git a/icons/mob/human_races/markings_vr.dmi b/icons/mob/human_races/markings_vr.dmi index 0b2bc13a73..0b92c0db20 100644 Binary files a/icons/mob/human_races/markings_vr.dmi and b/icons/mob/human_races/markings_vr.dmi differ diff --git a/icons/mob/human_races/r_vox_old.dmi b/icons/mob/human_races/r_vox_old.dmi index f049446d19..cf0c3e88f8 100644 Binary files a/icons/mob/human_races/r_vox_old.dmi and b/icons/mob/human_races/r_vox_old.dmi differ diff --git a/icons/mob/screen_full_vore.dmi b/icons/mob/screen_full_vore.dmi index 9dd6b841f0..a89c272c84 100644 Binary files a/icons/mob/screen_full_vore.dmi and b/icons/mob/screen_full_vore.dmi differ diff --git a/icons/mob/talk_vr.dmi b/icons/mob/talk_vr.dmi index 0f192acf2d..a6f366aaad 100644 Binary files a/icons/mob/talk_vr.dmi and b/icons/mob/talk_vr.dmi differ diff --git a/icons/mob/vore/ears_ch.dmi b/icons/mob/vore/ears_ch.dmi index 08497fe609..25f3799010 100644 Binary files a/icons/mob/vore/ears_ch.dmi and b/icons/mob/vore/ears_ch.dmi differ diff --git a/icons/mob/vore/ears_vr.dmi b/icons/mob/vore/ears_vr.dmi index e38d45d4ca..035eeb4e86 100644 Binary files a/icons/mob/vore/ears_vr.dmi and b/icons/mob/vore/ears_vr.dmi differ diff --git a/icons/mob/vore/tails_ch.dmi b/icons/mob/vore/tails_ch.dmi index 4d16a9e2dd..7cd1d55711 100644 Binary files a/icons/mob/vore/tails_ch.dmi and b/icons/mob/vore/tails_ch.dmi differ diff --git a/icons/mob/vore/tails_vr.dmi b/icons/mob/vore/tails_vr.dmi index d0f37de5f1..2b72c13a36 100644 Binary files a/icons/mob/vore/tails_vr.dmi and b/icons/mob/vore/tails_vr.dmi differ diff --git a/icons/mob/vore/taurs_ch.dmi b/icons/mob/vore/taurs_ch.dmi index c27a0fd2b7..215d9582b5 100644 Binary files a/icons/mob/vore/taurs_ch.dmi and b/icons/mob/vore/taurs_ch.dmi differ diff --git a/icons/obj/chemical_vr.dmi b/icons/obj/chemical_vr.dmi index a08a052c90..f6669126d8 100644 Binary files a/icons/obj/chemical_vr.dmi and b/icons/obj/chemical_vr.dmi differ diff --git a/icons/obj/closets/decals/wall_double.dmi b/icons/obj/closets/decals/wall_double.dmi index 3649cd44ec..9a47f92f6b 100644 Binary files a/icons/obj/closets/decals/wall_double.dmi and b/icons/obj/closets/decals/wall_double.dmi differ diff --git a/icons/obj/clothing/gloves_ch.dmi b/icons/obj/clothing/gloves_ch.dmi index 7151aded21..a8a5512aa6 100644 Binary files a/icons/obj/clothing/gloves_ch.dmi and b/icons/obj/clothing/gloves_ch.dmi differ diff --git a/icons/obj/clothing/hats_ch.dmi b/icons/obj/clothing/hats_ch.dmi index 5743c356e1..25eb0318b5 100644 Binary files a/icons/obj/clothing/hats_ch.dmi and b/icons/obj/clothing/hats_ch.dmi differ diff --git a/icons/obj/clothing/shoes_ch.dmi b/icons/obj/clothing/shoes_ch.dmi index 14dfbcef1e..29d1603f4f 100644 Binary files a/icons/obj/clothing/shoes_ch.dmi and b/icons/obj/clothing/shoes_ch.dmi differ diff --git a/icons/obj/clothing/spacesuits_ch.dmi b/icons/obj/clothing/spacesuits_ch.dmi index 6a601d48ae..e2443d2719 100644 Binary files a/icons/obj/clothing/spacesuits_ch.dmi and b/icons/obj/clothing/spacesuits_ch.dmi differ diff --git a/icons/obj/drakietoy_vr.dmi b/icons/obj/drakietoy_vr.dmi index 34a4932513..5d85adac8c 100644 Binary files a/icons/obj/drakietoy_vr.dmi and b/icons/obj/drakietoy_vr.dmi differ diff --git a/icons/obj/items.dmi b/icons/obj/items.dmi index 6b748673b5..88fe643156 100644 Binary files a/icons/obj/items.dmi and b/icons/obj/items.dmi differ diff --git a/icons/obj/lighting_vr.dmi b/icons/obj/lighting_vr.dmi index 293cedfdc7..3431caf5d8 100644 Binary files a/icons/obj/lighting_vr.dmi and b/icons/obj/lighting_vr.dmi differ diff --git a/maps/groundbase/gb-z2.dmm b/maps/groundbase/gb-z2.dmm index 02ba5e325b..180c322367 100644 --- a/maps/groundbase/gb-z2.dmm +++ b/maps/groundbase/gb-z2.dmm @@ -1 +1,38080 @@ -lol bye \ No newline at end of file +<<<<<<< HEAD +lol bye +======= +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"aa" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/polarized/full{ + id = "rd_office" + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor, +/area/groundbase/science/rd) +"ab" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled/eris/cafe, +/area/groundbase/civilian/kitchen) +"ac" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/hologram/holopad, +/mob/living/simple_mob/vore/alienanimals/catslug/custom/medislug{ + ghostjoin = 1 + }, +/turf/simulated/floor/tiled/white, +/area/groundbase/medical/lobby) +"ad" = ( +/obj/structure/bed/chair/office/light{ + dir = 1 + }, +/obj/effect/landmark/start/rd, +/obj/machinery/button/windowtint{ + id = "rd_office"; + layer = 3.3; + pixel_x = 16; + pixel_y = 27 + }, +/turf/simulated/floor/tiled, +/area/groundbase/science/rd) +"ae" = ( +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/landmark{ + name = "lightsout" + }, +/mob/living/simple_mob/vore/alienanimals/catslug/custom/capslug{ + ghostjoin = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/groundbase/command/bridge) +"af" = ( +/obj/structure/railing/grey{ + dir = 8 + }, +/turf/simulated/open, +/area/groundbase/medical/triage) +"ag" = ( +/turf/simulated/floor/outdoors/grass/seasonal/notrees_nomobs_lowsnow, +/area/groundbase/science/picnic) +"ah" = ( +/obj/structure/bed/chair/office/light{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/groundbase/science/rnd) +"ai" = ( +/obj/machinery/door/airlock{ + id_tag = null; + name = "Bathroom" + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/groundbase/dorms/room2) +"aj" = ( +/obj/machinery/button/remote/blast_door{ + id = "cirshutters"; + name = "Privacy Shutter Control"; + pixel_y = 30 + }, +/obj/machinery/atmospherics/unary/vent_pump/on, +/obj/structure/bed/chair/office/light{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/groundbase/science/circuits) +"ak" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/cyan, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/groundbase/medical/triage) +"al" = ( +/obj/effect/landmark/start/roboticist, +/obj/structure/bed/chair/office/light{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/groundbase/science/robotics) +"am" = ( +/obj/item/toy/figure/mime, +/obj/item/weapon/pen/crayon/marker/mime, +/obj/item/weapon/pen/crayon/mime, +/obj/structure/table/standard, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/machinery/light, +/turf/simulated/floor/carpet/bcarpet, +/area/groundbase/civilian/mime) +"an" = ( +/turf/simulated/wall/r_wall, +/area/groundbase/command/meeting) +"ao" = ( +/obj/machinery/light, +/turf/simulated/floor/tiled/white, +/area/groundbase/medical/lobby) +"ap" = ( +/obj/structure/disposalpipe/sortjunction{ + dir = 4; + name = "Medical"; + sortType = "Medical" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/outdoors/sidewalk/slab, +/area/groundbase/level2/ne) +"aq" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/camera/network/research{ + dir = 1 + }, +/obj/structure/table/standard, +/obj/machinery/computer/med_data/laptop{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/groundbase/science/robotics) +"ar" = ( +/obj/machinery/light, +/obj/structure/bed/double/padded, +/obj/item/weapon/bedsheet/browndouble, +/turf/simulated/floor/wood, +/area/groundbase/dorms/room3) +"as" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/groundbase/medical/lobby) +"at" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/camera/network/medbay{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/groundbase/medical/triage) +"au" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/turf/simulated/floor/tiled/white, +/area/groundbase/medical/lobby) +"av" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/machinery/alarm{ + dir = 1 + }, +/obj/structure/bed/chair/office/light{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/groundbase/science/robotics) +"aw" = ( +/obj/machinery/firework_launcher, +/turf/simulated/floor/tiled, +/area/groundbase/science/hall) +"ax" = ( +/obj/structure/closet/secure_closet/personal, +/obj/item/weapon/towel/random, +/obj/item/weapon/storage/backpack, +/turf/simulated/floor/wood, +/area/groundbase/dorms/room7) +"ay" = ( +/obj/structure/cable/yellow, +/obj/machinery/power/apc{ + dir = 4; + nightshift_setting = 2 + }, +/turf/simulated/floor/tiled{ + edge_blending_priority = -1; + outdoors = 0 + }, +/area/groundbase/level2/nw) +"az" = ( +/obj/machinery/vending/coffee, +/turf/simulated/floor/tiled{ + edge_blending_priority = -1; + outdoors = 0 + }, +/area/groundbase/science/picnic) +"aA" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/dark, +/area/groundbase/dorms) +"aB" = ( +/obj/structure/closet/secure_closet/scientist, +/turf/simulated/floor/tiled, +/area/groundbase/science/hall) +"aC" = ( +/obj/structure/railing/grey, +/turf/simulated/floor/outdoors/sidewalk/slab, +/area/groundbase/level2/northspur) +"aD" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/effect/landmark/start/janitor, +/turf/simulated/floor/tiled, +/area/groundbase/civilian/janitor) +"aE" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/groundbase/science/xenobot) +"aF" = ( +/obj/machinery/atm{ + pixel_x = -32 + }, +/turf/simulated/floor/tiled/dark, +/area/groundbase/dorms) +"aH" = ( +/obj/structure/table/glass, +/obj/item/device/antibody_scanner, +/obj/item/device/antibody_scanner{ + pixel_x = 2; + pixel_y = 2 + }, +/turf/simulated/floor/tiled/white, +/area/medical/virology) +"aI" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/groundbase/dorms/room6) +"aJ" = ( +/obj/structure/sign/painting/public{ + pixel_y = 30 + }, +/turf/simulated/floor/tiled{ + edge_blending_priority = -1; + outdoors = 0 + }, +/area/groundbase/level2/nw) +"aM" = ( +/obj/machinery/requests_console{ + announcementConsole = 1; + department = "Bridge"; + departmentType = 5; + name = "Bridge RC"; + pixel_y = 32 + }, +/turf/simulated/floor/wood, +/area/groundbase/command/captain) +"aN" = ( +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/obj/machinery/disposal, +/obj/machinery/light_switch{ + dir = 4; + pixel_x = -30 + }, +/turf/simulated/floor/wood, +/area/groundbase/dorms/room4) +"aO" = ( +/obj/machinery/requests_console{ + department = "Janitorial"; + dir = 8; + pixel_x = 32 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled, +/area/groundbase/civilian/janitor) +"aP" = ( +/obj/structure/table/woodentable, +/obj/machinery/microwave, +/turf/simulated/floor/wood, +/area/groundbase/dorms/room4) +"aQ" = ( +/obj/machinery/door/firedoor, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 8; + health = 1e+006 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/grille, +/obj/structure/disposalpipe/segment, +/obj/machinery/door/blast/regular{ + density = 0; + dir = 4; + icon_state = "pdoor0"; + id = "xenobiopen5"; + name = "Pen 5 Blast Doors"; + opacity = 0 + }, +/turf/simulated/floor/reinforced, +/area/rnd/xenobiology) +"aR" = ( +/obj/structure/table/reinforced, +/obj/item/weapon/folder/red{ + pixel_y = 4 + }, +/obj/item/weapon/folder/blue, +/obj/item/weapon/pen, +/obj/item/weapon/paper_bin{ + pixel_y = 7 + }, +/obj/item/device/radio{ + pixel_x = 2; + pixel_y = 3 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/obj/effect/landmark/vermin, +/turf/simulated/floor/tiled/dark, +/area/groundbase/command/bridge) +"aS" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/machinery/atmospherics/portables_connector{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/outline/blue, +/obj/machinery/portable_atmospherics/canister/nitrogen, +/obj/machinery/light_switch{ + dir = 4; + pixel_x = -30 + }, +/turf/simulated/floor/tiled, +/area/groundbase/science/server) +"aT" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/groundbase/dorms) +"aU" = ( +/obj/machinery/seed_extractor, +/turf/simulated/floor/tiled, +/area/groundbase/science/xenobot) +"aV" = ( +/obj/structure/table/woodentable, +/obj/item/device/taperecorder, +/obj/item/device/tape/random, +/obj/item/device/camera, +/obj/item/device/retail_scanner/civilian, +/obj/machinery/firealarm{ + dir = 4 + }, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/simulated/floor/carpet, +/area/groundbase/civilian/library) +"aW" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/structure/table/woodentable, +/turf/simulated/floor/wood, +/area/groundbase/dorms/room2) +"aX" = ( +/obj/machinery/light_switch{ + dir = 8; + pixel_x = 30 + }, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology) +"aY" = ( +/obj/machinery/papershredder, +/obj/machinery/firealarm, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/groundbase/science/rd) +"aZ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/turf/simulated/floor/tiled/white, +/area/medical/virology) +"ba" = ( +/turf/simulated/floor/outdoors/grass/seasonal/notrees_nomobs_lowsnow, +/area/groundbase/science/circuits) +"bb" = ( +/obj/machinery/door/blast/regular{ + density = 0; + dir = 4; + icon_state = "pdoor0"; + id = "xenobiopen1"; + name = "Pen 1 Blast Doors"; + opacity = 0 + }, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8; + health = 1e+006 + }, +/obj/structure/window/reinforced, +/turf/simulated/floor/reinforced, +/area/rnd/xenobiology) +"bc" = ( +/obj/structure/bed/chair/sofa/corp/right, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/wood, +/area/groundbase/dorms/room4) +"be" = ( +/obj/structure/table/fancyblack, +/obj/item/weapon/paper_bin{ + pixel_x = -3; + pixel_y = 7 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/groundbase/command/meeting) +"bf" = ( +/obj/structure/extinguisher_cabinet{ + dir = 4; + pixel_x = -30 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/groundbase/science/robotics) +"bg" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/groundbase/science/rnd) +"bh" = ( +/turf/simulated/floor{ + edge_blending_priority = -1; + outdoors = 1 + }, +/area/groundbase/level2/se) +"bi" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/light, +/turf/simulated/floor/tiled/white, +/area/groundbase/dorms/bathroom) +"bj" = ( +/obj/machinery/door/blast/regular{ + density = 0; + dir = 4; + icon_state = "pdoor0"; + id = "xenobiopen3"; + name = "Pen 3 Blast Doors"; + opacity = 0 + }, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8; + health = 1e+006 + }, +/obj/structure/window/reinforced, +/turf/simulated/floor/reinforced, +/area/rnd/xenobiology) +"bk" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/simulated/floor/lino, +/area/groundbase/civilian/chapel/office) +"bl" = ( +/turf/simulated/floor/carpet/geo, +/area/groundbase/civilian/kitchen/backroom) +"bn" = ( +/obj/machinery/door/airlock{ + id_tag = null; + name = "Unisex Restroom" + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/steel_ridged, +/area/groundbase/dorms/bathroom) +"bo" = ( +/obj/item/weapon/bedsheet/green, +/obj/structure/bed/padded, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/medical/virology) +"bp" = ( +/obj/structure/fence{ + dir = 4 + }, +/turf/simulated/floor/outdoors/grass/seasonal/dark/lowsnow, +/area/groundbase/civilian/hydroponics/out) +"br" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/turf/simulated/floor/carpet/blue, +/area/groundbase/medical/psych) +"bs" = ( +/obj/machinery/smartfridge/secure/virology, +/obj/machinery/light/floortube{ + dir = 4; + pixel_x = 6 + }, +/obj/machinery/atmospherics/unary/vent_pump/on, +/turf/simulated/floor/tiled/white, +/area/medical/virology) +"bu" = ( +/obj/machinery/door/airlock/freezer{ + name = "Kitchen"; + req_access = list(28) + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor/bmarble, +/area/groundbase/civilian/kitchen) +"bv" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/medical{ + id_tag = "mentaldoor"; + name = "Mental Health"; + req_access = list(64) + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/steel_ridged, +/area/groundbase/medical/psych) +"bx" = ( +/obj/structure/bed/chair/office/dark{ + dir = 1 + }, +/obj/effect/landmark/start/chemist, +/turf/simulated/floor/tiled/white, +/area/groundbase/medical/Chemistry) +"by" = ( +/obj/machinery/suit_cycler/captain, +/obj/machinery/keycard_auth{ + pixel_y = 28 + }, +/turf/simulated/floor/wood, +/area/groundbase/command/captain) +"bz" = ( +/obj/machinery/camera/network/research/xenobio{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/groundbase/science/xenobot) +"bA" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/item_bank{ + pixel_y = 25 + }, +/turf/simulated/floor/tiled/dark, +/area/groundbase/dorms) +"bB" = ( +/obj/machinery/atmospherics/portables_connector{ + dir = 8 + }, +/obj/machinery/alarm{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/groundbase/science/xenobot/storage) +"bC" = ( +/obj/item/weapon/book/manual/virology, +/obj/structure/table/glass, +/turf/simulated/floor/tiled/white, +/area/medical/virology) +"bD" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/research{ + name = "Robotics Resleeving" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/steel_ridged, +/area/groundbase/science/robotics) +"bE" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/junction{ + dir = 2; + icon_state = "pipe-j2" + }, +/turf/simulated/floor/tiled/dark, +/area/groundbase/dorms) +"bF" = ( +/obj/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/groundbase/science/hall) +"bG" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/white, +/area/groundbase/medical/Chemistry) +"bI" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/light/floortube{ + dir = 4; + pixel_x = 6 + }, +/turf/simulated/floor/tiled/dark, +/area/groundbase/civilian/chapel) +"bL" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/groundbase/science/xenobot/storage) +"bM" = ( +/obj/structure/bed/chair/office/light{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/light, +/turf/simulated/floor/tiled, +/area/groundbase/science/server) +"bN" = ( +/turf/simulated/wall/r_wall, +/area/groundbase/dorms/room8) +"bO" = ( +/obj/machinery/alarm, +/turf/simulated/floor/tiled, +/area/groundbase/science/xenohall) +"bP" = ( +/obj/item/clothing/glasses/omnihud/all, +/obj/structure/closet/secure_closet/captains, +/obj/item/weapon/disk/nuclear{ + name = "authentication disk" + }, +/obj/machinery/light/small{ + dir = 8 + }, +/obj/random/paicard, +/turf/simulated/floor/wood, +/area/groundbase/command/captainq) +"bQ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/bookcase, +/turf/simulated/floor/wood, +/area/groundbase/civilian/library) +"bS" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/white, +/area/groundbase/medical/Chemistry) +"bT" = ( +/obj/machinery/light/small, +/turf/simulated/floor/outdoors/grass/seasonal/notrees_nomobs_lowsnow, +/area/groundbase/civilian/hydroponics) +"bU" = ( +/obj/effect/landmark/start/chaplain, +/turf/simulated/floor/tiled/dark, +/area/groundbase/civilian/chapel) +"bV" = ( +/obj/structure/closet/l3closet/scientist, +/turf/simulated/floor/tiled, +/area/groundbase/science/xenobot) +"bW" = ( +/obj/machinery/hologram/holopad, +/turf/simulated/floor/tiled{ + edge_blending_priority = -1; + outdoors = 0 + }, +/area/groundbase/level2/nw) +"bX" = ( +/turf/simulated/floor/outdoors/sidewalk/side, +/area/groundbase/level2/nw) +"bY" = ( +/turf/simulated/floor/outdoors/grass/seasonal/notrees_nomobs_lowsnow, +/area/groundbase/level2/nw) +"bZ" = ( +/obj/machinery/button/remote/blast_door{ + id = "rndshutters"; + name = "Privacy Shutter Control"; + pixel_y = 30 + }, +/turf/simulated/floor/tiled, +/area/groundbase/science/rnd) +"ca" = ( +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/turf/simulated/floor/wood, +/area/groundbase/civilian/kitchen/backroom) +"cc" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/glass_research{ + name = "Research and Development"; + req_one_access = list(7) + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/steel_ridged, +/area/groundbase/science/robotics) +"cd" = ( +/obj/machinery/camera/network/civilian{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/groundbase/dorms) +"cf" = ( +/obj/structure/table/woodentable, +/obj/item/weapon/paper_bin{ + pixel_x = -3; + pixel_y = 7 + }, +/obj/item/weapon/folder/blue, +/obj/item/device/flashlight/lamp/green{ + pixel_x = -13; + pixel_y = 7 + }, +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/turf/simulated/floor/carpet/blucarpet, +/area/groundbase/command/captain) +"ci" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass_medical{ + name = "Medical"; + req_one_access = null + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/bmarble, +/area/groundbase/medical/lobby) +"cj" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/medical/virology) +"ck" = ( +/obj/effect/floor_decal/industrial/outline, +/obj/machinery/status_display/supply_display{ + pixel_x = -32 + }, +/turf/simulated/floor/outdoors/sidewalk/slab, +/area/groundbase/cargo/bay) +"cl" = ( +/obj/structure/table/bench/padded, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/dark, +/area/groundbase/civilian/bar) +"cm" = ( +/obj/structure/closet/secure_closet/freezer/meat, +/turf/simulated/floor/tiled/eris/cafe, +/area/groundbase/civilian/kitchen) +"cn" = ( +/obj/machinery/button/remote/blast_door{ + id = "xenobiopen4"; + name = "Pen 4 Containment"; + pixel_y = 38; + req_access = list(55) + }, +/obj/machinery/button/remote/blast_door{ + id = "xenobiodiv2"; + name = "Divider"; + pixel_y = 27; + req_access = list(55) + }, +/obj/machinery/atmospherics/unary/vent_pump/on, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology) +"co" = ( +/obj/machinery/shower{ + pixel_y = 16 + }, +/obj/structure/curtain/open/shower, +/turf/simulated/floor/tiled{ + icon_state = "techmaint" + }, +/area/groundbase/dorms/room1) +"cp" = ( +/obj/structure/filingcabinet/filingcabinet, +/turf/simulated/floor/tiled, +/area/groundbase/cargo/office) +"cq" = ( +/mob/living/simple_mob/vore/alienanimals/catslug/custom/scienceslug{ + ghostjoin = 1 + }, +/turf/simulated/floor/tiled, +/area/groundbase/science/rnd) +"cr" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/structure/table/standard, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/item/device/retail_scanner/cargo, +/turf/simulated/floor/tiled, +/area/groundbase/cargo/office) +"cs" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/groundbase/civilian/bar) +"ct" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/landmark{ + name = "lightsout" + }, +/turf/simulated/floor/tiled/dark, +/area/groundbase/science/robotics) +"cv" = ( +/obj/structure/table/glass, +/obj/machinery/chemical_dispenser/xenoflora/full, +/turf/simulated/floor/tiled, +/area/groundbase/science/xenobot) +"cx" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/light_switch{ + pixel_x = 16; + pixel_y = 30 + }, +/turf/simulated/floor/wood, +/area/groundbase/civilian/kitchen/backroom) +"cy" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/dark, +/area/groundbase/science/hall) +"cA" = ( +/obj/machinery/vending/wardrobe/chapdrobe, +/turf/simulated/floor/lino, +/area/groundbase/civilian/chapel/office) +"cB" = ( +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled, +/area/groundbase/science/robotics) +"cC" = ( +/obj/structure/railing/grey{ + dir = 1 + }, +/turf/simulated/floor/outdoors/grass/seasonal/notrees_nomobs_lowsnow, +/area/groundbase/level2/se) +"cD" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/white, +/area/medical/virology) +"cE" = ( +/obj/structure/closet/secure_closet/freezer/fridge, +/turf/simulated/floor/tiled/eris/cafe, +/area/groundbase/civilian/kitchen) +"cF" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/simulated/floor/outdoors/sidewalk/slab, +/area/groundbase/level2/nw) +"cG" = ( +/turf/simulated/floor/tiled/white, +/area/medical/virology) +"cI" = ( +/obj/machinery/shower{ + pixel_y = 16 + }, +/obj/structure/curtain/open/shower, +/turf/simulated/floor/tiled{ + icon_state = "techmaint" + }, +/area/groundbase/dorms/room2) +"cK" = ( +/turf/simulated/floor/outdoors/grass/seasonal/dark/lowsnow, +/area/groundbase/unexplored/outdoors) +"cM" = ( +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/turf/simulated/floor/tiled/white, +/area/groundbase/medical/lobby) +"cN" = ( +/obj/effect/floor_decal/industrial/warning, +/obj/structure/closet/walllocker_double/east, +/obj/item/device/defib_kit/jumper_kit, +/obj/item/weapon/storage/box/gloves, +/obj/item/weapon/storage/box/bodybags{ + pixel_x = -3; + pixel_y = -2 + }, +/obj/item/weapon/book/manual/robotics_cyborgs, +/turf/simulated/floor/tiled, +/area/groundbase/science/robotics) +"cO" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/groundbase/science/rnd) +"cP" = ( +/obj/structure/table/borosilicate, +/turf/simulated/floor/outdoors/newdirt, +/area/groundbase/science/picnic) +"cQ" = ( +/obj/machinery/firealarm{ + dir = 8 + }, +/turf/simulated/floor/wood, +/area/groundbase/dorms/room7) +"cR" = ( +/turf/simulated/wall, +/area/groundbase/medical/triage) +"cS" = ( +/obj/machinery/vending/weeb, +/turf/simulated/floor/tiled{ + edge_blending_priority = -1; + outdoors = 0 + }, +/area/groundbase/science/picnic) +"cT" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/groundbase/medical/psych) +"cU" = ( +/obj/structure/table/bench/padded, +/turf/simulated/floor/tiled/dark, +/area/groundbase/civilian/bar) +"cV" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/outdoors/sidewalk/side, +/area/groundbase/level2/se) +"cW" = ( +/obj/structure/bed/chair/comfy/brown{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/turf/simulated/floor/wood, +/area/groundbase/civilian/library) +"cX" = ( +/turf/simulated/floor/carpet, +/area/groundbase/civilian/library) +"cY" = ( +/obj/machinery/button/remote/blast_door{ + dir = 1; + id = "xenobiopen5"; + name = "Pen 5 Containment"; + pixel_y = -38; + req_access = list(55) + }, +/obj/machinery/button/remote/blast_door{ + dir = 1; + id = "xenobiodiv3"; + name = "Divider"; + pixel_y = -27; + req_access = list(55) + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology) +"cZ" = ( +/obj/structure/table/standard, +/obj/item/weapon/storage/box/lights/mixed, +/turf/simulated/floor/tiled, +/area/groundbase/cargo/office) +"da" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/dark, +/area/groundbase/command/hall) +"dd" = ( +/obj/structure/bed/chair/sofa/corp/right, +/obj/machinery/atmospherics/unary/vent_pump/on, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/wood, +/area/groundbase/dorms/room3) +"de" = ( +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/obj/machinery/light, +/turf/simulated/floor/tiled, +/area/groundbase/science/robotics) +"df" = ( +/obj/structure/table/woodentable, +/obj/item/weapon/reagent_containers/food/drinks/bottle/holywater, +/obj/item/weapon/nullrod, +/obj/structure/noticeboard{ + pixel_y = 32 + }, +/turf/simulated/floor/lino, +/area/groundbase/civilian/chapel/office) +"dg" = ( +/obj/structure/table/standard, +/obj/machinery/computer/guestpass{ + dir = 1; + pixel_y = -22 + }, +/turf/simulated/floor/tiled/eris/cafe, +/area/groundbase/civilian/kitchen) +"dh" = ( +/obj/structure/bed/chair/sofa/corp/left, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/wood, +/area/groundbase/dorms/room3) +"di" = ( +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled/eris/cafe, +/area/groundbase/civilian/kitchen) +"dj" = ( +/obj/structure/table/fancyblack, +/obj/item/weapon/book/manual/security_space_law, +/obj/effect/landmark{ + name = "lightsout" + }, +/turf/simulated/floor/tiled/dark, +/area/groundbase/command/meeting) +"dk" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/structure/noticeboard{ + pixel_x = -32 + }, +/turf/simulated/floor/tiled/white, +/area/groundbase/medical/Chemistry) +"dl" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled, +/area/groundbase/science/xenobot) +"dm" = ( +/obj/structure/table/steel, +/obj/machinery/recharger{ + pixel_y = 4 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/groundbase/science/circuits) +"do" = ( +/obj/machinery/button/remote/blast_door{ + id = "xenobiopen2"; + name = "Pen 2 Containment"; + pixel_y = 38; + req_access = list(55) + }, +/obj/machinery/atmospherics/unary/vent_pump/on, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology) +"dp" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/simulated/floor/outdoors/sidewalk/side, +/area/groundbase/level2/ne) +"dq" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/machinery/vending/nifsoft_shop, +/turf/simulated/floor/tiled/dark, +/area/groundbase/command/hall) +"dr" = ( +/turf/simulated/open, +/area/groundbase/medical/triage) +"ds" = ( +/obj/structure/bed/chair/comfy/blue{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/groundbase/command/meeting) +"dt" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 5 + }, +/turf/simulated/floor/tiled/white, +/area/groundbase/medical/triage) +"dv" = ( +/obj/structure/table/standard, +/obj/item/weapon/storage/belt/utility, +/obj/item/device/multitool, +/obj/fiftyspawner/steel, +/obj/item/weapon/storage/belt/utility, +/obj/machinery/alarm{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/groundbase/cargo/office) +"dx" = ( +/obj/machinery/door/airlock{ + id_tag = "toilet1"; + name = "Room 9" + }, +/turf/simulated/floor/tiled/white, +/area/groundbase/dorms/bathroom) +"dy" = ( +/obj/machinery/recharge_station, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled{ + edge_blending_priority = -1; + outdoors = 1 + }, +/area/groundbase/science/rnd) +"dz" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/simulated/floor/wood, +/area/groundbase/dorms/room2) +"dA" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/computer/stockexchange{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/groundbase/cargo/office) +"dB" = ( +/obj/machinery/firealarm{ + dir = 8 + }, +/obj/structure/closet/secure_closet/personal, +/obj/item/weapon/towel/random, +/obj/item/weapon/storage/backpack, +/turf/simulated/floor/wood, +/area/groundbase/dorms/room5) +"dE" = ( +/turf/simulated/open, +/area/groundbase/cargo/office) +"dF" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/groundbase/science/hall) +"dH" = ( +/obj/machinery/status_display/supply_display, +/turf/simulated/wall, +/area/groundbase/cargo/office) +"dI" = ( +/obj/structure/bed/chair/sofa/corp{ + dir = 8 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/machinery/alarm{ + dir = 8 + }, +/turf/simulated/floor/wood, +/area/groundbase/dorms/room7) +"dK" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/turf/simulated/floor/outdoors/grass/seasonal/notrees_nomobs_lowsnow, +/area/groundbase/command/hop) +"dL" = ( +/obj/structure/table/woodentable, +/obj/item/weapon/melee/chainofcommand, +/obj/item/weapon/coin/phoron{ + desc = "The face of the coin shows a portrait of the explorer who discovered the Virgo-Erigone system. The back depicts a Zodiac symbol that represents Virgo."; + name = "limited edition phoron coin" + }, +/obj/item/weapon/folder/blue_captain, +/obj/item/weapon/stamp/captain, +/obj/machinery/alarm{ + dir = 4 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/carpet/blucarpet, +/area/groundbase/command/captain) +"dM" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/groundbase/science/hall) +"dN" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/table/reinforced, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/door/blast/angled_shutter/open{ + dir = 4; + id = "rndshutters"; + name = "Privacy Shutters" + }, +/turf/simulated/floor{ + edge_blending_priority = -1; + outdoors = 1 + }, +/area/groundbase/science/rnd) +"dS" = ( +/turf/simulated/wall/r_wall, +/area/groundbase/dorms/room4) +"dT" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/groundbase/science/robotics) +"dU" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass{ + name = "Dorms" + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/bmarble, +/area/groundbase/dorms) +"dV" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/groundbase/command/captain) +"dW" = ( +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/turf/simulated/floor/tiled, +/area/groundbase/command/hop) +"dX" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/turf/simulated/floor/tiled/dark, +/area/groundbase/civilian/chapel) +"dY" = ( +/obj/structure/fence/door, +/turf/simulated/floor/outdoors/grass/seasonal/dark/lowsnow, +/area/groundbase/civilian/hydroponics/out) +"ea" = ( +/obj/structure/stairs/spawner/west, +/turf/simulated/floor/tiled, +/area/groundbase/cargo/office) +"ec" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/groundbase/command/hop) +"ee" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden{ + dir = 1 + }, +/turf/simulated/floor/bluegrid{ + name = "Server Base"; + nitrogen = 500; + oxygen = 0; + temperature = 80 + }, +/area/groundbase/science/server) +"eg" = ( +/obj/structure/table/reinforced, +/obj/item/weapon/paper_bin{ + pixel_x = -3; + pixel_y = 7 + }, +/obj/item/weapon/folder/blue_hop, +/obj/item/weapon/pen/multi{ + pixel_x = -2; + pixel_y = 9 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/obj/item/weapon/storage/box/PDAs, +/turf/simulated/floor/tiled, +/area/groundbase/command/hop) +"ei" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled, +/area/groundbase/science/hall) +"ej" = ( +/obj/structure/bed/chair/comfy/brown{ + dir = 8 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/obj/effect/landmark/start/captain, +/turf/simulated/floor/wood, +/area/groundbase/command/captainq) +"ek" = ( +/obj/machinery/alarm, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/groundbase/command/hall) +"el" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/wood, +/area/groundbase/dorms/room6) +"em" = ( +/obj/structure/bed/chair/office/dark, +/obj/effect/landmark/start/captain, +/turf/simulated/floor/carpet/blucarpet, +/area/groundbase/command/captain) +"en" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/groundbase/cargo/office) +"eo" = ( +/obj/structure/table/standard, +/obj/item/weapon/reagent_containers/dropper, +/obj/item/weapon/reagent_containers/glass/beaker{ + pixel_x = 5 + }, +/obj/item/weapon/reagent_containers/food/condiment/enzyme{ + layer = 5 + }, +/obj/item/weapon/reagent_containers/food/condiment/enzyme{ + layer = 5 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/eris/cafe, +/area/groundbase/civilian/kitchen) +"ep" = ( +/obj/structure/table/standard, +/obj/item/weapon/book/manual/cook_guide, +/obj/machinery/camera/network/civilian{ + dir = 4 + }, +/turf/simulated/floor/tiled/eris/cafe, +/area/groundbase/civilian/kitchen) +"eq" = ( +/obj/structure/table/standard, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/simulated/floor/tiled/eris/cafe, +/area/groundbase/civilian/kitchen) +"es" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/tiled, +/area/groundbase/science/xenobot) +"et" = ( +/obj/structure/railing/grey{ + dir = 1 + }, +/turf/simulated/floor/outdoors/grass/seasonal/notrees_nomobs_lowsnow, +/area/groundbase/level2/ne) +"eu" = ( +/obj/effect/floor_decal/steeldecal/steel_decals10{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals10{ + dir = 10 + }, +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/door/window/southleft{ + dir = 1; + name = "shower door"; + req_access = null + }, +/turf/simulated/floor/tiled/white, +/area/groundbase/dorms/room1) +"ev" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/groundbase/science/server) +"ex" = ( +/obj/machinery/power/apc{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "0-8" + }, +/turf/simulated/floor/carpet/bcarpet, +/area/groundbase/civilian/mime) +"ey" = ( +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/effect/landmark/start/janitor, +/turf/simulated/floor/tiled, +/area/groundbase/civilian/janitor) +"eA" = ( +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/carpet, +/area/groundbase/command/captainq) +"eB" = ( +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/groundbase/science/robotics) +"eC" = ( +/turf/simulated/wall/r_wall, +/area/groundbase/dorms/bathroom) +"eD" = ( +/turf/simulated/floor/tiled/dark, +/area/groundbase/civilian/chapel) +"eE" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/groundbase/civilian/janitor) +"eF" = ( +/obj/structure/grille, +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/blast/regular{ + closed_layer = 10; + density = 0; + dir = 2; + icon_state = "pdoor0"; + id = "bridge blast"; + layer = 1; + name = "Bridge Blast Doors"; + opacity = 0; + open_layer = 1 + }, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/cable/green{ + icon_state = "0-4" + }, +/turf/simulated/floor/plating, +/area/groundbase/command/bridge) +"eH" = ( +/obj/structure/sign/department/biblio, +/turf/simulated/wall, +/area/groundbase/civilian/library) +"eJ" = ( +/obj/machinery/door/airlock{ + name = "Custodial Closet"; + req_access = list(26) + }, +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/bmarble, +/area/groundbase/civilian/janitor) +"eL" = ( +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/turf/simulated/floor/tiled, +/area/groundbase/cargo/office) +"eM" = ( +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/structure/disposalpipe/junction{ + dir = 8; + icon_state = "pipe-j2" + }, +/turf/simulated/floor/tiled/dark, +/area/groundbase/dorms) +"eN" = ( +/turf/simulated/open, +/area/groundbase/level2/westspur) +"eO" = ( +/obj/structure/sign/painting/chapel_secure{ + pixel_y = 30 + }, +/turf/simulated/floor/lino, +/area/groundbase/civilian/chapel/office) +"eP" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/effect/landmark/start/cmo, +/turf/simulated/floor/tiled/white, +/area/groundbase/medical/lobby) +"eR" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/structure/table/woodentable, +/turf/simulated/floor/wood, +/area/groundbase/dorms/room1) +"eS" = ( +/obj/machinery/recharge_station, +/turf/simulated/floor/tiled, +/area/groundbase/science/hall) +"eT" = ( +/obj/machinery/power/apc{ + dir = 8 + }, +/obj/structure/cable/yellow{ + icon_state = "0-4" + }, +/turf/simulated/floor/tiled, +/area/groundbase/science/xenobot) +"eU" = ( +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/obj/structure/table/woodentable, +/obj/random/donkpocketbox, +/turf/simulated/floor/wood, +/area/groundbase/dorms/room1) +"eV" = ( +/obj/machinery/light, +/turf/simulated/floor/wood, +/area/groundbase/cargo/qm) +"eX" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/white, +/area/groundbase/medical/triage) +"eY" = ( +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/turf/simulated/floor/outdoors/sidewalk/slab, +/area/groundbase/level2/se) +"fa" = ( +/obj/structure/table/glass, +/obj/item/weapon/storage/box/gloves{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/weapon/storage/box/masks, +/turf/simulated/floor/tiled/white, +/area/medical/virology) +"fb" = ( +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/simulated/floor/wood, +/area/groundbase/dorms/room4) +"fc" = ( +/obj/machinery/computer/rdservercontrol{ + dir = 4 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/groundbase/science/server) +"fe" = ( +/obj/structure/table/woodentable, +/obj/item/device/flashlight/lamp/green{ + pixel_x = 1; + pixel_y = 5 + }, +/turf/simulated/floor/carpet, +/area/groundbase/civilian/library) +"ff" = ( +/turf/simulated/floor/tiled, +/area/groundbase/science/xenohall) +"fg" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled, +/area/groundbase/command/hop) +"fh" = ( +/obj/machinery/firealarm, +/turf/simulated/floor/tiled/dark, +/area/groundbase/civilian/chapel) +"fj" = ( +/obj/machinery/power/apc{ + dir = 1 + }, +/obj/structure/cable/yellow{ + icon_state = "0-2" + }, +/turf/simulated/floor/lino, +/area/groundbase/civilian/chapel/office) +"fk" = ( +/turf/simulated/mineral/cave, +/area/groundbase/level2/se) +"fl" = ( +/obj/structure/closet/l3closet/scientist, +/obj/machinery/light_switch{ + dir = 8; + pixel_x = 30 + }, +/turf/simulated/floor/tiled, +/area/groundbase/science/xenobot) +"fm" = ( +/obj/machinery/button/remote/airlock{ + dir = 8; + id = "dorm5"; + pixel_x = 27; + specialfunctions = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/wood, +/area/groundbase/dorms/room5) +"fn" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/groundbase/science/hall) +"fo" = ( +/obj/structure/table/bench/sifwooden/padded, +/obj/effect/landmark/start/visitor, +/turf/simulated/floor/tiled/dark, +/area/groundbase/dorms) +"fp" = ( +/turf/simulated/floor{ + edge_blending_priority = -1; + outdoors = 1 + }, +/area/groundbase/level2/ne) +"fq" = ( +/obj/machinery/camera/network/cargo{ + dir = 4 + }, +/turf/simulated/floor/outdoors/sidewalk/slab, +/area/groundbase/cargo/bay) +"fr" = ( +/obj/structure/bed/chair, +/turf/simulated/floor/tiled, +/area/groundbase/science/rd) +"fs" = ( +/obj/machinery/newscaster{ + layer = 3.3; + pixel_x = -27 + }, +/turf/simulated/floor/tiled, +/area/groundbase/civilian/hydroponics) +"ft" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/outdoors/sidewalk/side, +/area/groundbase/level2/nw) +"fu" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/groundbase/command/hop) +"fv" = ( +/obj/structure/sign/painting/chapel_secure{ + pixel_y = 30 + }, +/turf/simulated/floor/tiled/dark, +/area/groundbase/civilian/chapel) +"fx" = ( +/obj/structure/cable/yellow{ + icon_state = "0-4" + }, +/obj/machinery/power/apc/hyper{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/medical/virology) +"fy" = ( +/turf/simulated/wall, +/area/groundbase/medical/psych) +"fz" = ( +/turf/simulated/floor/outdoors/newdirt, +/area/groundbase/civilian/kitchen) +"fB" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/groundbase/science/xenobot/storage) +"fC" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/eris/cafe, +/area/groundbase/civilian/kitchen) +"fD" = ( +/turf/simulated/floor/tiled{ + edge_blending_priority = -1; + outdoors = 1 + }, +/area/groundbase/level2/nw) +"fE" = ( +/obj/structure/sign/painting/library_private{ + pixel_y = 32 + }, +/turf/simulated/floor/carpet, +/area/groundbase/civilian/library) +"fF" = ( +/obj/structure/table/glass, +/obj/item/weapon/reagent_containers/glass/beaker/cryoxadone{ + pixel_x = -5; + pixel_y = 10 + }, +/obj/item/weapon/reagent_containers/glass/beaker/cryoxadone{ + pixel_x = 6; + pixel_y = 2 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/obj/machinery/camera/network/medbay{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/groundbase/medical/triage) +"fG" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/cyan, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/groundbase/medical/triage) +"fH" = ( +/obj/structure/bed/chair/sofa/corp/left, +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/atmospherics/unary/vent_pump/on, +/turf/simulated/floor/wood, +/area/groundbase/dorms/room6) +"fJ" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/turf/simulated/floor/outdoors/grass/seasonal/notrees_nomobs_lowsnow, +/area/groundbase/level2/ne) +"fK" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/sortjunction/flipped{ + dir = 1; + name = "Janitor"; + sortType = "Janitor" + }, +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/landmark/vines, +/turf/simulated/floor/outdoors/sidewalk/slab, +/area/groundbase/level2/nw) +"fM" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/simulated/floor/outdoors/sidewalk/slab, +/area/groundbase/level2/nw) +"fN" = ( +/obj/machinery/access_button{ + command = "cycle_exterior"; + frequency = 1379; + master_tag = "virology_airlock_control"; + name = "Virology Access Button"; + pixel_x = -32; + req_access = list(39) + }, +/obj/machinery/door/airlock/medical{ + frequency = 1379; + id_tag = "virology_airlock_exterior"; + locked = 1; + name = "Virology Exterior Airlock"; + req_access = list(39); + req_one_access = null + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/blast/regular{ + closed_layer = 10; + density = 0; + dir = 4; + icon_state = "pdoor0"; + id = "virologyquar"; + layer = 1; + name = "Blast Doors"; + opacity = 0; + open_layer = 1 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/bmarble, +/area/medical/virology) +"fO" = ( +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/obj/machinery/disposal, +/obj/machinery/firealarm{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/groundbase/dorms/room2) +"fP" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/groundbase/science/hall) +"fQ" = ( +/obj/effect/floor_decal/chapel, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/groundbase/civilian/chapel) +"fS" = ( +/obj/machinery/power/apc{ + dir = 1 + }, +/obj/structure/cable/yellow{ + icon_state = "0-2" + }, +/turf/simulated/floor/carpet, +/area/groundbase/command/captainq) +"fT" = ( +/obj/structure/table/woodentable, +/obj/machinery/light/floortube{ + dir = 8; + pixel_x = -6 + }, +/turf/simulated/floor/wood, +/area/groundbase/civilian/library) +"fV" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology) +"fW" = ( +/obj/structure/table/woodentable, +/obj/machinery/light/floortube{ + dir = 4; + pixel_x = 6 + }, +/turf/simulated/floor/wood, +/area/groundbase/civilian/library) +"fX" = ( +/turf/unsimulated/wall/planetary/normal{ + desc = "It's quite impassable"; + icon_state = "rock-dark"; + name = "impassable rock" + }, +/area/groundbase/level2/nw) +"fY" = ( +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/obj/machinery/disposal, +/obj/machinery/light_switch{ + dir = 8; + pixel_x = 30 + }, +/turf/simulated/floor/wood, +/area/groundbase/dorms/room5) +"fZ" = ( +/obj/structure/janitorialcart, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/groundbase/civilian/janitor) +"ga" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/turf/simulated/floor/tiled, +/area/groundbase/cargo/office) +"gd" = ( +/obj/machinery/r_n_d/protolathe{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/groundbase/science/rnd) +"ge" = ( +/obj/machinery/smartfridge/produce, +/turf/simulated/floor/tiled, +/area/groundbase/science/xenobot) +"gf" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/tiled, +/area/groundbase/science/xenohall) +"gk" = ( +/obj/structure/table/standard, +/obj/item/weapon/clipboard, +/obj/item/weapon/stamp/qm, +/turf/simulated/floor/wood, +/area/groundbase/cargo/qm) +"gm" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/machinery/door/firedoor, +/obj/structure/sign/department/rnd{ + pixel_y = 32 + }, +/obj/machinery/door/blast/angled_shutter/open{ + dir = 4; + id = "rndshutters"; + name = "Privacy Shutters" + }, +/turf/simulated/floor, +/area/groundbase/science/rnd) +"gn" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled{ + edge_blending_priority = -1; + outdoors = 0 + }, +/area/groundbase/cargo/office) +"go" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/light/small/fairylights{ + pixel_y = -2 + }, +/turf/simulated/floor/outdoors/sidewalk, +/area/groundbase/level2/nw) +"gq" = ( +/obj/structure/table/woodentable, +/obj/item/weapon/paper_bin{ + pixel_x = -2; + pixel_y = 8 + }, +/obj/item/weapon/pen/blue{ + pixel_x = 2; + pixel_y = 1 + }, +/obj/machinery/atmospherics/unary/vent_pump/on, +/turf/simulated/floor/lino, +/area/groundbase/civilian/chapel/office) +"gs" = ( +/turf/simulated/open, +/area/groundbase/level2/southeastspur) +"gt" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled/white, +/area/groundbase/medical/lobby) +"gu" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/groundbase/cargo/office) +"gv" = ( +/obj/structure/table/standard, +/obj/item/weapon/storage/box/beakers{ + name = "box of measuring cups"; + pixel_x = 2; + pixel_y = 3; + starts_with = list(/obj/item/weapon/reagent_containers/glass/beaker/measuring_cup = 7) + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/tiled/eris/cafe, +/area/groundbase/civilian/kitchen) +"gx" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/carpet, +/area/groundbase/civilian/library) +"gy" = ( +/obj/structure/filingcabinet, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/groundbase/medical/lobby) +"gz" = ( +/obj/structure/extinguisher_cabinet{ + dir = 4; + pixel_x = -30 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology) +"gA" = ( +/obj/structure/bed/chair/wood{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/lino, +/area/groundbase/civilian/chapel/office) +"gB" = ( +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled, +/area/groundbase/cargo/office) +"gC" = ( +/obj/structure/bed/chair/sofa/bench{ + dir = 1 + }, +/obj/effect/landmark/start/visitor, +/turf/simulated/floor/outdoors/newdirt, +/area/groundbase/level2/se) +"gE" = ( +/turf/simulated/floor/tiled/dark, +/area/groundbase/command/meeting) +"gF" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/light_switch{ + pixel_y = 30 + }, +/turf/simulated/floor/carpet/blue, +/area/groundbase/medical/psych) +"gH" = ( +/obj/machinery/door/airlock/glass{ + name = "Hydroponics"; + req_one_access = list(35,28) + }, +/obj/machinery/door/firedoor, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/bmarble, +/area/groundbase/civilian/hydroponics) +"gI" = ( +/obj/machinery/vending/nifsoft_shop, +/turf/simulated/floor/tiled{ + edge_blending_priority = -1; + outdoors = 0 + }, +/area/groundbase/cargo/office) +"gJ" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/command{ + name = "Command Meeting Room" + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/groundbase/command/meeting) +"gK" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/groundbase/science/robotics) +"gL" = ( +/mob/living/simple_mob/vore/alienanimals/catslug/custom/cargoslug{ + ghostjoin = 1 + }, +/turf/simulated/floor/tiled, +/area/groundbase/cargo/office) +"gM" = ( +/obj/structure/bed/chair/sofa/bench/left, +/turf/simulated/floor/outdoors/newdirt, +/area/groundbase/level2/ne) +"gN" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/simulated/floor, +/area/maintenance/groundbase/substation/command) +"gP" = ( +/obj/machinery/button/remote/airlock{ + dir = 4; + id = "dorm4"; + pixel_x = -27; + specialfunctions = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/wood, +/area/groundbase/dorms/room4) +"gQ" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/wood, +/area/groundbase/dorms/room5) +"gR" = ( +/obj/structure/sign/painting/library_secure{ + pixel_x = 30 + }, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/obj/machinery/disposal, +/turf/simulated/floor/wood, +/area/groundbase/civilian/library) +"gS" = ( +/turf/simulated/floor/tiled/white, +/area/groundbase/dorms/room8) +"gT" = ( +/obj/machinery/firealarm, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled/eris/cafe, +/area/groundbase/civilian/kitchen) +"gU" = ( +/obj/structure/bed/chair/comfy/blue{ + dir = 8 + }, +/obj/item/device/radio/intercom{ + dir = 4; + pixel_x = 24 + }, +/obj/effect/landmark/start/commandsecretary, +/turf/simulated/floor/tiled/dark, +/area/groundbase/command/meeting) +"gV" = ( +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/obj/machinery/disposal, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/wood, +/area/groundbase/dorms/room7) +"gX" = ( +/obj/structure/grille, +/obj/machinery/door/firedoor, +/obj/structure/window/reinforced/polarized/full{ + id = "qm_office" + }, +/turf/simulated/floor, +/area/groundbase/cargo/qm) +"gY" = ( +/obj/structure/bed/chair/sofa/corner/black, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/carpet/geo, +/area/groundbase/civilian/kitchen/backroom) +"gZ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/outdoors/sidewalk, +/area/groundbase/level2/ne) +"ha" = ( +/obj/structure/railing/grey{ + dir = 1 + }, +/turf/simulated/open, +/area/groundbase/level2/southeastspur) +"hb" = ( +/obj/machinery/alarm{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/groundbase/science/rd) +"hc" = ( +/obj/structure/plasticflaps, +/obj/machinery/disposal/deliveryChute, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/groundbase/cargo/office) +"hd" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/groundbase/science/hall) +"he" = ( +/obj/structure/bed/chair/office/dark{ + dir = 1 + }, +/turf/simulated/floor/wood, +/area/groundbase/cargo/qm) +"hh" = ( +/obj/structure/table/steel, +/obj/machinery/recharger, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/tiled, +/area/groundbase/science/circuits) +"hi" = ( +/obj/structure/table/standard, +/obj/item/weapon/material/knife/butch, +/obj/item/weapon/material/kitchen/rollingpin, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/tiled/eris/cafe, +/area/groundbase/civilian/kitchen) +"hk" = ( +/obj/structure/bed/chair/comfy/brown{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/carpet/blucarpet, +/area/groundbase/command/captain) +"hl" = ( +/obj/machinery/door/blast/regular{ + density = 0; + dir = 4; + icon_state = "pdoor0"; + id = "xenobiopen2"; + name = "Pen 2 Blast Doors"; + opacity = 0 + }, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8; + health = 1e+006 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/simulated/floor/reinforced, +/area/rnd/xenobiology) +"hm" = ( +/obj/structure/bed/chair/sofa/black, +/obj/machinery/alarm, +/obj/effect/landmark/start/chef, +/turf/simulated/floor/carpet/geo, +/area/groundbase/civilian/kitchen/backroom) +"hp" = ( +/obj/structure/bed/chair/sofa/pew/left{ + dir = 1 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/groundbase/civilian/chapel) +"hr" = ( +/obj/machinery/station_map{ + dir = 8; + pixel_x = 32 + }, +/turf/simulated/floor/tiled/dark, +/area/groundbase/dorms) +"hs" = ( +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/groundbase/medical/lobby) +"ht" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/turf/simulated/floor/tiled/eris/cafe, +/area/groundbase/civilian/kitchen) +"hv" = ( +/obj/structure/toilet, +/obj/machinery/button/remote/airlock{ + id = "toilet1"; + pixel_x = -26; + pixel_y = -4; + specialfunctions = 4 + }, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/groundbase/dorms/bathroom) +"hw" = ( +/obj/machinery/button/remote/blast_door{ + dir = 8; + id = "kitchenhallway"; + name = "Kitchen shutters"; + pixel_x = 27; + pixel_y = 6 + }, +/obj/machinery/light_switch{ + dir = 8; + pixel_x = 30; + pixel_y = -3 + }, +/turf/simulated/floor/tiled/eris/cafe, +/area/groundbase/civilian/kitchen) +"hx" = ( +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/groundbase/science/hall) +"hy" = ( +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/groundbase/civilian/chapel) +"hz" = ( +/obj/machinery/power/apc{ + dir = 8 + }, +/obj/structure/cable/yellow{ + icon_state = "0-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/light_switch{ + dir = 4; + pixel_x = -30; + pixel_y = 10 + }, +/turf/simulated/floor/tiled/dark, +/area/groundbase/command/meeting) +"hA" = ( +/obj/structure/table/woodentable, +/obj/machinery/chemical_dispenser/bar_soft/full{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/groundbase/command/meeting) +"hC" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/effect/landmark/vines, +/turf/simulated/floor/outdoors/sidewalk/slab, +/area/groundbase/level2/se) +"hD" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/light/floortube{ + dir = 8; + pixel_x = -6 + }, +/turf/simulated/floor/tiled/dark, +/area/groundbase/civilian/chapel) +"hH" = ( +/obj/machinery/portable_atmospherics/canister/phoron, +/turf/simulated/floor/tiled, +/area/groundbase/science/xenobot/storage) +"hI" = ( +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/simulated/floor/outdoors/sidewalk/slab, +/area/groundbase/level2/nw) +"hJ" = ( +/obj/item/device/radio/intercom{ + pixel_y = -24 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/injector_maker{ + pixel_x = -29 + }, +/turf/simulated/floor/tiled/white, +/area/groundbase/medical/Chemistry) +"hK" = ( +/obj/structure/table/glass, +/obj/machinery/firealarm{ + dir = 4 + }, +/obj/item/device/retail_scanner/medical, +/turf/simulated/floor/tiled/white, +/area/groundbase/medical/lobby) +"hL" = ( +/obj/machinery/light, +/turf/simulated/floor/tiled/dark, +/area/groundbase/civilian/bar) +"hM" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/machinery/door/firedoor, +/turf/simulated/floor, +/area/groundbase/civilian/chapel) +"hP" = ( +/obj/structure/railing/grey{ + dir = 8 + }, +/turf/simulated/floor/tiled{ + edge_blending_priority = -1; + outdoors = 1 + }, +/area/groundbase/level2/se) +"hQ" = ( +/obj/machinery/seed_storage/garden, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/groundbase/civilian/hydroponics) +"hS" = ( +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/groundbase/dorms/room2) +"hT" = ( +/obj/machinery/hologram/holopad, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology) +"hU" = ( +/obj/machinery/button/remote/blast_door{ + id = "robshutters"; + name = "Privacy Shutter Control"; + pixel_y = 30 + }, +/obj/machinery/computer/rdconsole/robotics, +/turf/simulated/floor/tiled, +/area/groundbase/science/robotics) +"hV" = ( +/obj/structure/table/standard, +/obj/machinery/microwave, +/turf/simulated/floor/tiled/eris/cafe, +/area/groundbase/civilian/kitchen) +"hX" = ( +/obj/machinery/door/firedoor, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 8; + health = 1e+006 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/grille, +/obj/structure/disposalpipe/segment, +/obj/machinery/door/blast/regular{ + density = 0; + dir = 4; + icon_state = "pdoor0"; + id = "xenobiopen2"; + name = "Pen 2 Blast Doors"; + opacity = 0 + }, +/turf/simulated/floor/reinforced, +/area/rnd/xenobiology) +"hY" = ( +/obj/machinery/newscaster{ + layer = 3.3; + pixel_y = -32 + }, +/obj/machinery/atm{ + pixel_x = 32 + }, +/turf/simulated/floor/tiled/dark, +/area/groundbase/civilian/bar) +"hZ" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/groundbase/dorms) +"ia" = ( +/turf/simulated/wall/r_wall, +/area/groundbase/command/captainq) +"ib" = ( +/obj/structure/table/bench/padded, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/groundbase/civilian/bar) +"ic" = ( +/obj/structure/extinguisher_cabinet{ + dir = 8; + pixel_x = 30 + }, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology) +"if" = ( +/turf/simulated/floor/tiled{ + edge_blending_priority = -1; + outdoors = 1 + }, +/area/groundbase/command/hop) +"ih" = ( +/obj/structure/table/woodentable, +/obj/machinery/computer/med_data/laptop{ + dir = 8; + pixel_y = 7 + }, +/turf/simulated/floor/carpet/blue, +/area/groundbase/medical/psych) +"ii" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/groundbase/medical/triage) +"ik" = ( +/obj/machinery/portable_atmospherics/hydroponics, +/obj/machinery/atmospherics/portables_connector, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/groundbase/science/xenobot/storage) +"il" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/outdoors/sidewalk, +/area/groundbase/level2/nw) +"im" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/wood, +/area/groundbase/civilian/kitchen/backroom) +"in" = ( +/obj/structure/sign/painting/library_private{ + pixel_x = 32 + }, +/turf/simulated/floor/carpet, +/area/groundbase/civilian/library) +"io" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/smartfridge/chemistry, +/turf/simulated/floor/plating, +/area/groundbase/medical/Chemistry) +"ip" = ( +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/turf/simulated/floor/tiled/dark, +/area/groundbase/civilian/bar) +"ir" = ( +/obj/machinery/firealarm{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/groundbase/science/robotics) +"is" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/research{ + frequency = 1379; + id_tag = "xenobio_airlock_exterior"; + locked = 1; + name = "Xenobiology Lab"; + req_access = list(47,55) + }, +/obj/machinery/access_button{ + command = "cycle_exterior"; + frequency = 1379; + master_tag = "xenobio_airlock_control"; + name = "Xenobiology Access Button"; + pixel_x = -32; + req_access = null; + req_one_access = list(47,55) + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/steel_ridged, +/area/rnd/xenobiology) +"it" = ( +/turf/simulated/wall/r_wall, +/area/rnd/xenobiology) +"iu" = ( +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/dark, +/area/groundbase/civilian/chapel) +"iw" = ( +/turf/simulated/floor/outdoors/grass/seasonal/dark/lowsnow, +/area/groundbase/level2/ne) +"ix" = ( +/obj/structure/railing/grey, +/turf/simulated/open, +/area/groundbase/level2/southeastspur) +"iy" = ( +/obj/structure/table/woodentable, +/obj/item/device/flashlight/lamp/green{ + pixel_x = -5; + pixel_y = 4 + }, +/obj/item/weapon/folder/white, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/carpet/blue, +/area/groundbase/medical/psych) +"iz" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/light{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/dark, +/area/groundbase/dorms) +"iA" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/dark, +/area/groundbase/dorms) +"iB" = ( +/obj/structure/table/bench/padded, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/effect/landmark/start/intern, +/turf/simulated/floor/tiled/dark, +/area/groundbase/civilian/bar) +"iC" = ( +/turf/simulated/wall/r_wall, +/area/groundbase/command/hop) +"iD" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/outdoors/sidewalk/side, +/area/groundbase/level2/ne) +"iE" = ( +/obj/structure/bed/chair/comfy/brown, +/turf/simulated/floor/wood, +/area/groundbase/civilian/library) +"iF" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/newscaster{ + pixel_y = 28 + }, +/turf/simulated/floor/tiled/dark, +/area/groundbase/command/hall) +"iG" = ( +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/turf/simulated/floor/tiled/white, +/area/medical/virology) +"iH" = ( +/turf/simulated/floor{ + edge_blending_priority = -1; + outdoors = 1 + }, +/area/groundbase/level2/westspur) +"iI" = ( +/turf/simulated/floor/outdoors/grass/seasonal/dark/lowsnow, +/area/groundbase/civilian/hydroponics/out) +"iJ" = ( +/obj/machinery/photocopier, +/turf/simulated/floor/tiled, +/area/groundbase/command/hop) +"iK" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/light/floortube{ + pixel_y = 4 + }, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology) +"iL" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/groundbase/medical/lobby) +"iM" = ( +/obj/machinery/door/airlock{ + id_tag = "dorm2"; + name = "Room 2" + }, +/obj/machinery/door/firedoor, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/groundbase/dorms/room2) +"iN" = ( +/obj/machinery/requests_console{ + department = "Service"; + dir = 8; + pixel_x = 25 + }, +/turf/simulated/floor/tiled/eris/cafe, +/area/groundbase/civilian/kitchen) +"iO" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/light/floortube{ + dir = 1; + pixel_y = 5 + }, +/turf/simulated/floor/tiled/eris/cafe, +/area/groundbase/civilian/kitchen) +"iP" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled/dark, +/area/groundbase/dorms) +"iQ" = ( +/obj/structure/disposalpipe/trunk, +/obj/structure/disposaloutlet{ + dir = 1 + }, +/turf/simulated/floor/reinforced, +/area/rnd/xenobiology) +"iT" = ( +/obj/structure/filingcabinet/filingcabinet, +/obj/machinery/alarm, +/turf/simulated/floor/tiled/dark, +/area/groundbase/command/bridge) +"iV" = ( +/obj/structure/disposalpipe/junction{ + dir = 1 + }, +/obj/machinery/firealarm{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/light_switch{ + dir = 4; + pixel_x = -30; + pixel_y = 16 + }, +/turf/simulated/floor/tiled, +/area/groundbase/cargo/office) +"iW" = ( +/turf/simulated/floor/outdoors/newdirt, +/area/groundbase/civilian/mime) +"iX" = ( +/obj/structure/bed/chair/comfy/blue{ + dir = 8 + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/groundbase/command/meeting) +"iY" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/outdoors/sidewalk/side, +/area/groundbase/civilian/mime) +"iZ" = ( +/obj/structure/bed/chair/comfy/blue, +/turf/simulated/floor/tiled/dark, +/area/groundbase/command/meeting) +"ja" = ( +/obj/machinery/requests_console{ + announcementConsole = 1; + department = "Research Director's Desk"; + departmentType = 5; + dir = 8; + name = "Research Director RC"; + pixel_x = 22; + pixel_y = -2 + }, +/turf/simulated/floor/tiled, +/area/groundbase/science/rd) +"jb" = ( +/obj/machinery/door/airlock{ + id_tag = "dorm1"; + name = "Room 1" + }, +/obj/machinery/door/firedoor, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/groundbase/dorms/room1) +"jc" = ( +/obj/item/weapon/bedsheet/browndouble, +/obj/structure/bed/double/padded, +/turf/simulated/floor/wood, +/area/groundbase/dorms/room8) +"jd" = ( +/obj/effect/mouse_hole_spawner, +/turf/simulated/floor/outdoors/grass/seasonal/notrees_nomobs_lowsnow, +/area/groundbase/level2/se) +"je" = ( +/turf/unsimulated/wall/planetary/normal{ + desc = "It's quite impassable"; + icon_state = "rock-dark"; + name = "impassable rock" + }, +/area/groundbase/level2/se) +"jf" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/tiled/eris/cafe, +/area/groundbase/civilian/kitchen) +"jg" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/groundbase/command/bridge) +"jh" = ( +/obj/structure/sign/painting/chapel_secure{ + pixel_x = 32 + }, +/turf/simulated/floor/tiled/dark, +/area/groundbase/civilian/chapel) +"ji" = ( +/obj/effect/landmark/start/botanist, +/turf/simulated/floor/tiled, +/area/groundbase/civilian/hydroponics) +"jk" = ( +/obj/effect/landmark/vermin, +/turf/simulated/floor/wood, +/area/groundbase/civilian/library) +"jl" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/obj/machinery/hologram/holopad, +/turf/simulated/floor/tiled/white, +/area/groundbase/medical/lobby) +"jm" = ( +/obj/structure/table/woodentable, +/obj/item/weapon/paper_bin{ + pixel_y = 7 + }, +/obj/item/weapon/pen, +/obj/machinery/light/small{ + dir = 4 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/obj/item/device/retail_scanner/civilian, +/turf/simulated/floor/carpet, +/area/groundbase/civilian/library) +"jn" = ( +/turf/simulated/wall/r_wall, +/area/groundbase/dorms/room7) +"jo" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/simulated/wall/r_wall, +/area/groundbase/command/hop) +"jp" = ( +/obj/structure/bed/chair/sofa/corp, +/obj/machinery/alarm, +/turf/simulated/floor/wood, +/area/groundbase/dorms/room5) +"jq" = ( +/obj/structure/table/woodentable, +/obj/random/donkpocketbox, +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/turf/simulated/floor/wood, +/area/groundbase/dorms/room2) +"jr" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled/dark, +/area/groundbase/dorms) +"js" = ( +/obj/structure/bed/chair/sofa/pew/left{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/obj/effect/landmark/start/visitor, +/turf/simulated/floor/tiled/dark, +/area/groundbase/civilian/chapel) +"jt" = ( +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/groundbase/civilian/bar) +"jv" = ( +/obj/machinery/appliance/cooker/grill, +/turf/simulated/floor/tiled/eris/cafe, +/area/groundbase/civilian/kitchen) +"jw" = ( +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/freezer/cold, +/area/groundbase/civilian/kitchen/freezer) +"jx" = ( +/obj/effect/floor_decal/steeldecal/steel_decals10{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals10{ + dir = 10 + }, +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/door/window/southright{ + dir = 1; + name = "shower door" + }, +/turf/simulated/floor/tiled/white, +/area/groundbase/dorms/room2) +"jy" = ( +/obj/machinery/gibber, +/turf/simulated/floor/tiled/freezer/cold, +/area/groundbase/civilian/kitchen/freezer) +"jz" = ( +/turf/simulated/floor/tiled/dark, +/area/groundbase/science/hall) +"jA" = ( +/turf/simulated/floor/reinforced, +/area/rnd/xenobiology) +"jB" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/groundbase/science/server) +"jC" = ( +/turf/simulated/wall/r_wall, +/area/groundbase/dorms/room2) +"jF" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology) +"jG" = ( +/turf/simulated/floor/outdoors/grass/seasonal/notrees_nomobs_lowsnow, +/area/groundbase/level2/sw) +"jH" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/groundbase/science/xenobot) +"jI" = ( +/obj/structure/bed/chair/comfy/brown{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/effect/landmark/start/psych, +/turf/simulated/floor/wood, +/area/groundbase/medical/psych) +"jJ" = ( +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/simulated/floor/wood, +/area/groundbase/dorms/room5) +"jK" = ( +/obj/machinery/medical_kiosk, +/obj/machinery/newscaster{ + pixel_y = 28 + }, +/turf/simulated/floor/tiled/white, +/area/groundbase/medical/lobby) +"jL" = ( +/obj/machinery/processor, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology) +"jM" = ( +/obj/machinery/door/airlock{ + id_tag = "dorm8"; + name = "Room 8" + }, +/obj/machinery/door/firedoor, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/steel_ridged, +/area/groundbase/dorms/room8) +"jN" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/groundbase/science/rnd) +"jP" = ( +/obj/machinery/light, +/turf/simulated/floor/wood, +/area/groundbase/dorms/room8) +"jQ" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/simulated/floor/wood, +/area/groundbase/dorms/room6) +"jR" = ( +/obj/structure/sign/directions/evac{ + dir = 8; + pixel_x = 32; + pixel_y = -32 + }, +/obj/structure/sign/directions/stairs_down{ + dir = 8; + pixel_x = 32; + pixel_y = -26 + }, +/obj/structure/railing/grey{ + dir = 8 + }, +/turf/simulated/floor/tiled{ + edge_blending_priority = -1; + outdoors = 1 + }, +/area/groundbase/level2/se) +"jS" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/groundbase/science/rnd) +"jT" = ( +/obj/structure/table/bench/padded, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/light, +/turf/simulated/floor/tiled/dark, +/area/groundbase/civilian/bar) +"jU" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/glass_research{ + name = "Research" + }, +/turf/simulated/floor/bmarble, +/area/groundbase/science/picnic) +"jV" = ( +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/turf/simulated/wall/r_wall, +/area/rnd/xenobiology) +"jW" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/dark, +/area/groundbase/dorms) +"jX" = ( +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/obj/machinery/disposal, +/turf/simulated/floor/tiled, +/area/groundbase/civilian/janitor) +"jY" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/simulated/floor/outdoors/sidewalk, +/area/groundbase/level2/ne) +"ka" = ( +/obj/structure/sign/directions/stairs_up{ + dir = 8; + pixel_x = -32; + pixel_y = 6 + }, +/obj/structure/sign/directions/evac{ + dir = 8; + pixel_x = -32 + }, +/turf/simulated/floor/outdoors/sidewalk/slab, +/area/groundbase/level2/nw) +"kb" = ( +/obj/machinery/disease2/diseaseanalyser, +/turf/simulated/floor/tiled/white, +/area/medical/virology) +"kc" = ( +/obj/machinery/disease2/incubator, +/obj/structure/reagent_dispensers/virusfood{ + pixel_y = 27 + }, +/turf/simulated/floor/tiled/white, +/area/medical/virology) +"kd" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/freezer/cold, +/area/groundbase/civilian/kitchen/freezer) +"ke" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/simulated/floor/reinforced{ + edge_blending_priority = -1; + outdoors = 1 + }, +/area/groundbase/level2/se) +"kf" = ( +/obj/machinery/hologram/holopad, +/turf/simulated/floor/lino{ + edge_blending_priority = 0.1 + }, +/area/groundbase/civilian/kitchen) +"ki" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/machinery/door/firedoor, +/turf/simulated/floor, +/area/groundbase/medical/Chemistry) +"kj" = ( +/obj/machinery/camera/network/research{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/groundbase/science/server) +"kk" = ( +/turf/simulated/floor/tiled/white, +/area/groundbase/dorms/bathroom) +"kl" = ( +/obj/structure/disposalpipe/down{ + dir = 1 + }, +/obj/machinery/light/bigfloorlamp, +/turf/simulated/floor/outdoors/sidewalk/slab, +/area/groundbase/level2/nw) +"kn" = ( +/obj/structure/closet/l3closet/janitor, +/obj/machinery/atmospherics/unary/vent_pump/on, +/obj/machinery/firealarm, +/turf/simulated/floor/tiled, +/area/groundbase/civilian/janitor) +"ko" = ( +/obj/effect/floor_decal/corner_steel_grid{ + dir = 10 + }, +/obj/machinery/sleep_console{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/groundbase/medical/triage) +"kp" = ( +/obj/structure/closet/secure_closet/hydroponics, +/obj/item/weapon/shovel/spade, +/obj/item/weapon/storage/belt/utility, +/obj/item/stack/material/sandstone{ + amount = 5 + }, +/obj/item/device/retail_scanner/civilian, +/obj/item/device/multitool, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/groundbase/civilian/hydroponics) +"kq" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/groundbase/science/xenobot) +"kr" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/groundbase/command/hall) +"ks" = ( +/turf/simulated/mineral/cave, +/area/groundbase/level2/ne) +"kt" = ( +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/wood, +/area/groundbase/civilian/library) +"ku" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/groundbase/science/server) +"ky" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/groundbase/dorms/room3) +"kz" = ( +/obj/machinery/door/blast/regular{ + density = 0; + dir = 4; + icon_state = "pdoor0"; + id = "xenobiopen7"; + name = "Pen 7 Blast Doors"; + opacity = 0 + }, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8; + health = 1e+006 + }, +/obj/structure/window/reinforced, +/turf/simulated/floor/reinforced, +/area/rnd/xenobiology) +"kA" = ( +/obj/structure/bookcase, +/turf/simulated/floor/wood, +/area/groundbase/civilian/library) +"kC" = ( +/turf/simulated/floor/wood, +/area/groundbase/dorms/room3) +"kE" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/effect/landmark/start/commandsecretary, +/turf/simulated/floor/tiled/dark, +/area/groundbase/command/bridge) +"kG" = ( +/obj/structure/railing/grey, +/turf/simulated/floor/outdoors/grass/seasonal/notrees_nomobs_lowsnow, +/area/groundbase/level2/se) +"kH" = ( +/turf/simulated/wall/r_wall, +/area/groundbase/dorms/room3) +"kI" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/groundbase/science/xenobot/storage) +"kJ" = ( +/obj/structure/sign/painting/library_secure{ + pixel_x = -30 + }, +/turf/simulated/floor/tiled/dark, +/area/groundbase/command/meeting) +"kK" = ( +/obj/machinery/status_display{ + pixel_x = -32; + pixel_y = -1 + }, +/turf/simulated/floor/tiled/white, +/area/medical/virology) +"kL" = ( +/obj/machinery/door/airlock{ + id_tag = "dorm3"; + name = "Room 3" + }, +/obj/machinery/door/firedoor, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/groundbase/dorms/room3) +"kN" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/light/floortube{ + pixel_y = 4 + }, +/obj/effect/landmark{ + name = "lightsout" + }, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology) +"kP" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/camera/network/medbay{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/groundbase/medical/Chemistry) +"kQ" = ( +/obj/effect/landmark{ + name = "maint_pred" + }, +/turf/simulated/floor/outdoors/newdirt_nograss{ + outdoors = 0 + }, +/area/groundbase/level2/se) +"kR" = ( +/obj/random/mob/bird, +/turf/simulated/floor/outdoors/grass/seasonal/notrees_nomobs_lowsnow, +/area/groundbase/level2/nw) +"kT" = ( +/obj/structure/table/glass, +/obj/item/weapon/paper_bin{ + pixel_x = 1; + pixel_y = 9 + }, +/obj/item/device/megaphone, +/obj/item/weapon/paper/monitorkey, +/turf/simulated/floor/tiled, +/area/groundbase/science/rd) +"kU" = ( +/turf/simulated/floor/tiled{ + edge_blending_priority = -1; + outdoors = 1 + }, +/area/groundbase/level2/se) +"kV" = ( +/obj/effect/floor_decal/chapel{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/groundbase/civilian/chapel) +"kX" = ( +/obj/structure/table/glass, +/obj/machinery/recharger{ + pixel_y = 5 + }, +/turf/simulated/floor/tiled/dark, +/area/groundbase/civilian/bar) +"kY" = ( +/obj/machinery/power/apc{ + dir = 8 + }, +/obj/structure/cable/yellow{ + icon_state = "0-4" + }, +/turf/simulated/floor/wood, +/area/groundbase/dorms/room7) +"kZ" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/table/reinforced, +/obj/machinery/door/blast/angled_shutter/open{ + dir = 4; + id = "cirshutters"; + name = "Privacy Shutters" + }, +/obj/machinery/door/window/brigdoor/westleft{ + name = "Circuitry Workshop"; + req_access = list(7) + }, +/turf/simulated/floor{ + edge_blending_priority = -1; + outdoors = 1 + }, +/area/groundbase/science/circuits) +"la" = ( +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/obj/structure/cable/yellow, +/obj/machinery/power/sensor{ + name = "Powernet Sensor - Command Subgrid"; + name_tag = "Command Subgrid" + }, +/turf/simulated/floor, +/area/maintenance/groundbase/substation/command) +"lb" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/groundbase/medical/lobby) +"lc" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/firealarm{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology) +"ld" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/groundbase/command/bridge) +"le" = ( +/obj/structure/sink{ + pixel_y = 20 + }, +/obj/structure/mirror{ + pixel_y = 37 + }, +/obj/machinery/alarm{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/groundbase/dorms/room1) +"lf" = ( +/obj/structure/table/woodentable, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/carpet, +/area/groundbase/civilian/library) +"lh" = ( +/obj/machinery/computer/arcade{ + dir = 4 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/medical/virology) +"lj" = ( +/obj/structure/table/glass, +/obj/item/device/radio{ + anchored = 1; + canhear_range = 7; + frequency = 1487; + icon = 'icons/obj/items.dmi'; + icon_state = "red_phone"; + name = "Virology Emergency Phone"; + pixel_y = 9 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/tiled/white, +/area/medical/virology) +"lk" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/turf/simulated/floor/outdoors/sidewalk/slab, +/area/groundbase/level2/ne) +"ll" = ( +/obj/machinery/firealarm, +/turf/simulated/floor/carpet/blue, +/area/groundbase/medical/psych) +"lm" = ( +/obj/machinery/portable_atmospherics/canister/nitrous_oxide, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/groundbase/science/xenobot/storage) +"ln" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/turf/simulated/floor/outdoors/newdirt, +/area/groundbase/civilian/mime) +"lp" = ( +/obj/structure/bed/chair/office/dark, +/obj/effect/landmark/start/chemist, +/turf/simulated/floor/tiled/white, +/area/groundbase/medical/Chemistry) +"lq" = ( +/obj/machinery/firealarm{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/groundbase/command/meeting) +"lr" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/groundbase/medical/lobby) +"ls" = ( +/turf/simulated/floor/tiled, +/area/rnd/xenobiology) +"lu" = ( +/obj/structure/table/bench/padded, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/light{ + dir = 8 + }, +/obj/effect/landmark/start/visitor, +/turf/simulated/floor/tiled/dark, +/area/groundbase/civilian/bar) +"lv" = ( +/obj/structure/closet/secure_closet/hydroponics{ + req_access = list(77) + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/groundbase/science/xenobot) +"lw" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/groundbase/science/hall) +"lx" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/wood, +/area/groundbase/dorms/room2) +"lz" = ( +/obj/effect/floor_decal/steeldecal/steel_decals10{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 5 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/groundbase/medical/triage) +"lA" = ( +/obj/structure/sign/painting/chapel_secure{ + pixel_x = -32 + }, +/turf/simulated/floor/tiled/dark, +/area/groundbase/civilian/chapel) +"lC" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/groundbase/science/hall) +"lD" = ( +/obj/structure/displaycase, +/obj/structure/sign/painting/library_secure{ + pixel_y = 30 + }, +/turf/simulated/floor/wood, +/area/groundbase/command/captain) +"lF" = ( +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/simulated/wall/r_wall, +/area/maintenance/groundbase/substation/command) +"lG" = ( +/obj/structure/sign/nanotrasen{ + pixel_y = 32 + }, +/turf/simulated/floor/outdoors/grass/seasonal/notrees_nomobs_lowsnow, +/area/groundbase/command/hop) +"lH" = ( +/obj/structure/bed/chair/office/dark{ + dir = 8 + }, +/obj/effect/landmark/start/chemist, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/vending/wallmed2{ + dir = 4; + pixel_x = -28 + }, +/turf/simulated/floor/tiled/white, +/area/groundbase/medical/Chemistry) +"lI" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/firealarm{ + dir = 8 + }, +/turf/simulated/floor/lino, +/area/groundbase/civilian/chapel/office) +"lJ" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/groundbase/science/xenobot) +"lK" = ( +/obj/structure/table/standard, +/obj/item/stack/cable_coil, +/obj/item/stack/cable_coil{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/fiftyspawner/steel, +/obj/fiftyspawner/glass, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/recharger{ + pixel_y = 5 + }, +/turf/simulated/floor/tiled, +/area/groundbase/science/rnd) +"lL" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/landmark{ + name = "lightsout" + }, +/turf/simulated/floor/tiled/white, +/area/groundbase/medical/Chemistry) +"lM" = ( +/obj/machinery/light/small/fairylights, +/turf/simulated/floor/outdoors/grass/seasonal/notrees_nomobs_lowsnow, +/area/groundbase/level2/nw) +"lN" = ( +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/wood, +/area/groundbase/dorms/room7) +"lO" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/effect/landmark/start/xenobio, +/turf/simulated/floor/tiled, +/area/groundbase/science/hall) +"lP" = ( +/obj/machinery/firealarm{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/medical/virology) +"lQ" = ( +/obj/effect/landmark/vines, +/turf/simulated/floor/outdoors/sidewalk/slab, +/area/groundbase/level2/nw) +"lT" = ( +/obj/structure/cable/yellow{ + icon_state = "32-8" + }, +/obj/machinery/atmospherics/pipe/zpipe/down/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/zpipe/down/supply{ + dir = 8 + }, +/turf/simulated/wall, +/area/groundbase/medical/triage) +"lU" = ( +/obj/structure/table/standard, +/obj/item/weapon/folder/yellow, +/obj/item/weapon/pen/red{ + pixel_x = 2; + pixel_y = 6 + }, +/turf/simulated/floor/wood, +/area/groundbase/cargo/qm) +"lV" = ( +/turf/simulated/wall/r_wall, +/area/groundbase/science/xenobot) +"lW" = ( +/turf/simulated/floor/outdoors/newdirt, +/area/groundbase/science/picnic) +"lX" = ( +/obj/effect/floor_decal/chapel, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/turf/simulated/floor/tiled/dark, +/area/groundbase/civilian/chapel) +"lY" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock{ + name = "Temple of Silence"; + req_access = list(138) + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/bmarble, +/area/groundbase/civilian/mime) +"lZ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled, +/area/groundbase/science/server) +"ma" = ( +/obj/machinery/photocopier, +/turf/simulated/floor/lino, +/area/groundbase/civilian/chapel/office) +"mb" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/medical/virology) +"md" = ( +/obj/machinery/computer/mecha{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/groundbase/science/rd) +"me" = ( +/obj/machinery/recharge_station, +/turf/simulated/floor/tiled/white, +/area/groundbase/medical/lobby) +"mf" = ( +/obj/effect/floor_decal/steeldecal/steel_decals10{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals10{ + dir = 10 + }, +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/door/window/southleft{ + dir = 1; + name = "shower door"; + req_access = null + }, +/turf/simulated/floor/tiled/white, +/area/groundbase/dorms/room5) +"mi" = ( +/obj/machinery/computer/med_data{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "2-8" + }, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/dark, +/area/groundbase/command/bridge) +"mj" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor, +/area/groundbase/cargo/office) +"mk" = ( +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/turf/simulated/floor/outdoors/sidewalk/side, +/area/groundbase/level2/nw) +"ml" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/outdoors/sidewalk/side, +/area/groundbase/level2/nw) +"mm" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/outdoors/sidewalk, +/area/groundbase/level2/nw) +"mn" = ( +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/carpet/geo, +/area/groundbase/civilian/kitchen/backroom) +"mo" = ( +/obj/structure/table/woodentable, +/obj/machinery/photocopier/faxmachine{ + department = "Library" + }, +/turf/simulated/floor/wood, +/area/groundbase/civilian/library) +"mp" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/simulated/floor/outdoors/sidewalk/slab, +/area/groundbase/level2/ne) +"mq" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/turf/simulated/floor/plating, +/area/groundbase/cargo/office) +"mr" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/groundbase/science/server) +"mt" = ( +/obj/machinery/computer/security/xenobio, +/obj/machinery/camera/network/research/xenobio, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology) +"mu" = ( +/obj/machinery/door/airlock{ + id_tag = "dorm4"; + name = "Room 4" + }, +/obj/machinery/door/firedoor, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/groundbase/dorms/room4) +"mv" = ( +/obj/structure/sign/department/medbay, +/turf/simulated/wall, +/area/groundbase/medical/lobby) +"mw" = ( +/obj/item/weapon/bedsheet/browndouble, +/obj/structure/bed/double/padded, +/turf/simulated/floor/wood, +/area/groundbase/dorms/room7) +"mx" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/groundbase/science/hall) +"my" = ( +/obj/structure/table/steel, +/obj/item/device/integrated_circuit_printer, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/machinery/camera/network/research{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/groundbase/science/circuits) +"mz" = ( +/obj/structure/cable/yellow{ + icon_state = "0-4" + }, +/obj/machinery/power/apc{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/groundbase/science/rd) +"mB" = ( +/obj/structure/bed/chair/office/light, +/turf/simulated/floor/tiled, +/area/groundbase/science/xenobot) +"mC" = ( +/obj/effect/landmark{ + name = "lightsout" + }, +/turf/simulated/floor/tiled, +/area/groundbase/civilian/hydroponics) +"mE" = ( +/obj/structure/table/reinforced, +/obj/machinery/computer/skills{ + dir = 8; + pixel_y = 7 + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/groundbase/command/hop) +"mF" = ( +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/wood, +/area/groundbase/dorms/room8) +"mG" = ( +/obj/machinery/photocopier, +/turf/simulated/floor/wood, +/area/groundbase/civilian/library) +"mH" = ( +/obj/machinery/recharge_station, +/turf/simulated/floor/tiled, +/area/groundbase/science/robotics) +"mI" = ( +/obj/structure/toilet{ + dir = 8 + }, +/obj/machinery/light, +/turf/simulated/floor/tiled/white, +/area/groundbase/dorms/room8) +"mJ" = ( +/turf/simulated/floor/lino, +/area/groundbase/civilian/chapel/office) +"mK" = ( +/obj/structure/sign/nanotrasen{ + pixel_x = 32; + pixel_y = 32 + }, +/turf/simulated/floor/tiled{ + edge_blending_priority = -1; + outdoors = 1 + }, +/area/groundbase/level2/se) +"mL" = ( +/obj/machinery/hologram/holopad, +/turf/simulated/floor/tiled/dark, +/area/groundbase/command/meeting) +"mM" = ( +/obj/structure/table/glass, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/random/coin/sometimes, +/turf/simulated/floor/tiled/dark, +/area/groundbase/civilian/bar) +"mN" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/turf/simulated/floor/wood, +/area/groundbase/dorms/room6) +"mO" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/landmark{ + name = "lightsout" + }, +/turf/simulated/floor/tiled/white, +/area/groundbase/medical/lobby) +"mP" = ( +/turf/simulated/floor/outdoors/newdirt, +/area/groundbase/science/xenobot) +"mQ" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Power Substation"; + req_access = list(11) + }, +/turf/simulated/floor, +/area/maintenance/groundbase/substation/command) +"mR" = ( +/turf/simulated/floor/outdoors/sidewalk/slab, +/area/groundbase/level2/ne) +"mS" = ( +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/outdoors/sidewalk/slab, +/area/groundbase/level2/nw) +"mT" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/white, +/area/groundbase/medical/lobby) +"mU" = ( +/turf/simulated/floor/tiled/white, +/area/groundbase/dorms/room1) +"mW" = ( +/obj/item/weapon/storage/box/botanydisk, +/obj/structure/table/glass, +/obj/item/weapon/storage/box/botanydisk, +/obj/item/weapon/reagent_containers/glass/bucket, +/obj/item/weapon/material/minihoe, +/turf/simulated/floor/tiled, +/area/groundbase/science/xenobot) +"mX" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/groundbase/command/captainq) +"mY" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/white, +/area/groundbase/medical/lobby) +"mZ" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/table/reinforced, +/obj/machinery/door/blast/angled_shutter/open{ + dir = 4; + id = "cirshutters"; + name = "Privacy Shutters" + }, +/obj/machinery/door/window/brigdoor/westright{ + name = "Circuitry Workshop"; + req_access = list(7) + }, +/turf/simulated/floor{ + edge_blending_priority = -1; + outdoors = 1 + }, +/area/groundbase/science/circuits) +"nd" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/effect/landmark/start/janitor, +/turf/simulated/floor/tiled, +/area/groundbase/civilian/janitor) +"nf" = ( +/obj/structure/table/wooden_reinforced, +/turf/simulated/floor/carpet/geo, +/area/groundbase/civilian/kitchen/backroom) +"ng" = ( +/obj/machinery/camera/network/research{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/groundbase/science/xenohall) +"nh" = ( +/obj/machinery/portable_atmospherics/hydroponics, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/groundbase/civilian/hydroponics) +"ni" = ( +/turf/unsimulated/wall/planetary/normal{ + desc = "It's quite impassable"; + icon_state = "rock-dark"; + name = "impassable rock" + }, +/area/groundbase/level2/ne) +"nk" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/alarm{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/groundbase/science/robotics) +"nl" = ( +/obj/fiftyspawner/steel, +/obj/fiftyspawner/steel, +/obj/fiftyspawner/steel, +/obj/fiftyspawner/steel, +/obj/fiftyspawner/steel, +/obj/fiftyspawner/glass, +/obj/fiftyspawner/glass, +/obj/fiftyspawner/glass, +/obj/fiftyspawner/glass, +/obj/item/stack/material/plasteel{ + amount = 10 + }, +/obj/structure/closet/walllocker_double/east{ + dir = 2; + pixel_x = 0; + pixel_y = 32 + }, +/turf/simulated/floor/tiled/steel, +/area/groundbase/science/robotics) +"nm" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/command{ + name = "Server Room"; + req_access = list(30) + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/groundbase/science/server) +"nn" = ( +/obj/structure/table/woodentable, +/obj/machinery/librarycomp, +/turf/simulated/floor/carpet, +/area/groundbase/civilian/library) +"no" = ( +/obj/machinery/firealarm{ + dir = 4 + }, +/turf/simulated/floor/carpet, +/area/groundbase/command/captainq) +"np" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/turf/simulated/floor/tiled/eris/cafe, +/area/groundbase/civilian/kitchen) +"nt" = ( +/obj/item/weapon/stamp/rd, +/turf/simulated/floor/tiled, +/area/groundbase/science/rd) +"nv" = ( +/turf/simulated/floor/tiled/white, +/area/groundbase/dorms/room2) +"nw" = ( +/obj/machinery/vending/wardrobe/robodrobe, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/groundbase/science/hall) +"nx" = ( +/obj/machinery/computer/diseasesplicer{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/medical/virology) +"ny" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/groundbase/civilian/hydroponics) +"nz" = ( +/obj/structure/table/woodentable, +/obj/item/device/flashlight/lamp/green{ + pixel_y = 12 + }, +/turf/simulated/floor/carpet, +/area/groundbase/command/captainq) +"nA" = ( +/obj/structure/table/woodentable, +/obj/machinery/microwave, +/turf/simulated/floor/wood, +/area/groundbase/dorms/room8) +"nD" = ( +/obj/machinery/disposal/wall{ + dir = 8; + name = "auto-resleeving equipment deposit" + }, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/groundbase/cargo/office) +"nE" = ( +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/groundbase/science/xenobot/storage) +"nF" = ( +/turf/simulated/floor/tiled, +/area/groundbase/science/robotics) +"nH" = ( +/obj/structure/stairs/spawner/south, +/obj/structure/railing/grey{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/groundbase/medical/triage) +"nI" = ( +/obj/machinery/door/blast/regular{ + density = 0; + dir = 4; + icon_state = "pdoor0"; + id = "xenobiopen8"; + name = "Pen 8 Blast Doors"; + opacity = 0 + }, +/obj/machinery/door/window/brigdoor/eastleft{ + dir = 1; + name = "Slime Pen"; + req_access = list(55) + }, +/turf/simulated/floor/reinforced, +/area/rnd/xenobiology) +"nJ" = ( +/obj/structure/table/wooden_reinforced, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/wood, +/area/groundbase/civilian/kitchen/backroom) +"nK" = ( +/obj/machinery/alarm{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/groundbase/science/hall) +"nM" = ( +/obj/structure/bed/chair/office/dark, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/landmark/start/scientist, +/turf/simulated/floor/tiled, +/area/groundbase/science/circuits) +"nN" = ( +/obj/machinery/computer/transhuman/resleeving{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/groundbase/science/robotics) +"nP" = ( +/turf/simulated/floor/tiled{ + edge_blending_priority = -1; + outdoors = 0 + }, +/area/groundbase/cargo/office) +"nR" = ( +/turf/simulated/floor/tiled/white, +/area/groundbase/medical/triage) +"nS" = ( +/obj/machinery/chem_master, +/turf/simulated/floor/tiled/white, +/area/groundbase/medical/Chemistry) +"nT" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/medical/virology) +"nV" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = -12; + pixel_y = 2 + }, +/turf/simulated/floor/tiled, +/area/groundbase/science/xenobot) +"nW" = ( +/obj/structure/table/reinforced, +/obj/item/weapon/reagent_containers/glass/beaker/large, +/obj/item/weapon/reagent_containers/dropper, +/obj/item/device/radio/intercom{ + dir = 1; + pixel_y = 24 + }, +/turf/simulated/floor/tiled/white, +/area/groundbase/medical/Chemistry) +"nX" = ( +/obj/machinery/computer/station_alert/all{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "1-8" + }, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/groundbase/command/bridge) +"nY" = ( +/obj/machinery/camera/network/research/xenobio{ + dir = 1 + }, +/turf/simulated/floor/reinforced, +/area/rnd/xenobiology) +"oa" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/machinery/door/firedoor, +/turf/simulated/floor, +/area/groundbase/cargo/office) +"od" = ( +/obj/machinery/access_button{ + command = "cycle_interior"; + frequency = 1379; + master_tag = "virology_airlock_control"; + name = "Virology Access Button"; + pixel_x = 32; + req_access = list(39) + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/medical{ + frequency = 1379; + id_tag = "virology_airlock_interior"; + locked = 1; + name = "Virology Interior Airlock"; + req_access = list(39); + req_one_access = null + }, +/obj/machinery/door/blast/regular{ + closed_layer = 10; + density = 0; + dir = 4; + icon_state = "pdoor0"; + id = "virologyquar"; + layer = 1; + name = "Blast Doors"; + opacity = 0; + open_layer = 1 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/steel_ridged, +/area/medical/virology) +"oe" = ( +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/groundbase/civilian/hydroponics) +"of" = ( +/obj/effect/landmark{ + name = "lightsout" + }, +/turf/simulated/floor/tiled/dark, +/area/groundbase/command/hall) +"oh" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/wood, +/area/groundbase/medical/psych) +"oj" = ( +/obj/structure/toilet{ + dir = 8 + }, +/obj/machinery/light, +/turf/simulated/floor/tiled/white, +/area/groundbase/dorms/room6) +"ok" = ( +/obj/machinery/light, +/obj/machinery/vending/blood, +/turf/simulated/floor/tiled/white, +/area/groundbase/medical/triage) +"ol" = ( +/obj/effect/floor_decal/steeldecal/steel_decals10{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/groundbase/medical/triage) +"om" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/groundbase/science/xenohall) +"on" = ( +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/simulated/wall/r_wall, +/area/groundbase/command/hop) +"oo" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/smartfridge/sheets/persistent_lossy, +/turf/simulated/floor/tiled, +/area/groundbase/cargo/office) +"op" = ( +/obj/machinery/light, +/obj/machinery/suspension_gen, +/turf/simulated/floor/tiled, +/area/groundbase/science/hall) +"oq" = ( +/obj/machinery/chem_master, +/turf/simulated/floor/tiled, +/area/groundbase/science/xenobot) +"ot" = ( +/obj/structure/table/standard, +/obj/item/weapon/paper_bin{ + pixel_x = -3; + pixel_y = 7 + }, +/obj/item/device/megaphone, +/obj/machinery/requests_console{ + department = "Cargo Bay"; + departmentType = 2; + dir = 8; + pixel_x = 28 + }, +/turf/simulated/floor/wood, +/area/groundbase/cargo/qm) +"ov" = ( +/obj/structure/table/standard, +/obj/machinery/cell_charger, +/obj/machinery/firealarm{ + dir = 8 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/groundbase/science/robotics) +"ow" = ( +/obj/structure/closet/wardrobe/captain, +/turf/simulated/floor/wood, +/area/groundbase/command/captainq) +"ox" = ( +/obj/machinery/light, +/turf/simulated/floor/tiled, +/area/groundbase/science/xenobot) +"oy" = ( +/turf/simulated/floor/outdoors/sidewalk/slab{ + outdoors = 0 + }, +/area/groundbase/level2/se) +"oA" = ( +/obj/machinery/door/blast/regular{ + id = "xenobiodiv3"; + layer = 8; + name = "Divider" + }, +/turf/simulated/floor/reinforced, +/area/rnd/xenobiology) +"oB" = ( +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled{ + edge_blending_priority = -1; + outdoors = 0 + }, +/area/groundbase/level2/nw) +"oC" = ( +/obj/machinery/newscaster{ + layer = 3.3; + pixel_x = 27 + }, +/turf/simulated/floor/tiled, +/area/groundbase/science/hall) +"oD" = ( +/obj/machinery/door/firedoor, +/obj/structure/table/glass, +/obj/machinery/computer/med_data/laptop{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/groundbase/medical/lobby) +"oE" = ( +/obj/machinery/door/airlock{ + id_tag = null; + name = "Bathroom" + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/groundbase/dorms/room3) +"oF" = ( +/turf/simulated/floor/outdoors/newdirt{ + outdoors = 0 + }, +/area/groundbase/level2/se) +"oG" = ( +/obj/machinery/light/small/fairylights{ + pixel_y = -1 + }, +/turf/simulated/floor/outdoors/grass/seasonal/notrees_nomobs_lowsnow, +/area/groundbase/level2/nw) +"oH" = ( +/turf/simulated/open, +/area/groundbase/level2/eastspur) +"oI" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/outdoors/sidewalk/slab, +/area/groundbase/level2/nw) +"oL" = ( +/obj/structure/table/woodentable, +/obj/machinery/microwave, +/turf/simulated/floor/wood, +/area/groundbase/dorms/room3) +"oM" = ( +/obj/machinery/door/blast/regular{ + density = 0; + dir = 4; + icon_state = "pdoor0"; + id = "xenobiopen8"; + name = "Pen 8 Blast Doors"; + opacity = 0 + }, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8; + health = 1e+006 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/simulated/floor/reinforced, +/area/rnd/xenobiology) +"oN" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/groundbase/science/xenobot) +"oO" = ( +/turf/simulated/floor/wood, +/area/groundbase/command/captain) +"oS" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/groundbase/science/xenohall) +"oT" = ( +/obj/machinery/button/remote/blast_door{ + desc = "A remote control-switch for shutters."; + dir = 4; + id = "virologyquar"; + name = "Virology Emergency Lockdown Control"; + pixel_x = -28; + pixel_y = 5; + req_access = list(5) + }, +/turf/simulated/floor/tiled/white, +/area/medical/virology) +"oU" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/turf/simulated/floor/wood, +/area/groundbase/dorms/room3) +"oW" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/groundbase/science/robotics) +"oX" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/outdoors/sidewalk, +/area/medical/virology) +"oY" = ( +/obj/structure/bed/chair/sofa/pew/right{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/groundbase/civilian/chapel) +"oZ" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass_command{ + name = "Bridge"; + req_access = list(19) + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/bmarble, +/area/groundbase/command/bridge) +"pd" = ( +/obj/machinery/conveyor_switch/oneway{ + id = "packageSort1" + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 10 + }, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/groundbase/cargo/office) +"pe" = ( +/turf/simulated/wall/r_wall, +/area/medical/virology) +"pf" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/white, +/area/groundbase/medical/triage) +"pg" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/white, +/area/groundbase/medical/Chemistry) +"ph" = ( +/obj/item/weapon/reagent_containers/glass/beaker/sulphuric, +/obj/machinery/r_n_d/circuit_imprinter{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/groundbase/science/rnd) +"pi" = ( +/obj/structure/filingcabinet/medical{ + desc = "A large cabinet with hard copy medical records."; + name = "Medical Records" + }, +/obj/machinery/light, +/turf/simulated/floor/carpet/blue, +/area/groundbase/medical/psych) +"pj" = ( +/obj/structure/table/fancyblack, +/obj/item/weapon/pen, +/turf/simulated/floor/tiled/dark, +/area/groundbase/command/meeting) +"pk" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/machinery/camera/network/research/xenobio{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/groundbase/science/xenobot) +"pl" = ( +/obj/structure/bed/chair/office/dark{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/groundbase/command/bridge) +"pm" = ( +/obj/structure/table/fancyblack, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/item/device/retail_scanner/command, +/turf/simulated/floor/tiled/dark, +/area/groundbase/command/meeting) +"pn" = ( +/obj/structure/table/woodentable, +/obj/machinery/photocopier/faxmachine{ + department = "Command Conf Room" + }, +/obj/machinery/camera/network/command{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/groundbase/command/meeting) +"po" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/noticeboard{ + pixel_y = -32 + }, +/turf/simulated/floor/tiled/white, +/area/groundbase/medical/triage) +"pp" = ( +/obj/machinery/light, +/obj/structure/undies_wardrobe, +/turf/simulated/floor/tiled/dark, +/area/groundbase/dorms) +"pq" = ( +/obj/machinery/door/firedoor, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 8; + health = 1e+006 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/grille, +/obj/structure/disposalpipe/segment, +/obj/machinery/door/blast/regular{ + density = 0; + dir = 4; + icon_state = "pdoor0"; + id = "xenobiopen7"; + name = "Pen 7 Blast Doors"; + opacity = 0 + }, +/turf/simulated/floor/reinforced, +/area/rnd/xenobiology) +"pr" = ( +/turf/simulated/floor/tiled/white, +/area/groundbase/dorms/room6) +"ps" = ( +/obj/structure/railing/grey{ + dir = 1 + }, +/obj/structure/railing/grey{ + dir = 4 + }, +/turf/simulated/open, +/area/groundbase/civilian/bar/upper) +"pt" = ( +/turf/simulated/floor/outdoors/newdirt, +/area/groundbase/science/rnd) +"pu" = ( +/obj/structure/table/glass, +/obj/machinery/photocopier/faxmachine{ + department = "Research Director's Office"; + pixel_y = 6 + }, +/turf/simulated/floor/tiled, +/area/groundbase/science/rd) +"pv" = ( +/obj/machinery/power/apc/hyper{ + dir = 1 + }, +/obj/structure/cable/yellow{ + icon_state = "0-2" + }, +/turf/simulated/floor/tiled/white, +/area/groundbase/medical/triage) +"pw" = ( +/turf/simulated/floor/outdoors/newdirt, +/area/groundbase/level2/nw) +"pz" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/carpet, +/area/groundbase/command/hop) +"pA" = ( +/obj/structure/table/hardwoodtable, +/obj/random/paicard, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/dark, +/area/groundbase/dorms) +"pB" = ( +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/turf/simulated/floor/outdoors/sidewalk/slab, +/area/groundbase/cargo/bay) +"pC" = ( +/obj/structure/bookcase, +/obj/item/weapon/book/manual/anomaly_spectroscopy, +/obj/item/weapon/book/manual/anomaly_testing, +/obj/item/weapon/book/manual/materials_chemistry_analysis, +/obj/item/weapon/book/manual/resleeving, +/obj/item/weapon/book/manual/standard_operating_procedure, +/obj/item/weapon/book/manual/security_space_law, +/obj/item/weapon/book/manual/command_guide, +/obj/item/weapon/book/manual, +/obj/machinery/atmospherics/unary/vent_pump/on, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/wood, +/area/groundbase/medical/psych) +"pD" = ( +/obj/machinery/door/window/brigdoor/eastleft{ + dir = 2; + name = "Slime Pen 1"; + req_access = list(55) + }, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology) +"pE" = ( +/obj/item/slime_extract/grey, +/turf/simulated/floor/reinforced, +/area/rnd/xenobiology) +"pG" = ( +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/simulated/floor/outdoors/sidewalk/slab, +/area/groundbase/level2/nw) +"pH" = ( +/obj/machinery/requests_console{ + announcementConsole = 1; + department = "Bridge"; + departmentType = 5; + name = "Bridge RC"; + pixel_y = 32 + }, +/obj/random/vendorall, +/turf/simulated/floor/tiled/dark, +/area/groundbase/command/meeting) +"pI" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/dark, +/area/groundbase/dorms) +"pJ" = ( +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/structure/disposalpipe/sortjunction/flipped{ + dir = 1; + name = "Kitchen"; + sortType = "Kitchen" + }, +/turf/simulated/floor/outdoors/sidewalk/slab, +/area/groundbase/level2/nw) +"pK" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/groundbase/dorms) +"pM" = ( +/obj/machinery/alarm{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/groundbase/civilian/hydroponics) +"pN" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/obj/machinery/camera/network/command{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/groundbase/command/hall) +"pO" = ( +/obj/structure/sink{ + dir = 4; + pixel_x = 11 + }, +/obj/structure/mirror{ + dir = 8; + pixel_x = 23 + }, +/turf/simulated/floor/tiled/white, +/area/groundbase/dorms/room7) +"pP" = ( +/obj/machinery/transhuman/synthprinter, +/turf/simulated/floor/tiled, +/area/groundbase/science/robotics) +"pT" = ( +/obj/machinery/suspension_gen, +/turf/simulated/floor/tiled, +/area/groundbase/science/hall) +"pU" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock{ + name = "Chapel Office"; + req_access = list(27) + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/steel_ridged, +/area/groundbase/civilian/chapel) +"pV" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled/dark, +/area/groundbase/science/xenohall) +"pW" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/groundbase/science/xenobot) +"pX" = ( +/obj/structure/bed/chair/sofa/pew/right{ + dir = 1 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/obj/effect/landmark/start/visitor, +/turf/simulated/floor/tiled/dark, +/area/groundbase/civilian/chapel) +"qa" = ( +/turf/simulated/wall/r_wall, +/area/groundbase/science/hall) +"qb" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/dark, +/area/groundbase/dorms) +"qc" = ( +/obj/structure/railing/grey{ + dir = 1 + }, +/obj/structure/railing/grey{ + dir = 8 + }, +/turf/simulated/open, +/area/groundbase/civilian/bar) +"qd" = ( +/obj/structure/sign/nanotrasen{ + pixel_x = 32; + pixel_y = -32 + }, +/turf/simulated/floor/outdoors/newdirt, +/area/groundbase/level2/se) +"qe" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/turf/simulated/floor/outdoors/sidewalk/slab, +/area/groundbase/command/bridge) +"qf" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/light, +/obj/structure/closet/secure_closet/personal, +/obj/item/weapon/towel/random, +/obj/item/weapon/storage/backpack, +/turf/simulated/floor/wood, +/area/groundbase/dorms/room2) +"qg" = ( +/turf/simulated/wall/r_wall, +/area/groundbase/command/captain) +"qh" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/white, +/area/groundbase/medical/lobby) +"qj" = ( +/obj/effect/floor_decal/chapel, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/dark, +/area/groundbase/civilian/chapel) +"qk" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/effect/landmark/start/roboticist, +/turf/simulated/floor/tiled, +/area/groundbase/science/robotics) +"ql" = ( +/obj/structure/bed/chair/sofa/corp{ + dir = 4 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/obj/machinery/light_switch{ + dir = 4; + pixel_x = -30 + }, +/turf/simulated/floor/wood, +/area/groundbase/dorms/room8) +"qn" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/simulated/floor, +/area/maintenance/groundbase/substation/command) +"qo" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/freezer/cold, +/area/groundbase/civilian/kitchen/freezer) +"qp" = ( +/obj/machinery/computer/arcade{ + dir = 4 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/medical/virology) +"qq" = ( +/turf/simulated/floor/outdoors/newdirt, +/area/groundbase/science/robotics) +"qr" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/groundbase/civilian/janitor) +"qs" = ( +/obj/machinery/hologram/holopad, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled, +/area/groundbase/science/robotics) +"qt" = ( +/obj/structure/extinguisher_cabinet{ + dir = 8; + pixel_x = 30 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/groundbase/science/rnd) +"qu" = ( +/obj/machinery/light, +/turf/simulated/floor/tiled, +/area/groundbase/science/robotics) +"qv" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/simulated/floor/outdoors/sidewalk, +/area/groundbase/level2/nw) +"qw" = ( +/obj/structure/bookcase{ + name = "bookcase (Reference)" + }, +/obj/item/weapon/book/bundle/custom_library/reference/ThermodynamicReactionsandResearch, +/obj/item/weapon/book/bundle/custom_library/reference/fbpandprostheticmaintenance, +/obj/item/weapon/book/bundle/custom_library/reference/recyclingprocedures, +/obj/item/weapon/book/custom_library/reference/fistfulofd6splayersguide, +/obj/item/weapon/book/custom_library/reference/securityguidelines, +/obj/item/weapon/book/custom_library/reference/spacesurvivalguidedespressurization, +/obj/item/weapon/book/manual/anomaly_spectroscopy, +/obj/item/weapon/book/manual/anomaly_testing, +/obj/item/weapon/book/manual/atmospipes, +/obj/item/weapon/book/manual/bar_guide, +/obj/item/weapon/book/manual/barman_recipes, +/obj/item/weapon/book/manual/casino, +/obj/item/weapon/book/manual/chef_recipes, +/obj/item/weapon/book/manual/command_guide, +/obj/item/weapon/book/manual/cook_guide, +/obj/item/weapon/book/manual/detective, +/obj/item/weapon/book/manual/engineering_construction, +/obj/item/weapon/book/manual/engineering_guide, +/obj/item/weapon/book/manual/engineering_hacking, +/obj/item/weapon/book/manual/engineering_particle_accelerator, +/obj/item/weapon/book/manual/engineering_singularity_safety, +/obj/item/weapon/book/manual/evaguide, +/obj/item/weapon/book/manual/excavation, +/obj/item/weapon/book/manual/hydroponics_pod_people, +/obj/item/weapon/book/manual/mass_spectrometry, +/obj/item/weapon/book/manual/materials_chemistry_analysis, +/obj/item/weapon/book/manual/medical_cloning, +/obj/item/weapon/book/manual/medical_diagnostics_manual, +/obj/item/weapon/book/manual/research_and_development, +/obj/item/weapon/book/manual/resleeving, +/obj/item/weapon/book/manual/ripley_build_and_repair, +/obj/item/weapon/book/manual/robotics_cyborgs, +/obj/item/weapon/book/manual/rust_engine, +/obj/item/weapon/book/manual/security_space_law, +/obj/item/weapon/book/manual/standard_operating_procedure, +/obj/item/weapon/book/manual/stasis, +/obj/item/weapon/book/manual/supermatter_engine, +/obj/item/weapon/book/manual/tesla_engine, +/obj/item/weapon/book/manual/virology, +/obj/item/weapon/book/manual/rotary_electric_generator, +/turf/simulated/floor/wood, +/area/groundbase/civilian/library) +"qy" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/groundbase/science/xenobot) +"qz" = ( +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/eris/cafe, +/area/groundbase/civilian/kitchen) +"qA" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/tiled/eris/cafe, +/area/groundbase/civilian/kitchen) +"qB" = ( +/obj/machinery/atmospherics/portables_connector, +/obj/machinery/camera/network/research/xenobio, +/turf/simulated/floor/tiled, +/area/groundbase/science/xenobot/storage) +"qC" = ( +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/turf/simulated/wall/r_wall, +/area/groundbase/command/hop) +"qD" = ( +/obj/structure/bed/chair/comfy/black{ + dir = 8 + }, +/turf/simulated/floor/carpet/bcarpet, +/area/groundbase/civilian/mime) +"qE" = ( +/obj/machinery/button/remote/airlock{ + dir = 4; + id = "dorm6"; + pixel_x = -27; + specialfunctions = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/wood, +/area/groundbase/dorms/room6) +"qG" = ( +/turf/simulated/floor/outdoors/sidewalk/side, +/area/groundbase/level2/ne) +"qH" = ( +/obj/structure/table/woodentable, +/obj/random/donkpocketbox, +/turf/simulated/floor/wood, +/area/groundbase/dorms/room8) +"qJ" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/wood, +/area/groundbase/dorms/room4) +"qK" = ( +/obj/machinery/power/apc{ + dir = 1 + }, +/obj/structure/cable/yellow{ + icon_state = "0-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/groundbase/command/hall) +"qM" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/turf/simulated/floor/outdoors/newdirt, +/area/groundbase/command/hop) +"qN" = ( +/obj/structure/table/standard, +/turf/simulated/floor/tiled, +/area/groundbase/cargo/office) +"qP" = ( +/obj/machinery/alarm{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/groundbase/science/xenobot) +"qQ" = ( +/obj/structure/closet/chefcloset, +/obj/item/glass_jar, +/obj/item/device/retail_scanner/civilian, +/obj/item/weapon/soap/nanotrasen, +/obj/item/device/destTagger{ + pixel_x = 4; + pixel_y = 3 + }, +/obj/item/weapon/packageWrap, +/obj/item/weapon/packageWrap, +/obj/item/weapon/packageWrap, +/obj/item/weapon/tool/wrench, +/turf/simulated/floor/tiled/eris/cafe, +/area/groundbase/civilian/kitchen) +"qS" = ( +/obj/machinery/door/blast/regular{ + id = "xenobiodiv2"; + layer = 8; + name = "Divider" + }, +/turf/simulated/floor/reinforced, +/area/rnd/xenobiology) +"qT" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/groundbase/medical/lobby) +"qU" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/glass_research{ + name = "Xeno Research"; + req_one_access = list(47,55) + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/groundbase/science/xenohall) +"qV" = ( +/obj/machinery/seed_extractor, +/obj/machinery/camera/network/civilian, +/turf/simulated/floor/tiled, +/area/groundbase/civilian/hydroponics) +"qW" = ( +/obj/effect/landmark/start/scientist, +/turf/simulated/floor/tiled, +/area/groundbase/science/hall) +"qX" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology) +"qY" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/machinery/firealarm{ + dir = 4 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/tiled, +/area/groundbase/science/xenobot/storage) +"qZ" = ( +/obj/structure/foodcart, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/freezer/cold, +/area/groundbase/civilian/kitchen/freezer) +"rb" = ( +/obj/structure/sign/painting/library_private{ + pixel_x = -32 + }, +/turf/simulated/floor/carpet, +/area/groundbase/civilian/library) +"rc" = ( +/obj/machinery/power/apc{ + dir = 8 + }, +/obj/structure/cable/yellow{ + icon_state = "0-2" + }, +/obj/structure/table/woodentable, +/obj/machinery/microwave, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/groundbase/dorms/room1) +"rf" = ( +/turf/simulated/floor/outdoors/sidewalk, +/area/groundbase/science/hall) +"rg" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled, +/area/groundbase/cargo/office) +"rh" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/machinery/door/firedoor, +/obj/machinery/door/blast/angled_shutter/open{ + dir = 4; + id = "rndshutters"; + name = "Privacy Shutters" + }, +/turf/simulated/floor, +/area/groundbase/science/rnd) +"ri" = ( +/obj/structure/table/steel, +/obj/item/device/integrated_electronics/debugger{ + pixel_x = -5 + }, +/obj/item/device/integrated_electronics/wirer{ + pixel_x = 5 + }, +/obj/machinery/firealarm, +/turf/simulated/floor/tiled, +/area/groundbase/science/circuits) +"rj" = ( +/obj/machinery/hologram/holopad, +/turf/simulated/floor/tiled, +/area/groundbase/cargo/office) +"rk" = ( +/turf/simulated/wall, +/area/groundbase/civilian/kitchen/backroom) +"rl" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/machinery/door/firedoor, +/turf/simulated/floor, +/area/groundbase/civilian/bar) +"rm" = ( +/obj/machinery/light, +/turf/simulated/floor/wood, +/area/groundbase/dorms/room7) +"rn" = ( +/obj/machinery/newscaster{ + pixel_y = 28 + }, +/turf/simulated/floor/carpet, +/area/groundbase/civilian/library) +"ro" = ( +/obj/structure/easel, +/obj/item/paint_palette, +/obj/item/paint_palette{ + pixel_y = -4 + }, +/obj/item/paint_brush, +/obj/item/paint_brush{ + pixel_x = 4 + }, +/obj/machinery/camera/network/civilian{ + dir = 4 + }, +/turf/simulated/floor/tiled{ + edge_blending_priority = -1; + outdoors = 0 + }, +/area/groundbase/level2/nw) +"rp" = ( +/obj/structure/closet/wardrobe/chaplain_black, +/obj/item/weapon/storage/fancy/crayons, +/obj/item/weapon/flame/candle/candelabra, +/obj/item/weapon/flame/candle/candelabra, +/obj/item/weapon/flame/candle/candelabra, +/obj/item/weapon/flame/candle/candelabra, +/obj/machinery/light_switch{ + dir = 1; + pixel_y = -30 + }, +/turf/simulated/floor/lino, +/area/groundbase/civilian/chapel/office) +"rq" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled, +/area/groundbase/science/robotics) +"rr" = ( +/obj/structure/kitchenspike, +/turf/simulated/floor/tiled/freezer/cold, +/area/groundbase/civilian/kitchen/freezer) +"rs" = ( +/obj/effect/floor_decal/corner_steel_grid{ + dir = 10 + }, +/obj/machinery/sleeper{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/groundbase/medical/triage) +"rt" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/turf/simulated/floor/tiled/eris/cafe, +/area/groundbase/civilian/kitchen) +"ru" = ( +/obj/structure/table/reinforced, +/obj/item/weapon/paper_bin{ + pixel_x = -3; + pixel_y = 7 + }, +/obj/item/weapon/folder/red, +/obj/item/weapon/folder/blue, +/obj/item/weapon/pen/multi{ + pixel_x = -2; + pixel_y = 9 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/simulated/floor/carpet, +/area/groundbase/command/hop) +"rv" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/wall, +/area/groundbase/cargo/office) +"rx" = ( +/obj/structure/table/standard, +/obj/machinery/microwave, +/obj/machinery/light/floortube{ + dir = 4; + pixel_x = 6 + }, +/turf/simulated/floor/tiled/eris/cafe, +/area/groundbase/civilian/kitchen) +"ry" = ( +/obj/machinery/computer/guestpass{ + dir = 1; + pixel_y = -22 + }, +/turf/simulated/floor/tiled/white, +/area/groundbase/medical/triage) +"rz" = ( +/turf/simulated/floor/outdoors/newdirt_nograss{ + outdoors = 0 + }, +/area/groundbase/level2/ne) +"rA" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/outdoors/sidewalk, +/area/groundbase/level2/se) +"rC" = ( +/obj/machinery/alarm, +/obj/machinery/atmospherics/unary/vent_pump/on, +/turf/simulated/floor/tiled, +/area/groundbase/science/xenobot/storage) +"rD" = ( +/obj/structure/mirror{ + pixel_y = 37 + }, +/obj/structure/sink{ + pixel_y = 20 + }, +/obj/machinery/alarm{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/groundbase/dorms/room2) +"rE" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/turf/simulated/floor/outdoors/grass/seasonal/notrees_nomobs_lowsnow, +/area/groundbase/level2/ne) +"rF" = ( +/obj/machinery/light/small, +/turf/simulated/floor/outdoors/grass/seasonal/notrees_nomobs_lowsnow, +/area/groundbase/science/hall) +"rG" = ( +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/turf/simulated/floor/outdoors/sidewalk/slab, +/area/groundbase/level2/nw) +"rH" = ( +/obj/machinery/requests_console/preset/research{ + pixel_y = 30 + }, +/turf/simulated/floor/tiled, +/area/groundbase/science/rnd) +"rI" = ( +/obj/structure/table/standard, +/obj/item/weapon/book/manual/resleeving, +/obj/item/weapon/storage/box/backup_kit, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/machinery/camera/network/research{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/groundbase/science/robotics) +"rK" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass_command{ + name = "Bridge"; + req_access = list(19) + }, +/obj/structure/cable{ + icon_state = "32-4" + }, +/obj/machinery/atmospherics/pipe/zpipe/down/scrubbers{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/zpipe/down/supply{ + dir = 1 + }, +/turf/simulated/floor/bmarble, +/area/groundbase/command/bridge) +"rL" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/eris/cafe, +/area/groundbase/civilian/kitchen) +"rM" = ( +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/obj/machinery/disposal, +/obj/machinery/light_switch{ + dir = 8; + pixel_x = 30 + }, +/turf/simulated/floor/wood, +/area/groundbase/dorms/room3) +"rN" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled, +/area/groundbase/cargo/office) +"rO" = ( +/obj/structure/barricade/cutout/mime, +/obj/machinery/alarm{ + dir = 4 + }, +/obj/machinery/light_switch{ + pixel_y = 30 + }, +/turf/simulated/floor/carpet/bcarpet, +/area/groundbase/civilian/mime) +"rP" = ( +/turf/simulated/wall, +/area/groundbase/civilian/library) +"rQ" = ( +/obj/machinery/camera/network/civilian, +/turf/simulated/floor/tiled, +/area/groundbase/civilian/hydroponics) +"rR" = ( +/obj/effect/floor_decal/steeldecal/steel_decals10{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals10{ + dir = 10 + }, +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/door/window/southright{ + dir = 1; + name = "shower door" + }, +/turf/simulated/floor/tiled/white, +/area/groundbase/dorms/room6) +"rT" = ( +/obj/machinery/camera/network/research/xenobio{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology) +"rU" = ( +/obj/structure/extinguisher_cabinet{ + dir = 8; + pixel_x = 30 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled, +/area/groundbase/civilian/janitor) +"rW" = ( +/obj/machinery/firealarm{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology) +"rX" = ( +/obj/structure/closet/secure_closet/personal, +/obj/item/weapon/towel/random, +/obj/item/weapon/storage/backpack, +/turf/simulated/floor/wood, +/area/groundbase/dorms/room8) +"rZ" = ( +/obj/machinery/light, +/turf/simulated/floor/tiled/white, +/area/groundbase/medical/Chemistry) +"sb" = ( +/obj/structure/mopbucket, +/obj/item/weapon/mop, +/obj/item/weapon/reagent_containers/glass/bucket, +/obj/machinery/alarm{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/groundbase/civilian/janitor) +"sc" = ( +/obj/structure/bed/chair/comfy/blue{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/groundbase/command/meeting) +"sd" = ( +/obj/structure/table/bench/padded, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/effect/landmark/start/intern, +/turf/simulated/floor/tiled/dark, +/area/groundbase/civilian/bar) +"se" = ( +/obj/item/device/aicard, +/obj/structure/table/reinforced, +/obj/item/device/multitool, +/obj/machinery/button/remote/blast_door{ + dir = 8; + id = "bridge blast"; + name = "Bridge Blastdoors"; + pixel_x = 26 + }, +/obj/machinery/recharger, +/turf/simulated/floor/tiled/dark, +/area/groundbase/command/bridge) +"sg" = ( +/obj/random/slimecore, +/turf/simulated/floor/reinforced, +/area/rnd/xenobiology) +"sh" = ( +/obj/structure/table/glass, +/obj/item/weapon/storage/box/gloves, +/obj/item/weapon/storage/box/masks, +/turf/simulated/floor/tiled/white, +/area/groundbase/medical/triage) +"si" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/tiled/freezer/cold, +/area/groundbase/civilian/kitchen/freezer) +"sk" = ( +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/obj/machinery/disposal, +/obj/machinery/light, +/turf/simulated/floor/tiled/dark, +/area/groundbase/dorms) +"sl" = ( +/obj/structure/table/bench/padded, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/groundbase/civilian/bar) +"sn" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/groundbase/science/hall) +"so" = ( +/obj/machinery/alarm, +/obj/structure/bed/double/padded, +/obj/item/weapon/bedsheet/browndouble, +/turf/simulated/floor/wood, +/area/groundbase/dorms/room2) +"sp" = ( +/obj/effect/floor_decal/chapel{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/groundbase/civilian/chapel) +"sr" = ( +/obj/structure/bed/chair/sofa/bench/right{ + dir = 1 + }, +/turf/simulated/floor/outdoors/newdirt, +/area/groundbase/level2/se) +"ss" = ( +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/dark, +/area/groundbase/command/bridge) +"st" = ( +/obj/machinery/shower{ + pixel_y = 16 + }, +/obj/structure/curtain/open/shower, +/obj/structure/window/basic{ + dir = 8 + }, +/turf/simulated/floor/tiled{ + icon_state = "techmaint" + }, +/area/groundbase/dorms/room8) +"su" = ( +/obj/structure/railing/grey{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/groundbase/medical/triage) +"sv" = ( +/turf/simulated/floor/tiled/dark, +/area/groundbase/command/hall) +"sw" = ( +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/light{ + dir = 4 + }, +/obj/structure/bed/chair/sofa/corp/right{ + dir = 8 + }, +/turf/simulated/floor/wood, +/area/groundbase/dorms/room1) +"sx" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/dark, +/area/groundbase/command/bridge) +"sy" = ( +/obj/structure/table/woodentable, +/obj/machinery/librarypubliccomp, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/wood, +/area/groundbase/civilian/library) +"sz" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/groundbase/science/hall) +"sA" = ( +/obj/structure/flora/pottedplant/minitree, +/obj/machinery/light, +/turf/simulated/floor/wood, +/area/groundbase/medical/psych) +"sB" = ( +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/groundbase/science/rd) +"sD" = ( +/obj/machinery/papershredder, +/obj/machinery/keycard_auth{ + pixel_y = 28 + }, +/turf/simulated/floor/tiled/dark, +/area/groundbase/command/meeting) +"sF" = ( +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/outdoors/sidewalk, +/area/groundbase/level2/nw) +"sG" = ( +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/turf/simulated/floor/tiled, +/area/groundbase/science/robotics) +"sH" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/turf/simulated/floor/tiled/dark, +/area/groundbase/civilian/bar) +"sI" = ( +/obj/structure/disposalpipe/sortjunction/flipped{ + dir = 1; + name = "Sorting Office"; + sortType = "Sorting Office" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled{ + edge_blending_priority = -1; + outdoors = 0 + }, +/area/groundbase/cargo/office) +"sJ" = ( +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/obj/machinery/firealarm, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled/white, +/area/groundbase/dorms/bathroom) +"sK" = ( +/obj/machinery/power/apc{ + dir = 8 + }, +/obj/structure/cable/yellow{ + icon_state = "0-4" + }, +/turf/simulated/floor/wood, +/area/groundbase/command/captain) +"sL" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/groundbase/dorms/room4) +"sM" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/turf/simulated/floor/wood, +/area/groundbase/dorms/room7) +"sN" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/outdoors/sidewalk/side, +/area/groundbase/level2/nw) +"sP" = ( +/obj/structure/disposalpipe/sortjunction/untagged/flipped{ + dir = 1 + }, +/obj/machinery/door/airlock/glass_mining{ + id_tag = "cargodoor"; + name = "Cargo Office"; + req_access = list(31); + req_one_access = null + }, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/bmarble, +/area/groundbase/cargo/office) +"sQ" = ( +/obj/structure/railing/grey, +/obj/structure/railing/grey{ + dir = 1 + }, +/turf/simulated/floor/outdoors/sidewalk/slab, +/area/groundbase/level2/eastspur) +"sS" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/polarized/full{ + id = "qm_office" + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor, +/area/groundbase/cargo/qm) +"sT" = ( +/obj/machinery/seed_storage/xenobotany, +/obj/machinery/camera/network/research/xenobio, +/turf/simulated/floor/tiled, +/area/groundbase/science/xenobot) +"sU" = ( +/obj/effect/landmark/start/chaplain, +/turf/simulated/floor/lino, +/area/groundbase/civilian/chapel/office) +"sV" = ( +/obj/machinery/computer/card{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/groundbase/command/hop) +"sW" = ( +/turf/simulated/wall, +/area/groundbase/medical/Chemistry) +"sX" = ( +/obj/machinery/power/apc{ + dir = 1 + }, +/obj/structure/cable/yellow{ + icon_state = "0-8" + }, +/turf/simulated/floor/wood, +/area/groundbase/civilian/kitchen/backroom) +"sY" = ( +/obj/machinery/atmospherics/portables_connector{ + dir = 8 + }, +/obj/machinery/light_switch{ + dir = 8; + pixel_x = 30 + }, +/turf/simulated/floor/tiled, +/area/groundbase/science/xenobot/storage) +"sZ" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/outdoors/sidewalk/side, +/area/groundbase/level2/nw) +"ta" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/light, +/turf/simulated/floor/tiled/dark, +/area/groundbase/command/hall) +"tb" = ( +/obj/structure/reagent_dispensers/acid{ + pixel_x = -32; + pixel_y = 32 + }, +/obj/machinery/mecha_part_fabricator, +/obj/machinery/requests_console{ + department = "Robotics"; + departmentType = 2; + name = "Robotics RC"; + pixel_y = 30 + }, +/turf/simulated/floor/tiled, +/area/groundbase/science/robotics) +"td" = ( +/obj/structure/table/glass, +/obj/machinery/photocopier/faxmachine{ + department = "Medical" + }, +/turf/simulated/floor/tiled/white, +/area/groundbase/medical/lobby) +"te" = ( +/turf/simulated/floor/tiled, +/area/groundbase/science/xenobot/storage) +"tf" = ( +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology) +"th" = ( +/obj/machinery/media/jukebox, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled, +/area/groundbase/science/circuits) +"tj" = ( +/obj/effect/landmark/start/chef, +/turf/simulated/floor/tiled/eris/cafe, +/area/groundbase/civilian/kitchen) +"tk" = ( +/obj/machinery/disease2/isolator, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/medical/virology) +"tm" = ( +/obj/structure/sign/directions/science{ + pixel_x = -32; + pixel_y = -6 + }, +/obj/structure/sign/directions/evac{ + dir = 1; + pixel_x = -32 + }, +/turf/simulated/floor/outdoors/grass/seasonal/notrees_nomobs_lowsnow, +/area/groundbase/level2/nw) +"to" = ( +/turf/simulated/floor/outdoors/grass/seasonal/notrees_nomobs_lowsnow, +/area/groundbase/level2/ne) +"tq" = ( +/obj/structure/railing/grey{ + dir = 4 + }, +/turf/simulated/floor/outdoors/grass/seasonal/notrees_nomobs_lowsnow, +/area/groundbase/level2/sw) +"tr" = ( +/turf/simulated/floor/outdoors/newdirt, +/area/groundbase/civilian/hydroponics) +"ts" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/groundbase/science/hall) +"tt" = ( +/obj/machinery/chem_master, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/groundbase/medical/Chemistry) +"tv" = ( +/obj/machinery/hologram/holopad, +/turf/simulated/floor/tiled/white, +/area/groundbase/medical/Chemistry) +"tw" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/groundbase/medical/lobby) +"ty" = ( +/obj/machinery/station_map{ + dir = 4; + pixel_x = -32 + }, +/turf/simulated/floor/tiled/white, +/area/groundbase/medical/lobby) +"tA" = ( +/obj/structure/bed/chair/sofa/bench/left{ + dir = 1 + }, +/turf/simulated/floor/outdoors/newdirt, +/area/groundbase/level2/se) +"tB" = ( +/obj/machinery/door/blast/regular{ + density = 0; + dir = 4; + icon_state = "pdoor0"; + id = "xenobiopen4"; + name = "Pen 4 Blast Doors"; + opacity = 0 + }, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8; + health = 1e+006 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/simulated/floor/reinforced, +/area/rnd/xenobiology) +"tC" = ( +/obj/structure/reagent_dispensers/acid{ + pixel_x = 32 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled, +/area/groundbase/science/rnd) +"tD" = ( +/obj/structure/table/marble, +/obj/machinery/door/blast/gate/thin{ + dir = 4; + id = "kitchenhallway"; + layer = 3.3 + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor, +/area/groundbase/civilian/kitchen) +"tF" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/medical/virology) +"tH" = ( +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/obj/machinery/disposal/wall{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/groundbase/medical/triage) +"tI" = ( +/obj/machinery/r_n_d/destructive_analyzer, +/turf/simulated/floor/tiled/dark, +/area/groundbase/science/rnd) +"tJ" = ( +/obj/item/weapon/folder/blue, +/obj/structure/table/fancyblack, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/groundbase/command/meeting) +"tK" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/simulated/floor/glass/reinforced{ + outdoors = 1 + }, +/area/groundbase/level2/eastspur) +"tL" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/wood, +/area/groundbase/command/captainq) +"tM" = ( +/obj/structure/bed/chair/sofa/corp/left, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/wood, +/area/groundbase/dorms/room5) +"tN" = ( +/turf/simulated/floor/outdoors/newdirt_nograss{ + outdoors = 0 + }, +/area/groundbase/level2/se) +"tO" = ( +/turf/simulated/floor/reinforced{ + edge_blending_priority = -1; + outdoors = 1 + }, +/area/groundbase/level2/nw) +"tP" = ( +/obj/machinery/door/airlock{ + id_tag = null; + name = "Bathroom" + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/groundbase/dorms/room4) +"tQ" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass_medical{ + name = "Chemistry"; + req_one_access = list(33) + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/groundbase/medical/Chemistry) +"tT" = ( +/obj/machinery/door/blast/regular{ + density = 0; + dir = 4; + icon_state = "pdoor0"; + id = "xenobiopen4"; + name = "Pen 4 Blast Doors"; + opacity = 0 + }, +/obj/machinery/door/window/brigdoor/eastleft{ + dir = 1; + name = "Slime Pen"; + req_access = list(55) + }, +/turf/simulated/floor/reinforced, +/area/rnd/xenobiology) +"tU" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled, +/area/groundbase/cargo/office) +"tV" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/groundbase/dorms/room2) +"tW" = ( +/obj/machinery/camera/network/civilian{ + dir = 4 + }, +/obj/random/vendorall, +/turf/simulated/floor/lino{ + edge_blending_priority = 0.1 + }, +/area/groundbase/civilian/kitchen) +"tX" = ( +/obj/structure/table/reinforced, +/obj/item/weapon/storage/box/donut, +/obj/item/weapon/book/manual/standard_operating_procedure, +/obj/item/weapon/book/manual/command_guide, +/obj/item/device/radio, +/obj/item/weapon/storage/firstaid/regular, +/obj/machinery/power/apc{ + dir = 4 + }, +/obj/structure/cable/yellow, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/groundbase/command/bridge) +"tY" = ( +/obj/structure/sink{ + dir = 4; + pixel_x = 11 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/medical/virology) +"tZ" = ( +/obj/machinery/newscaster{ + layer = 3.3; + pixel_x = -27 + }, +/turf/simulated/floor/tiled{ + edge_blending_priority = -1; + outdoors = 0 + }, +/area/groundbase/level2/nw) +"ua" = ( +/obj/structure/table/reinforced, +/obj/machinery/chemical_dispenser/full, +/turf/simulated/floor/tiled/white, +/area/groundbase/medical/Chemistry) +"ue" = ( +/obj/machinery/button/remote/airlock{ + dir = 8; + id = "dorm3"; + pixel_x = 27; + specialfunctions = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/wood, +/area/groundbase/dorms/room3) +"uf" = ( +/turf/simulated/floor/tiled/white, +/area/groundbase/dorms/room7) +"ug" = ( +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/structure/disposalpipe/junction{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/groundbase/dorms) +"uh" = ( +/obj/machinery/appliance/mixer/candy, +/turf/simulated/floor/tiled/eris/cafe, +/area/groundbase/civilian/kitchen) +"uj" = ( +/obj/machinery/light/small, +/turf/simulated/floor/outdoors/grass/seasonal/notrees_nomobs_lowsnow, +/area/groundbase/civilian/kitchen) +"uk" = ( +/obj/structure/bed/chair/sofa/corp/right{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/groundbase/dorms/room8) +"um" = ( +/obj/machinery/computer/crew, +/obj/machinery/requests_console{ + department = "Medical"; + departmentType = 2; + pixel_y = 30 + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/groundbase/medical/lobby) +"un" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/medical{ + name = "Virology" + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/groundbase/medical/triage) +"uo" = ( +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/bmarble, +/area/groundbase/civilian/chapel) +"up" = ( +/obj/structure/stairs/spawner/west, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/groundbase/cargo/office) +"uq" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled{ + edge_blending_priority = -1; + outdoors = 0 + }, +/area/groundbase/cargo/office) +"ur" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology) +"ut" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/outdoors/sidewalk, +/area/groundbase/level2/se) +"uu" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/groundbase/science/xenohall) +"uv" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/light_switch{ + dir = 1; + pixel_y = -30 + }, +/turf/simulated/floor/wood, +/area/groundbase/command/captain) +"uw" = ( +/obj/structure/cable/yellow, +/obj/structure/cable/yellow{ + icon_state = "16-0" + }, +/obj/machinery/atmospherics/pipe/zpipe/up/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/zpipe/up/scrubbers{ + dir = 1 + }, +/turf/simulated/wall, +/area/groundbase/medical/triage) +"uy" = ( +/obj/machinery/power/apc{ + dir = 4; + nightshift_setting = 2 + }, +/obj/structure/cable/yellow{ + icon_state = "0-8" + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/groundbase/dorms/bathroom) +"uz" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/structure/bookcase, +/turf/simulated/floor/wood, +/area/groundbase/civilian/library) +"uC" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/simulated/floor/wood, +/area/groundbase/dorms/room7) +"uE" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/turf/simulated/floor/tiled/freezer/cold, +/area/groundbase/civilian/kitchen/freezer) +"uF" = ( +/obj/machinery/firealarm{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/groundbase/medical/Chemistry) +"uG" = ( +/obj/item/modular_computer/console/preset/command{ + dir = 1 + }, +/obj/machinery/light, +/turf/simulated/floor/tiled, +/area/groundbase/science/rd) +"uH" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = -12; + pixel_y = 2 + }, +/obj/structure/mirror{ + dir = 4; + pixel_x = -23 + }, +/turf/simulated/floor/tiled/white, +/area/groundbase/dorms/room8) +"uI" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/turf/simulated/floor/outdoors/sidewalk/slab, +/area/groundbase/level2/se) +"uJ" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/medical/virology) +"uK" = ( +/obj/structure/table/standard, +/obj/item/weapon/tape_roll, +/obj/item/weapon/storage/firstaid/regular{ + pixel_x = 6; + pixel_y = -5 + }, +/turf/simulated/floor/tiled, +/area/groundbase/cargo/office) +"uL" = ( +/obj/machinery/door/airlock{ + id_tag = "dorm6"; + name = "Room 6" + }, +/obj/machinery/door/firedoor, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/groundbase/dorms/room6) +"uM" = ( +/obj/effect/landmark/start/xenobio, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology) +"uN" = ( +/obj/structure/closet/l3closet/scientist, +/obj/item/clothing/suit/bio_suit/scientist, +/obj/item/clothing/head/bio_hood/scientist, +/obj/structure/noticeboard{ + pixel_x = 32 + }, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology) +"uO" = ( +/obj/machinery/power/apc{ + dir = 8 + }, +/obj/structure/cable/yellow{ + icon_state = "0-4" + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/obj/random/vendorall, +/turf/simulated/floor/tiled/dark, +/area/groundbase/dorms) +"uP" = ( +/turf/simulated/floor/outdoors/grass/seasonal/notrees_nomobs_lowsnow, +/area/groundbase/unexplored/outdoors) +"uQ" = ( +/obj/machinery/bookbinder, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/wood, +/area/groundbase/civilian/library) +"uS" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/structure/table/standard, +/obj/item/weapon/packageWrap, +/obj/item/weapon/packageWrap, +/obj/item/weapon/packageWrap, +/obj/item/weapon/packageWrap, +/turf/simulated/floor/tiled, +/area/groundbase/cargo/office) +"uT" = ( +/obj/structure/railing/grey{ + dir = 1 + }, +/turf/simulated/floor/outdoors/sidewalk/slab, +/area/groundbase/level2/northspur) +"uU" = ( +/obj/item/weapon/reagent_containers/food/condiment/carton/flour, +/obj/item/weapon/reagent_containers/food/condiment/carton/flour, +/obj/item/weapon/reagent_containers/food/condiment/carton/flour, +/obj/item/weapon/reagent_containers/food/condiment/carton/flour, +/obj/item/weapon/reagent_containers/food/condiment/carton/flour, +/obj/item/weapon/reagent_containers/food/condiment/carton/flour, +/obj/item/weapon/reagent_containers/food/condiment/carton/flour, +/obj/item/weapon/reagent_containers/food/condiment/carton/flour, +/obj/item/weapon/reagent_containers/food/condiment/spacespice, +/obj/item/weapon/reagent_containers/food/condiment/spacespice, +/obj/item/weapon/reagent_containers/food/condiment/carton/sugar, +/obj/item/weapon/reagent_containers/food/condiment/carton/sugar, +/obj/item/weapon/reagent_containers/food/condiment/small/saltshaker, +/obj/item/weapon/reagent_containers/food/condiment/small/saltshaker, +/obj/item/weapon/reagent_containers/food/condiment/small/peppermill, +/obj/item/weapon/reagent_containers/food/condiment/small/peppermill, +/obj/structure/closet, +/obj/random/donkpocketbox, +/turf/simulated/floor/tiled/eris/cafe, +/area/groundbase/civilian/kitchen) +"uX" = ( +/obj/structure/fence, +/turf/simulated/floor/outdoors/grass/seasonal/dark/lowsnow, +/area/groundbase/civilian/hydroponics/out) +"uY" = ( +/obj/machinery/light, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology) +"vb" = ( +/obj/machinery/light/bigfloorlamp, +/turf/simulated/floor/outdoors/grass/seasonal/notrees_nomobs_lowsnow, +/area/groundbase/level2/ne) +"vc" = ( +/obj/structure/sign/department/chem, +/turf/simulated/wall, +/area/groundbase/medical/Chemistry) +"vh" = ( +/obj/machinery/atmospherics/unary/vent_pump/on, +/turf/simulated/floor/tiled, +/area/groundbase/science/xenohall) +"vi" = ( +/obj/machinery/light, +/obj/structure/toilet{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/groundbase/dorms/room7) +"vj" = ( +/obj/structure/bed/chair/comfy/blue{ + dir = 4 + }, +/obj/effect/landmark/start/commandsecretary, +/turf/simulated/floor/tiled/dark, +/area/groundbase/command/meeting) +"vk" = ( +/obj/structure/fence, +/turf/simulated/floor/outdoors/grass/seasonal/notrees_nomobs_lowsnow, +/area/groundbase/cargo/bay) +"vm" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/medical/virology) +"vn" = ( +/obj/machinery/alarm{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/groundbase/command/hop) +"vo" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/glass_research{ + name = "Research" + }, +/turf/simulated/floor/bmarble, +/area/groundbase/science/hall) +"vq" = ( +/obj/machinery/shower{ + pixel_y = 16 + }, +/obj/structure/curtain/open/shower, +/obj/structure/window/basic{ + dir = 4 + }, +/turf/simulated/floor/tiled{ + icon_state = "techmaint" + }, +/area/groundbase/dorms/room7) +"vr" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/dark, +/area/groundbase/command/bridge) +"vs" = ( +/obj/machinery/atmospherics/portables_connector{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/groundbase/science/xenobot/storage) +"vt" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass_medical{ + name = "Chemistry"; + req_one_access = list(33) + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/steel_ridged, +/area/groundbase/medical/Chemistry) +"vu" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/groundbase/dorms) +"vw" = ( +/obj/effect/floor_decal/steeldecal/steel_decals10{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals10{ + dir = 10 + }, +/obj/machinery/alarm{ + dir = 8 + }, +/obj/machinery/door/window/southright{ + dir = 1; + name = "shower door" + }, +/turf/simulated/floor/tiled/white, +/area/groundbase/dorms/room8) +"vy" = ( +/obj/structure/railing/grey{ + dir = 4 + }, +/obj/structure/stairs/spawner/south, +/turf/simulated/floor/tiled/white, +/area/groundbase/medical/triage) +"vA" = ( +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/wood, +/area/groundbase/civilian/library) +"vB" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/groundbase/science/hall) +"vF" = ( +/obj/structure/table/standard, +/obj/item/weapon/storage/toolbox/mechanical{ + pixel_x = 2; + pixel_y = 3 + }, +/obj/item/weapon/storage/toolbox/mechanical{ + pixel_x = -2; + pixel_y = -1 + }, +/obj/item/clothing/glasses/welding, +/obj/item/weapon/storage/belt/utility, +/obj/machinery/atmospherics/unary/vent_pump/on, +/obj/machinery/camera/network/research, +/turf/simulated/floor/tiled, +/area/groundbase/science/rnd) +"vH" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/simulated/wall, +/area/groundbase/cargo/office) +"vI" = ( +/obj/machinery/recharge_station, +/obj/machinery/light, +/turf/simulated/floor/lino{ + edge_blending_priority = 0.1 + }, +/area/groundbase/civilian/kitchen) +"vJ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/landmark{ + name = "lightsout" + }, +/turf/simulated/floor/carpet, +/area/groundbase/civilian/library) +"vK" = ( +/obj/structure/closet/secure_closet/personal, +/obj/item/weapon/towel/random, +/obj/item/weapon/storage/backpack, +/obj/machinery/firealarm{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/groundbase/dorms/room6) +"vL" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/window/southright{ + dir = 8; + req_access = list(5) + }, +/obj/structure/table/glass, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/groundbase/medical/lobby) +"vO" = ( +/obj/machinery/hologram/holopad, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/groundbase/science/xenobot) +"vP" = ( +/obj/machinery/door/firedoor, +/obj/structure/table/glass, +/obj/item/weapon/backup_implanter, +/obj/item/weapon/backup_implanter, +/obj/item/weapon/backup_implanter, +/obj/item/weapon/backup_implanter, +/obj/machinery/door/window/southleft{ + dir = 8; + req_access = list(5) + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/groundbase/medical/lobby) +"vQ" = ( +/obj/structure/bookcase{ + name = "bookcase (Fiction)" + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/obj/item/weapon/book/bundle/custom_library/fiction/apurrrrfectman, +/obj/item/weapon/book/bundle/custom_library/fiction/beyondthedoor, +/obj/item/weapon/book/bundle/custom_library/fiction/chroniclesofmargatavol1, +/obj/item/weapon/book/bundle/custom_library/fiction/coldmountain, +/obj/item/weapon/book/bundle/custom_library/fiction/ghostship, +/obj/item/weapon/book/bundle/custom_library/fiction/manfromsnowyriver, +/obj/item/weapon/book/bundle/custom_library/fiction/metalglen, +/obj/item/weapon/book/bundle/custom_library/fiction/poemsforarainyday, +/obj/item/weapon/book/bundle/custom_library/fiction/raissue142, +/obj/item/weapon/book/bundle/custom_library/fiction/raissue147, +/obj/item/weapon/book/bundle/custom_library/fiction/silence, +/obj/item/weapon/book/bundle/custom_library/fiction/taleoftherainbowcat, +/obj/item/weapon/book/custom_library/fiction/blacksmithandkinglybloke, +/obj/item/weapon/book/custom_library/fiction/irishairmanforseesdeath, +/obj/item/weapon/book/custom_library/fiction/myrock, +/obj/item/weapon/book/custom_library/fiction/starsandsometimesfallingones, +/obj/item/weapon/book/custom_library/fiction/truelovehathmyheart, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/wood, +/area/groundbase/civilian/library) +"vS" = ( +/obj/structure/mopbucket, +/obj/item/weapon/mop, +/obj/item/weapon/reagent_containers/glass/bucket, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/groundbase/civilian/janitor) +"vT" = ( +/obj/structure/closet/walllocker_double{ + dir = 4; + pixel_x = 27 + }, +/obj/item/stack/cable_coil/random, +/obj/item/stack/cable_coil/random, +/obj/item/stack/cable_coil/random, +/obj/item/stack/cable_coil/random, +/obj/item/stack/cable_coil/random, +/obj/item/stack/cable_coil/random, +/obj/item/stack/cable_coil/random, +/obj/item/stack/cable_coil/random, +/obj/item/stack/cable_coil/random, +/obj/item/stack/cable_coil/random, +/obj/item/stack/cable_coil/random, +/obj/item/stack/cable_coil/random, +/obj/item/stack/cable_coil/random, +/obj/item/stack/cable_coil/random, +/obj/item/stack/cable_coil/random, +/obj/item/stack/cable_coil/random, +/turf/simulated/floor/tiled{ + edge_blending_priority = -1; + outdoors = 0 + }, +/area/groundbase/level2/nw) +"vV" = ( +/obj/structure/disposalpipe/sortjunction{ + dir = 1; + name = "Hydroponics"; + sortType = "Hydroponics" + }, +/turf/simulated/floor/outdoors/sidewalk/slab, +/area/groundbase/level2/nw) +"vW" = ( +/obj/structure/bed/chair/office/dark, +/obj/effect/landmark/start/qm, +/obj/machinery/button/windowtint{ + id = "qm_office"; + layer = 3.3; + pixel_x = 16; + pixel_y = -27 + }, +/turf/simulated/floor/wood, +/area/groundbase/cargo/qm) +"vY" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/simulated/floor/outdoors/sidewalk, +/area/groundbase/level2/se) +"wa" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/white, +/area/groundbase/medical/lobby) +"wb" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/light/floortube{ + dir = 4; + pixel_x = 6 + }, +/turf/simulated/floor/tiled/dark, +/area/groundbase/civilian/chapel) +"wc" = ( +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/obj/machinery/disposal, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology) +"wd" = ( +/obj/structure/table/bench/padded, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/landmark/start/visitor, +/turf/simulated/floor/tiled/dark, +/area/groundbase/civilian/bar) +"we" = ( +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/groundbase/medical/triage) +"wf" = ( +/obj/structure/bed/psych, +/obj/structure/sign/painting/library_secure{ + pixel_x = 30 + }, +/turf/simulated/floor/wood, +/area/groundbase/medical/psych) +"wg" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/wood, +/area/groundbase/civilian/library) +"wh" = ( +/obj/item/weapon/folder/red, +/obj/structure/table/fancyblack, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/groundbase/command/meeting) +"wj" = ( +/obj/structure/bed/chair/office/light{ + dir = 8 + }, +/obj/effect/landmark/start/medical, +/turf/simulated/floor/tiled/white, +/area/groundbase/medical/lobby) +"wk" = ( +/obj/machinery/light, +/obj/structure/toilet{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/groundbase/dorms/room1) +"wl" = ( +/obj/machinery/light/small/fairylights{ + pixel_y = -1 + }, +/turf/simulated/floor/outdoors/newdirt, +/area/groundbase/level2/nw) +"wm" = ( +/obj/machinery/computer/supplycomp/control{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/groundbase/cargo/office) +"wn" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/groundbase/science/xenobot) +"wo" = ( +/obj/structure/table/woodentable, +/turf/simulated/floor/wood, +/area/groundbase/dorms/room6) +"wp" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/groundbase/science/robotics) +"wq" = ( +/obj/structure/table/wooden_reinforced, +/turf/simulated/floor/wood, +/area/groundbase/civilian/kitchen/backroom) +"ws" = ( +/obj/structure/closet/secure_closet/scientist, +/obj/machinery/camera/network/research, +/turf/simulated/floor/tiled, +/area/groundbase/science/hall) +"wt" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/turf/simulated/floor/tiled/white, +/area/medical/virology) +"wu" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/simulated/floor/wood, +/area/groundbase/dorms/room3) +"wv" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/hologram/holopad, +/turf/simulated/floor/tiled/dark, +/area/groundbase/civilian/bar) +"ww" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/light_switch{ + dir = 8; + pixel_x = 30 + }, +/turf/simulated/floor/tiled, +/area/groundbase/science/circuits) +"wx" = ( +/obj/machinery/door/blast/angled_shutter/open{ + dir = 4; + id = "xenobotshutters"; + name = "Privacy Shutters" + }, +/obj/machinery/door/firedoor/glass, +/obj/structure/table/reinforced, +/obj/machinery/door/window/brigdoor/westright{ + name = "Xenobotany Desk"; + req_access = list(77) + }, +/turf/simulated/floor{ + edge_blending_priority = -1; + outdoors = 1 + }, +/area/groundbase/science/xenobot) +"wy" = ( +/obj/structure/sign/department/virology, +/turf/simulated/wall/r_wall, +/area/medical/virology) +"wA" = ( +/obj/structure/railing/grey{ + dir = 8 + }, +/turf/simulated/floor/outdoors/grass/seasonal/notrees_nomobs_lowsnow, +/area/groundbase/level2/nw) +"wB" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/groundbase/civilian/chapel) +"wD" = ( +/obj/effect/mouse_hole_spawner{ + dir = 4 + }, +/turf/simulated/floor/outdoors/grass/seasonal/notrees_nomobs_lowsnow, +/area/groundbase/level2/nw) +"wE" = ( +/obj/structure/table/woodentable, +/obj/machinery/camera/network/civilian, +/turf/simulated/floor/carpet, +/area/groundbase/civilian/library) +"wF" = ( +/obj/machinery/portable_atmospherics/hydroponics, +/turf/simulated/floor/tiled, +/area/groundbase/science/xenobot) +"wG" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/carpet, +/area/groundbase/civilian/library) +"wH" = ( +/obj/effect/floor_decal/chapel{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/groundbase/civilian/chapel) +"wI" = ( +/obj/structure/table/steel, +/obj/item/device/integrated_electronics/debugger{ + pixel_x = -5 + }, +/obj/item/device/integrated_electronics/wirer{ + pixel_x = 5 + }, +/obj/machinery/light, +/turf/simulated/floor/tiled, +/area/groundbase/science/circuits) +"wJ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/groundbase/science/robotics) +"wK" = ( +/turf/simulated/wall, +/area/groundbase/civilian/mime) +"wL" = ( +/obj/structure/table/glass, +/turf/simulated/floor/tiled/white, +/area/groundbase/medical/lobby) +"wN" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/groundbase/medical/triage) +"wO" = ( +/obj/machinery/button/remote/blast_door{ + id = "xenobiopen6"; + name = "Pen 6 Containment"; + pixel_y = 38; + req_access = list(55) + }, +/obj/machinery/button/remote/blast_door{ + id = "xenobiodiv4"; + name = "Divider"; + pixel_y = 27; + req_access = list(55) + }, +/obj/machinery/atmospherics/unary/vent_pump/on, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology) +"wP" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/simulated/floor/tiled, +/area/groundbase/science/robotics) +"wQ" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/simulated/floor/wood, +/area/groundbase/dorms/room8) +"wR" = ( +/obj/structure/bed/chair/sofa/bench{ + dir = 4 + }, +/turf/simulated/floor/outdoors/newdirt, +/area/groundbase/level2/nw) +"wS" = ( +/turf/simulated/floor/outdoors/newdirt_nograss{ + outdoors = 0 + }, +/area/groundbase/unexplored/rock) +"wW" = ( +/obj/effect/landmark/start/scientist, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/dark, +/area/groundbase/science/rnd) +"wX" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/outdoors/sidewalk, +/area/groundbase/level2/ne) +"wY" = ( +/obj/machinery/alarm{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/groundbase/science/xenobot) +"wZ" = ( +/obj/machinery/firealarm{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled, +/area/groundbase/science/xenobot) +"xa" = ( +/obj/machinery/computer/transhuman/designer, +/obj/machinery/atmospherics/unary/vent_pump/on, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/groundbase/medical/lobby) +"xc" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/groundbase/cargo/office) +"xd" = ( +/obj/effect/floor_decal/steeldecal/steel_decals10, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/white, +/area/groundbase/medical/triage) +"xf" = ( +/obj/structure/noticeboard{ + pixel_y = -32 + }, +/turf/simulated/floor/tiled/white, +/area/medical/virology) +"xg" = ( +/obj/structure/filingcabinet/medical, +/obj/machinery/alarm, +/turf/simulated/floor/tiled/white, +/area/groundbase/medical/triage) +"xh" = ( +/obj/machinery/camera/network/medbay{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/groundbase/medical/triage) +"xi" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/simulated/floor/wood, +/area/groundbase/dorms/room7) +"xj" = ( +/obj/structure/filingcabinet/chestdrawer{ + name = "Scan Records" + }, +/obj/machinery/atmospherics/unary/vent_pump/on, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/groundbase/medical/triage) +"xk" = ( +/obj/machinery/camera/network/civilian{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/groundbase/civilian/chapel) +"xm" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/dark, +/area/groundbase/civilian/bar) +"xo" = ( +/obj/structure/table/reinforced, +/obj/machinery/chemical_dispenser/biochemistry/full, +/turf/simulated/floor/tiled/white, +/area/groundbase/medical/Chemistry) +"xp" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/command{ + id_tag = "RDdoor"; + name = "Research Director"; + req_access = list(30) + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/steel_ridged, +/area/groundbase/science/rd) +"xq" = ( +/obj/structure/stairs/spawner/west, +/turf/simulated/floor/outdoors/sidewalk/slab, +/area/groundbase/level2/nw) +"xr" = ( +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/groundbase/command/hop) +"xs" = ( +/obj/machinery/camera/network/civilian{ + dir = 1 + }, +/obj/machinery/smartfridge/produce/persistent_lossy, +/turf/simulated/floor/tiled/eris/cafe, +/area/groundbase/civilian/kitchen) +"xt" = ( +/obj/effect/landmark/vermin, +/obj/machinery/hologram/holopad, +/turf/simulated/floor/wood, +/area/groundbase/civilian/library) +"xu" = ( +/obj/structure/bed/chair/office/dark{ + dir = 1 + }, +/obj/effect/landmark/start/psych, +/obj/machinery/button/windowtint{ + id = "psych_office"; + layer = 3.3; + pixel_x = -17; + pixel_y = 31 + }, +/turf/simulated/floor/carpet/blue, +/area/groundbase/medical/psych) +"xv" = ( +/obj/machinery/photocopier, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/groundbase/science/rd) +"xw" = ( +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/groundbase/medical/triage) +"xx" = ( +/obj/machinery/keycard_auth{ + pixel_y = -28 + }, +/turf/simulated/floor/tiled/dark, +/area/groundbase/command/bridge) +"xy" = ( +/obj/machinery/door/blast/regular{ + density = 0; + dir = 4; + icon_state = "pdoor0"; + id = "xenobiopen1"; + name = "Pen 1 Blast Doors"; + opacity = 0 + }, +/obj/machinery/door/window/brigdoor/eastleft{ + dir = 2; + name = "Slime Pen 1"; + req_access = list(55) + }, +/turf/simulated/floor/reinforced, +/area/rnd/xenobiology) +"xz" = ( +/obj/machinery/atmospherics/portables_connector{ + dir = 8 + }, +/obj/machinery/portable_atmospherics/canister/oxygen/prechilled, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/machinery/door/window/brigdoor/southright{ + dir = 8; + req_access = list(); + req_one_access = list(5,24) + }, +/turf/simulated/floor/tiled/white, +/area/groundbase/medical/triage) +"xA" = ( +/turf/simulated/floor/tiled{ + edge_blending_priority = -1; + outdoors = 0 + }, +/area/groundbase/level2/nw) +"xB" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/simulated/floor/carpet, +/area/groundbase/command/hop) +"xD" = ( +/turf/simulated/floor/outdoors/sidewalk, +/area/groundbase/level2/sw) +"xE" = ( +/turf/simulated/mineral/cave, +/area/groundbase/level2/nw) +"xF" = ( +/obj/machinery/power/terminal{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/simulated/floor, +/area/maintenance/groundbase/substation/command) +"xG" = ( +/obj/effect/floor_decal/corner_steel_grid{ + dir = 10 + }, +/obj/machinery/body_scanconsole{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/groundbase/medical/triage) +"xJ" = ( +/obj/machinery/hologram/holopad, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled, +/area/groundbase/science/hall) +"xK" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/noticeboard{ + pixel_y = 32 + }, +/turf/simulated/floor/tiled, +/area/groundbase/cargo/office) +"xM" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/alarm, +/turf/simulated/floor/tiled/dark, +/area/groundbase/civilian/bar) +"xN" = ( +/obj/machinery/door/blast/regular{ + density = 0; + dir = 4; + icon_state = "pdoor0"; + id = "xenobiopen2"; + name = "Pen 2 Blast Doors"; + opacity = 0 + }, +/obj/machinery/door/window/brigdoor/eastleft{ + dir = 1; + name = "Slime Pen"; + req_access = list(55) + }, +/turf/simulated/floor/reinforced, +/area/rnd/xenobiology) +"xP" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/landmark/start/cargo, +/turf/simulated/floor/tiled, +/area/groundbase/cargo/office) +"xS" = ( +/obj/structure/table/glass, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/tiled/dark, +/area/groundbase/civilian/bar) +"xU" = ( +/obj/structure/grille, +/obj/machinery/door/firedoor, +/obj/structure/window/reinforced/polarized/full{ + id = "chef_office" + }, +/turf/simulated/floor, +/area/groundbase/civilian/kitchen/backroom) +"xV" = ( +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/machinery/power/apc{ + dir = 1 + }, +/obj/structure/cable{ + icon_state = "0-8" + }, +/turf/simulated/floor, +/area/maintenance/groundbase/substation/command) +"xW" = ( +/obj/structure/cable/yellow{ + icon_state = "16-0" + }, +/obj/structure/cable/yellow{ + icon_state = "0-4" + }, +/obj/machinery/atmospherics/pipe/zpipe/up/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/zpipe/up/scrubbers{ + dir = 4 + }, +/turf/simulated/wall, +/area/groundbase/level2/nw) +"xX" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/light, +/turf/simulated/floor/tiled, +/area/groundbase/science/hall) +"xY" = ( +/obj/machinery/computer/power_monitor{ + dir = 4; + throwpass = 1 + }, +/obj/structure/cable/green{ + icon_state = "1-8" + }, +/obj/machinery/camera/network/command{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/groundbase/command/bridge) +"xZ" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology) +"ya" = ( +/obj/machinery/computer/guestpass{ + dir = 8; + pixel_x = 25 + }, +/turf/simulated/floor/tiled, +/area/groundbase/science/hall) +"yb" = ( +/obj/machinery/door/firedoor, +/turf/simulated/floor/tiled, +/area/groundbase/cargo/office) +"yc" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/disposalpipe/junction{ + dir = 2; + icon_state = "pipe-j2" + }, +/turf/simulated/floor/tiled/dark, +/area/groundbase/dorms) +"ye" = ( +/obj/structure/table/bench/padded, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/effect/landmark/start/intern, +/turf/simulated/floor/tiled/dark, +/area/groundbase/civilian/bar) +"yh" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/dark, +/area/groundbase/civilian/bar) +"yj" = ( +/obj/structure/sign/directions/kitchen{ + pixel_x = -32 + }, +/obj/structure/sign/directions/library{ + dir = 1; + pixel_x = -32; + pixel_y = 6 + }, +/obj/structure/sign/directions/science{ + pixel_x = -32; + pixel_y = -6 + }, +/turf/simulated/floor/outdoors/grass/seasonal/notrees_nomobs_lowsnow, +/area/groundbase/level2/nw) +"yk" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/command{ + name = "Site Manager's Quarters"; + req_access = list(20) + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/groundbase/command/captainq) +"ym" = ( +/obj/structure/table/reinforced, +/turf/simulated/floor/tiled, +/area/groundbase/command/hop) +"yn" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/landmark/vines, +/turf/simulated/floor/outdoors/sidewalk/side, +/area/groundbase/level2/nw) +"yo" = ( +/obj/machinery/light/small, +/turf/simulated/floor/tiled{ + edge_blending_priority = -1; + outdoors = 1 + }, +/area/groundbase/command/bridge) +"yp" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/simulated/floor/wood, +/area/groundbase/civilian/library) +"yq" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/light/floortube{ + dir = 4; + pixel_x = 6 + }, +/turf/simulated/floor/tiled/eris/cafe, +/area/groundbase/civilian/kitchen) +"yr" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled, +/area/groundbase/cargo/office) +"yt" = ( +/obj/structure/table/woodentable, +/obj/item/weapon/paper_bin{ + pixel_y = 7 + }, +/obj/item/weapon/pen, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/wood, +/area/groundbase/civilian/library) +"yu" = ( +/obj/machinery/computer/message_monitor{ + dir = 4 + }, +/obj/item/device/radio/intercom{ + dir = 8; + pixel_x = -24 + }, +/turf/simulated/floor/tiled, +/area/groundbase/science/server) +"yv" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/groundbase/command/hop) +"yw" = ( +/obj/machinery/light, +/turf/simulated/floor/tiled, +/area/groundbase/science/xenohall) +"yy" = ( +/obj/structure/bed/chair/sofa/corp/left{ + dir = 8 + }, +/turf/simulated/floor/wood, +/area/groundbase/dorms/room7) +"yz" = ( +/obj/machinery/requests_console{ + department = "Virology"; + departmentType = 2; + pixel_y = 30 + }, +/turf/simulated/floor/tiled/white, +/area/medical/virology) +"yB" = ( +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/light_switch{ + dir = 1; + pixel_y = -30 + }, +/turf/simulated/floor/wood, +/area/groundbase/dorms/room1) +"yC" = ( +/obj/structure/toilet{ + dir = 8 + }, +/obj/machinery/light, +/turf/simulated/floor/tiled/white, +/area/groundbase/dorms/room2) +"yE" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/eris/cafe, +/area/groundbase/civilian/kitchen) +"yF" = ( +/obj/machinery/botany/editor, +/turf/simulated/floor/tiled, +/area/groundbase/science/xenobot) +"yG" = ( +/turf/simulated/floor/wood, +/area/groundbase/medical/psych) +"yH" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/groundbase/cargo/office) +"yI" = ( +/obj/machinery/station_map{ + dir = 8; + pixel_x = 32 + }, +/turf/simulated/floor/tiled/dark, +/area/groundbase/civilian/bar) +"yJ" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/obj/machinery/firealarm{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/groundbase/medical/lobby) +"yL" = ( +/obj/structure/grille, +/obj/machinery/door/firedoor, +/obj/structure/window/reinforced/polarized/full{ + id = "psych_office" + }, +/turf/simulated/floor, +/area/groundbase/medical/psych) +"yM" = ( +/obj/machinery/portable_atmospherics/canister/carbon_dioxide, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/groundbase/science/xenobot/storage) +"yN" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/groundbase/science/robotics) +"yO" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/glass_research{ + name = "Xenoflora Research"; + req_one_access = list(77) + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/groundbase/science/xenobot) +"yP" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/eris/cafe, +/area/groundbase/civilian/kitchen) +"yS" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/turf/simulated/floor/outdoors/grass/seasonal/notrees_nomobs_lowsnow, +/area/groundbase/level2/nw) +"yT" = ( +/obj/structure/filingcabinet/chestdrawer, +/turf/simulated/floor/tiled, +/area/groundbase/science/rd) +"yU" = ( +/obj/structure/closet/secure_closet/hydroponics/sci{ + req_access = list(77) + }, +/turf/simulated/floor/tiled, +/area/groundbase/science/xenobot) +"yW" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/outdoors/sidewalk/slab, +/area/groundbase/level2/nw) +"yX" = ( +/obj/structure/janitorialcart, +/turf/simulated/floor/tiled, +/area/groundbase/civilian/janitor) +"yY" = ( +/obj/structure/closet/l3closet/virology, +/obj/machinery/light_switch{ + dir = 8; + pixel_x = 30 + }, +/turf/simulated/floor/tiled/white, +/area/medical/virology) +"za" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled, +/area/groundbase/cargo/office) +"zb" = ( +/obj/machinery/light, +/turf/simulated/floor/tiled, +/area/groundbase/civilian/janitor) +"zc" = ( +/obj/structure/table/marble, +/obj/machinery/chemical_dispenser/bar_soft/full{ + dir = 8 + }, +/obj/structure/noticeboard{ + pixel_y = -32 + }, +/turf/simulated/floor/lino{ + edge_blending_priority = 0.1 + }, +/area/groundbase/civilian/kitchen) +"zd" = ( +/obj/machinery/computer/security{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "1-8" + }, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/dark, +/area/groundbase/command/bridge) +"zf" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/table/standard, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/groundbase/cargo/office) +"zg" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/simulated/floor/outdoors/sidewalk/side, +/area/groundbase/level2/se) +"zh" = ( +/obj/machinery/alarm{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/groundbase/dorms/bathroom) +"zi" = ( +/obj/structure/bed/chair/comfy/brown, +/obj/effect/landmark/start/visitor, +/turf/simulated/floor/wood, +/area/groundbase/civilian/library) +"zj" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/wood, +/area/groundbase/medical/psych) +"zk" = ( +/obj/structure/table/reinforced, +/obj/machinery/photocopier/faxmachine{ + department = "Head of Personnel's Office" + }, +/turf/simulated/floor/carpet, +/area/groundbase/command/hop) +"zn" = ( +/obj/machinery/light/floortube{ + pixel_y = 4 + }, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology) +"zo" = ( +/obj/machinery/libraryscanner, +/turf/simulated/floor/carpet, +/area/groundbase/civilian/library) +"zp" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled, +/area/groundbase/cargo/office) +"zs" = ( +/turf/simulated/wall, +/area/groundbase/civilian/chapel) +"zt" = ( +/obj/structure/fence/corner, +/turf/simulated/floor/outdoors/grass/seasonal/notrees_nomobs_lowsnow, +/area/groundbase/cargo/bay) +"zw" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/groundbase/medical/triage) +"zx" = ( +/turf/simulated/floor/glass/reinforced{ + outdoors = 1 + }, +/area/groundbase/level2/eastspur) +"zz" = ( +/obj/machinery/vending/wardrobe/janidrobe, +/turf/simulated/floor/tiled, +/area/groundbase/civilian/janitor) +"zA" = ( +/obj/machinery/computer/aifixer{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/groundbase/science/rd) +"zB" = ( +/obj/machinery/door/firedoor, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 8; + health = 1e+006 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/grille, +/obj/structure/disposalpipe/segment, +/obj/machinery/door/blast/regular{ + density = 0; + dir = 4; + icon_state = "pdoor0"; + id = "xenobiopen4"; + name = "Pen 4 Blast Doors"; + opacity = 0 + }, +/turf/simulated/floor/reinforced, +/area/rnd/xenobiology) +"zC" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/obj/machinery/light, +/turf/simulated/floor/tiled/dark, +/area/groundbase/command/hall) +"zE" = ( +/turf/simulated/floor/wood, +/area/groundbase/dorms/room6) +"zF" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/landmark{ + name = "lightsout" + }, +/obj/machinery/hologram/holopad, +/turf/simulated/floor/tiled/white, +/area/groundbase/medical/triage) +"zG" = ( +/obj/structure/table/woodentable, +/obj/item/device/flashlight/lamp{ + pixel_x = 2; + pixel_y = 7 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/machinery/alarm{ + dir = 4 + }, +/turf/simulated/floor/lino, +/area/groundbase/civilian/chapel/office) +"zH" = ( +/obj/structure/reagent_dispensers/watertank, +/obj/item/weapon/reagent_containers/glass/bucket, +/obj/machinery/camera/network/research/xenobio{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/groundbase/science/xenobot) +"zI" = ( +/obj/machinery/door/blast/regular{ + density = 0; + dir = 4; + icon_state = "pdoor0"; + id = "xenobiopen3"; + name = "Pen 3 Blast Doors"; + opacity = 0 + }, +/obj/machinery/door/window/brigdoor/eastleft{ + dir = 2; + name = "Slime Pen 1"; + req_access = list(55) + }, +/turf/simulated/floor/reinforced, +/area/rnd/xenobiology) +"zJ" = ( +/obj/machinery/button/remote/blast_door{ + id = "kitchen"; + name = "Kitchen shutters"; + pixel_x = -3; + pixel_y = 26 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/turf/simulated/floor/tiled/eris/cafe, +/area/groundbase/civilian/kitchen) +"zK" = ( +/obj/machinery/door/firedoor, +/obj/item/weapon/folder/white, +/obj/structure/table/reinforced, +/obj/machinery/door/window/brigdoor/westright{ + dir = 4; + name = "Research Desk"; + req_access = list(7); + req_one_access = list(47) + }, +/obj/item/weapon/paper_bin{ + pixel_x = -1; + pixel_y = 4 + }, +/obj/item/weapon/pen, +/obj/machinery/door/blast/angled_shutter/open{ + dir = 4; + id = "rndshutters"; + name = "Privacy Shutters" + }, +/turf/simulated/floor{ + edge_blending_priority = -1; + outdoors = 1 + }, +/area/groundbase/science/rnd) +"zL" = ( +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/turf/simulated/floor/outdoors/sidewalk/slab, +/area/groundbase/level2/nw) +"zO" = ( +/obj/structure/closet/l3closet/janitor, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/groundbase/civilian/janitor) +"zP" = ( +/obj/machinery/smartfridge/drying_rack, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/groundbase/civilian/hydroponics) +"zR" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/turf/simulated/floor/outdoors/grass/seasonal/notrees_nomobs_lowsnow, +/area/groundbase/civilian/janitor) +"zS" = ( +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/groundbase/civilian/chapel) +"zT" = ( +/turf/simulated/wall/r_wall, +/area/groundbase/science/server) +"zV" = ( +/obj/structure/table/steel, +/obj/machinery/reagentgrinder{ + pixel_y = 11 + }, +/obj/item/stack/material/phoron{ + amount = 6 + }, +/obj/machinery/light, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology) +"zW" = ( +/obj/machinery/light, +/turf/simulated/floor/tiled/white, +/area/groundbase/medical/triage) +"zX" = ( +/obj/structure/railing/grey{ + dir = 8 + }, +/turf/simulated/open, +/area/groundbase/cargo/office) +"zZ" = ( +/obj/structure/sign/painting/library_secure{ + pixel_x = 30 + }, +/turf/simulated/floor/tiled/dark, +/area/groundbase/command/meeting) +"Aa" = ( +/obj/machinery/door/blast/regular{ + density = 0; + dir = 4; + icon_state = "pdoor0"; + id = "xenobiopen5"; + name = "Pen 5 Blast Doors"; + opacity = 0 + }, +/obj/machinery/door/window/brigdoor/eastleft{ + dir = 2; + name = "Slime Pen 1"; + req_access = list(55) + }, +/turf/simulated/floor/reinforced, +/area/rnd/xenobiology) +"Ac" = ( +/obj/machinery/door/airlock/freezer{ + name = "Kitchen Cold Room"; + req_access = list(28) + }, +/obj/machinery/door/firedoor, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/bmarble, +/area/groundbase/civilian/kitchen/freezer) +"Ad" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/simulated/floor/outdoors/sidewalk/side, +/area/groundbase/level2/nw) +"Af" = ( +/obj/machinery/photocopier, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/groundbase/command/meeting) +"Ag" = ( +/obj/structure/table/glass, +/obj/item/weapon/book/manual/virology, +/obj/item/device/antibody_scanner, +/obj/item/weapon/reagent_containers/glass/beaker, +/obj/item/weapon/paper_bin, +/obj/item/weapon/folder/white, +/obj/item/weapon/pen, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/medical/virology) +"Ah" = ( +/obj/effect/floor_decal/chapel{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/groundbase/civilian/chapel) +"Ai" = ( +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/groundbase/dorms) +"Aj" = ( +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/turf/simulated/floor/tiled, +/area/groundbase/civilian/hydroponics) +"Ak" = ( +/obj/structure/table/woodentable, +/turf/simulated/floor/carpet, +/area/groundbase/civilian/library) +"Al" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology) +"Am" = ( +/obj/structure/railing/grey, +/turf/simulated/floor{ + edge_blending_priority = -1; + outdoors = 1 + }, +/area/groundbase/level2/ne) +"An" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/groundbase/science/robotics) +"Ao" = ( +/obj/machinery/mecha_part_fabricator/pros, +/turf/simulated/floor/tiled, +/area/groundbase/science/robotics) +"Ap" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/carpet/blucarpet, +/area/groundbase/command/captain) +"Aq" = ( +/obj/structure/sign/directions/security{ + pixel_x = 32 + }, +/turf/simulated/floor/outdoors/grass/seasonal/notrees_nomobs_lowsnow, +/area/groundbase/level2/nw) +"As" = ( +/obj/structure/table/hardwoodtable, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/dark, +/area/groundbase/dorms) +"At" = ( +/turf/simulated/floor/outdoors/newdirt, +/area/groundbase/level2/se) +"Au" = ( +/obj/effect/landmark{ + name = "lightsout" + }, +/turf/simulated/floor/tiled, +/area/groundbase/science/circuits) +"Av" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/groundbase/science/hall) +"Aw" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/outdoors/sidewalk/side, +/area/groundbase/level2/ne) +"Ax" = ( +/obj/structure/sink/kitchen{ + dir = 8; + pixel_x = -11; + pixel_y = 14 + }, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology) +"Ay" = ( +/obj/structure/closet/walllocker_double/east, +/obj/item/weapon/circuitboard/aicore{ + pixel_x = -2; + pixel_y = 4 + }, +/obj/item/weapon/circuitboard/teleporter, +/obj/random/paicard{ + pixel_x = 4 + }, +/obj/item/device/taperecorder{ + pixel_x = -3 + }, +/turf/simulated/floor/tiled, +/area/groundbase/science/rd) +"AA" = ( +/obj/effect/floor_decal/chapel, +/turf/simulated/floor/tiled/dark, +/area/groundbase/civilian/chapel) +"AB" = ( +/obj/structure/bed/chair/sofa/corp{ + dir = 4 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/obj/machinery/alarm{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/groundbase/dorms/room8) +"AC" = ( +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/dark, +/area/groundbase/science/hall) +"AD" = ( +/turf/simulated/mineral/cave, +/area/groundbase/level2/westspur) +"AF" = ( +/turf/simulated/floor/tiled/freezer/cold, +/area/groundbase/civilian/kitchen/freezer) +"AG" = ( +/obj/machinery/newscaster{ + layer = 3.3; + pixel_x = -27 + }, +/turf/simulated/floor/wood, +/area/groundbase/civilian/library) +"AH" = ( +/obj/machinery/vending/wardrobe/genedrobe, +/turf/simulated/floor/tiled, +/area/groundbase/science/hall) +"AI" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/turf/simulated/floor/wood, +/area/groundbase/medical/psych) +"AK" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/dark, +/area/groundbase/civilian/bar) +"AL" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/dark, +/area/groundbase/science/robotics) +"AM" = ( +/obj/machinery/power/apc{ + dir = 8 + }, +/obj/structure/cable/yellow{ + icon_state = "0-2" + }, +/turf/simulated/floor/outdoors/sidewalk/slab, +/area/groundbase/cargo/bay) +"AN" = ( +/obj/structure/sign/department/bridge, +/turf/simulated/wall/r_wall, +/area/groundbase/command/bridge) +"AO" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/machinery/light{ + dir = 4 + }, +/obj/random/vendorall, +/turf/simulated/floor/tiled/dark, +/area/groundbase/dorms) +"AR" = ( +/obj/structure/closet{ + name = "robotics equipment" + }, +/obj/item/weapon/cell/high{ + charge = 100; + maxcharge = 15000; + pixel_x = 5; + pixel_y = -5 + }, +/obj/item/weapon/cell/high{ + charge = 100; + maxcharge = 15000; + pixel_x = 5; + pixel_y = -5 + }, +/obj/item/weapon/cell/high{ + charge = 100; + maxcharge = 15000; + pixel_x = 5; + pixel_y = -5 + }, +/obj/item/weapon/cell/high{ + charge = 100; + maxcharge = 15000; + pixel_x = 5; + pixel_y = -5 + }, +/obj/item/weapon/storage/firstaid/regular{ + empty = 1; + name = "First-Aid (empty)" + }, +/obj/item/weapon/storage/firstaid/regular{ + empty = 1; + name = "First-Aid (empty)" + }, +/obj/item/weapon/storage/firstaid/regular{ + empty = 1; + name = "First-Aid (empty)" + }, +/obj/item/device/healthanalyzer, +/obj/item/device/healthanalyzer, +/obj/item/device/healthanalyzer, +/obj/item/device/flash/synthetic, +/obj/item/device/flash/synthetic, +/obj/item/device/flash/synthetic, +/obj/item/device/flash/synthetic, +/obj/item/device/flash/synthetic, +/obj/item/device/flash/synthetic, +/obj/item/stack/cable_coil, +/obj/item/stack/cable_coil, +/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/clothing/glasses/omnihud/rnd, +/obj/item/weapon/storage/toolbox/electrical{ + pixel_x = 1; + pixel_y = 6 + }, +/obj/item/weapon/storage/belt/utility, +/obj/item/device/multitool{ + pixel_x = 3 + }, +/obj/item/weapon/storage/toolbox/mechanical, +/obj/item/weapon/tool/crowbar, +/obj/item/weapon/storage/toolbox/mechanical, +/obj/item/clothing/glasses/welding, +/obj/item/clothing/glasses/welding, +/obj/item/clothing/head/welding{ + pixel_x = -3; + pixel_y = 5 + }, +/obj/item/clothing/head/welding{ + pixel_x = -3; + pixel_y = 5 + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/groundbase/science/robotics) +"AS" = ( +/obj/structure/table/bench/padded, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/effect/landmark/start/visitor, +/turf/simulated/floor/tiled/dark, +/area/groundbase/civilian/bar) +"AT" = ( +/turf/simulated/floor/outdoors/grass/seasonal/notrees_nomobs_lowsnow, +/area/groundbase/science/xenobot) +"AU" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/simulated/wall, +/area/groundbase/cargo/office) +"AX" = ( +/obj/structure/table/woodentable, +/obj/random/coin/sometimes, +/obj/item/device/flashlight/lamp/green{ + pixel_x = 1; + pixel_y = 5 + }, +/turf/simulated/floor/wood, +/area/groundbase/civilian/library) +"AY" = ( +/obj/structure/table/woodentable, +/obj/machinery/microwave, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/obj/structure/cable/yellow{ + icon_state = "0-2" + }, +/obj/machinery/power/apc{ + dir = 4; + nightshift_setting = 2 + }, +/turf/simulated/floor/wood, +/area/groundbase/dorms/room2) +"AZ" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/groundbase/science/xenohall) +"Bb" = ( +/obj/structure/railing/grey{ + dir = 4 + }, +/turf/simulated/open, +/area/groundbase/civilian/bar/upper) +"Bc" = ( +/turf/simulated/floor/tiled/white, +/area/groundbase/dorms/room5) +"Be" = ( +/obj/structure/bed/chair/sofa/corp/left, +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/atmospherics/unary/vent_pump/on, +/turf/simulated/floor/wood, +/area/groundbase/dorms/room4) +"Bf" = ( +/turf/simulated/floor/outdoors/grass/seasonal/notrees_nomobs_lowsnow, +/area/groundbase/command/hop) +"Bg" = ( +/obj/structure/closet/wardrobe/virology_white, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/medical/virology) +"Bh" = ( +/obj/machinery/mech_recharger, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/groundbase/science/robotics) +"Bi" = ( +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/simulated/floor/wood, +/area/groundbase/dorms/room6) +"Bj" = ( +/obj/structure/bed/chair/sofa/corp{ + dir = 8 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/obj/machinery/light_switch{ + dir = 8; + pixel_x = 30 + }, +/turf/simulated/floor/wood, +/area/groundbase/dorms/room7) +"Bl" = ( +/turf/simulated/wall/r_wall, +/area/groundbase/science/picnic) +"Bm" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/morgue{ + dir = 2; + name = "Private Study"; + req_access = list(37) + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/carpet, +/area/groundbase/civilian/library) +"Bn" = ( +/obj/machinery/vending/wardrobe/hydrobe, +/turf/simulated/floor/tiled, +/area/groundbase/civilian/hydroponics) +"Bo" = ( +/turf/simulated/floor/outdoors/grass/seasonal/notrees_nomobs_lowsnow, +/area/groundbase/level2/se) +"Bq" = ( +/obj/machinery/camera/network/civilian{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/groundbase/civilian/hydroponics) +"Br" = ( +/turf/simulated/floor/tiled{ + edge_blending_priority = -1; + outdoors = 0 + }, +/area/groundbase/science/picnic) +"Bs" = ( +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/groundbase/dorms) +"Bt" = ( +/obj/machinery/firealarm{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/groundbase/science/server) +"Bu" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/machinery/door/firedoor, +/obj/machinery/door/blast/regular{ + closed_layer = 10; + density = 0; + dir = 4; + icon_state = "pdoor0"; + id = "virologyquar"; + layer = 1; + name = "Blast Doors"; + opacity = 0; + open_layer = 1 + }, +/turf/simulated/floor, +/area/medical/virology) +"Bv" = ( +/obj/structure/sign/department/robo, +/turf/simulated/wall/r_wall, +/area/groundbase/science/robotics) +"Bw" = ( +/obj/structure/bed/chair/sofa/bench/right{ + dir = 4 + }, +/turf/simulated/floor/outdoors/newdirt, +/area/groundbase/level2/nw) +"Bx" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/medical, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/groundbase/medical/lobby) +"By" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/turf/simulated/floor/outdoors/grass/seasonal/notrees_nomobs_lowsnow, +/area/groundbase/level2/nw) +"Bz" = ( +/turf/simulated/floor/lino{ + edge_blending_priority = 0.1 + }, +/area/groundbase/civilian/kitchen) +"BB" = ( +/obj/structure/bed/chair/sofa/pew/left{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/groundbase/civilian/chapel) +"BC" = ( +/obj/machinery/light, +/obj/structure/bed/double/padded, +/obj/item/weapon/bedsheet/browndouble, +/turf/simulated/floor/wood, +/area/groundbase/dorms/room4) +"BD" = ( +/obj/structure/bed/chair/sofa/corp/right, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/wood, +/area/groundbase/dorms/room6) +"BF" = ( +/obj/structure/table/glass, +/obj/machinery/reagentgrinder, +/turf/simulated/floor/tiled, +/area/groundbase/science/xenobot) +"BI" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled{ + edge_blending_priority = -1; + outdoors = 0 + }, +/area/groundbase/cargo/office) +"BK" = ( +/obj/structure/sink/kitchen{ + pixel_y = 22 + }, +/turf/simulated/floor/tiled, +/area/groundbase/civilian/janitor) +"BO" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/freezer{ + name = "Chef Backroom"; + req_access = list(28) + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/bmarble, +/area/groundbase/civilian/kitchen/backroom) +"BP" = ( +/turf/simulated/wall/r_wall, +/area/groundbase/command/bridge) +"BQ" = ( +/obj/machinery/computer/rcon{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "1-8" + }, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/dark, +/area/groundbase/command/bridge) +"BR" = ( +/turf/simulated/floor/tiled, +/area/groundbase/science/xenobot) +"BS" = ( +/obj/structure/closet/secure_closet/hydroponics, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/groundbase/civilian/hydroponics) +"BT" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass{ + name = "Bar" + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/simulated/floor/bmarble, +/area/groundbase/civilian/bar) +"BU" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/structure/disposalpipe/tagger{ + dir = 8; + name = "package tagger - Resleeving"; + sort_tag = "Resleeving" + }, +/turf/simulated/floor/tiled/white, +/area/groundbase/dorms/bathroom) +"BV" = ( +/obj/structure/table/woodentable, +/obj/item/weapon/paper_bin{ + pixel_y = 4 + }, +/obj/item/weapon/pen{ + pixel_y = 4 + }, +/obj/item/weapon/clipboard, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/simulated/floor/carpet/blue, +/area/groundbase/medical/psych) +"BW" = ( +/obj/structure/railing/grey{ + dir = 4 + }, +/turf/simulated/open, +/area/groundbase/level2/northspur) +"BX" = ( +/obj/machinery/shower{ + pixel_y = 16 + }, +/obj/structure/curtain/open/shower, +/turf/simulated/floor/tiled{ + icon_state = "techmaint" + }, +/area/groundbase/dorms/room3) +"BY" = ( +/obj/structure/mirror{ + dir = 4; + pixel_x = -23 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/groundbase/dorms/bathroom) +"BZ" = ( +/obj/structure/railing/grey{ + dir = 1 + }, +/turf/simulated/open, +/area/groundbase/level2/westspur) +"Ca" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/structure/disposalpipe/junction{ + dir = 8; + icon_state = "pipe-j2" + }, +/turf/simulated/floor/tiled/dark, +/area/groundbase/dorms) +"Cb" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/structure/disposalpipe/junction, +/turf/simulated/floor/tiled/dark, +/area/groundbase/dorms) +"Cc" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/alarm{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/groundbase/science/rnd) +"Cd" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled, +/area/groundbase/science/hall) +"Ce" = ( +/obj/structure/bookcase/bookcart, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/wood, +/area/groundbase/civilian/library) +"Cf" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/groundbase/cargo/office) +"Cg" = ( +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/obj/machinery/disposal, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/wood, +/area/groundbase/dorms/room8) +"Ch" = ( +/obj/structure/table/glass, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/dark, +/area/groundbase/civilian/bar) +"Cj" = ( +/obj/structure/sign/directions/stairs_down{ + pixel_y = 38 + }, +/obj/structure/sign/directions/engineering{ + pixel_y = 26 + }, +/turf/simulated/floor/outdoors/grass/seasonal/notrees_nomobs_lowsnow, +/area/groundbase/level2/nw) +"Ck" = ( +/obj/structure/closet/secure_closet/hop2, +/obj/machinery/light_switch{ + pixel_y = 30 + }, +/turf/simulated/floor/tiled, +/area/groundbase/command/hop) +"Cl" = ( +/obj/structure/bed/chair/wood/wings, +/obj/effect/landmark/start/chaplain, +/turf/simulated/floor/lino, +/area/groundbase/civilian/chapel/office) +"Co" = ( +/obj/effect/mouse_hole_spawner{ + dir = 4 + }, +/turf/simulated/floor/outdoors/grass/seasonal/notrees_nomobs_lowsnow, +/area/groundbase/level2/se) +"Cq" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/wood, +/area/groundbase/command/captain) +"Cr" = ( +/obj/effect/landmark{ + name = "maint_pred" + }, +/turf/simulated/floor/outdoors/newdirt_nograss{ + outdoors = 0 + }, +/area/groundbase/unexplored/rock) +"Cs" = ( +/obj/structure/sign/department/sci, +/turf/simulated/wall/r_wall, +/area/groundbase/science/rnd) +"Ct" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/obj/random/vendorall, +/turf/simulated/floor/tiled/dark, +/area/groundbase/dorms) +"Cu" = ( +/obj/machinery/recharge_station, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled/dark, +/area/groundbase/dorms) +"Cw" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/simulated/floor/outdoors/sidewalk, +/area/groundbase/level2/nw) +"Cx" = ( +/obj/structure/railing/grey, +/obj/structure/railing/grey{ + dir = 8 + }, +/turf/simulated/open, +/area/groundbase/civilian/bar/upper) +"Cy" = ( +/obj/structure/janitorialcart, +/obj/machinery/newscaster{ + layer = 3.3; + pixel_x = -27 + }, +/turf/simulated/floor/tiled, +/area/groundbase/civilian/janitor) +"Cz" = ( +/turf/simulated/wall, +/area/groundbase/cargo/qm) +"CA" = ( +/obj/machinery/autolathe{ + dir = 1; + hacked = 1 + }, +/turf/simulated/floor/tiled, +/area/groundbase/science/robotics) +"CB" = ( +/turf/simulated/wall/r_wall, +/area/groundbase/dorms/room5) +"CC" = ( +/obj/item/weapon/storage/briefcase, +/obj/item/weapon/storage/briefcase, +/obj/structure/table/rack, +/obj/machinery/light/small, +/turf/simulated/floor/carpet, +/area/groundbase/civilian/library) +"CD" = ( +/obj/structure/railing/grey{ + dir = 8 + }, +/obj/machinery/camera/network/civilian{ + dir = 1 + }, +/turf/simulated/open, +/area/groundbase/civilian/bar) +"CE" = ( +/turf/simulated/floor/wood, +/area/groundbase/dorms/room8) +"CF" = ( +/obj/machinery/recharge_station, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled{ + edge_blending_priority = -1; + outdoors = 1 + }, +/area/groundbase/science/xenobot) +"CG" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/turf/simulated/floor/outdoors/sidewalk/slab, +/area/groundbase/level2/se) +"CH" = ( +/obj/machinery/newscaster{ + layer = 3.3; + pixel_x = -27 + }, +/turf/simulated/floor/tiled/dark, +/area/groundbase/dorms) +"CJ" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/white, +/area/medical/virology) +"CK" = ( +/turf/simulated/floor/tiled{ + edge_blending_priority = -1; + outdoors = 1 + }, +/area/groundbase/command/bridge) +"CL" = ( +/obj/structure/table/woodentable, +/turf/simulated/floor/carpet/blue, +/area/groundbase/medical/psych) +"CN" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/white, +/area/groundbase/medical/triage) +"CP" = ( +/obj/machinery/icecream_vat, +/obj/machinery/power/apc{ + dir = 1 + }, +/obj/structure/cable/yellow{ + icon_state = "0-4" + }, +/turf/simulated/floor/tiled/freezer/cold, +/area/groundbase/civilian/kitchen/freezer) +"CQ" = ( +/obj/structure/table/standard, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/tiled/eris/cafe, +/area/groundbase/civilian/kitchen) +"CR" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/obj/effect/landmark/start/cargo, +/turf/simulated/floor/tiled/steel_grid, +/area/groundbase/cargo/office) +"CS" = ( +/obj/machinery/door/firedoor, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 8; + health = 1e+006 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/grille, +/obj/structure/disposalpipe/segment, +/obj/machinery/door/blast/regular{ + density = 0; + dir = 4; + icon_state = "pdoor0"; + id = "xenobiopen6"; + name = "Pen 6 Blast Doors"; + opacity = 0 + }, +/turf/simulated/floor/reinforced, +/area/rnd/xenobiology) +"CT" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled, +/area/groundbase/command/hop) +"CV" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/white, +/area/groundbase/medical/triage) +"CW" = ( +/obj/machinery/alarm{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/groundbase/civilian/library) +"CX" = ( +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/disposalpipe/sortjunction/flipped{ + dir = 1; + name = "Library"; + sortType = "Library" + }, +/turf/simulated/floor/outdoors/sidewalk/slab, +/area/groundbase/level2/nw) +"CZ" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/groundbase/civilian/chapel) +"Da" = ( +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/simulated/floor/outdoors/sidewalk/slab, +/area/groundbase/level2/nw) +"Db" = ( +/turf/simulated/wall/r_wall, +/area/groundbase/science/xenobot/storage) +"Dc" = ( +/obj/machinery/light_switch{ + pixel_x = 16; + pixel_y = 30 + }, +/turf/simulated/floor/tiled/freezer/cold, +/area/groundbase/civilian/kitchen/freezer) +"Dd" = ( +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/outdoors/sidewalk, +/area/groundbase/level2/ne) +"De" = ( +/obj/structure/bed/chair/sofa/bench/left{ + dir = 1 + }, +/turf/simulated/floor/outdoors/newdirt, +/area/groundbase/level2/ne) +"Df" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/turf/simulated/floor/wood, +/area/groundbase/dorms/room4) +"Dh" = ( +/obj/structure/table/standard, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/item/weapon/storage/firstaid/surgery, +/obj/item/device/robotanalyzer, +/obj/item/device/mmi/digital/posibrain, +/obj/item/device/mmi, +/obj/item/weapon/paper{ + desc = ""; + info = "Stop installing NIFs in here you clods! Unless it's on a synth. Otherwise, STOP DOING IT! You're killing people! -Management"; + name = "note to science staff" + }, +/turf/simulated/floor/tiled, +/area/groundbase/science/robotics) +"Dj" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/turf/simulated/floor/tiled/dark, +/area/groundbase/command/bridge) +"Dk" = ( +/obj/machinery/conveyor{ + dir = 1; + id = "packageSort1" + }, +/obj/structure/plasticflaps, +/turf/simulated/floor/tiled, +/area/groundbase/cargo/office) +"Dl" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/groundbase/dorms/room1) +"Dm" = ( +/obj/structure/table/standard, +/obj/item/device/retail_scanner/science, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/structure/noticeboard{ + pixel_x = 32 + }, +/turf/simulated/floor/tiled, +/area/groundbase/science/rnd) +"Dn" = ( +/obj/machinery/power/apc{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "0-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled, +/area/groundbase/science/circuits) +"Do" = ( +/turf/simulated/wall, +/area/groundbase/civilian/janitor) +"Dp" = ( +/obj/structure/closet/secure_closet/freezer/meat, +/turf/simulated/floor/tiled/freezer/cold, +/area/groundbase/civilian/kitchen/freezer) +"Dq" = ( +/obj/structure/bed/chair/comfy/yellow{ + desc = "A throne shouldn't be comfy, but this one is."; + name = "High Throne of the Fourty-Fifth Age" + }, +/obj/machinery/newscaster{ + pixel_y = 28 + }, +/obj/effect/landmark/start/librarian, +/turf/simulated/floor/carpet, +/area/groundbase/civilian/library) +"Dr" = ( +/obj/structure/disposalpipe/sortjunction/wildcard/flipped{ + dir = 1 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/computer/guestpass{ + pixel_y = 24 + }, +/turf/simulated/floor/tiled, +/area/groundbase/cargo/office) +"Ds" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/carpet, +/area/groundbase/civilian/chapel) +"Dt" = ( +/obj/machinery/item_bank{ + dir = 8; + pixel_x = 25 + }, +/turf/simulated/floor/tiled/dark, +/area/groundbase/civilian/bar) +"Du" = ( +/turf/simulated/wall, +/area/groundbase/medical/lobby) +"Dv" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/turf/simulated/floor/wood, +/area/groundbase/civilian/kitchen/backroom) +"Dw" = ( +/obj/structure/table/bench/sifwooden/padded, +/turf/simulated/floor/tiled/dark, +/area/groundbase/dorms) +"Dx" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/camera/network/civilian, +/turf/simulated/floor/tiled/dark, +/area/groundbase/civilian/bar) +"Dy" = ( +/obj/structure/table/reinforced, +/obj/machinery/requests_console{ + announcementConsole = 1; + department = "Bridge"; + departmentType = 5; + name = "Bridge RC"; + pixel_y = 32 + }, +/obj/machinery/recharger, +/turf/simulated/floor/tiled, +/area/groundbase/command/hop) +"Dz" = ( +/obj/machinery/door/blast/regular{ + id = "xenobiodiv5"; + layer = 8; + name = "Divider" + }, +/turf/simulated/floor/reinforced, +/area/rnd/xenobiology) +"DA" = ( +/obj/machinery/firealarm{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/groundbase/command/hop) +"DD" = ( +/obj/structure/table/steel, +/obj/item/weapon/storage/box/lights/mixed, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology) +"DE" = ( +/obj/machinery/door/window/brigdoor/westright{ + dir = 4; + name = "Robotics Desk"; + req_access = list(29,47); + req_one_access = null + }, +/obj/machinery/door/firedoor/glass, +/obj/structure/table/reinforced, +/obj/machinery/door/blast/angled_shutter/open{ + dir = 4; + id = "robshutters"; + name = "Privacy Shutters" + }, +/turf/simulated/floor{ + edge_blending_priority = -1; + outdoors = 1 + }, +/area/groundbase/science/robotics) +"DF" = ( +/obj/machinery/atmospherics/pipe/manifold/visible, +/obj/machinery/meter, +/turf/simulated/floor/tiled, +/area/groundbase/science/xenobot/storage) +"DG" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/dark, +/area/groundbase/command/bridge) +"DH" = ( +/obj/machinery/button/remote/blast_door{ + id = "xenobiopen8"; + name = "Pen 8 Containment"; + pixel_y = 38; + req_access = list(55) + }, +/obj/machinery/button/remote/blast_door{ + id = "xenobiodiv6"; + name = "Divider"; + pixel_y = 27; + req_access = list(55) + }, +/obj/machinery/atmospherics/unary/vent_pump/on, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology) +"DI" = ( +/obj/machinery/hologram/holopad, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/groundbase/science/xenobot/storage) +"DJ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/groundbase/science/hall) +"DK" = ( +/obj/machinery/smartfridge/secure/extract, +/obj/machinery/power/apc{ + dir = 1 + }, +/obj/structure/cable/yellow{ + icon_state = "0-2" + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology) +"DL" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/wood, +/area/groundbase/dorms/room1) +"DM" = ( +/obj/effect/floor_decal/corner_steel_grid{ + dir = 10 + }, +/obj/machinery/bodyscanner{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/groundbase/medical/triage) +"DN" = ( +/obj/machinery/shower{ + pixel_y = 16 + }, +/obj/structure/curtain/open/shower, +/turf/simulated/floor/tiled{ + icon_state = "techmaint" + }, +/area/groundbase/dorms/room4) +"DO" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/white, +/area/groundbase/medical/lobby) +"DP" = ( +/obj/machinery/light, +/obj/structure/bed/double/padded, +/obj/item/weapon/bedsheet/browndouble, +/turf/simulated/floor/wood, +/area/groundbase/dorms/room5) +"DQ" = ( +/obj/machinery/atmospherics/unary/freezer{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/groundbase/medical/triage) +"DR" = ( +/obj/item/weapon/stool/padded, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/landmark/start/librarian, +/turf/simulated/floor/carpet, +/area/groundbase/civilian/library) +"DS" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/simulated/wall/r_wall, +/area/maintenance/groundbase/substation/command) +"DT" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/camera/network/civilian{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/groundbase/civilian/bar) +"DV" = ( +/obj/structure/table/rack, +/obj/item/weapon/tank/jetpack/oxygen, +/obj/item/clothing/mask/gas, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/item/weapon/card/id/gold/captain/spare, +/obj/machinery/door/window/brigdoor/westright{ + dir = 4; + name = "Colony Director's Storage"; + req_access = list(20) + }, +/obj/structure/window/reinforced{ + dir = 8; + health = 1e+006 + }, +/obj/item/clothing/head/helmet/space/void/captain, +/obj/item/clothing/suit/space/void/captain, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/wood, +/area/groundbase/command/captain) +"DW" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/machinery/door/firedoor, +/obj/machinery/door/blast/angled_shutter/open{ + dir = 4; + id = "robshutters"; + name = "Privacy Shutters" + }, +/turf/simulated/floor, +/area/groundbase/science/robotics) +"DX" = ( +/obj/structure/disposalpipe/trunk, +/obj/machinery/disposal, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology) +"DY" = ( +/obj/structure/table/bench/sifwooden/padded, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/dark, +/area/groundbase/dorms) +"DZ" = ( +/obj/structure/table/bench/padded, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/light{ + dir = 8 + }, +/obj/effect/landmark/start/entertainer, +/turf/simulated/floor/tiled/dark, +/area/groundbase/civilian/bar) +"Ea" = ( +/obj/structure/table/bench/padded, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/dark, +/area/groundbase/civilian/bar) +"Eb" = ( +/obj/machinery/atmospherics/portables_connector{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/groundbase/science/xenobot/storage) +"Ec" = ( +/turf/simulated/floor/wood, +/area/groundbase/dorms/room5) +"Ed" = ( +/obj/structure/bookcase{ + name = "bookcase (Non-Fiction)" + }, +/obj/item/weapon/book/bundle/custom_library/nonfiction/riseandfallofpersianempire, +/obj/item/weapon/book/bundle/custom_library/nonfiction/skrelliancastesystem, +/obj/item/weapon/book/bundle/custom_library/nonfiction/viabilityofcorporategov, +/obj/item/weapon/book/custom_library/nonfiction/freesirisailightbulbs, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/item/weapon/book/manual/synthetic_life, +/turf/simulated/floor/wood, +/area/groundbase/civilian/library) +"Ee" = ( +/obj/structure/cable/yellow{ + icon_state = "0-2" + }, +/obj/machinery/power/apc{ + dir = 1 + }, +/turf/simulated/floor/wood, +/area/groundbase/civilian/library) +"Ef" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor/tiled, +/area/groundbase/cargo/office) +"Eg" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/outdoors/sidewalk/slab, +/area/groundbase/level2/nw) +"Eh" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/dark, +/area/groundbase/civilian/chapel) +"Ei" = ( +/obj/machinery/portable_atmospherics/canister/nitrogen, +/obj/effect/floor_decal/industrial/warning{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/groundbase/science/xenobot/storage) +"Ej" = ( +/obj/machinery/vending/dinnerware, +/turf/simulated/floor/tiled/eris/cafe, +/area/groundbase/civilian/kitchen) +"El" = ( +/obj/effect/floor_decal/chapel{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/dark, +/area/groundbase/civilian/chapel) +"Em" = ( +/obj/structure/disposalpipe/down{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "32-4" + }, +/obj/machinery/atmospherics/pipe/zpipe/down/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/zpipe/down/supply{ + dir = 4 + }, +/turf/simulated/wall, +/area/groundbase/cargo/office) +"Eo" = ( +/obj/machinery/firealarm, +/obj/item/weapon/tool/wrench, +/obj/structure/table/standard, +/turf/simulated/floor/tiled, +/area/groundbase/civilian/hydroponics) +"Ep" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled, +/area/groundbase/civilian/hydroponics) +"Eq" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled, +/area/groundbase/cargo/office) +"Es" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/tiled/eris/cafe, +/area/groundbase/civilian/kitchen) +"Et" = ( +/obj/structure/table/woodentable, +/obj/item/weapon/storage/box/cups, +/turf/simulated/floor/tiled/dark, +/area/groundbase/command/meeting) +"Eu" = ( +/obj/effect/floor_decal/corner_steel_grid{ + dir = 10 + }, +/obj/machinery/sleeper{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/groundbase/medical/triage) +"Ev" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/groundbase/science/robotics) +"Ew" = ( +/obj/machinery/portable_atmospherics/hydroponics, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/groundbase/civilian/hydroponics) +"Ex" = ( +/obj/machinery/portable_atmospherics/canister/oxygen, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/groundbase/science/xenobot/storage) +"Ey" = ( +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/turf/simulated/floor/tiled/white, +/area/groundbase/medical/triage) +"EA" = ( +/obj/machinery/atmospherics/pipe/simple/visible, +/obj/machinery/meter, +/turf/simulated/floor/tiled, +/area/groundbase/science/xenobot/storage) +"EB" = ( +/turf/simulated/open, +/area/groundbase/level2/southwestspur) +"EC" = ( +/obj/machinery/alarm, +/obj/structure/bed/double/padded, +/obj/item/weapon/bedsheet/browndouble, +/turf/simulated/floor/wood, +/area/groundbase/dorms/room1) +"ED" = ( +/obj/effect/floor_decal/steeldecal/steel_decals10{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals10{ + dir = 10 + }, +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/door/window/southleft{ + dir = 1; + name = "shower door"; + req_access = null + }, +/turf/simulated/floor/tiled/white, +/area/groundbase/dorms/room3) +"EE" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology) +"EF" = ( +/obj/structure/disposalpipe/junction{ + dir = 2; + icon_state = "pipe-j2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/groundbase/cargo/office) +"EH" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/wood, +/area/groundbase/dorms/room1) +"EI" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/simulated/floor/outdoors/sidewalk/side, +/area/groundbase/level2/nw) +"EJ" = ( +/obj/machinery/power/apc{ + dir = 1 + }, +/obj/structure/cable/yellow{ + icon_state = "0-2" + }, +/turf/simulated/floor/tiled, +/area/groundbase/science/xenohall) +"EK" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/light, +/turf/simulated/floor/tiled, +/area/groundbase/science/rnd) +"EN" = ( +/obj/structure/bed/chair/sofa/corp, +/obj/machinery/alarm, +/turf/simulated/floor/wood, +/area/groundbase/dorms/room4) +"EP" = ( +/obj/effect/mouse_hole_spawner{ + dir = 8 + }, +/turf/simulated/floor/outdoors/grass/seasonal/notrees_nomobs_lowsnow, +/area/groundbase/level2/ne) +"EQ" = ( +/obj/structure/filingcabinet, +/obj/machinery/atmospherics/unary/vent_pump/on, +/turf/simulated/floor/wood, +/area/groundbase/cargo/qm) +"ET" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/simulated/floor/outdoors/sidewalk/slab, +/area/groundbase/level2/nw) +"EU" = ( +/obj/structure/toilet, +/obj/machinery/button/remote/airlock{ + id = "toilet2"; + pixel_x = -26; + pixel_y = -4; + specialfunctions = 4 + }, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/groundbase/dorms/bathroom) +"EV" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/turf/simulated/floor/carpet/blue, +/area/groundbase/medical/psych) +"EW" = ( +/obj/structure/bed/chair/sofa/right/black, +/turf/simulated/floor/carpet/geo, +/area/groundbase/civilian/kitchen/backroom) +"EX" = ( +/obj/structure/closet/secure_closet/quartermaster, +/obj/item/weapon/storage/backpack/dufflebag, +/obj/machinery/light_switch{ + dir = 1; + pixel_y = -30 + }, +/turf/simulated/floor/wood, +/area/groundbase/cargo/qm) +"EY" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/white, +/area/medical/virology) +"EZ" = ( +/obj/machinery/light/small/fairylights, +/turf/simulated/floor/outdoors/newdirt, +/area/groundbase/level2/nw) +"Fa" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/command{ + id_tag = "captaindoor"; + name = "Site Manager's Office"; + req_access = list(20) + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/steel_ridged, +/area/groundbase/command/captain) +"Fb" = ( +/obj/machinery/door/blast/regular{ + id = "xenobiodiv1"; + layer = 8; + name = "Divider" + }, +/turf/simulated/floor/reinforced, +/area/rnd/xenobiology) +"Fc" = ( +/obj/machinery/firealarm{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/groundbase/medical/triage) +"Fd" = ( +/obj/machinery/power/apc/hyper{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "0-8" + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/groundbase/science/robotics) +"Fg" = ( +/turf/simulated/floor/wood, +/area/groundbase/civilian/kitchen/backroom) +"Fh" = ( +/obj/machinery/computer/robotics{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/groundbase/science/rd) +"Fi" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology) +"Fj" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/outdoors/sidewalk/slab, +/area/groundbase/level2/nw) +"Fk" = ( +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/groundbase/science/xenohall) +"Fl" = ( +/turf/simulated/floor/outdoors/grass/seasonal/dark/lowsnow, +/area/groundbase/level2/sw) +"Fm" = ( +/turf/simulated/floor/tiled, +/area/groundbase/science/rnd) +"Fn" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/turf/simulated/floor/tiled/white, +/area/medical/virology) +"Fo" = ( +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/groundbase/medical/Chemistry) +"Fp" = ( +/obj/structure/railing/grey, +/turf/simulated/open, +/area/groundbase/civilian/bar/upper) +"Fq" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/command{ + name = "Head of Personnel"; + req_access = list(57) + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/steel_ridged, +/area/groundbase/command/hop) +"Fr" = ( +/obj/machinery/light, +/obj/structure/toilet{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/groundbase/dorms/room5) +"Fs" = ( +/turf/simulated/floor/outdoors/newdirt{ + outdoors = 0 + }, +/area/groundbase/level2/nw) +"Ft" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass_medical{ + name = "Medical"; + req_one_access = null + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/bmarble, +/area/groundbase/medical/lobby) +"Fu" = ( +/obj/machinery/light/bigfloorlamp, +/turf/simulated/floor/outdoors/newdirt, +/area/groundbase/science/picnic) +"Fv" = ( +/turf/simulated/floor/outdoors/grass/seasonal/dark/lowsnow, +/area/groundbase/science/picnic) +"Fw" = ( +/turf/simulated/floor/outdoors/newdirt{ + outdoors = 0 + }, +/area/groundbase/unexplored/rock) +"Fx" = ( +/turf/simulated/floor/tiled, +/area/groundbase/science/rd) +"Fy" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/groundbase/medical/triage) +"Fz" = ( +/obj/machinery/optable{ + name = "Robotics Operating Table" + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/structure/closet/secure_closet/medical_wall/anesthetics{ + pixel_x = 32; + req_access = list(); + req_one_access = list(29,45) + }, +/turf/simulated/floor/tiled/dark, +/area/groundbase/science/robotics) +"FB" = ( +/obj/item/weapon/storage/fancy/vials, +/obj/item/weapon/reagent_containers/syringe/antiviral, +/obj/item/weapon/reagent_containers/syringe/antiviral, +/obj/item/weapon/storage/lockbox/vials, +/obj/item/weapon/reagent_containers/dropper, +/obj/item/weapon/storage/box/syringes{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/weapon/storage/box/beakers, +/obj/item/weapon/storage/box/masks, +/obj/item/weapon/storage/box/gloves{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/weapon/soap/nanotrasen, +/obj/structure/closet/walllocker_double/medical/east, +/obj/item/weapon/hand_labeler, +/obj/item/weapon/storage/box/monkeycubes/wolpincubes, +/turf/simulated/floor/tiled/white, +/area/medical/virology) +"FC" = ( +/obj/machinery/chem_master, +/obj/structure/sign/painting/library_secure{ + pixel_y = -30 + }, +/turf/simulated/floor/tiled/white, +/area/groundbase/medical/Chemistry) +"FD" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/simulated/wall, +/area/groundbase/cargo/office) +"FF" = ( +/turf/simulated/wall, +/area/groundbase/civilian/bar) +"FI" = ( +/obj/structure/fence/corner{ + dir = 5 + }, +/turf/simulated/floor/outdoors/grass/seasonal/notrees_nomobs_lowsnow, +/area/groundbase/cargo/bay) +"FJ" = ( +/obj/structure/table/standard, +/obj/item/weapon/cartridge/quartermaster{ + pixel_x = -4; + pixel_y = 7 + }, +/obj/item/weapon/cartridge/quartermaster{ + pixel_x = 6; + pixel_y = 5 + }, +/obj/item/weapon/cartridge/quartermaster, +/turf/simulated/floor/wood, +/area/groundbase/cargo/qm) +"FL" = ( +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/outdoors/grass/seasonal/notrees_nomobs_lowsnow, +/area/groundbase/science/xenobot) +"FM" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/groundbase/civilian/hydroponics) +"FN" = ( +/obj/structure/sign/department/chapel, +/turf/simulated/wall, +/area/groundbase/civilian/chapel) +"FO" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8; + health = 1e+006 + }, +/turf/simulated/floor, +/area/rnd/xenobiology) +"FR" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/groundbase/cargo/office) +"FS" = ( +/obj/structure/railing/grey{ + dir = 4 + }, +/turf/simulated/open, +/area/groundbase/level2/westspur) +"FT" = ( +/obj/effect/landmark{ + name = "lightsout" + }, +/obj/machinery/hologram/holopad, +/turf/simulated/floor/tiled/dark, +/area/groundbase/civilian/bar) +"FU" = ( +/obj/structure/table/bench/standard, +/obj/effect/landmark/start/rd, +/turf/simulated/floor/outdoors/newdirt, +/area/groundbase/science/picnic) +"FW" = ( +/obj/effect/landmark{ + name = "lightsout" + }, +/turf/simulated/floor/tiled/eris/cafe, +/area/groundbase/civilian/kitchen) +"Ga" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/machinery/firealarm{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/groundbase/science/hall) +"Gb" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/groundbase/science/xenohall) +"Gc" = ( +/turf/simulated/floor/tiled/eris/cafe, +/area/groundbase/civilian/kitchen) +"Gd" = ( +/mob/living/simple_mob/animal/passive/chicken, +/turf/simulated/floor/outdoors/grass/seasonal/dark/lowsnow, +/area/groundbase/civilian/hydroponics/out) +"Ge" = ( +/obj/machinery/embedded_controller/radio/airlock/access_controller{ + dir = 4; + id_tag = "virology_airlock_control"; + name = "Virology Access Console"; + pixel_x = -28; + tag_exterior_door = "virology_airlock_exterior"; + tag_interior_door = "virology_airlock_interior" + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/medical/virology) +"Gf" = ( +/obj/structure/disposalpipe/junction{ + dir = 2; + icon_state = "pipe-j2" + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/machinery/camera/network/cargo, +/obj/machinery/status_display/supply_display{ + pixel_y = 32 + }, +/turf/simulated/floor/tiled, +/area/groundbase/cargo/office) +"Gg" = ( +/obj/structure/sink{ + pixel_y = 20 + }, +/obj/structure/mirror{ + pixel_y = 37 + }, +/obj/machinery/alarm{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/groundbase/dorms/room5) +"Gi" = ( +/obj/structure/reagent_dispensers/watertank, +/obj/item/weapon/reagent_containers/glass/bucket, +/obj/machinery/light, +/turf/simulated/floor/tiled, +/area/groundbase/science/xenobot) +"Gj" = ( +/obj/machinery/door/blast/regular{ + density = 0; + dir = 4; + icon_state = "pdoor0"; + id = "xenobiopen7"; + name = "Pen 7 Blast Doors"; + opacity = 0 + }, +/obj/machinery/door/window/brigdoor/eastleft{ + dir = 2; + name = "Slime Pen 1"; + req_access = list(55) + }, +/turf/simulated/floor/reinforced, +/area/rnd/xenobiology) +"Gk" = ( +/turf/simulated/wall/r_wall, +/area/groundbase/dorms/room1) +"Gl" = ( +/turf/simulated/open, +/area/groundbase/civilian/bar/upper) +"Gm" = ( +/obj/structure/table/woodentable, +/obj/item/device/taperecorder, +/turf/simulated/floor/carpet, +/area/groundbase/civilian/library) +"Gn" = ( +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/turf/simulated/wall, +/area/groundbase/civilian/bar) +"Gp" = ( +/turf/simulated/wall, +/area/groundbase/level2/nw) +"Gq" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/command{ + name = "Command Meeting Room" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/groundbase/command/meeting) +"Gs" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/research{ + frequency = 1379; + id_tag = "xenobot_airlock_exterior"; + locked = 1; + name = "Xenobotany Lab"; + req_access = list(47,55) + }, +/obj/machinery/access_button{ + command = "cycle_exterior"; + frequency = 1379; + master_tag = "xenobot_airlock_control"; + name = "Xenobotany Access Button"; + pixel_x = -32; + req_one_access = list(47,55) + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/steel_ridged, +/area/groundbase/science/xenobot) +"Gt" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden, +/obj/machinery/door/window/northleft{ + name = "Server Room"; + req_access = list(30) + }, +/obj/machinery/door/window/southleft{ + name = "Server Room"; + req_access = list(30) + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/groundbase/science/server) +"Gu" = ( +/obj/machinery/r_n_d/server/robotics, +/obj/machinery/atmospherics/unary/vent_pump{ + dir = 8; + external_pressure_bound = 0; + external_pressure_bound_default = 0; + icon_state = "map_vent_in"; + initialize_directions = 1; + internal_pressure_bound = 4000; + internal_pressure_bound_default = 4000; + pressure_checks = 2; + pressure_checks_default = 2; + pump_direction = 0; + use_power = 1 + }, +/turf/simulated/floor/bluegrid{ + name = "Server Base"; + nitrogen = 500; + oxygen = 0; + temperature = 80 + }, +/area/groundbase/science/server) +"Gv" = ( +/obj/structure/bed/chair/office/dark{ + dir = 8 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/effect/landmark/start/captain, +/turf/simulated/floor/tiled/dark, +/area/groundbase/command/bridge) +"Gx" = ( +/obj/structure/table/reinforced, +/obj/item/device/flashlight/lamp/green{ + pixel_x = -10; + pixel_y = 3 + }, +/obj/item/weapon/clipboard, +/obj/item/weapon/stamp/hop, +/obj/item/weapon/paper/dockingcodes, +/turf/simulated/floor/carpet, +/area/groundbase/command/hop) +"Gy" = ( +/obj/machinery/atmospherics/pipe/manifold4w/visible, +/turf/simulated/floor/tiled, +/area/groundbase/science/xenobot/storage) +"Gz" = ( +/obj/structure/railing/grey{ + dir = 1 + }, +/turf/simulated/open, +/area/groundbase/civilian/bar) +"GA" = ( +/obj/structure/table/wooden_reinforced, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/wood, +/area/groundbase/civilian/kitchen/backroom) +"GC" = ( +/turf/simulated/floor/tiled, +/area/groundbase/command/hop) +"GD" = ( +/obj/machinery/computer/supplycomp/control{ + dir = 8 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/machinery/status_display/supply_display{ + pixel_x = 32 + }, +/turf/simulated/floor/wood, +/area/groundbase/cargo/qm) +"GE" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/medical{ + name = "Virology"; + req_access = list(39); + req_one_access = null + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/steel_ridged, +/area/medical/virology) +"GF" = ( +/obj/structure/table/woodentable, +/obj/machinery/microwave, +/turf/simulated/floor/wood, +/area/groundbase/dorms/room7) +"GH" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8; + health = 1e+006 + }, +/obj/structure/window/reinforced, +/turf/simulated/floor, +/area/rnd/xenobiology) +"GI" = ( +/obj/effect/landmark{ + name = "lightsout" + }, +/turf/simulated/floor/tiled, +/area/groundbase/science/xenobot) +"GJ" = ( +/obj/structure/table/steel, +/obj/item/device/integrated_circuit_printer, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled, +/area/groundbase/science/circuits) +"GK" = ( +/obj/machinery/r_n_d/circuit_imprinter, +/obj/item/weapon/reagent_containers/glass/beaker/sulphuric, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/groundbase/science/robotics) +"GL" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/eris/cafe, +/area/groundbase/civilian/kitchen) +"GM" = ( +/turf/simulated/wall, +/area/maintenance/groundbase/substation/command) +"GN" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/groundbase/medical/triage) +"GO" = ( +/obj/structure/closet/walllocker_double{ + dir = 4; + pixel_x = 27 + }, +/obj/item/weapon/storage/fancy/crayons, +/obj/item/weapon/storage/fancy/crayons, +/obj/item/weapon/storage/fancy/crayons, +/obj/item/weapon/storage/fancy/crayons, +/obj/item/weapon/storage/fancy/crayons, +/obj/item/weapon/storage/fancy/crayons, +/turf/simulated/floor/tiled{ + edge_blending_priority = -1; + outdoors = 0 + }, +/area/groundbase/level2/nw) +"GP" = ( +/obj/structure/bed/chair/sofa/pew/left{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/groundbase/civilian/chapel) +"GQ" = ( +/obj/machinery/vending/wardrobe/mimedrobe, +/turf/simulated/floor/carpet/bcarpet, +/area/groundbase/civilian/mime) +"GS" = ( +/obj/structure/railing/grey{ + dir = 1 + }, +/obj/structure/railing/grey{ + dir = 8 + }, +/turf/simulated/open, +/area/groundbase/civilian/bar/upper) +"GT" = ( +/turf/simulated/floor/outdoors/grass/seasonal/notrees_nomobs_lowsnow, +/area/groundbase/civilian/kitchen) +"GU" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/multi_tile/glass{ + dir = 2; + name = "Chapel" + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/bmarble, +/area/groundbase/civilian/chapel) +"GW" = ( +/obj/machinery/atm{ + pixel_y = 30 + }, +/turf/simulated/floor/tiled/dark, +/area/groundbase/command/meeting) +"GX" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/turf/simulated/floor/tiled/white, +/area/groundbase/medical/triage) +"GY" = ( +/obj/effect/mouse_hole_spawner{ + dir = 1 + }, +/turf/simulated/floor/outdoors/grass/seasonal/notrees_nomobs_lowsnow, +/area/groundbase/level2/nw) +"GZ" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/turf/simulated/floor/outdoors/sidewalk/slab, +/area/groundbase/level2/nw) +"Ha" = ( +/obj/structure/table/steel, +/obj/item/device/multitool, +/obj/item/clothing/glasses/welding, +/obj/item/weapon/weldingtool, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology) +"Hb" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled, +/area/groundbase/science/robotics) +"Hc" = ( +/obj/item/weapon/bedsheet/captain, +/obj/structure/bed/padded, +/obj/machinery/alarm, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/effect/landmark/start/captain, +/turf/simulated/floor/carpet, +/area/groundbase/command/captainq) +"He" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/light/floortube{ + dir = 4; + pixel_x = 6 + }, +/obj/effect/landmark/start/xenobot, +/turf/simulated/floor/tiled, +/area/groundbase/science/xenobot) +"Hf" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/glass_research{ + name = "Circuitry Workshop"; + req_access = list(7); + req_one_access = null + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/groundbase/science/circuits) +"Hi" = ( +/turf/simulated/floor/outdoors/grass/seasonal/notrees_nomobs_lowsnow, +/area/groundbase/civilian/hydroponics/out) +"Hj" = ( +/turf/simulated/floor/tiled{ + edge_blending_priority = -1; + outdoors = 1 + }, +/area/groundbase/level2/ne) +"Hk" = ( +/obj/structure/bed/chair/comfy/blue{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/groundbase/command/meeting) +"Hl" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/wood, +/area/groundbase/command/captainq) +"Hm" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/outdoors/sidewalk, +/area/groundbase/level2/nw) +"Hn" = ( +/turf/simulated/floor/outdoors/sidewalk/slab, +/area/groundbase/level2/nw) +"Ho" = ( +/obj/structure/table/woodentable, +/obj/random/donkpocketbox, +/obj/structure/cable/yellow{ + icon_state = "0-4" + }, +/obj/machinery/power/apc{ + dir = 8 + }, +/turf/simulated/floor/wood, +/area/groundbase/dorms/room3) +"Hp" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/multi_tile/glass{ + name = "Chapel" + }, +/turf/simulated/floor/bmarble, +/area/groundbase/civilian/chapel) +"Hr" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/disposalpipe/segment, +/obj/machinery/light/small/fairylights{ + pixel_y = -2 + }, +/turf/simulated/floor/outdoors/sidewalk, +/area/groundbase/level2/nw) +"Hs" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/turf/simulated/floor/carpet, +/area/groundbase/command/hop) +"Ht" = ( +/obj/structure/table/woodentable, +/turf/simulated/floor/wood, +/area/groundbase/dorms/room5) +"Hu" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/simulated/floor/outdoors/sidewalk/slab, +/area/groundbase/level2/ne) +"Hv" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/outdoors/sidewalk/side, +/area/groundbase/civilian/janitor) +"Hw" = ( +/obj/structure/railing/grey{ + dir = 4 + }, +/turf/simulated/floor/outdoors/grass/seasonal/notrees_nomobs_lowsnow, +/area/groundbase/level2/nw) +"Hx" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/multi_tile/glass/polarized{ + dir = 2; + name = "Cargo Bay"; + req_access = list(31) + }, +/turf/simulated/floor/bmarble, +/area/groundbase/cargo/office) +"Hz" = ( +/obj/structure/table/marble, +/obj/machinery/camera/network/civilian{ + dir = 8 + }, +/turf/simulated/floor/lino{ + edge_blending_priority = 0.1 + }, +/area/groundbase/civilian/kitchen) +"HA" = ( +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/turf/simulated/floor/tiled/dark, +/area/groundbase/command/hall) +"HB" = ( +/obj/structure/closet/jequipcloset, +/obj/machinery/power/apc{ + dir = 1 + }, +/obj/structure/cable/yellow{ + icon_state = "0-2" + }, +/turf/simulated/floor/tiled, +/area/groundbase/civilian/janitor) +"HC" = ( +/obj/structure/bed/chair/office/light{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/landmark/start/medical, +/turf/simulated/floor/tiled/white, +/area/groundbase/medical/lobby) +"HD" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/groundbase/dorms/bathroom) +"HF" = ( +/obj/structure/sink{ + dir = 4; + pixel_x = 11 + }, +/obj/machinery/power/apc{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "0-8" + }, +/turf/simulated/floor/tiled, +/area/groundbase/civilian/hydroponics) +"HG" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/groundbase/civilian/janitor) +"HH" = ( +/turf/simulated/floor/outdoors/grass/seasonal/notrees_nomobs_lowsnow, +/area/groundbase/civilian/hydroponics) +"HI" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/simulated/floor/wood, +/area/groundbase/dorms/room4) +"HJ" = ( +/obj/structure/table/standard, +/obj/machinery/recharger, +/obj/item/weapon/hand_labeler, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/obj/machinery/light, +/turf/simulated/floor/tiled, +/area/groundbase/cargo/office) +"HK" = ( +/obj/machinery/power/apc{ + dir = 4; + nightshift_setting = 2 + }, +/obj/structure/cable/yellow{ + icon_state = "0-8" + }, +/turf/simulated/floor/wood, +/area/groundbase/dorms/room8) +"HL" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/machinery/door/firedoor, +/turf/simulated/floor, +/area/groundbase/medical/lobby) +"HQ" = ( +/obj/structure/railing/grey{ + dir = 8 + }, +/turf/simulated/floor/outdoors/grass/seasonal/notrees_nomobs_lowsnow, +/area/groundbase/level2/sw) +"HR" = ( +/obj/structure/table/reinforced, +/obj/item/weapon/reagent_containers/glass/beaker/large, +/obj/item/weapon/reagent_containers/dropper, +/obj/item/device/radio/intercom{ + pixel_y = -24 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/groundbase/medical/Chemistry) +"HT" = ( +/obj/structure/closet/crate/freezer, +/obj/machinery/firealarm, +/turf/simulated/floor/tiled/freezer/cold, +/area/groundbase/civilian/kitchen/freezer) +"HU" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/obj/machinery/alarm{ + dir = 4 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/groundbase/medical/lobby) +"HV" = ( +/obj/effect/floor_decal/steeldecal/steel_decals10{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals10{ + dir = 10 + }, +/obj/machinery/door/window/southleft{ + dir = 1; + name = "shower door"; + req_access = null + }, +/obj/machinery/alarm{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/groundbase/dorms/room7) +"HW" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/freezer{ + name = "Kitchen"; + req_access = list(28) + }, +/turf/simulated/floor/bmarble, +/area/groundbase/civilian/kitchen) +"HX" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/outdoors/sidewalk/side, +/area/groundbase/level2/nw) +"HY" = ( +/obj/machinery/alarm, +/turf/simulated/floor/reinforced, +/area/rnd/xenobiology) +"HZ" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/groundbase/dorms) +"Ia" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/obj/machinery/camera/network/medbay{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/groundbase/medical/lobby) +"Ib" = ( +/obj/structure/table/woodentable, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/carpet, +/area/groundbase/civilian/chapel) +"Ie" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/obj/machinery/light{ + dir = 8 + }, +/obj/random/vendorall, +/turf/simulated/floor/tiled/dark, +/area/groundbase/dorms) +"Ig" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/groundbase/command/bridge) +"Ih" = ( +/obj/machinery/vending/wardrobe/chefdrobe, +/turf/simulated/floor/tiled/eris/cafe, +/area/groundbase/civilian/kitchen) +"Ii" = ( +/obj/machinery/door/blast/regular{ + id = "xenobiodiv6"; + layer = 8; + name = "Divider" + }, +/turf/simulated/floor/reinforced, +/area/rnd/xenobiology) +"Ij" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/turf/simulated/floor/tiled/white, +/area/groundbase/medical/triage) +"Ik" = ( +/obj/structure/bed/chair/sofa/bench/right{ + dir = 1 + }, +/turf/simulated/floor/outdoors/newdirt, +/area/groundbase/level2/ne) +"Il" = ( +/obj/item/weapon/bedsheet/mimedouble, +/obj/structure/bed/double/padded, +/obj/structure/curtain/black, +/obj/machinery/atmospherics/unary/vent_pump/on, +/turf/simulated/floor/carpet/bcarpet, +/area/groundbase/civilian/mime) +"Im" = ( +/obj/structure/table/woodentable, +/obj/random/donkpocketbox, +/obj/structure/cable/yellow{ + icon_state = "0-8" + }, +/obj/machinery/power/apc{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/groundbase/dorms/room4) +"In" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/machinery/door/firedoor, +/turf/simulated/floor, +/area/groundbase/civilian/hydroponics) +"Io" = ( +/obj/structure/table/woodentable, +/obj/random/donkpocketbox, +/obj/machinery/power/apc{ + dir = 8 + }, +/obj/structure/cable/yellow{ + icon_state = "0-4" + }, +/turf/simulated/floor/wood, +/area/groundbase/dorms/room5) +"Ip" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/simulated/floor/wood, +/area/groundbase/civilian/library) +"Iq" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/machinery/door/firedoor, +/turf/simulated/floor, +/area/groundbase/civilian/chapel/office) +"Ir" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled, +/area/groundbase/science/xenobot) +"It" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/wall, +/area/groundbase/cargo/office) +"Iu" = ( +/obj/machinery/botany/extractor, +/turf/simulated/floor/tiled, +/area/groundbase/science/xenobot) +"Iv" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/effect/landmark/start/botanist, +/turf/simulated/floor/tiled, +/area/groundbase/civilian/hydroponics) +"Iw" = ( +/obj/effect/landmark/vermin, +/turf/simulated/floor/tiled, +/area/groundbase/civilian/hydroponics) +"Ix" = ( +/obj/structure/flora/pottedplant/orientaltree, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/groundbase/science/circuits) +"Iy" = ( +/obj/machinery/hologram/holopad, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/effect/landmark{ + name = "lightsout" + }, +/turf/simulated/floor/tiled, +/area/groundbase/science/rnd) +"Iz" = ( +/obj/structure/railing/grey{ + dir = 4 + }, +/obj/structure/railing/grey, +/turf/simulated/open, +/area/groundbase/civilian/bar/upper) +"IA" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/simulated/floor/outdoors/sidewalk/slab, +/area/groundbase/level2/nw) +"IB" = ( +/obj/structure/bed/chair/comfy/black{ + dir = 4 + }, +/obj/machinery/firealarm{ + dir = 8 + }, +/turf/simulated/floor/carpet/bcarpet, +/area/groundbase/civilian/mime) +"ID" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/groundbase/medical/triage) +"IE" = ( +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/groundbase/science/xenobot) +"IF" = ( +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/obj/machinery/disposal, +/turf/simulated/floor/lino, +/area/groundbase/civilian/chapel/office) +"IH" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/white, +/area/medical/virology) +"II" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/turf/simulated/floor/tiled/white, +/area/groundbase/medical/triage) +"IJ" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/turf/simulated/floor/tiled, +/area/groundbase/science/xenobot) +"IK" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled{ + edge_blending_priority = -1; + outdoors = 0 + }, +/area/groundbase/cargo/office) +"IL" = ( +/obj/machinery/transhuman/resleever, +/turf/simulated/floor/tiled, +/area/groundbase/science/robotics) +"IO" = ( +/obj/machinery/vending/wardrobe/scidrobe, +/turf/simulated/floor/tiled, +/area/groundbase/science/hall) +"IP" = ( +/obj/machinery/firealarm{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/turf/simulated/floor/carpet/blucarpet, +/area/groundbase/command/captain) +"IQ" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/groundbase/civilian/library) +"IR" = ( +/obj/structure/sign/painting/library_secure{ + pixel_x = -30 + }, +/turf/simulated/floor/wood, +/area/groundbase/civilian/library) +"IS" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/lino, +/area/groundbase/civilian/chapel/office) +"IT" = ( +/obj/machinery/hologram/holopad, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology) +"IU" = ( +/obj/structure/bed/chair/office/dark, +/obj/machinery/button/remote/blast_door{ + desc = "A remote control-switch for shutters."; + dir = 4; + id = "hop_office_desk"; + layer = 3.3; + name = "Desk Privacy Shutter"; + pixel_x = -31; + pixel_y = 1 + }, +/obj/effect/landmark/start/hop, +/turf/simulated/floor/tiled, +/area/groundbase/command/hop) +"IV" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/groundbase/science/hall) +"IW" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/light/small{ + dir = 1 + }, +/obj/machinery/disposal/wall/cleaner{ + dir = 1 + }, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/groundbase/dorms/bathroom) +"IX" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/structure/disposalpipe/junction, +/turf/simulated/floor/tiled/dark, +/area/groundbase/dorms) +"IY" = ( +/obj/effect/floor_decal/steeldecal/steel_decals10{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals10{ + dir = 10 + }, +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/door/window/southright{ + dir = 1; + name = "shower door" + }, +/turf/simulated/floor/tiled/white, +/area/groundbase/dorms/room4) +"IZ" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/obj/machinery/atmospherics/unary/vent_pump/on, +/turf/simulated/floor/tiled, +/area/groundbase/science/xenobot/storage) +"Ja" = ( +/turf/simulated/floor/outdoors/sidewalk, +/area/groundbase/level2/nw) +"Jc" = ( +/turf/simulated/floor/outdoors/grass/seasonal/dark/lowsnow, +/area/groundbase/level2/nw) +"Je" = ( +/obj/effect/floor_decal/chapel, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/dark, +/area/groundbase/civilian/chapel) +"Jh" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/simulated/floor/wood, +/area/groundbase/dorms/room5) +"Ji" = ( +/obj/structure/sign/department/sci, +/turf/simulated/wall/r_wall, +/area/groundbase/science/hall) +"Jl" = ( +/obj/structure/grille, +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/blast/regular{ + closed_layer = 10; + density = 0; + dir = 2; + icon_state = "pdoor0"; + id = "bridge blast"; + layer = 1; + name = "Bridge Blast Doors"; + opacity = 0; + open_layer = 1 + }, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced, +/obj/structure/cable/green, +/obj/machinery/door/blast/shutters{ + dir = 2; + id = "hop_office_desk"; + layer = 3.1; + name = "HoP's Shutters" + }, +/turf/simulated/floor/plating, +/area/groundbase/command/hop) +"Jm" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/light/floortube{ + dir = 8; + pixel_x = -6 + }, +/turf/simulated/floor/tiled/eris/cafe, +/area/groundbase/civilian/kitchen) +"Jn" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/window/eastright{ + dir = 8; + name = "Virology Isolation Room One"; + req_one_access = list(39) + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/medical/virology) +"Jo" = ( +/obj/structure/table/reinforced, +/obj/machinery/photocopier/faxmachine{ + department = "Bridge" + }, +/obj/machinery/requests_console{ + announcementConsole = 1; + department = "Bridge"; + departmentType = 5; + name = "Bridge RC"; + pixel_y = 32 + }, +/obj/machinery/firealarm{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/groundbase/command/bridge) +"Jp" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/mining{ + name = "Quartermaster"; + req_access = list(41); + req_one_access = null + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/steel_ridged, +/area/groundbase/cargo/qm) +"Jq" = ( +/obj/structure/table/bench/standard, +/turf/simulated/floor/outdoors/newdirt, +/area/groundbase/science/picnic) +"Jr" = ( +/turf/simulated/floor{ + edge_blending_priority = -1; + outdoors = 1 + }, +/area/groundbase/level2/sw) +"Js" = ( +/obj/structure/railing/grey{ + dir = 1 + }, +/turf/simulated/floor/tiled{ + edge_blending_priority = -1; + outdoors = 1 + }, +/area/groundbase/level2/se) +"Jt" = ( +/obj/machinery/computer/supplycomp{ + dir = 8 + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled{ + edge_blending_priority = -1; + outdoors = 0 + }, +/area/groundbase/cargo/office) +"Ju" = ( +/obj/machinery/alarm, +/turf/simulated/floor/tiled/white, +/area/medical/virology) +"Jv" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/simulated/floor/reinforced{ + edge_blending_priority = -1; + outdoors = 1 + }, +/area/groundbase/level2/ne) +"Jy" = ( +/obj/machinery/portable_atmospherics/canister/nitrous_oxide, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/groundbase/science/xenobot/storage) +"Jz" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/groundbase/science/xenobot) +"JA" = ( +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/light_switch{ + dir = 4; + pixel_x = -30 + }, +/obj/structure/bed/chair/sofa/corp/left{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/groundbase/dorms/room2) +"JB" = ( +/obj/structure/table/glass, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/groundbase/civilian/bar) +"JD" = ( +/obj/machinery/appliance/cooker/oven, +/turf/simulated/floor/tiled/eris/cafe, +/area/groundbase/civilian/kitchen) +"JF" = ( +/obj/machinery/firealarm{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/groundbase/civilian/library) +"JH" = ( +/obj/effect/landmark{ + name = "morphspawn" + }, +/turf/simulated/floor/tiled{ + edge_blending_priority = -1; + outdoors = 0 + }, +/area/groundbase/level2/nw) +"JI" = ( +/obj/machinery/door/airlock/freezer{ + name = "Kitchen"; + req_access = list(28) + }, +/obj/machinery/door/firedoor, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/bmarble, +/area/groundbase/civilian/kitchen) +"JJ" = ( +/turf/simulated/wall, +/area/groundbase/civilian/kitchen/freezer) +"JK" = ( +/obj/structure/table/glass, +/obj/machinery/alarm{ + dir = 8 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/groundbase/medical/lobby) +"JL" = ( +/obj/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/turf/simulated/floor/tiled/eris/cafe, +/area/groundbase/civilian/kitchen) +"JM" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/groundbase/science/xenobot/storage) +"JN" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/turf/simulated/floor/outdoors/sidewalk/slab, +/area/groundbase/cargo/bay) +"JO" = ( +/obj/structure/table/standard, +/obj/item/device/retail_scanner/civilian, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled/eris/cafe, +/area/groundbase/civilian/kitchen) +"JP" = ( +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/reinforced, +/area/rnd/xenobiology) +"JQ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/freezer/cold, +/area/groundbase/civilian/kitchen/freezer) +"JR" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/dark, +/area/groundbase/dorms) +"JS" = ( +/obj/effect/mouse_hole_spawner{ + dir = 1 + }, +/turf/simulated/floor/outdoors/grass/seasonal/notrees_nomobs_lowsnow, +/area/groundbase/level2/ne) +"JT" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/landmark{ + name = "lightsout" + }, +/turf/simulated/floor/tiled/dark, +/area/groundbase/science/hall) +"JU" = ( +/obj/machinery/camera/network/research{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/groundbase/science/hall) +"JV" = ( +/obj/effect/floor_decal/corner_steel_grid{ + dir = 10 + }, +/obj/machinery/sleep_console, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/white, +/area/groundbase/medical/triage) +"JW" = ( +/obj/structure/table/standard, +/obj/machinery/photocopier/faxmachine{ + department = "Quartermaster-Office" + }, +/turf/simulated/floor/wood, +/area/groundbase/cargo/qm) +"JX" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/groundbase/civilian/hydroponics) +"JY" = ( +/turf/simulated/floor/wood, +/area/groundbase/dorms/room4) +"JZ" = ( +/obj/machinery/disposal, +/obj/structure/disposalpipe/trunk, +/obj/machinery/light_switch{ + dir = 4; + pixel_x = -30 + }, +/turf/simulated/floor/tiled, +/area/groundbase/civilian/hydroponics) +"Ka" = ( +/obj/structure/table/woodentable, +/obj/random/donkpocketbox, +/obj/structure/cable/yellow{ + icon_state = "0-8" + }, +/obj/machinery/power/apc{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/groundbase/dorms/room6) +"Kc" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/turf/simulated/floor/wood, +/area/groundbase/dorms/room5) +"Kd" = ( +/obj/structure/cable/yellow{ + icon_state = "0-2" + }, +/obj/machinery/power/apc{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/groundbase/medical/Chemistry) +"Ke" = ( +/obj/structure/table/reinforced, +/obj/machinery/chemical_dispenser/full, +/obj/machinery/camera/network/medbay, +/obj/machinery/atmospherics/unary/vent_pump/on, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/groundbase/medical/Chemistry) +"Kg" = ( +/obj/machinery/door/firedoor, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 8; + health = 1e+006 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/grille, +/obj/structure/disposalpipe/segment, +/obj/machinery/door/blast/regular{ + density = 0; + dir = 4; + icon_state = "pdoor0"; + id = "xenobiopen8"; + name = "Pen 8 Blast Doors"; + opacity = 0 + }, +/turf/simulated/floor/reinforced, +/area/rnd/xenobiology) +"Kh" = ( +/obj/item/bee_pack, +/obj/item/honey_frame, +/obj/item/honey_frame, +/obj/item/honey_frame, +/obj/item/honey_frame, +/obj/item/honey_frame, +/obj/item/weapon/tool/crowbar, +/obj/item/bee_smoker, +/obj/item/beehive_assembly, +/obj/structure/closet/crate/hydroponics{ + desc = "All you need to start your own honey farm."; + name = "beekeeping crate" + }, +/obj/item/beehive_assembly, +/obj/item/beehive_assembly, +/obj/item/beehive_assembly, +/obj/item/beehive_assembly, +/obj/item/bee_pack, +/obj/item/bee_pack, +/obj/item/bee_pack, +/obj/item/honey_frame, +/obj/item/honey_frame, +/obj/item/honey_frame, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/groundbase/civilian/hydroponics) +"Ki" = ( +/obj/structure/table/standard, +/obj/item/clothing/head/soft, +/obj/item/clothing/head/soft, +/obj/item/weapon/stamp{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/machinery/atmospherics/unary/vent_pump/on, +/obj/machinery/camera/network/cargo, +/turf/simulated/floor/tiled, +/area/groundbase/cargo/office) +"Kj" = ( +/obj/structure/table/woodentable, +/obj/machinery/microwave, +/turf/simulated/floor/wood, +/area/groundbase/dorms/room5) +"Kk" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/turf/simulated/floor/tiled, +/area/groundbase/cargo/office) +"Kl" = ( +/turf/simulated/open, +/area/groundbase/level2/nw) +"Km" = ( +/obj/effect/shuttle_landmark{ + base_area = /area/groundbase/cargo/bay; + base_turf = /turf/simulated/floor/outdoors/sidewalk/slab; + docking_controller = "cargo_bay"; + landmark_tag = "supply_station"; + name = "Cargo Landing Pad" + }, +/turf/simulated/floor/outdoors/sidewalk/slab, +/area/groundbase/cargo/bay) +"Kn" = ( +/obj/structure/sink{ + pixel_y = 20 + }, +/obj/structure/mirror{ + pixel_y = 37 + }, +/obj/machinery/alarm{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/groundbase/dorms/room3) +"Kp" = ( +/obj/machinery/recharge_station, +/turf/simulated/floor/tiled/dark, +/area/groundbase/dorms) +"Kr" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/wall, +/area/groundbase/cargo/office) +"Ks" = ( +/obj/machinery/embedded_controller/radio/airlock/access_controller{ + dir = 8; + id_tag = "xenobio_airlock_control"; + name = "Xenobiology Access Console"; + pixel_x = 24; + tag_exterior_door = "xenobio_airlock_exterior"; + tag_interior_door = "xenobio_airlock_interior" + }, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology) +"Ku" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/effect/landmark{ + name = "lightsout" + }, +/turf/simulated/floor/tiled/eris/cafe, +/area/groundbase/civilian/kitchen) +"Kv" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass_command{ + name = "Bridge"; + req_access = list(19) + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/groundbase/command/bridge) +"Kx" = ( +/turf/simulated/floor/tiled/white, +/area/groundbase/dorms/room3) +"Ky" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = -12; + pixel_y = 2 + }, +/turf/simulated/floor/tiled/white, +/area/medical/virology) +"KA" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/outdoors/sidewalk/side, +/area/groundbase/level2/ne) +"KB" = ( +/obj/structure/flora/pottedplant/minitree, +/turf/simulated/floor/wood, +/area/groundbase/cargo/qm) +"KC" = ( +/obj/structure/closet/walllocker_double{ + dir = 8; + pixel_x = -28 + }, +/obj/item/device/camera{ + pixel_x = 3; + pixel_y = -4 + }, +/obj/item/device/camera, +/obj/item/device/camera_film{ + pixel_x = 2; + pixel_y = 2 + }, +/obj/item/device/camera_film{ + pixel_x = -2; + pixel_y = -2 + }, +/obj/item/device/taperecorder, +/turf/simulated/floor/tiled{ + edge_blending_priority = -1; + outdoors = 0 + }, +/area/groundbase/level2/nw) +"KD" = ( +/obj/structure/bookcase, +/obj/item/weapon/book/manual/security_space_law, +/obj/item/weapon/book/manual/standard_operating_procedure, +/obj/item/weapon/book/manual/command_guide, +/turf/simulated/floor/wood, +/area/groundbase/command/captain) +"KE" = ( +/obj/effect/landmark/start/janitor, +/turf/simulated/floor/tiled, +/area/groundbase/civilian/janitor) +"KF" = ( +/obj/machinery/biogenerator, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/groundbase/science/xenobot) +"KG" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/medical/virology) +"KJ" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/turf/simulated/floor/tiled{ + edge_blending_priority = -1; + outdoors = 1 + }, +/area/groundbase/command/bridge) +"KL" = ( +/obj/machinery/camera/network/research{ + dir = 4 + }, +/turf/simulated/floor/tiled{ + edge_blending_priority = -1; + outdoors = 0 + }, +/area/groundbase/science/picnic) +"KM" = ( +/obj/structure/table/steel, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/obj/machinery/alarm{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/groundbase/science/server) +"KN" = ( +/obj/machinery/honey_extractor, +/turf/simulated/floor/tiled, +/area/groundbase/civilian/hydroponics) +"KO" = ( +/obj/structure/mopbucket, +/obj/item/weapon/mop, +/obj/item/weapon/reagent_containers/glass/bucket, +/turf/simulated/floor/tiled, +/area/groundbase/civilian/janitor) +"KP" = ( +/obj/machinery/atmospherics/unary/vent_pump/on, +/turf/simulated/floor/tiled, +/area/groundbase/science/xenobot) +"KQ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/landmark/start/commandsecretary, +/turf/simulated/floor/tiled/dark, +/area/groundbase/command/bridge) +"KR" = ( +/obj/machinery/power/breakerbox/activated{ + RCon_tag = "Command Substation Bypass" + }, +/turf/simulated/floor, +/area/maintenance/groundbase/substation/command) +"KS" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/wood, +/area/groundbase/cargo/qm) +"KU" = ( +/turf/simulated/floor/outdoors/sidewalk/slab, +/area/groundbase/cargo/bay) +"KV" = ( +/obj/machinery/bodyscanner, +/obj/effect/floor_decal/corner_steel_grid{ + dir = 10 + }, +/turf/simulated/floor/tiled/white, +/area/groundbase/medical/triage) +"KW" = ( +/turf/simulated/floor/outdoors/newdirt_nograss{ + outdoors = 0 + }, +/area/groundbase/level2/nw) +"KY" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/light/floortube{ + dir = 8; + pixel_x = -6 + }, +/obj/effect/landmark/start/xenobot, +/turf/simulated/floor/tiled, +/area/groundbase/science/xenobot) +"Lb" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/carpet/bcarpet, +/area/groundbase/civilian/mime) +"Lc" = ( +/turf/simulated/floor/tiled, +/area/groundbase/cargo/office) +"Ld" = ( +/obj/machinery/power/apc{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "0-8" + }, +/turf/simulated/floor/tiled, +/area/groundbase/cargo/office) +"Le" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/landmark{ + name = "lightsout" + }, +/turf/simulated/floor/tiled, +/area/groundbase/cargo/office) +"Lf" = ( +/obj/machinery/appliance/cooker/fryer, +/turf/simulated/floor/tiled/eris/cafe, +/area/groundbase/civilian/kitchen) +"Lg" = ( +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled/dark, +/area/groundbase/civilian/chapel) +"Lj" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled, +/area/groundbase/cargo/office) +"Lk" = ( +/obj/structure/table/steel, +/obj/item/device/electronic_assembly/large/default, +/turf/simulated/floor/tiled, +/area/groundbase/science/circuits) +"Lm" = ( +/obj/machinery/firealarm{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/groundbase/science/hall) +"Ln" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/wall, +/area/groundbase/cargo/office) +"Lo" = ( +/obj/structure/table/reinforced, +/obj/item/device/robotanalyzer, +/obj/structure/extinguisher_cabinet{ + dir = 8; + pixel_x = 30 + }, +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/recharger{ + pixel_y = 5 + }, +/turf/simulated/floor/tiled, +/area/groundbase/science/robotics) +"Lp" = ( +/turf/simulated/floor/tiled/white, +/area/groundbase/dorms/room4) +"Lq" = ( +/obj/structure/bed/chair/sofa/bench{ + dir = 1 + }, +/obj/effect/landmark/start/visitor, +/turf/simulated/floor/outdoors/newdirt, +/area/groundbase/level2/ne) +"Ls" = ( +/obj/item/device/radio/intercom{ + dir = 4; + pixel_x = 24 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/structure/table/standard, +/obj/machinery/photocopier/faxmachine{ + department = "Research"; + pixel_y = 6 + }, +/turf/simulated/floor/tiled, +/area/groundbase/science/rnd) +"Lt" = ( +/obj/machinery/button/remote/airlock{ + id = "dorm8"; + pixel_y = 27; + specialfunctions = 4 + }, +/obj/structure/bed/chair/sofa/corp/left{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/groundbase/dorms/room8) +"Lu" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/dark, +/area/groundbase/science/rnd) +"Lv" = ( +/obj/structure/railing/grey{ + dir = 8 + }, +/turf/simulated/floor/outdoors/sidewalk/slab, +/area/groundbase/level2/ne) +"Ly" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/wall, +/area/groundbase/cargo/qm) +"Lz" = ( +/obj/machinery/camera/network/cargo{ + dir = 8 + }, +/turf/simulated/floor/tiled{ + edge_blending_priority = -1; + outdoors = 0 + }, +/area/groundbase/cargo/office) +"LA" = ( +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/turf/simulated/floor/outdoors/sidewalk/slab, +/area/groundbase/level2/nw) +"LB" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/groundbase/science/xenobot/storage) +"LC" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/groundbase/dorms/room5) +"LD" = ( +/obj/structure/table/standard, +/obj/item/weapon/reagent_containers/food/snacks/mint, +/obj/item/weapon/reagent_containers/food/condiment/small/peppermill{ + pixel_x = 3; + pixel_y = 13 + }, +/obj/item/weapon/reagent_containers/food/condiment/small/saltshaker{ + pixel_x = -1; + pixel_y = 10 + }, +/obj/machinery/alarm{ + dir = 4 + }, +/turf/simulated/floor/tiled/eris/cafe, +/area/groundbase/civilian/kitchen) +"LE" = ( +/obj/item/weapon/storage/box/monkeycubes, +/obj/item/weapon/storage/box/monkeycubes, +/obj/item/weapon/storage/box/monkeycubes, +/obj/item/weapon/storage/box/monkeycubes, +/obj/item/weapon/storage/box/monkeycubes, +/obj/item/weapon/storage/box/beakers, +/obj/item/weapon/reagent_containers/spray/cleaner, +/obj/structure/table/steel, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology) +"LF" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/firealarm, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/groundbase/dorms) +"LG" = ( +/obj/structure/disposalpipe/tagger/partial{ + name = "partial tagger - Sorting Office"; + sort_tag = "Sorting Office" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled, +/area/groundbase/cargo/office) +"LJ" = ( +/obj/structure/bed/padded, +/turf/simulated/floor/tiled/white, +/area/medical/virology) +"LK" = ( +/obj/machinery/computer/supplycomp{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "2-8" + }, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/dark, +/area/groundbase/command/bridge) +"LL" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled, +/area/groundbase/science/hall) +"LN" = ( +/obj/machinery/shower{ + pixel_y = 16 + }, +/obj/structure/curtain/open/shower, +/turf/simulated/floor/tiled/white, +/area/groundbase/dorms/bathroom) +"LO" = ( +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/groundbase/civilian/library) +"LP" = ( +/turf/simulated/wall/r_wall, +/area/groundbase/dorms/room6) +"LQ" = ( +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/turf/simulated/floor/tiled/dark, +/area/groundbase/command/meeting) +"LR" = ( +/obj/effect/floor_decal/chapel{ + dir = 8 + }, +/obj/effect/landmark{ + name = "lightsout" + }, +/turf/simulated/floor/tiled/dark, +/area/groundbase/civilian/chapel) +"LS" = ( +/obj/structure/table/glass, +/turf/simulated/floor/tiled/dark, +/area/groundbase/civilian/bar) +"LT" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/turf/simulated/floor/outdoors/grass/seasonal/notrees_nomobs_lowsnow, +/area/groundbase/level2/nw) +"LU" = ( +/obj/structure/table/glass, +/obj/item/weapon/folder/white_rd, +/obj/item/weapon/stamp/rd, +/turf/simulated/floor/tiled, +/area/groundbase/science/rd) +"LV" = ( +/obj/structure/table/bench/padded, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/groundbase/civilian/bar) +"LW" = ( +/obj/structure/sign/xenobio{ + plane = -34 + }, +/obj/structure/cable/yellow{ + icon_state = "32-4" + }, +/obj/machinery/atmospherics/pipe/zpipe/down/scrubbers{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/zpipe/down/supply{ + dir = 1 + }, +/obj/structure/disposalpipe/down{ + dir = 1 + }, +/turf/simulated/wall/r_wall, +/area/rnd/xenobiology) +"LX" = ( +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled{ + edge_blending_priority = -1; + outdoors = 0 + }, +/area/groundbase/cargo/office) +"LY" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/white, +/area/medical/virology) +"LZ" = ( +/obj/structure/table/woodentable, +/obj/machinery/microwave, +/turf/simulated/floor/wood, +/area/groundbase/dorms/room6) +"Mb" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/groundbase/command/bridge) +"Mc" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/turf/simulated/floor/tiled/dark, +/area/groundbase/command/hall) +"Me" = ( +/obj/machinery/photocopier, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/camera/network/cargo{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/groundbase/cargo/office) +"Mf" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/simulated/wall/r_wall, +/area/groundbase/science/picnic) +"Mh" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/groundbase/medical/triage) +"Mi" = ( +/obj/structure/table/reinforced, +/obj/item/weapon/reagent_containers/spray/cleaner{ + desc = "Someone has crossed out the 'Space' from Space Cleaner and written in Chemistry. Scrawled on the back is, 'Okay, whoever filled this with polytrinic acid, it was only funny the first time. It was hard enough replacing the CMO's first cat!'"; + name = "Chemistry Cleaner" + }, +/obj/item/weapon/hand_labeler, +/obj/item/weapon/packageWrap, +/obj/item/device/mass_spectrometer/adv, +/obj/item/device/mass_spectrometer/adv, +/obj/item/clothing/glasses/science, +/obj/item/clothing/glasses/science, +/obj/machinery/alarm{ + dir = 8 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/groundbase/medical/Chemistry) +"Mj" = ( +/obj/machinery/firealarm{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled, +/area/groundbase/science/rnd) +"Mk" = ( +/obj/structure/table/standard, +/obj/item/clothing/head/soft, +/obj/item/clothing/head/soft, +/obj/item/weapon/stamp{ + pixel_x = -3; + pixel_y = 3 + }, +/turf/simulated/floor/tiled, +/area/groundbase/cargo/office) +"Ml" = ( +/obj/structure/filingcabinet/chestdrawer, +/obj/machinery/power/apc{ + dir = 1 + }, +/obj/structure/cable/yellow{ + icon_state = "0-2" + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/groundbase/command/hop) +"Mm" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/groundbase/dorms) +"Mn" = ( +/obj/structure/railing/grey, +/turf/simulated/floor/outdoors/grass/seasonal/notrees_nomobs_lowsnow, +/area/groundbase/level2/ne) +"Mo" = ( +/obj/machinery/vending/hydronutrients, +/turf/simulated/floor/tiled, +/area/groundbase/civilian/hydroponics) +"Mp" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/computer/guestpass{ + dir = 8; + pixel_x = 25 + }, +/turf/simulated/floor/tiled/white, +/area/groundbase/medical/lobby) +"Mq" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/dark, +/area/groundbase/dorms) +"Mr" = ( +/obj/machinery/door/airlock{ + id_tag = null; + name = "Bathroom" + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/groundbase/dorms/room1) +"Ms" = ( +/obj/machinery/portable_atmospherics/canister/oxygen, +/turf/simulated/floor/tiled, +/area/groundbase/science/xenobot/storage) +"Mt" = ( +/obj/structure/table/woodentable, +/obj/structure/plushie/ian{ + dir = 8; + pixel_y = 6 + }, +/obj/machinery/alarm{ + dir = 8 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/wood, +/area/groundbase/medical/psych) +"Mu" = ( +/obj/effect/floor_decal/steeldecal/steel_decals10, +/turf/simulated/floor/tiled/white, +/area/groundbase/medical/triage) +"Mw" = ( +/obj/machinery/autolathe{ + hacked = 1 + }, +/obj/machinery/power/apc/hyper{ + dir = 1 + }, +/obj/structure/cable/yellow{ + icon_state = "0-2" + }, +/turf/simulated/floor/tiled, +/area/groundbase/science/rnd) +"Mx" = ( +/obj/structure/table/glass, +/obj/machinery/computer/med_data/laptop{ + dir = 8 + }, +/obj/item/device/radio{ + anchored = 1; + canhear_range = 7; + frequency = 1487; + icon = 'icons/obj/items.dmi'; + icon_state = "red_phone"; + name = "Virology Emergency Phone"; + pixel_x = 7; + pixel_y = 9 + }, +/turf/simulated/floor/tiled/white, +/area/medical/virology) +"My" = ( +/obj/structure/table/standard, +/obj/machinery/cell_charger, +/obj/machinery/camera/network/research{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/groundbase/science/robotics) +"Mz" = ( +/obj/structure/table/steel, +/obj/item/weapon/reagent_containers/spray/cleaner, +/obj/machinery/camera/network/research/xenobio{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology) +"MA" = ( +/obj/machinery/computer/transhuman/resleeving{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "2-8" + }, +/obj/machinery/camera/network/command, +/turf/simulated/floor/tiled/dark, +/area/groundbase/command/bridge) +"MB" = ( +/obj/machinery/alarm/freezer{ + dir = 4; + pixel_x = -25 + }, +/turf/simulated/floor/tiled/freezer/cold, +/area/groundbase/civilian/kitchen/freezer) +"MC" = ( +/obj/machinery/conveyor{ + dir = 1; + id = "packageSort1" + }, +/turf/simulated/floor/tiled, +/area/groundbase/cargo/office) +"MD" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/simulated/wall, +/area/groundbase/civilian/bar) +"ME" = ( +/turf/simulated/wall, +/area/groundbase/civilian/chapel/office) +"MF" = ( +/obj/machinery/computer/rdconsole/core{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/groundbase/science/rnd) +"MG" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled, +/area/groundbase/science/xenobot/storage) +"MH" = ( +/obj/structure/fence{ + dir = 4 + }, +/turf/simulated/floor/outdoors/grass/seasonal/notrees_nomobs_lowsnow, +/area/groundbase/cargo/bay) +"MJ" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/groundbase/dorms) +"MM" = ( +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/carpet/blue, +/area/groundbase/medical/psych) +"MO" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/groundbase/science/robotics) +"MQ" = ( +/obj/structure/table/standard, +/obj/item/weapon/folder/yellow, +/obj/item/weapon/stamp/denied{ + pixel_x = 4; + pixel_y = -2 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/item/weapon/stamp/accepted, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/groundbase/cargo/office) +"MR" = ( +/obj/structure/table/standard, +/obj/item/weapon/hand_labeler, +/obj/item/weapon/pen, +/obj/item/weapon/packageWrap, +/obj/item/weapon/packageWrap, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/groundbase/science/rnd) +"MS" = ( +/turf/simulated/floor/reinforced{ + edge_blending_priority = -1; + outdoors = 1 + }, +/area/groundbase/level2/ne) +"MU" = ( +/obj/effect/mouse_hole_spawner{ + dir = 4 + }, +/turf/simulated/floor/tiled{ + edge_blending_priority = -1; + outdoors = 1 + }, +/area/groundbase/level2/se) +"MV" = ( +/obj/machinery/alarm{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology) +"MW" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/simulated/wall, +/area/groundbase/cargo/qm) +"MX" = ( +/obj/structure/closet/firecloset, +/obj/machinery/light, +/turf/simulated/floor/tiled, +/area/groundbase/science/xenobot) +"MY" = ( +/turf/simulated/floor/wood, +/area/groundbase/civilian/library) +"MZ" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/outdoors/sidewalk/slab, +/area/groundbase/level2/nw) +"Na" = ( +/obj/machinery/computer/secure_data{ + dir = 8; + pixel_y = -4 + }, +/obj/structure/noticeboard{ + pixel_x = 32 + }, +/turf/simulated/floor/tiled/dark, +/area/groundbase/command/bridge) +"Nb" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/groundbase/science/xenohall) +"Nc" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass{ + name = "Library" + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/bmarble, +/area/groundbase/civilian/library) +"Nd" = ( +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/turf/simulated/floor/outdoors/sidewalk/slab, +/area/groundbase/level2/nw) +"Ne" = ( +/obj/machinery/papershredder, +/turf/simulated/floor/tiled, +/area/groundbase/command/hop) +"Nf" = ( +/turf/simulated/floor/reinforced{ + edge_blending_priority = -1; + outdoors = 1 + }, +/area/groundbase/level2/westspur) +"Ni" = ( +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/groundbase/science/xenobot/storage) +"Nj" = ( +/obj/structure/table/woodentable, +/obj/machinery/atmospherics/unary/vent_pump/on, +/turf/simulated/floor/carpet, +/area/groundbase/civilian/chapel) +"Nk" = ( +/obj/random/mob/bird, +/turf/simulated/floor/outdoors/grass/seasonal/notrees_nomobs_lowsnow, +/area/groundbase/unexplored/outdoors) +"Nl" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled, +/area/groundbase/science/hall) +"Nn" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/machinery/atmospherics/unary/freezer{ + dir = 8; + icon_state = "freezer_1"; + power_setting = 20; + set_temperature = 73; + use_power = 1 + }, +/obj/effect/floor_decal/industrial/outline/blue, +/turf/simulated/floor/tiled, +/area/groundbase/science/server) +"No" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/multi_tile/glass/polarized{ + dir = 2; + id_tag = "MedbayFoyer"; + id_tint = "medbayfoyer"; + name = "Medbay Airlock"; + req_one_access = list(5) + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/groundbase/medical/triage) +"Nq" = ( +/turf/simulated/floor/reinforced{ + edge_blending_priority = -1; + outdoors = 1 + }, +/area/groundbase/level2/se) +"Ns" = ( +/obj/machinery/alarm, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/groundbase/cargo/qm) +"Nv" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/dark, +/area/groundbase/civilian/chapel) +"Nw" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/turf/simulated/floor/outdoors/grass/seasonal/notrees_nomobs_lowsnow, +/area/groundbase/level2/ne) +"Ny" = ( +/turf/simulated/floor/tiled/dark, +/area/groundbase/civilian/bar) +"Nz" = ( +/obj/structure/bed/chair/sofa/pew/right{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/groundbase/civilian/chapel) +"NA" = ( +/obj/machinery/door/firedoor, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 8; + health = 1e+006 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/grille, +/obj/structure/disposalpipe/segment, +/obj/machinery/door/blast/regular{ + density = 0; + dir = 4; + icon_state = "pdoor0"; + id = "xenobiopen3"; + name = "Pen 3 Blast Doors"; + opacity = 0 + }, +/turf/simulated/floor/reinforced, +/area/rnd/xenobiology) +"NC" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/outdoors/sidewalk/side, +/area/groundbase/level2/ne) +"ND" = ( +/turf/simulated/floor/outdoors/newdirt, +/area/groundbase/command/hop) +"NE" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/obj/effect/landmark/vermin, +/turf/simulated/floor/tiled, +/area/groundbase/civilian/hydroponics) +"NF" = ( +/obj/machinery/computer/communications{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/structure/cable/green{ + icon_state = "1-4" + }, +/obj/structure/cable/green{ + icon_state = "2-4" + }, +/turf/simulated/floor/tiled/dark, +/area/groundbase/command/bridge) +"NG" = ( +/mob/living/simple_mob/animal/goat{ + name = "Fredula" + }, +/turf/simulated/floor/tiled/freezer/cold, +/area/groundbase/civilian/kitchen/freezer) +"NJ" = ( +/obj/effect/floor_decal/chapel{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/dark, +/area/groundbase/civilian/chapel) +"NK" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/junction{ + dir = 4; + icon_state = "pipe-j2" + }, +/turf/simulated/floor/outdoors/sidewalk/side, +/area/groundbase/level2/nw) +"NM" = ( +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/eris/cafe, +/area/groundbase/civilian/kitchen) +"NO" = ( +/obj/structure/railing/grey, +/turf/simulated/floor/tiled{ + edge_blending_priority = -1; + outdoors = 1 + }, +/area/groundbase/level2/se) +"NP" = ( +/obj/machinery/door/airlock/glass{ + name = "Hydroponics"; + req_one_access = list(35,28) + }, +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/bmarble, +/area/groundbase/civilian/hydroponics) +"NR" = ( +/obj/structure/cable/yellow, +/obj/structure/cable/yellow{ + icon_state = "0-2" + }, +/obj/machinery/power/smes/buildable{ + RCon_tag = "Substation - Command"; + output_attempt = 0 + }, +/turf/simulated/floor, +/area/maintenance/groundbase/substation/command) +"NS" = ( +/obj/machinery/door/window/brigdoor/eastleft{ + dir = 1; + name = "Slime Pen"; + req_access = list(55) + }, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology) +"NT" = ( +/obj/structure/bed/chair/sofa/black{ + dir = 8 + }, +/turf/simulated/floor/carpet/geo, +/area/groundbase/civilian/kitchen/backroom) +"NU" = ( +/obj/structure/sign/painting/library_secure{ + pixel_y = 30 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/simulated/floor/wood, +/area/groundbase/medical/psych) +"NW" = ( +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/dark, +/area/groundbase/science/hall) +"NX" = ( +/obj/machinery/alarm, +/turf/simulated/floor/tiled, +/area/groundbase/science/circuits) +"NY" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/groundbase/science/hall) +"NZ" = ( +/obj/structure/mirror{ + pixel_y = 37 + }, +/obj/structure/sink{ + pixel_y = 20 + }, +/obj/machinery/alarm{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/groundbase/dorms/room4) +"Oa" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/outdoors/sidewalk/side, +/area/groundbase/level2/nw) +"Ob" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/simulated/floor/bmarble, +/area/groundbase/cargo/office) +"Oc" = ( +/obj/structure/bookcase{ + name = "bookcase (Adult)" + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/simulated/floor/wood, +/area/groundbase/civilian/library) +"Od" = ( +/obj/machinery/camera/network/civilian{ + dir = 1 + }, +/turf/simulated/floor/wood, +/area/groundbase/civilian/library) +"Oe" = ( +/obj/machinery/light/floortube{ + dir = 8; + pixel_x = -6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled, +/area/groundbase/civilian/hydroponics) +"Of" = ( +/obj/machinery/light/bigfloorlamp, +/turf/simulated/floor/outdoors/grass/seasonal/notrees_nomobs_lowsnow, +/area/medical/virology) +"Oh" = ( +/obj/structure/bed/chair/sofa/left/black{ + dir = 8 + }, +/turf/simulated/floor/carpet/geo, +/area/groundbase/civilian/kitchen/backroom) +"Oi" = ( +/obj/structure/disposalpipe/tagger{ + dir = 8; + name = "package tagger - Trash"; + sort_tag = "Trash" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/wall, +/area/groundbase/cargo/office) +"Oj" = ( +/obj/machinery/button/windowtint{ + id = "chef_office"; + layer = 3.3; + pixel_y = -27 + }, +/turf/simulated/floor/carpet/geo, +/area/groundbase/civilian/kitchen/backroom) +"Ok" = ( +/obj/machinery/power/apc{ + dir = 1 + }, +/obj/structure/cable/yellow{ + icon_state = "0-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/turf/simulated/floor/wood, +/area/groundbase/cargo/qm) +"Ol" = ( +/obj/structure/noticeboard{ + pixel_y = -32 + }, +/turf/simulated/floor/wood, +/area/groundbase/civilian/library) +"Om" = ( +/obj/machinery/alarm{ + dir = 4 + }, +/obj/machinery/light_switch{ + pixel_y = 30 + }, +/turf/simulated/floor/tiled/white, +/area/medical/virology) +"On" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/landmark/start/medical, +/turf/simulated/floor/tiled/white, +/area/groundbase/medical/triage) +"Oo" = ( +/obj/machinery/button/remote/blast_door{ + dir = 1; + id = "xenobiopen3"; + name = "Pen 3 Containment"; + pixel_y = -38; + req_access = list(55) + }, +/obj/machinery/button/remote/blast_door{ + dir = 1; + id = "xenobiodiv1"; + name = "Divider"; + pixel_y = -27; + req_access = list(55) + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology) +"Op" = ( +/obj/machinery/light, +/turf/simulated/floor/lino{ + edge_blending_priority = 0.1 + }, +/area/groundbase/civilian/kitchen) +"Oq" = ( +/obj/effect/floor_decal/chapel{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/groundbase/civilian/chapel) +"Or" = ( +/turf/simulated/floor/carpet, +/area/groundbase/command/hop) +"Ou" = ( +/obj/structure/sign/directions/evac{ + dir = 8; + pixel_x = 32; + pixel_y = -32 + }, +/turf/simulated/floor/outdoors/grass/seasonal/notrees_nomobs_lowsnow, +/area/groundbase/level2/ne) +"Ov" = ( +/obj/structure/closet/wardrobe/robotics_black, +/turf/simulated/floor/tiled, +/area/groundbase/science/hall) +"Ow" = ( +/obj/machinery/atmospherics/portables_connector{ + dir = 8 + }, +/obj/machinery/portable_atmospherics/canister/oxygen/prechilled, +/obj/machinery/door/window/brigdoor/southleft{ + dir = 8; + req_access = list(); + req_one_access = list(5,24) + }, +/turf/simulated/floor/tiled/white, +/area/groundbase/medical/triage) +"Ox" = ( +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/turf/simulated/floor/tiled, +/area/groundbase/civilian/hydroponics) +"Oy" = ( +/obj/structure/railing/grey, +/turf/simulated/open, +/area/groundbase/level2/eastspur) +"Oz" = ( +/obj/structure/sink/kitchen{ + pixel_y = 20 + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled/eris/cafe, +/area/groundbase/civilian/kitchen) +"OA" = ( +/obj/structure/closet/secure_closet/hydroponics, +/obj/machinery/computer/guestpass{ + dir = 4; + pixel_x = -25 + }, +/turf/simulated/floor/tiled, +/area/groundbase/civilian/hydroponics) +"OB" = ( +/obj/machinery/light, +/obj/structure/toilet{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/groundbase/dorms/room3) +"OC" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/computer/timeclock/premade/east, +/turf/simulated/floor/tiled/dark, +/area/groundbase/civilian/bar) +"OD" = ( +/obj/structure/table/reinforced, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/white, +/area/groundbase/medical/Chemistry) +"OE" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/groundbase/science/hall) +"OF" = ( +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 5 + }, +/obj/machinery/meter, +/turf/simulated/floor/tiled, +/area/groundbase/science/xenobot/storage) +"OG" = ( +/obj/machinery/power/apc{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "0-8" + }, +/turf/simulated/floor/tiled, +/area/groundbase/science/hall) +"OH" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/medical/virology) +"OI" = ( +/turf/simulated/floor{ + edge_blending_priority = -1; + outdoors = 1 + }, +/area/groundbase/level2/nw) +"OJ" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/simulated/floor/wood, +/area/groundbase/dorms/room1) +"OK" = ( +/obj/machinery/atmospherics/unary/freezer{ + icon_state = "freezer" + }, +/turf/simulated/floor/tiled, +/area/groundbase/science/xenobot/storage) +"OL" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/groundbase/science/xenobot) +"OM" = ( +/obj/effect/mouse_hole_spawner, +/turf/simulated/floor/outdoors/grass/seasonal/notrees_nomobs_lowsnow, +/area/groundbase/level2/ne) +"ON" = ( +/turf/unsimulated/wall/planetary/normal{ + desc = "It's quite impassable"; + icon_state = "rock-dark"; + name = "impassable rock" + }, +/area/groundbase/level2/sw) +"OO" = ( +/obj/structure/sign/department/cargo, +/turf/simulated/wall, +/area/groundbase/cargo/office) +"OP" = ( +/obj/structure/railing/grey{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/groundbase/medical/triage) +"OQ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/light_switch{ + dir = 8; + pixel_x = 30 + }, +/turf/simulated/floor/tiled, +/area/groundbase/science/robotics) +"OR" = ( +/obj/machinery/firealarm{ + dir = 8 + }, +/obj/structure/closet/secure_closet/personal, +/obj/item/weapon/towel/random, +/obj/item/weapon/storage/backpack, +/turf/simulated/floor/wood, +/area/groundbase/dorms/room3) +"OS" = ( +/obj/machinery/alarm{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/groundbase/command/meeting) +"OU" = ( +/obj/structure/sign/painting/public{ + pixel_y = -30 + }, +/turf/simulated/floor/tiled{ + edge_blending_priority = -1; + outdoors = 0 + }, +/area/groundbase/level2/nw) +"OV" = ( +/obj/structure/table/woodentable, +/obj/machinery/photocopier/faxmachine{ + department = "Captain's Office" + }, +/turf/simulated/floor/wood, +/area/groundbase/command/captain) +"OX" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/window/eastright{ + dir = 8; + name = "Virology Isolation Room Two"; + req_one_access = list(39) + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/medical/virology) +"OY" = ( +/turf/simulated/wall/r_wall, +/area/groundbase/science/rnd) +"OZ" = ( +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/outdoors/sidewalk/slab, +/area/groundbase/level2/nw) +"Pa" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/groundbase/science/robotics) +"Pb" = ( +/obj/structure/disposalpipe/sortjunction/untagged{ + dir = 1; + name = "Trash"; + sortType = "Trash" + }, +/obj/structure/table/standard, +/obj/machinery/photocopier/faxmachine{ + department = "Cargo"; + pixel_y = 6 + }, +/turf/simulated/floor/tiled, +/area/groundbase/cargo/office) +"Pc" = ( +/obj/machinery/vending/hydronutrients, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/groundbase/science/xenobot) +"Pe" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/outdoors/sidewalk/side, +/area/groundbase/level2/nw) +"Ph" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/groundbase/science/robotics) +"Pk" = ( +/obj/structure/table/standard, +/obj/machinery/reagentgrinder{ + pixel_y = 10 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/simulated/floor/tiled/eris/cafe, +/area/groundbase/civilian/kitchen) +"Pl" = ( +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/groundbase/science/robotics) +"Pm" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/dark, +/area/groundbase/command/hall) +"Pn" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/machinery/requests_console{ + department = "Virology"; + departmentType = 2; + pixel_y = 30 + }, +/turf/simulated/floor/tiled/white, +/area/groundbase/medical/triage) +"Po" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/groundbase/cargo/office) +"Pp" = ( +/obj/machinery/body_scanconsole, +/obj/effect/floor_decal/corner_steel_grid{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/white, +/area/groundbase/medical/triage) +"Pq" = ( +/obj/structure/bed/chair/sofa/corp, +/obj/machinery/alarm, +/turf/simulated/floor/wood, +/area/groundbase/dorms/room6) +"Pr" = ( +/obj/machinery/firealarm, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/groundbase/command/hall) +"Ps" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/turf/simulated/floor/wood, +/area/groundbase/dorms/room1) +"Pt" = ( +/obj/structure/bed/chair/sofa/bench/right, +/turf/simulated/floor/outdoors/newdirt, +/area/groundbase/level2/ne) +"Pu" = ( +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/obj/machinery/disposal, +/obj/machinery/light_switch{ + dir = 4; + pixel_x = -30 + }, +/turf/simulated/floor/wood, +/area/groundbase/dorms/room6) +"Pv" = ( +/obj/machinery/station_map{ + dir = 4; + pixel_x = -32 + }, +/turf/simulated/floor/tiled/white, +/area/groundbase/medical/triage) +"Pw" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled, +/area/groundbase/science/xenobot) +"Py" = ( +/obj/structure/bed/chair/comfy/brown, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/landmark/start/librarian, +/turf/simulated/floor/wood, +/area/groundbase/civilian/library) +"Pz" = ( +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled{ + edge_blending_priority = -1; + outdoors = 0 + }, +/area/groundbase/level2/nw) +"PA" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass{ + name = "Library" + }, +/turf/simulated/floor/bmarble, +/area/groundbase/civilian/library) +"PC" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/turf/simulated/floor/tiled{ + edge_blending_priority = -1; + outdoors = 0 + }, +/area/groundbase/cargo/office) +"PD" = ( +/turf/simulated/wall/r_wall, +/area/groundbase/science/xenohall) +"PG" = ( +/obj/machinery/account_database, +/turf/simulated/floor/tiled, +/area/groundbase/command/hop) +"PI" = ( +/obj/effect/floor_decal/industrial/outline, +/turf/simulated/floor/outdoors/sidewalk/slab, +/area/groundbase/cargo/bay) +"PJ" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/machinery/recharge_station, +/obj/machinery/status_display/supply_display{ + pixel_y = 32 + }, +/turf/simulated/floor/tiled{ + edge_blending_priority = -1; + outdoors = 0 + }, +/area/groundbase/cargo/office) +"PL" = ( +/obj/effect/floor_decal/steeldecal/steel_decals10, +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled/white, +/area/groundbase/medical/triage) +"PM" = ( +/obj/machinery/door/airlock/glass{ + name = "Hydroponics"; + req_one_access = list(35,28) + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor/bmarble, +/area/groundbase/civilian/hydroponics) +"PN" = ( +/turf/simulated/floor/outdoors/grass/seasonal/notrees_nomobs_lowsnow, +/area/groundbase/science/robotics) +"PO" = ( +/obj/structure/bookcase{ + desc = "There appears to be a shrine to WGW at the back..."; + name = "Forbidden Knowledge" + }, +/obj/item/weapon/book/manual/engineering_hacking, +/obj/item/weapon/book/manual/nuclear, +/obj/item/weapon/book/custom_library/fiction/woodysgotwood, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/simulated/floor/carpet, +/area/groundbase/civilian/library) +"PQ" = ( +/obj/machinery/button/remote/blast_door{ + dir = 1; + id = "xenobiopen1"; + name = "Pen 1 Containment"; + pixel_y = -38; + req_access = list(55) + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology) +"PR" = ( +/obj/effect/landmark/start/xenobio, +/turf/simulated/floor/tiled, +/area/groundbase/science/hall) +"PS" = ( +/obj/structure/table/bench/padded, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/groundbase/civilian/bar) +"PT" = ( +/obj/machinery/button/remote/airlock{ + dir = 8; + id = "dorm1"; + pixel_x = 27; + specialfunctions = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/bed/chair/sofa/corp/left{ + dir = 8 + }, +/turf/simulated/floor/wood, +/area/groundbase/dorms/room1) +"PU" = ( +/obj/structure/table/bench/padded, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/groundbase/civilian/bar) +"PV" = ( +/turf/simulated/floor/wood, +/area/groundbase/dorms/room2) +"PW" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/glass_research{ + name = "Robotics Lab"; + req_one_access = list(29,47) + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/groundbase/science/robotics) +"PX" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/groundbase/science/xenobot) +"PZ" = ( +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/groundbase/science/hall) +"Qa" = ( +/obj/machinery/r_n_d/server/robotics, +/obj/machinery/atmospherics/unary/vent_pump{ + dir = 4; + icon_state = "map_vent_out"; + use_power = 1 + }, +/turf/simulated/floor/bluegrid{ + name = "Server Base"; + nitrogen = 500; + oxygen = 0; + temperature = 80 + }, +/area/groundbase/science/server) +"Qc" = ( +/obj/random/mob/bird, +/turf/simulated/floor/outdoors/grass/seasonal/notrees_nomobs_lowsnow, +/area/groundbase/level2/se) +"Qe" = ( +/obj/structure/sign/painting/library_private{ + pixel_y = -32 + }, +/turf/simulated/floor/carpet, +/area/groundbase/civilian/library) +"Qf" = ( +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/white, +/area/groundbase/medical/triage) +"Qg" = ( +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/groundbase/science/xenobot) +"Qh" = ( +/obj/structure/bookcase{ + name = "bookcase (Religious)" + }, +/obj/item/weapon/book/bundle/custom_library/religious/zoroastrianism, +/obj/item/weapon/book/custom_library/religious/feastofkubera, +/obj/item/weapon/book/custom_library/religious/storyoflordganesha, +/obj/item/weapon/book/custom_library/religious/sungoddessofkorea, +/obj/item/weapon/book/custom_library/religious/wayofbleedingswan, +/obj/machinery/atmospherics/unary/vent_pump/on, +/turf/simulated/floor/wood, +/area/groundbase/civilian/library) +"Qi" = ( +/obj/structure/disposalpipe/junction{ + dir = 1 + }, +/turf/simulated/wall, +/area/groundbase/cargo/office) +"Qn" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/obj/machinery/light, +/turf/simulated/floor/tiled, +/area/groundbase/science/xenohall) +"Qp" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/groundbase/civilian/chapel) +"Qq" = ( +/obj/machinery/door/airlock{ + id_tag = "dorm5"; + name = "Room 5" + }, +/obj/machinery/door/firedoor, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/groundbase/dorms/room5) +"Qr" = ( +/obj/effect/landmark{ + name = "lightsout" + }, +/turf/simulated/floor/tiled/white, +/area/medical/virology) +"Qs" = ( +/obj/structure/filingcabinet/chestdrawer{ + name = "Medical Forms" + }, +/turf/simulated/floor/carpet/blue, +/area/groundbase/medical/psych) +"Qt" = ( +/obj/machinery/computer/crew{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "2-8" + }, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/groundbase/command/bridge) +"Qu" = ( +/obj/effect/landmark{ + name = "droppod_landing" + }, +/turf/simulated/floor/outdoors/grass/seasonal/dark/lowsnow, +/area/groundbase/unexplored/outdoors) +"Qv" = ( +/obj/machinery/vending/wardrobe/cargodrobe, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/groundbase/cargo/office) +"Qw" = ( +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/turf/simulated/floor/tiled/dark, +/area/groundbase/civilian/chapel) +"Qx" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/dark, +/area/groundbase/command/hall) +"Qy" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/wood, +/area/groundbase/dorms/room3) +"Qz" = ( +/obj/machinery/light, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/groundbase/command/captain) +"QA" = ( +/obj/machinery/alarm{ + dir = 8 + }, +/obj/machinery/light, +/turf/simulated/floor/tiled/white, +/area/medical/virology) +"QB" = ( +/obj/effect/floor_decal/chapel{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/dark, +/area/groundbase/civilian/chapel) +"QC" = ( +/obj/machinery/portable_atmospherics/canister/nitrogen, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/groundbase/science/xenobot/storage) +"QD" = ( +/turf/simulated/floor{ + edge_blending_priority = -1; + outdoors = 1 + }, +/area/groundbase/level2/eastspur) +"QE" = ( +/obj/machinery/appliance/mixer/cereal, +/turf/simulated/floor/tiled/eris/cafe, +/area/groundbase/civilian/kitchen) +"QF" = ( +/obj/machinery/camera/network/medbay{ + dir = 1 + }, +/obj/structure/table/glass, +/obj/machinery/injector_maker{ + pixel_y = -31 + }, +/turf/simulated/floor/tiled/white, +/area/groundbase/medical/triage) +"QG" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/turf/simulated/floor/wood, +/area/groundbase/command/captain) +"QH" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/wood, +/area/groundbase/cargo/qm) +"QI" = ( +/obj/structure/closet/secure_closet/hop, +/obj/item/clothing/glasses/omnihud, +/turf/simulated/floor/tiled, +/area/groundbase/command/hop) +"QJ" = ( +/obj/structure/bed/chair/sofa/pew/right{ + dir = 1 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/dark, +/area/groundbase/civilian/chapel) +"QK" = ( +/obj/structure/closet/walllocker_double{ + dir = 8; + pixel_x = -28 + }, +/obj/item/canvas, +/obj/item/canvas, +/obj/item/canvas, +/obj/item/canvas, +/obj/item/canvas, +/obj/item/canvas/nineteen_nineteen, +/obj/item/canvas/nineteen_nineteen, +/obj/item/canvas/nineteen_nineteen, +/obj/item/canvas/nineteen_nineteen, +/obj/item/canvas/nineteen_nineteen, +/obj/item/canvas/twentyfour_twentyfour, +/obj/item/canvas/twentyfour_twentyfour, +/obj/item/canvas/twentyfour_twentyfour, +/obj/item/canvas/twentyfour_twentyfour, +/obj/item/canvas/twentyfour_twentyfour, +/obj/item/canvas/twentythree_nineteen, +/obj/item/canvas/twentythree_nineteen, +/obj/item/canvas/twentythree_nineteen, +/obj/item/canvas/twentythree_nineteen, +/obj/item/canvas/twentythree_nineteen, +/obj/item/canvas/twentythree_twentythree, +/obj/item/canvas/twentythree_twentythree, +/obj/item/canvas/twentythree_twentythree, +/obj/item/canvas/twentythree_twentythree, +/obj/item/canvas/twentythree_twentythree, +/obj/structure/easel, +/turf/simulated/floor/tiled{ + edge_blending_priority = -1; + outdoors = 0 + }, +/area/groundbase/level2/nw) +"QL" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/groundbase/science/hall) +"QM" = ( +/obj/structure/sink{ + dir = 4; + pixel_x = 11 + }, +/turf/simulated/floor/tiled, +/area/groundbase/science/xenobot) +"QN" = ( +/obj/effect/landmark/start/visitor, +/turf/simulated/floor/tiled{ + edge_blending_priority = -1; + outdoors = 0 + }, +/area/groundbase/level2/nw) +"QO" = ( +/obj/machinery/button/remote/airlock{ + id = "dorm7"; + pixel_y = 27; + specialfunctions = 4 + }, +/obj/structure/bed/chair/sofa/corp/right{ + dir = 8 + }, +/turf/simulated/floor/wood, +/area/groundbase/dorms/room7) +"QP" = ( +/obj/structure/closet/firecloset, +/turf/simulated/floor/tiled, +/area/groundbase/science/xenobot) +"QQ" = ( +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/turf/simulated/floor/lino, +/area/groundbase/civilian/chapel/office) +"QR" = ( +/obj/effect/landmark/start/entertainer, +/turf/simulated/floor/tiled{ + edge_blending_priority = -1; + outdoors = 0 + }, +/area/groundbase/level2/nw) +"QS" = ( +/obj/effect/mouse_hole_spawner{ + dir = 8 + }, +/turf/simulated/floor/outdoors/grass/seasonal/notrees_nomobs_lowsnow, +/area/groundbase/level2/nw) +"QV" = ( +/obj/structure/bed/chair/office/dark{ + dir = 1 + }, +/obj/effect/landmark/start/scientist, +/turf/simulated/floor/tiled, +/area/groundbase/science/circuits) +"QW" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/turf/simulated/floor/tiled/eris/cafe, +/area/groundbase/civilian/kitchen) +"QX" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/machinery/camera/network/command{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/groundbase/command/hall) +"QY" = ( +/obj/random/vendorall, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/simulated/floor/tiled{ + edge_blending_priority = -1; + outdoors = 0 + }, +/area/groundbase/science/picnic) +"QZ" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/effect/landmark/start/chaplain, +/turf/simulated/floor/carpet, +/area/groundbase/civilian/chapel) +"Ra" = ( +/obj/structure/table/glass, +/obj/machinery/computer/skills{ + pixel_y = 5 + }, +/turf/simulated/floor/tiled, +/area/groundbase/science/rd) +"Rb" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/hologram/holopad, +/turf/simulated/floor/tiled/dark, +/area/groundbase/civilian/chapel) +"Rc" = ( +/obj/machinery/portable_atmospherics/canister/carbon_dioxide, +/turf/simulated/floor/tiled, +/area/groundbase/science/xenobot/storage) +"Rd" = ( +/obj/structure/table/reinforced, +/obj/item/device/megaphone, +/obj/item/weapon/book/manual/command_guide, +/obj/item/weapon/book/manual/standard_operating_procedure, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/groundbase/command/hop) +"Re" = ( +/obj/machinery/hologram/holopad, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/groundbase/science/xenobot) +"Rf" = ( +/obj/machinery/beehive, +/turf/simulated/floor/tiled, +/area/groundbase/civilian/hydroponics) +"Rg" = ( +/obj/machinery/conveyor{ + dir = 1; + id = "packageSort1" + }, +/obj/structure/disposalpipe/down{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/groundbase/cargo/office) +"Rh" = ( +/turf/simulated/wall/r_wall, +/area/groundbase/science/circuits) +"Ri" = ( +/obj/machinery/mech_recharger, +/turf/simulated/floor/tiled, +/area/groundbase/science/robotics) +"Rk" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/machinery/computer/timeclock/premade/north, +/turf/simulated/floor/tiled/dark, +/area/groundbase/dorms) +"Rm" = ( +/obj/structure/table/bench/padded, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/groundbase/civilian/bar) +"Rn" = ( +/obj/machinery/atmospherics/binary/pump{ + dir = 1; + name = "Port to Isolation" + }, +/turf/simulated/floor/tiled, +/area/groundbase/science/xenobot/storage) +"Ro" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled{ + edge_blending_priority = -1; + outdoors = 0 + }, +/area/groundbase/cargo/office) +"Rp" = ( +/mob/living/simple_mob/animal/passive/cow, +/turf/simulated/floor/outdoors/grass/seasonal/dark/lowsnow, +/area/groundbase/civilian/hydroponics/out) +"Rq" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/research{ + frequency = 1379; + id_tag = "xenobio_airlock_interior"; + locked = 1; + name = "Xenobiology Lab"; + req_access = list(47,55) + }, +/obj/machinery/access_button{ + command = "cycle_interior"; + dir = 1; + frequency = 1379; + master_tag = "xenobio_airlock_control"; + name = "Xenobiology Access Button"; + pixel_y = -32; + req_access = null; + req_one_access = list(47,55) + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/rnd/xenobiology) +"Rr" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/medical/virology) +"Rs" = ( +/obj/machinery/door/firedoor, +/turf/simulated/floor/bmarble, +/area/groundbase/civilian/chapel) +"Ru" = ( +/turf/simulated/floor/reinforced{ + edge_blending_priority = -1; + outdoors = 1 + }, +/area/groundbase/level2/sw) +"Rv" = ( +/obj/machinery/light, +/turf/simulated/floor/tiled/eris/cafe, +/area/groundbase/civilian/kitchen) +"Rw" = ( +/obj/structure/table/woodentable, +/obj/machinery/recharger{ + pixel_y = 4 + }, +/obj/item/device/perfect_tele{ + desc = "Seems absurd, doesn't it? Yet, here we are. Generally considered dangerous contraband unless the user has permission from Central Command. This one is the Site Manager's, and they are authorized to use it."; + name = "manager's translocator" + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/wood, +/area/groundbase/command/captain) +"Ry" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/groundbase/medical/psych) +"Rz" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/light, +/turf/simulated/floor/tiled/white, +/area/medical/virology) +"RB" = ( +/obj/machinery/portable_atmospherics/canister/phoron, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/groundbase/science/xenobot/storage) +"RC" = ( +/obj/item/weapon/gun/projectile/shotgun/doublebarrel{ + name = "chef's double-barreled shotgun" + }, +/obj/item/weapon/paper{ + info = "This permit signifies that the Chef is permitted to posess this firearm in the bar, and ONLY the bar. Failure to adhere to this permit will result in confiscation of the weapon and possibly arrest."; + name = "Shotgun permit" + }, +/obj/item/ammo_magazine/ammo_box/b12g/beanbag, +/obj/structure/table/wooden_reinforced, +/turf/simulated/floor/wood, +/area/groundbase/civilian/kitchen/backroom) +"RD" = ( +/obj/machinery/firealarm{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/groundbase/dorms/room8) +"RE" = ( +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/outdoors/grass/seasonal/notrees_nomobs_lowsnow, +/area/groundbase/science/rnd) +"RF" = ( +/turf/simulated/open, +/area/groundbase/level2/se) +"RG" = ( +/obj/machinery/camera/network/civilian{ + dir = 8 + }, +/turf/simulated/floor/wood, +/area/groundbase/civilian/library) +"RH" = ( +/obj/structure/table/woodentable, +/obj/structure/disposalpipe/sortjunction/flipped{ + dir = 4; + name = "Chapel"; + sortType = "Chapel" + }, +/turf/simulated/floor/carpet, +/area/groundbase/civilian/chapel) +"RI" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/groundbase/medical/triage) +"RJ" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/cyan{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/groundbase/medical/triage) +"RK" = ( +/obj/structure/table/woodentable, +/turf/simulated/floor/wood, +/area/groundbase/dorms/room3) +"RL" = ( +/turf/simulated/floor/outdoors/newdirt, +/area/groundbase/level2/sw) +"RO" = ( +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/carpet/blue, +/area/groundbase/medical/psych) +"RP" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/junction{ + dir = 2; + icon_state = "pipe-j2" + }, +/obj/machinery/hologram/holopad, +/turf/simulated/floor/tiled/dark, +/area/groundbase/dorms) +"RQ" = ( +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/simulated/floor/wood, +/area/groundbase/dorms/room3) +"RR" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/turf/simulated/floor/wood, +/area/groundbase/civilian/library) +"RU" = ( +/obj/structure/table/bench/padded, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/dark, +/area/groundbase/civilian/bar) +"RV" = ( +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/groundbase/medical/Chemistry) +"RW" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/medical/virology) +"RX" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/turf/simulated/wall, +/area/groundbase/cargo/office) +"RY" = ( +/obj/structure/noticeboard{ + pixel_x = -32 + }, +/turf/simulated/floor/tiled, +/area/groundbase/science/xenobot) +"Sa" = ( +/obj/machinery/embedded_controller/radio/airlock/access_controller{ + dir = 8; + id_tag = "xenobot_airlock_control"; + name = "Xenobotany Access Console"; + pixel_x = 24; + tag_exterior_door = "xenobot_airlock_exterior"; + tag_interior_door = "xenobot_airlock_interior" + }, +/turf/simulated/floor/tiled, +/area/groundbase/science/xenobot) +"Sb" = ( +/obj/structure/table/steel, +/obj/item/device/electronic_assembly/large/default, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/groundbase/science/circuits) +"Sc" = ( +/obj/structure/table/woodentable, +/obj/item/device/tvcamera, +/obj/item/device/radio/intercom{ + dir = 4; + pixel_x = 24 + }, +/obj/machinery/light/small, +/turf/simulated/floor/carpet, +/area/groundbase/civilian/library) +"Se" = ( +/obj/structure/table/woodentable, +/obj/item/clothing/mask/gas/clown_hat{ + desc = "Legends say that if on a full moon you drink iced tea from Donksoft Brand Donksofts you will feel the burn for only 99.99 try now or die in an action packed adventure into the depths of four cups of peanut butter, margerine, not butter, fourty five ounces of liquid sugar, eat fresh meat fresh"; + name = "The Clown Mask" + }, +/turf/simulated/floor/tiled/dark, +/area/groundbase/command/meeting) +"Sf" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/outdoors/sidewalk/slab, +/area/groundbase/level2/nw) +"Sg" = ( +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/turf/simulated/floor/outdoors/sidewalk/slab, +/area/groundbase/level2/se) +"Sj" = ( +/obj/machinery/door/firedoor, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 8; + health = 1e+006 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/grille, +/obj/structure/disposalpipe/segment, +/obj/machinery/door/blast/regular{ + density = 0; + dir = 4; + icon_state = "pdoor0"; + id = "xenobiopen1"; + name = "Pen 1 Blast Doors"; + opacity = 0 + }, +/turf/simulated/floor/reinforced, +/area/rnd/xenobiology) +"Sl" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/table/standard, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/item/device/destTagger, +/obj/item/weapon/packageWrap, +/obj/item/weapon/packageWrap, +/obj/item/weapon/packageWrap, +/obj/item/weapon/packageWrap, +/turf/simulated/floor/tiled, +/area/groundbase/cargo/office) +"Sm" = ( +/obj/machinery/hologram/holopad, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/tiled/eris/cafe, +/area/groundbase/civilian/kitchen) +"Sn" = ( +/obj/machinery/atmospherics/portables_connector{ + dir = 1 + }, +/obj/machinery/status_display{ + pixel_x = 32 + }, +/turf/simulated/floor/tiled, +/area/groundbase/science/xenobot/storage) +"Sp" = ( +/obj/structure/disposalpipe/junction/yjunction{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/turf/simulated/floor/outdoors/sidewalk/slab, +/area/groundbase/level2/ne) +"Sq" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/dark, +/area/groundbase/dorms) +"Ss" = ( +/turf/simulated/floor/outdoors/sidewalk/slab{ + outdoors = 0 + }, +/area/groundbase/level2/nw) +"St" = ( +/obj/structure/fence/corner{ + dir = 8 + }, +/turf/simulated/floor/outdoors/grass/seasonal/dark/lowsnow, +/area/groundbase/civilian/hydroponics/out) +"Su" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/research{ + frequency = 1379; + id_tag = "xenobot_airlock_interior"; + locked = 1; + name = "Xenobotany Lab"; + req_access = list(47,55) + }, +/obj/machinery/access_button{ + command = "cycle_interior"; + frequency = 1379; + master_tag = "xenobot_airlock_control"; + name = "Xenobotany Access Button"; + pixel_y = 32; + req_one_access = list(47,55) + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/groundbase/science/xenobot) +"Sv" = ( +/obj/effect/floor_decal/chapel{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/dark, +/area/groundbase/civilian/chapel) +"Sy" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled/dark, +/area/groundbase/dorms) +"Sz" = ( +/obj/machinery/computer/communications{ + dir = 4 + }, +/obj/item/weapon/storage/secure/safe{ + pixel_x = -24 + }, +/turf/simulated/floor/carpet/blucarpet, +/area/groundbase/command/captain) +"SC" = ( +/obj/machinery/door/blast/regular{ + density = 0; + dir = 4; + icon_state = "pdoor0"; + id = "xenobiopen6"; + name = "Pen 6 Blast Doors"; + opacity = 0 + }, +/obj/machinery/door/window/brigdoor/eastleft{ + dir = 1; + name = "Slime Pen"; + req_access = list(55) + }, +/turf/simulated/floor/reinforced, +/area/rnd/xenobiology) +"SE" = ( +/obj/structure/bed/chair/comfy/blue{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/groundbase/command/meeting) +"SF" = ( +/obj/machinery/door/airlock{ + id_tag = "dorm7"; + name = "Room 7" + }, +/obj/machinery/door/firedoor, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/steel_ridged, +/area/groundbase/dorms/room7) +"SH" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/groundbase/medical/triage) +"SI" = ( +/obj/machinery/door/window/southleft{ + dir = 4; + name = "Library Desk Door"; + req_access = list(37) + }, +/obj/machinery/light_switch{ + pixel_y = 30 + }, +/turf/simulated/floor/carpet, +/area/groundbase/civilian/library) +"SJ" = ( +/obj/structure/closet/walllocker_double{ + dir = 4; + pixel_x = 27 + }, +/obj/item/weapon/packageWrap, +/obj/item/weapon/packageWrap, +/obj/item/weapon/tape_roll, +/obj/item/weapon/tape_roll, +/obj/item/weapon/storage/box{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/weapon/storage/box{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/weapon/storage/box{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/weapon/storage/box{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/weapon/storage/box{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/weapon/storage/box{ + pixel_x = 3; + pixel_y = 3 + }, +/turf/simulated/floor/tiled{ + edge_blending_priority = -1; + outdoors = 0 + }, +/area/groundbase/level2/nw) +"SK" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, +/turf/simulated/floor/tiled/dark, +/area/groundbase/science/xenohall) +"SL" = ( +/obj/machinery/door/firedoor, +/turf/simulated/floor/tiled/steel_ridged, +/area/groundbase/medical/triage) +"SM" = ( +/obj/item/weapon/bedsheet/green, +/obj/structure/bed/padded, +/obj/machinery/atmospherics/unary/vent_pump/on, +/obj/effect/landmark{ + name = "morphspawn" + }, +/turf/simulated/floor/tiled/white, +/area/medical/virology) +"SN" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/groundbase/science/hall) +"SO" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled, +/area/groundbase/science/xenohall) +"SQ" = ( +/obj/machinery/disposal/wall{ + dir = 1; + name = "Auto-Resleeving Item Deposit" + }, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/obj/machinery/light_switch{ + dir = 1; + pixel_x = 10; + pixel_y = -30 + }, +/turf/simulated/floor/tiled/white, +/area/groundbase/medical/Chemistry) +"SR" = ( +/obj/machinery/recharger/wallcharger{ + pixel_x = 4; + pixel_y = 20 + }, +/obj/machinery/recharger/wallcharger{ + pixel_x = 4; + pixel_y = 28 + }, +/obj/machinery/atmospherics/unary/vent_pump/on, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology) +"ST" = ( +/obj/machinery/camera/network/research/xenobio, +/turf/simulated/floor/reinforced, +/area/rnd/xenobiology) +"SU" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/turf/simulated/floor/outdoors/sidewalk/slab, +/area/groundbase/level2/se) +"SV" = ( +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/groundbase/science/xenobot/storage) +"SW" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/turf/simulated/floor/tiled/dark, +/area/groundbase/civilian/chapel) +"SX" = ( +/obj/structure/table/woodentable, +/obj/structure/flora/pottedplant/small{ + pixel_y = 12 + }, +/obj/structure/sign/painting/library_secure{ + pixel_x = -30 + }, +/turf/simulated/floor/tiled/dark, +/area/groundbase/command/meeting) +"SY" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology) +"SZ" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/simulated/floor/outdoors/sidewalk/slab, +/area/groundbase/level2/ne) +"Ta" = ( +/obj/machinery/autolathe, +/turf/simulated/floor/tiled, +/area/groundbase/cargo/office) +"Tc" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/groundbase/civilian/chapel) +"Td" = ( +/obj/machinery/photocopier, +/obj/machinery/light_switch{ + dir = 8; + pixel_x = 30 + }, +/turf/simulated/floor/tiled/dark, +/area/groundbase/command/bridge) +"Tf" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/eris/cafe, +/area/groundbase/civilian/kitchen) +"Th" = ( +/obj/structure/closet/secure_closet/hydroponics/sci{ + req_access = list(77) + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/groundbase/science/xenobot) +"Ti" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/turf/simulated/wall, +/area/groundbase/cargo/office) +"Tj" = ( +/obj/effect/floor_decal/industrial/warning/corner, +/turf/simulated/floor/tiled, +/area/groundbase/science/robotics) +"Tk" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/turf/simulated/floor/wood, +/area/groundbase/dorms/room8) +"Tl" = ( +/turf/simulated/floor/tiled, +/area/groundbase/science/circuits) +"Tm" = ( +/obj/machinery/chem_master/condimaster, +/obj/machinery/light/floortube{ + dir = 8; + pixel_x = -6 + }, +/turf/simulated/floor/tiled/eris/cafe, +/area/groundbase/civilian/kitchen) +"Tn" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/carpet/blue, +/area/groundbase/medical/psych) +"Tp" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/tiled, +/area/groundbase/civilian/hydroponics) +"Tq" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/white, +/area/groundbase/medical/Chemistry) +"Tr" = ( +/obj/machinery/portable_atmospherics/hydroponics, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled, +/area/groundbase/civilian/hydroponics) +"Tu" = ( +/obj/machinery/door/blast/regular{ + density = 0; + dir = 4; + icon_state = "pdoor0"; + id = "xenobiopen5"; + name = "Pen 5 Blast Doors"; + opacity = 0 + }, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8; + health = 1e+006 + }, +/obj/structure/window/reinforced, +/turf/simulated/floor/reinforced, +/area/rnd/xenobiology) +"Tx" = ( +/obj/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/obj/machinery/firealarm{ + dir = 8 + }, +/turf/simulated/floor/wood, +/area/groundbase/dorms/room1) +"Ty" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/groundbase/science/circuits) +"Tz" = ( +/obj/machinery/door/airlock{ + id_tag = null; + name = "Bathroom" + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/groundbase/dorms/room7) +"TB" = ( +/obj/structure/sign/painting/library_secure{ + pixel_y = -30 + }, +/turf/simulated/floor/carpet/blue, +/area/groundbase/medical/psych) +"TC" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/cyan{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/groundbase/medical/triage) +"TD" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/bookcase, +/turf/simulated/floor/wood, +/area/groundbase/civilian/library) +"TF" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/effect/landmark/start/medical, +/turf/simulated/floor/tiled/white, +/area/groundbase/medical/triage) +"TH" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 5 + }, +/obj/machinery/light, +/turf/simulated/floor/tiled/white, +/area/groundbase/medical/triage) +"TI" = ( +/obj/structure/fence/corner{ + dir = 10 + }, +/turf/simulated/floor/outdoors/grass/seasonal/notrees_nomobs_lowsnow, +/area/groundbase/cargo/bay) +"TJ" = ( +/obj/structure/table/woodentable, +/turf/simulated/floor/wood, +/area/groundbase/dorms/room4) +"TL" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/outdoors/sidewalk, +/area/groundbase/level2/se) +"TM" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/bluegrid{ + name = "Server Base"; + nitrogen = 500; + oxygen = 0; + temperature = 80 + }, +/area/groundbase/science/server) +"TN" = ( +/obj/structure/table/bench/padded, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/light, +/obj/effect/landmark/start/entertainer, +/turf/simulated/floor/tiled/dark, +/area/groundbase/civilian/bar) +"TO" = ( +/obj/structure/bed/chair/office/dark, +/obj/effect/landmark/start/cargo, +/turf/simulated/floor/tiled, +/area/groundbase/cargo/office) +"TS" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass{ + name = "Bar" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/bmarble, +/area/groundbase/civilian/bar) +"TT" = ( +/obj/structure/railing/grey{ + dir = 8 + }, +/turf/simulated/open, +/area/groundbase/civilian/bar/upper) +"TU" = ( +/obj/machinery/atmospherics/unary/cryo_cell, +/turf/simulated/floor/reinforced, +/area/groundbase/medical/triage) +"TV" = ( +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/groundbase/science/xenobot) +"TX" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/turf/simulated/floor/carpet, +/area/groundbase/command/captainq) +"TZ" = ( +/obj/structure/railing/grey{ + dir = 1 + }, +/turf/simulated/floor/outdoors/grass/seasonal/notrees_nomobs_lowsnow, +/area/groundbase/level2/nw) +"Ub" = ( +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology) +"Uc" = ( +/obj/structure/stairs/spawner/south, +/turf/simulated/floor/outdoors/sidewalk/slab, +/area/groundbase/level2/nw) +"Ud" = ( +/turf/simulated/floor/tiled/white, +/area/groundbase/medical/lobby) +"Uf" = ( +/obj/structure/filingcabinet/filingcabinet, +/obj/machinery/camera/network/command, +/turf/simulated/floor/tiled/dark, +/area/groundbase/command/meeting) +"Ug" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled, +/area/groundbase/cargo/office) +"Uh" = ( +/obj/machinery/atmospherics/unary/heater{ + icon_state = "heater" + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/groundbase/science/xenobot/storage) +"Ui" = ( +/turf/simulated/open, +/area/groundbase/civilian/bar) +"Uj" = ( +/obj/machinery/door/blast/regular{ + id = "xenobiodiv4"; + layer = 8; + name = "Divider" + }, +/turf/simulated/floor/reinforced, +/area/rnd/xenobiology) +"Uk" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/turf/simulated/floor/wood, +/area/groundbase/dorms/room2) +"Um" = ( +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/turf/simulated/floor/tiled/dark, +/area/groundbase/civilian/bar) +"Un" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 10 + }, +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/groundbase/medical/triage) +"Uo" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled/eris/cafe, +/area/groundbase/civilian/kitchen) +"Uq" = ( +/obj/structure/mirror{ + pixel_y = 37 + }, +/obj/structure/sink{ + pixel_y = 20 + }, +/obj/machinery/alarm{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/groundbase/dorms/room6) +"Ur" = ( +/turf/simulated/floor/tiled/white, +/area/groundbase/medical/Chemistry) +"Ut" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled, +/area/groundbase/science/hall) +"Uu" = ( +/obj/structure/table/reinforced, +/obj/machinery/chemical_dispenser/full, +/obj/structure/extinguisher_cabinet{ + dir = 1; + pixel_y = -30 + }, +/turf/simulated/floor/tiled/white, +/area/groundbase/medical/Chemistry) +"Uv" = ( +/obj/structure/table/steel, +/obj/item/weapon/storage/box/syringes, +/obj/machinery/light, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology) +"Uw" = ( +/obj/effect/landmark/start/chef, +/turf/simulated/floor/tiled/freezer/cold, +/area/groundbase/civilian/kitchen/freezer) +"Ux" = ( +/obj/machinery/hologram/holopad, +/turf/simulated/floor/tiled/dark, +/area/groundbase/civilian/bar) +"Uy" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/random/vendorall, +/turf/simulated/floor/tiled/dark, +/area/groundbase/civilian/bar) +"Uz" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/simulated/floor/wood, +/area/groundbase/dorms/room8) +"UA" = ( +/obj/structure/table/glass, +/obj/machinery/recharger, +/obj/item/device/defib_kit/loaded, +/turf/simulated/floor/tiled/white, +/area/groundbase/medical/triage) +"UB" = ( +/obj/machinery/hologram/holopad, +/turf/simulated/floor/tiled, +/area/groundbase/science/circuits) +"UC" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = -12; + pixel_y = 2 + }, +/obj/machinery/requests_console{ + department = "Service"; + dir = 4; + pixel_x = -25 + }, +/turf/simulated/floor/tiled, +/area/groundbase/civilian/hydroponics) +"UD" = ( +/turf/simulated/floor{ + edge_blending_priority = -1; + outdoors = 1 + }, +/area/groundbase/unexplored/outdoors) +"UE" = ( +/turf/simulated/floor/outdoors/grass/seasonal/dark/lowsnow, +/area/groundbase/level2/se) +"UF" = ( +/obj/structure/sign/directions/bar{ + dir = 8; + pixel_y = 32 + }, +/obj/structure/sign/directions/dorms{ + dir = 1; + pixel_y = 38 + }, +/obj/structure/sign/directions/medical{ + dir = 4; + pixel_y = 44 + }, +/obj/structure/sign/directions/cargo{ + dir = 4; + pixel_y = 26 + }, +/turf/simulated/floor/outdoors/grass/seasonal/notrees_nomobs_lowsnow, +/area/groundbase/level2/nw) +"UG" = ( +/obj/machinery/alarm{ + dir = 1 + }, +/turf/simulated/floor/reinforced, +/area/rnd/xenobiology) +"UH" = ( +/turf/simulated/mineral/cave, +/area/groundbase/unexplored/rock) +"UI" = ( +/obj/machinery/power/apc{ + dir = 8 + }, +/obj/structure/cable/yellow{ + icon_state = "0-2" + }, +/turf/simulated/floor/outdoors/sidewalk/slab, +/area/groundbase/level2/ne) +"UK" = ( +/obj/structure/table/glass, +/obj/item/weapon/storage/box/beakers{ + pixel_x = -2; + pixel_y = 10 + }, +/obj/item/weapon/storage/box/syringes{ + pixel_x = 5; + pixel_y = 2 + }, +/turf/simulated/floor/tiled, +/area/groundbase/science/xenobot) +"UL" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/window/northright{ + name = "Cargo Ordering"; + req_access = list(50) + }, +/obj/structure/table/reinforced, +/turf/simulated/floor{ + outdoors = 0 + }, +/area/groundbase/cargo/office) +"UN" = ( +/obj/structure/closet/secure_closet/personal, +/obj/item/weapon/towel/random, +/obj/item/weapon/storage/backpack, +/obj/machinery/firealarm{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/groundbase/dorms/room4) +"UQ" = ( +/obj/machinery/door/blast/regular{ + density = 0; + dir = 4; + icon_state = "pdoor0"; + id = "xenobiopen6"; + name = "Pen 6 Blast Doors"; + opacity = 0 + }, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8; + health = 1e+006 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/simulated/floor/reinforced, +/area/rnd/xenobiology) +"UR" = ( +/obj/machinery/light, +/turf/simulated/floor/wood, +/area/groundbase/civilian/library) +"US" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/light_switch{ + dir = 8; + pixel_x = 30 + }, +/turf/simulated/floor/tiled, +/area/groundbase/civilian/janitor) +"UT" = ( +/turf/simulated/wall, +/area/groundbase/command/hop) +"UU" = ( +/obj/machinery/shower{ + dir = 1; + pixel_y = -2 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/curtain/open/shower/medical, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel, +/area/medical/virology) +"UV" = ( +/obj/structure/table/reinforced, +/obj/machinery/reagentgrinder, +/obj/item/stack/material/phoron, +/obj/item/stack/material/phoron, +/obj/item/stack/material/phoron, +/obj/item/stack/material/phoron, +/obj/item/stack/material/phoron, +/turf/simulated/floor/tiled/white, +/area/groundbase/medical/Chemistry) +"UW" = ( +/obj/machinery/light/floortube{ + dir = 4; + pixel_x = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled, +/area/groundbase/civilian/hydroponics) +"UX" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled, +/area/groundbase/science/circuits) +"UY" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/computer/guestpass{ + pixel_y = 23 + }, +/turf/simulated/floor/tiled/dark, +/area/groundbase/dorms) +"Vb" = ( +/turf/simulated/floor/tiled, +/area/groundbase/civilian/janitor) +"Vc" = ( +/obj/structure/table/standard, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/obj/effect/landmark/vermin, +/turf/simulated/floor/tiled/eris/cafe, +/area/groundbase/civilian/kitchen) +"Vd" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled, +/area/groundbase/science/robotics) +"Ve" = ( +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/turf/simulated/floor/tiled, +/area/groundbase/science/circuits) +"Vf" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/eris/cafe, +/area/groundbase/civilian/kitchen) +"Vg" = ( +/obj/machinery/power/apc{ + dir = 1 + }, +/obj/structure/cable/yellow{ + icon_state = "0-8" + }, +/turf/simulated/floor/wood, +/area/groundbase/medical/psych) +"Vh" = ( +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/turf/simulated/wall/r_wall, +/area/groundbase/science/picnic) +"Vi" = ( +/obj/machinery/firealarm, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/wood, +/area/groundbase/cargo/qm) +"Vj" = ( +/obj/structure/table/standard, +/turf/simulated/floor/tiled/white, +/area/medical/virology) +"Vk" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/outdoors/sidewalk/side, +/area/groundbase/level2/nw) +"Vl" = ( +/turf/simulated/wall, +/area/groundbase/civilian/kitchen) +"Vm" = ( +/obj/machinery/light/small, +/turf/simulated/floor/outdoors/grass/seasonal/notrees_nomobs_lowsnow, +/area/groundbase/level2/ne) +"Vo" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/turf/simulated/floor/carpet, +/area/groundbase/civilian/library) +"Vq" = ( +/obj/machinery/door/airlock{ + id_tag = null; + name = "Bathroom" + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/groundbase/dorms/room5) +"Vr" = ( +/turf/simulated/floor/tiled, +/area/groundbase/science/hall) +"Vs" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/simulated/floor/outdoors/sidewalk/side, +/area/groundbase/level2/ne) +"Vt" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/dark, +/area/groundbase/command/hall) +"Vu" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/groundbase/cargo/office) +"Vv" = ( +/obj/structure/sign/directions/evac{ + dir = 8; + pixel_x = -32; + pixel_y = -32 + }, +/turf/simulated/floor/outdoors/grass/seasonal/notrees_nomobs_lowsnow, +/area/groundbase/level2/nw) +"Vw" = ( +/obj/machinery/portable_atmospherics/hydroponics, +/obj/machinery/atmospherics/portables_connector, +/turf/simulated/floor/tiled, +/area/groundbase/science/xenobot/storage) +"Vx" = ( +/obj/machinery/button/remote/airlock{ + dir = 4; + id = "dorm2"; + pixel_x = -27; + specialfunctions = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/bed/chair/sofa/corp/right{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/groundbase/dorms/room2) +"Vz" = ( +/obj/machinery/light, +/turf/simulated/floor/tiled/white, +/area/medical/virology) +"VA" = ( +/turf/simulated/floor/glass/reinforced{ + outdoors = 1 + }, +/area/groundbase/level2/westspur) +"VB" = ( +/obj/machinery/door/window/brigdoor/westleft{ + dir = 4; + name = "Robotics Desk"; + req_access = list(29,47); + req_one_access = null + }, +/obj/machinery/door/firedoor/glass, +/obj/structure/table/reinforced, +/obj/machinery/door/blast/angled_shutter/open{ + dir = 4; + id = "robshutters"; + name = "Privacy Shutters" + }, +/turf/simulated/floor{ + edge_blending_priority = -1; + outdoors = 1 + }, +/area/groundbase/science/robotics) +"VC" = ( +/turf/simulated/floor/carpet/blue, +/area/groundbase/medical/psych) +"VD" = ( +/obj/structure/table/glass, +/obj/machinery/power/apc{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "0-8" + }, +/obj/item/roller{ + pixel_y = -6 + }, +/obj/item/roller{ + pixel_y = -2 + }, +/obj/item/roller{ + pixel_y = 2 + }, +/obj/item/roller{ + pixel_y = 6 + }, +/turf/simulated/floor/tiled/white, +/area/groundbase/medical/lobby) +"VE" = ( +/obj/structure/table/woodentable, +/obj/item/weapon/storage/photo_album{ + pixel_y = -10 + }, +/obj/item/weapon/reagent_containers/food/drinks/flask{ + pixel_x = 8 + }, +/obj/item/weapon/reagent_containers/food/drinks/bottle/carnoth, +/turf/simulated/floor/wood, +/area/groundbase/command/captainq) +"VG" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/groundbase/cargo/office) +"VH" = ( +/obj/structure/table/standard, +/obj/machinery/power/apc, +/obj/structure/cable/yellow, +/turf/simulated/floor/tiled/eris/cafe, +/area/groundbase/civilian/kitchen) +"VI" = ( +/obj/structure/table/steel, +/obj/item/device/slime_scanner, +/obj/item/device/slime_scanner, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology) +"VJ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/groundbase/civilian/janitor) +"VK" = ( +/turf/simulated/floor/wood, +/area/groundbase/dorms/room1) +"VL" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/groundbase/command/hall) +"VN" = ( +/obj/structure/table/woodentable, +/obj/random/donkpocketbox, +/turf/simulated/floor/wood, +/area/groundbase/dorms/room7) +"VO" = ( +/obj/structure/railing/grey{ + dir = 1 + }, +/turf/simulated/open, +/area/groundbase/level2/eastspur) +"VQ" = ( +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/dark, +/area/groundbase/command/hall) +"VR" = ( +/turf/simulated/open, +/area/groundbase/level2/northspur) +"VS" = ( +/obj/structure/table/woodentable, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/simulated/floor/carpet, +/area/groundbase/civilian/chapel) +"VT" = ( +/obj/structure/toilet{ + dir = 8 + }, +/obj/machinery/light, +/turf/simulated/floor/tiled/white, +/area/groundbase/dorms/room4) +"VV" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled/eris/cafe, +/area/groundbase/civilian/kitchen) +"VW" = ( +/obj/structure/table/woodentable, +/turf/simulated/floor/lino, +/area/groundbase/civilian/chapel/office) +"VX" = ( +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/white, +/area/groundbase/medical/triage) +"VY" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/window/northleft{ + dir = 2; + icon_state = "right"; + name = "Reception Window" + }, +/obj/machinery/door/window/brigdoor/eastright{ + dir = 1; + name = "Head of Personnel's Desk"; + req_access = list(57) + }, +/obj/machinery/door/blast/shutters{ + dir = 2; + id = "hop_office_desk"; + layer = 3.1; + name = "HoP's Shutters" + }, +/turf/simulated/floor/tiled, +/area/groundbase/command/hop) +"VZ" = ( +/obj/machinery/door/window/brigdoor/southright{ + dir = 1; + req_access = list(77); + req_one_access = newlist() + }, +/obj/machinery/power/apc{ + dir = 8 + }, +/obj/structure/cable/yellow{ + icon_state = "0-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/groundbase/science/xenobot/storage) +"Wa" = ( +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/lino, +/area/groundbase/civilian/chapel/office) +"Wb" = ( +/obj/machinery/computer/arcade{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/medical/virology) +"Wc" = ( +/obj/structure/cable/yellow{ + icon_state = "32-2" + }, +/obj/machinery/atmospherics/pipe/zpipe/down/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/zpipe/down/scrubbers{ + dir = 4 + }, +/turf/simulated/wall, +/area/groundbase/civilian/bar) +"Wd" = ( +/obj/structure/railing/grey{ + dir = 8 + }, +/turf/simulated/open, +/area/groundbase/level2/northspur) +"We" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/vending/nifsoft_shop, +/turf/simulated/floor/tiled/white, +/area/groundbase/medical/lobby) +"Wf" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/turf/simulated/floor/tiled/dark, +/area/groundbase/command/meeting) +"Wg" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/groundbase/cargo/office) +"Wh" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/groundbase/science/xenobot/storage) +"Wi" = ( +/obj/structure/table/bench/padded, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/machinery/light{ + dir = 1 + }, +/obj/effect/landmark/start/entertainer, +/turf/simulated/floor/tiled/dark, +/area/groundbase/civilian/bar) +"Wj" = ( +/turf/simulated/wall, +/area/groundbase/cargo/office) +"Wk" = ( +/obj/machinery/light, +/turf/simulated/floor/reinforced, +/area/rnd/xenobiology) +"Wl" = ( +/turf/simulated/wall, +/area/groundbase/civilian/hydroponics) +"Wm" = ( +/obj/machinery/keycard_auth{ + pixel_y = 28 + }, +/turf/simulated/floor/tiled/dark, +/area/groundbase/command/bridge) +"Wn" = ( +/turf/simulated/wall/r_wall, +/area/groundbase/science/robotics) +"Wp" = ( +/obj/structure/table/standard, +/obj/machinery/requests_console{ + department = "Service"; + dir = 4; + pixel_x = -25 + }, +/turf/simulated/floor/tiled/eris/cafe, +/area/groundbase/civilian/kitchen) +"Wr" = ( +/obj/structure/bed/chair/sofa/bench/left{ + dir = 4 + }, +/turf/simulated/floor/outdoors/newdirt, +/area/groundbase/level2/nw) +"Wu" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/obj/structure/disposalpipe/junction, +/turf/simulated/floor/tiled/dark, +/area/groundbase/dorms) +"Wv" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/groundbase/civilian/hydroponics) +"Ww" = ( +/obj/machinery/conveyor{ + dir = 1; + id = "packageSort1" + }, +/obj/structure/disposalpipe/trunk, +/obj/structure/disposaloutlet{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/groundbase/cargo/office) +"Wx" = ( +/obj/machinery/camera/network/medbay, +/turf/simulated/floor/tiled/white, +/area/groundbase/medical/triage) +"Wy" = ( +/obj/structure/closet/secure_closet/RD, +/obj/item/device/aicard, +/obj/item/clothing/glasses/omnihud/rnd, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/obj/machinery/light_switch{ + dir = 4; + pixel_x = -30 + }, +/obj/random/paicard, +/turf/simulated/floor/tiled, +/area/groundbase/science/rd) +"Wz" = ( +/obj/structure/table/rack, +/obj/item/canvas, +/obj/item/canvas/nineteen_nineteen, +/obj/item/canvas/twentyfour_twentyfour, +/obj/item/canvas/twentythree_nineteen, +/obj/item/canvas/twentythree_twentythree, +/obj/item/paint_palette, +/obj/item/paint_brush, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/simulated/floor/carpet, +/area/groundbase/civilian/library) +"WA" = ( +/obj/structure/table/woodentable, +/obj/item/device/flashlight/lamp/green{ + pixel_x = 1; + pixel_y = 5 + }, +/turf/simulated/floor/wood, +/area/groundbase/civilian/library) +"WB" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/groundbase/science/rnd) +"WC" = ( +/obj/effect/mouse_hole_spawner, +/turf/simulated/floor/outdoors/grass/seasonal/notrees_nomobs_lowsnow, +/area/groundbase/level2/sw) +"WD" = ( +/obj/machinery/light/small, +/turf/simulated/floor/outdoors/grass/seasonal/notrees_nomobs_lowsnow, +/area/medical/virology) +"WE" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled, +/area/groundbase/science/robotics) +"WG" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology) +"WH" = ( +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/turf/simulated/floor/outdoors/sidewalk/slab, +/area/groundbase/level2/se) +"WK" = ( +/obj/structure/bed/chair/sofa/corp/right, +/obj/machinery/atmospherics/unary/vent_pump/on, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/wood, +/area/groundbase/dorms/room5) +"WM" = ( +/obj/structure/table/steel, +/obj/item/weapon/melee/baton/slime/loaded, +/obj/item/weapon/melee/baton/slime/loaded, +/obj/item/weapon/gun/energy/taser/xeno, +/obj/item/weapon/gun/energy/taser/xeno, +/obj/machinery/recharger/wallcharger{ + pixel_x = 32 + }, +/obj/machinery/recharger/wallcharger{ + pixel_x = 32; + pixel_y = -8 + }, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology) +"WN" = ( +/obj/item/weapon/bedsheet/green, +/obj/structure/bed/padded, +/turf/simulated/floor/tiled/white, +/area/medical/virology) +"WO" = ( +/obj/machinery/light/floortube{ + dir = 8; + pixel_x = -6 + }, +/turf/simulated/floor/tiled/dark, +/area/groundbase/civilian/chapel) +"WP" = ( +/obj/structure/reagent_dispensers/watertank, +/obj/item/weapon/reagent_containers/glass/bucket, +/turf/simulated/floor/tiled, +/area/groundbase/civilian/hydroponics) +"WQ" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/white, +/area/groundbase/medical/lobby) +"WR" = ( +/obj/item/weapon/stool/padded, +/turf/simulated/floor/lino{ + edge_blending_priority = 0.1 + }, +/area/groundbase/civilian/kitchen) +"WV" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/light, +/turf/simulated/floor/tiled/freezer/cold, +/area/groundbase/civilian/kitchen/freezer) +"WW" = ( +/turf/simulated/floor/outdoors/newdirt, +/area/groundbase/science/circuits) +"WX" = ( +/obj/structure/railing/grey{ + dir = 8 + }, +/turf/simulated/open, +/area/groundbase/level2/westspur) +"WY" = ( +/obj/structure/bed/chair/comfy/brown{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/effect/landmark/start/visitor, +/turf/simulated/floor/wood, +/area/groundbase/civilian/library) +"WZ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/camera/network/medbay, +/turf/simulated/floor/tiled/white, +/area/groundbase/medical/lobby) +"Xa" = ( +/obj/machinery/power/apc{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "0-8" + }, +/turf/simulated/floor/tiled, +/area/groundbase/science/server) +"Xb" = ( +/obj/machinery/vending/wallmed1/public{ + dir = 4; + pixel_x = -28 + }, +/turf/simulated/floor/tiled/white, +/area/groundbase/dorms/bathroom) +"Xc" = ( +/obj/structure/table/reinforced, +/obj/item/weapon/reagent_containers/spray/cleaner{ + desc = "Someone has crossed out the 'Space' from Space Cleaner and written in Chemistry. Scrawled on the back is, 'Okay, whoever filled this with polytrinic acid, it was only funny the first time. It was hard enough replacing the CMO's first cat!'"; + name = "Chemistry Cleaner" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/white, +/area/groundbase/medical/Chemistry) +"Xd" = ( +/obj/machinery/camera/network/civilian{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/groundbase/civilian/chapel) +"Xf" = ( +/obj/machinery/shower{ + pixel_y = 16 + }, +/obj/structure/curtain/open/shower, +/turf/simulated/floor/tiled{ + icon_state = "techmaint" + }, +/area/groundbase/dorms/room5) +"Xg" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/newscaster{ + layer = 3.3; + pixel_x = -27 + }, +/turf/simulated/floor/tiled, +/area/groundbase/cargo/office) +"Xh" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/simulated/floor/lino, +/area/groundbase/civilian/chapel/office) +"Xi" = ( +/obj/effect/floor_decal/chapel{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/dark, +/area/groundbase/civilian/chapel) +"Xj" = ( +/obj/structure/table/bench/padded, +/obj/effect/landmark/start/visitor, +/turf/simulated/floor/tiled/dark, +/area/groundbase/civilian/bar) +"Xl" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/groundbase/science/hall) +"Xn" = ( +/obj/item/weapon/rig/hazmat/equipped, +/obj/structure/table/rack, +/obj/item/clothing/glasses/welding/superior, +/obj/item/weapon/cartridge/signal/science, +/turf/simulated/floor/tiled, +/area/groundbase/science/rd) +"Xp" = ( +/obj/machinery/door/airlock{ + id_tag = null; + name = "Bathroom" + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/groundbase/dorms/room8) +"Xq" = ( +/obj/machinery/vending/nifsoft_shop, +/turf/simulated/floor/tiled, +/area/groundbase/science/hall) +"Xr" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/turf/simulated/floor/tiled, +/area/groundbase/science/xenobot) +"Xs" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/groundbase/command/hop) +"Xt" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/groundbase/science/hall) +"Xv" = ( +/obj/structure/closet/walllocker_double/north{ + dir = 8; + pixel_x = -32; + pixel_y = 0 + }, +/obj/fiftyspawner/steel, +/obj/fiftyspawner/steel, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled, +/area/groundbase/science/circuits) +"Xw" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/turf/simulated/floor/tiled/white, +/area/groundbase/medical/lobby) +"Xx" = ( +/obj/machinery/power/apc{ + dir = 4; + nightshift_setting = 2 + }, +/obj/structure/cable/yellow{ + icon_state = "0-4" + }, +/turf/simulated/floor/tiled{ + edge_blending_priority = -1; + outdoors = 0 + }, +/area/groundbase/science/picnic) +"Xy" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled, +/area/groundbase/science/server) +"XA" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/computer/guestpass{ + dir = 4; + pixel_x = -25 + }, +/turf/simulated/floor/tiled/dark, +/area/groundbase/civilian/bar) +"XB" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/groundbase/medical/triage) +"XC" = ( +/obj/structure/bed/chair/sofa/bench, +/obj/effect/landmark/start/visitor, +/turf/simulated/floor/outdoors/newdirt, +/area/groundbase/level2/ne) +"XD" = ( +/obj/structure/bed/chair/sofa/corp, +/obj/machinery/alarm, +/turf/simulated/floor/wood, +/area/groundbase/dorms/room3) +"XE" = ( +/obj/structure/bed/chair/office/dark{ + dir = 1 + }, +/obj/effect/landmark/start/xenobio, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology) +"XG" = ( +/obj/effect/landmark/start/cargo, +/turf/simulated/floor/outdoors/sidewalk/slab, +/area/groundbase/cargo/bay) +"XH" = ( +/turf/simulated/floor/outdoors/grass/seasonal/notrees_nomobs_lowsnow, +/area/groundbase/science/rnd) +"XI" = ( +/obj/machinery/door/blast/angled_shutter/open{ + dir = 4; + id = "xenobotshutters"; + name = "Privacy Shutters" + }, +/obj/machinery/door/firedoor/glass, +/obj/structure/table/reinforced, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/simulated/floor{ + edge_blending_priority = -1; + outdoors = 1 + }, +/area/groundbase/science/xenobot) +"XJ" = ( +/turf/simulated/floor/outdoors/newdirt, +/area/groundbase/level2/ne) +"XK" = ( +/obj/structure/table/hardwoodtable, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/dark, +/area/groundbase/dorms) +"XL" = ( +/turf/simulated/wall, +/area/groundbase/dorms/room8) +"XM" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass_command{ + name = "Bridge"; + req_access = list(19) + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/groundbase/command/bridge) +"XO" = ( +/obj/item/device/radio/headset/headset_med, +/obj/item/weapon/storage/box/syringes, +/obj/item/weapon/storage/fancy/vials, +/obj/item/weapon/storage/fancy/vials, +/obj/item/weapon/storage/box/pillbottles, +/obj/item/weapon/storage/box/pillbottles, +/obj/structure/closet/wardrobe/chemistry_white, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/groundbase/medical/Chemistry) +"XR" = ( +/obj/structure/bed/chair/comfy/brown{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/wood, +/area/groundbase/civilian/library) +"XS" = ( +/obj/machinery/alarm{ + pixel_y = 28 + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/groundbase/civilian/chapel) +"XT" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/obj/structure/sign/department/mail{ + pixel_y = 32 + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/groundbase/cargo/office) +"XU" = ( +/obj/machinery/requests_console{ + department = "Cargo Bay"; + departmentType = 2; + dir = 8; + pixel_x = 30 + }, +/obj/structure/table/standard, +/obj/item/weapon/paper_bin{ + pixel_x = -3; + pixel_y = 7 + }, +/obj/item/weapon/clipboard, +/obj/item/weapon/pen/red{ + pixel_x = 2; + pixel_y = 6 + }, +/turf/simulated/floor/tiled, +/area/groundbase/cargo/office) +"XW" = ( +/turf/simulated/floor/wood, +/area/groundbase/command/captainq) +"XX" = ( +/turf/simulated/wall/r_wall, +/area/groundbase/science/rd) +"Yb" = ( +/obj/structure/table/standard, +/obj/item/weapon/disk/tech_disk, +/obj/item/weapon/disk/tech_disk, +/obj/item/weapon/disk/design_disk, +/obj/item/weapon/disk/design_disk, +/obj/item/weapon/reagent_containers/dropper{ + pixel_y = -4 + }, +/obj/item/clothing/glasses/omnihud/rnd, +/obj/item/clothing/gloves/sterile/latex, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/camera/network/research{ + dir = 1 + }, +/obj/machinery/light_switch{ + dir = 1; + pixel_y = -30 + }, +/turf/simulated/floor/tiled, +/area/groundbase/science/rnd) +"Yc" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/groundbase/cargo/office) +"Yd" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/dark, +/area/groundbase/science/hall) +"Ye" = ( +/obj/machinery/vending/medical, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/tiled/white, +/area/groundbase/medical/triage) +"Yf" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/firealarm, +/turf/simulated/floor/tiled/dark, +/area/groundbase/civilian/bar) +"Yg" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/turf/simulated/floor/tiled{ + edge_blending_priority = -1; + outdoors = 1 + }, +/area/groundbase/command/bridge) +"Yj" = ( +/obj/machinery/light_switch{ + dir = 4; + pixel_x = -30 + }, +/turf/simulated/floor/wood, +/area/groundbase/command/captainq) +"Yl" = ( +/obj/structure/table/bench/padded, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/dark, +/area/groundbase/civilian/bar) +"Ym" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/groundbase/civilian/chapel) +"Yn" = ( +/obj/machinery/door/blast/angled_shutter/open{ + dir = 2; + id = "xenobotshutters"; + name = "Privacy Shutters" + }, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor{ + edge_blending_priority = -1; + outdoors = 1 + }, +/area/groundbase/science/xenobot) +"Yp" = ( +/turf/simulated/floor/tiled/dark, +/area/groundbase/dorms) +"Yr" = ( +/obj/structure/sign/department/bar, +/turf/simulated/wall, +/area/groundbase/civilian/bar) +"Ys" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/groundbase/science/xenohall) +"Yt" = ( +/turf/simulated/floor/tiled, +/area/groundbase/civilian/hydroponics) +"Yu" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/groundbase/medical/Chemistry) +"Yv" = ( +/obj/structure/bed/chair/comfy/brown, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/effect/landmark/start/hop, +/turf/simulated/floor/carpet, +/area/groundbase/command/hop) +"Yx" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/light, +/obj/structure/closet/secure_closet/personal, +/obj/item/weapon/towel/random, +/obj/item/weapon/storage/backpack, +/turf/simulated/floor/wood, +/area/groundbase/dorms/room1) +"Yz" = ( +/obj/machinery/vending/loadout/uniform, +/turf/simulated/floor/tiled, +/area/groundbase/science/robotics) +"YA" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/turf/simulated/floor/tiled/eris/cafe, +/area/groundbase/civilian/kitchen) +"YF" = ( +/obj/machinery/door/airlock{ + id_tag = null; + name = "Bathroom" + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/groundbase/dorms/room6) +"YG" = ( +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/white, +/area/groundbase/medical/triage) +"YH" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/carpet, +/area/groundbase/civilian/chapel) +"YI" = ( +/obj/machinery/hologram/holopad, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/groundbase/science/xenohall) +"YL" = ( +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/groundbase/science/xenobot/storage) +"YM" = ( +/turf/simulated/floor/tiled{ + edge_blending_priority = -1; + outdoors = 1 + }, +/area/groundbase/level2/sw) +"YN" = ( +/obj/machinery/button/remote/blast_door{ + id = "xenobotshutters"; + name = "Privacy Shutter Control"; + pixel_y = 30 + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/groundbase/science/xenobot) +"YO" = ( +/obj/structure/railing/grey{ + dir = 1 + }, +/turf/simulated/open, +/area/groundbase/civilian/bar/upper) +"YQ" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology) +"YR" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/dark, +/area/groundbase/civilian/bar) +"YS" = ( +/obj/machinery/biogenerator, +/turf/simulated/floor/tiled, +/area/groundbase/civilian/hydroponics) +"YT" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/turf/simulated/floor/tiled/eris/cafe, +/area/groundbase/civilian/kitchen) +"YV" = ( +/obj/structure/noticeboard{ + pixel_x = 32 + }, +/turf/simulated/floor/tiled/dark, +/area/groundbase/command/meeting) +"YW" = ( +/obj/structure/fence/corner{ + dir = 5 + }, +/turf/simulated/floor/outdoors/grass/seasonal/dark/lowsnow, +/area/groundbase/civilian/hydroponics/out) +"YX" = ( +/obj/structure/table/steel, +/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, +/obj/item/weapon/reagent_containers/spray/cleaner, +/obj/item/weapon/reagent_containers/spray/cleaner, +/obj/item/weapon/soap/nanotrasen, +/obj/item/weapon/soap/nanotrasen, +/obj/item/weapon/soap/nanotrasen, +/turf/simulated/floor/tiled, +/area/groundbase/civilian/janitor) +"YZ" = ( +/obj/machinery/atm{ + pixel_x = -32 + }, +/turf/simulated/floor/tiled{ + edge_blending_priority = -1; + outdoors = 0 + }, +/area/groundbase/cargo/office) +"Za" = ( +/obj/machinery/light, +/obj/structure/bed/double/padded, +/obj/item/weapon/bedsheet/browndouble, +/turf/simulated/floor/wood, +/area/groundbase/dorms/room6) +"Zb" = ( +/obj/machinery/button/remote/blast_door{ + dir = 1; + id = "xenobiopen7"; + name = "Pen 7 Containment"; + pixel_y = -38; + req_access = list(55) + }, +/obj/machinery/button/remote/blast_door{ + dir = 1; + id = "xenobiodiv5"; + name = "Divider"; + pixel_y = -27; + req_access = list(55) + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/rnd/xenobiology) +"Zc" = ( +/obj/structure/closet/secure_closet/personal/patient, +/turf/simulated/floor/tiled/white, +/area/medical/virology) +"Zd" = ( +/obj/machinery/computer/centrifuge, +/turf/simulated/floor/tiled/white, +/area/medical/virology) +"Ze" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, +/turf/simulated/floor/tiled/white, +/area/medical/virology) +"Zf" = ( +/obj/effect/mouse_hole_spawner{ + dir = 1 + }, +/turf/simulated/floor/outdoors/grass/seasonal/notrees_nomobs_lowsnow, +/area/groundbase/level2/se) +"Zg" = ( +/obj/machinery/light/bigfloorlamp, +/turf/simulated/floor/outdoors/grass/seasonal/notrees_nomobs_lowsnow, +/area/groundbase/level2/nw) +"Zh" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/turf/simulated/floor/tiled{ + edge_blending_priority = -1; + outdoors = 0 + }, +/area/groundbase/cargo/office) +"Zi" = ( +/obj/machinery/firealarm, +/turf/simulated/floor/carpet/geo, +/area/groundbase/civilian/kitchen/backroom) +"Zk" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/wood, +/area/groundbase/dorms/room2) +"Zl" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/landmark/start/botanist, +/turf/simulated/floor/tiled, +/area/groundbase/civilian/hydroponics) +"Zn" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/simulated/floor/outdoors/sidewalk/slab, +/area/groundbase/level2/nw) +"Zo" = ( +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/obj/structure/disposaloutlet, +/turf/simulated/floor/reinforced, +/area/rnd/xenobiology) +"Zp" = ( +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/groundbase/command/meeting) +"Zr" = ( +/obj/structure/closet/secure_closet/hydroponics{ + req_access = list(77) + }, +/turf/simulated/floor/tiled, +/area/groundbase/science/xenobot) +"Zs" = ( +/obj/structure/bed/chair/comfy/brown, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/carpet/blue, +/area/groundbase/medical/psych) +"Zt" = ( +/turf/simulated/floor/wood, +/area/groundbase/cargo/qm) +"Zv" = ( +/obj/structure/sign/painting/library_secure{ + pixel_y = 30 + }, +/obj/structure/table/woodentable, +/obj/machinery/recharger{ + pixel_y = 5 + }, +/obj/item/weapon/hand_labeler, +/turf/simulated/floor/wood, +/area/groundbase/civilian/library) +"Zw" = ( +/obj/effect/landmark/start/mime, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/turf/simulated/floor/carpet/bcarpet, +/area/groundbase/civilian/mime) +"Zx" = ( +/turf/simulated/mineral/cave, +/area/groundbase/level2/sw) +"Zy" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/landmark/start/qm, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/groundbase/cargo/office) +"Zz" = ( +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 4 + }, +/obj/machinery/camera/network/research/xenobio{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/groundbase/science/xenobot/storage) +"ZB" = ( +/obj/machinery/computer/crew{ + dir = 1 + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/groundbase/medical/lobby) +"ZC" = ( +/obj/machinery/shower{ + pixel_y = 16 + }, +/obj/structure/curtain/open/shower, +/turf/simulated/floor/tiled{ + icon_state = "techmaint" + }, +/area/groundbase/dorms/room6) +"ZD" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/turf/simulated/floor/wood, +/area/groundbase/cargo/qm) +"ZE" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/turf/simulated/floor/outdoors/sidewalk/side, +/area/groundbase/level2/ne) +"ZF" = ( +/obj/structure/table/glass, +/obj/item/weapon/storage/box/gloves{ + pixel_y = 4 + }, +/obj/machinery/camera/network/research/xenobio{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/groundbase/science/xenobot) +"ZG" = ( +/turf/simulated/floor/tiled/dark, +/area/groundbase/command/bridge) +"ZI" = ( +/obj/effect/floor_decal/industrial/outline, +/obj/machinery/embedded_controller/radio/simple_docking_controller{ + dir = 4; + frequency = 1380; + id_tag = "cargo_bay"; + pixel_x = -23 + }, +/turf/simulated/floor/outdoors/sidewalk/slab, +/area/groundbase/cargo/bay) +"ZJ" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/groundbase/science/hall) +"ZK" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8; + health = 1e+006 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/simulated/floor, +/area/rnd/xenobiology) +"ZL" = ( +/obj/structure/sign/department/sci, +/turf/simulated/wall/r_wall, +/area/groundbase/science/xenobot) +"ZM" = ( +/obj/machinery/power/apc{ + dir = 1 + }, +/obj/structure/cable/yellow{ + icon_state = "0-2" + }, +/turf/simulated/floor/tiled/dark, +/area/groundbase/civilian/chapel) +"ZN" = ( +/obj/machinery/door/blast/angled_shutter/open{ + dir = 4; + id = "xenobotshutters"; + name = "Privacy Shutters" + }, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor{ + edge_blending_priority = -1; + outdoors = 1 + }, +/area/groundbase/science/xenobot) +"ZO" = ( +/obj/structure/bed/chair/comfy/brown{ + dir = 4 + }, +/obj/effect/landmark/start/captain, +/turf/simulated/floor/wood, +/area/groundbase/command/captainq) +"ZP" = ( +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/groundbase/civilian/chapel) +"ZR" = ( +/obj/structure/table/woodentable, +/obj/machinery/computer/skills{ + dir = 8 + }, +/obj/item/weapon/paper/dockingcodes, +/turf/simulated/floor/carpet/blucarpet, +/area/groundbase/command/captain) +"ZT" = ( +/obj/machinery/door/airlock{ + id_tag = "toilet2"; + name = "Toilet 2" + }, +/turf/simulated/floor/tiled/white, +/area/groundbase/dorms/bathroom) +"ZU" = ( +/turf/simulated/floor/wood, +/area/groundbase/dorms/room7) +"ZV" = ( +/turf/simulated/floor/carpet/blucarpet, +/area/groundbase/command/captain) +"ZW" = ( +/obj/machinery/button/remote/airlock{ + desc = "A remote control switch for the medbay foyer."; + id = "MedbayFoyer"; + name = "Medbay Doors Control"; + pixel_y = 29 + }, +/turf/simulated/floor/tiled/white, +/area/groundbase/medical/triage) +"ZY" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/carpet, +/area/groundbase/civilian/library) +"ZZ" = ( +/obj/structure/table/marble, +/obj/machinery/door/blast/gate/thin{ + dir = 2; + id = "kitchen"; + layer = 3.3 + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor, +/area/groundbase/civilian/kitchen) + +(1,1,1) = {" +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +fX +ON +ON +ON +ON +ON +ON +ON +ON +ON +ON +ON +ON +ON +ON +ON +ON +ON +ON +ON +ON +ON +ON +ON +ON +ON +ON +ON +ON +ON +ON +ON +ON +ON +ON +ON +ON +ON +ON +ON +ON +ON +ON +ON +ON +ON +ON +ON +ON +ON +ON +ON +ON +ON +ON +ON +ON +ON +ON +ON +ON +ON +ON +ON +ON +ON +ON +ON +ON +ON +ON +"} +(2,1,1) = {" +fX +xE +xE +xE +xE +xE +xE +xE +xE +xE +xE +xE +xE +xE +xE +xE +xE +xE +xE +xE +xE +xE +xE +xE +xE +xE +xE +xE +xE +xE +UH +UH +UH +UH +UH +UH +UH +UH +xE +xE +xE +xE +xE +xE +xE +xE +xE +xE +xE +xE +xE +xE +eN +eN +eN +eN +eN +eN +eN +eN +eN +eN +eN +eN +eN +eN +eN +eN +eN +eN +eN +eN +eN +AD +AD +AD +AD +AD +AD +AD +AD +Zx +Zx +Zx +Zx +Zx +Zx +Zx +Zx +Zx +Zx +Zx +Zx +Zx +Zx +Zx +Zx +Zx +Zx +Zx +Zx +Zx +Zx +Zx +Zx +Zx +Zx +Zx +Zx +Zx +Zx +Zx +Zx +Zx +Zx +Zx +Zx +Zx +Zx +Zx +Zx +Zx +Zx +Zx +Zx +Zx +Zx +Zx +Zx +Zx +Zx +Zx +Zx +Zx +Zx +Zx +Zx +Zx +Zx +ON +"} +(3,1,1) = {" +fX +xE +xE +xE +xE +xE +xE +xE +xE +xE +xE +xE +xE +xE +xE +xE +xE +xE +xE +xE +xE +xE +xE +xE +xE +xE +xE +xE +xE +xE +UH +UH +UH +UH +UH +UH +UH +UH +xE +xE +xE +xE +xE +xE +xE +xE +xE +bY +bY +xE +xE +eN +eN +eN +eN +eN +eN +eN +eN +eN +eN +eN +eN +eN +eN +eN +eN +eN +eN +eN +eN +eN +eN +eN +AD +AD +AD +AD +AD +AD +jG +jG +Zx +Zx +Zx +Zx +Zx +Zx +Zx +Zx +Zx +Zx +Zx +Zx +Zx +Zx +Zx +Zx +Zx +Zx +Zx +Zx +Zx +Zx +Zx +Zx +Zx +Zx +Zx +Zx +Zx +Zx +Zx +Zx +Zx +Zx +Zx +Zx +Zx +Zx +Zx +Zx +Zx +Zx +Zx +Zx +Zx +Zx +Zx +Zx +Zx +Zx +Zx +Zx +Zx +Zx +Zx +Zx +Zx +ON +"} +(4,1,1) = {" +fX +xE +xE +xE +xE +xE +KW +KW +KW +xE +xE +xE +xE +xE +xE +xE +xE +xE +xE +xE +xE +xE +xE +xE +xE +xE +xE +xE +xE +xE +UH +UH +UH +UH +UH +UH +UH +wS +Ss +Kl +Kl +xE +xE +KW +xE +xE +xE +bY +bY +bY +eN +eN +eN +eN +eN +eN +eN +eN +eN +eN +eN +eN +eN +eN +eN +eN +eN +eN +eN +eN +eN +eN +eN +eN +eN +eN +AD +AD +AD +AD +jG +jG +Zx +Zx +Zx +Zx +Zx +Zx +Zx +Zx +Zx +Zx +Zx +Zx +Zx +Zx +Zx +Zx +Zx +Zx +Zx +Zx +Zx +Zx +Zx +Zx +Zx +Zx +Zx +Zx +Zx +Zx +Zx +Zx +Zx +Zx +Zx +Zx +Zx +Zx +Zx +Zx +Zx +Zx +Zx +Zx +Zx +Zx +Zx +Zx +Zx +Zx +Zx +Zx +Zx +Zx +Zx +Zx +Zx +ON +"} +(5,1,1) = {" +fX +xE +xE +xE +KW +KW +KW +KW +KW +KW +xE +xE +xE +xE +xE +xE +xE +xE +xE +xE +xE +KW +KW +KW +KW +KW +xE +xE +xE +xE +UH +UH +UH +UH +UH +UH +wS +wS +Ss +Kl +Kl +xE +KW +Fs +Fs +pw +bY +bY +bY +bY +eN +eN +eN +eN +eN +eN +eN +eN +eN +eN +eN +eN +eN +eN +eN +eN +eN +eN +eN +eN +eN +eN +eN +eN +eN +eN +eN +eN +eN +jG +jG +jG +jG +Zx +Zx +Zx +Zx +Zx +Zx +Zx +Zx +Zx +Zx +Zx +Zx +Zx +Zx +Zx +Zx +Zx +Zx +Zx +Zx +Zx +Zx +Zx +Zx +Zx +Zx +Zx +Zx +Zx +Zx +Zx +Zx +Zx +Zx +Zx +Zx +Zx +Zx +Zx +Zx +Zx +Zx +Zx +Zx +Zx +Zx +Zx +Zx +Zx +Zx +Zx +Zx +Zx +Zx +Zx +Zx +ON +"} +(6,1,1) = {" +fX +xE +xE +xE +KW +KW +KW +KW +KW +KW +xE +xE +xE +xE +xE +xE +xE +KW +KW +KW +KW +KW +KW +KW +KW +KW +KW +KW +xE +xE +UH +UH +UH +UH +UH +UH +wS +wS +wS +wS +wS +xE +Fs +Fs +Fs +pw +bY +bY +Jc +bY +bY +eN +eN +eN +eN +eN +eN +eN +eN +eN +eN +eN +eN +eN +eN +eN +eN +eN +eN +eN +eN +eN +eN +eN +eN +eN +eN +eN +eN +jG +jG +jG +jG +Zx +Zx +Zx +Zx +Zx +Zx +Zx +Zx +Zx +Zx +Zx +Zx +Zx +Zx +Zx +Zx +Zx +Zx +Zx +Zx +Zx +Zx +Zx +Zx +Zx +Zx +Zx +Zx +Zx +Zx +Zx +Zx +Zx +Zx +Zx +Zx +Zx +it +it +it +it +it +it +it +Zx +Zx +Zx +Zx +Zx +Zx +Zx +Zx +Zx +Zx +Zx +Zx +ON +"} +(7,1,1) = {" +fX +xE +xE +KW +KW +KW +KW +KW +KW +xE +xE +xE +xE +xE +KW +KW +KW +KW +KW +KW +KW +xE +xE +KW +KW +KW +KW +KW +KW +xE +UH +UH +UH +UH +UH +wS +wS +wS +wS +UH +wS +xE +Fs +Fs +Fs +pw +bY +Jc +Jc +Jc +bY +bY +eN +eN +eN +eN +eN +eN +eN +eN +eN +eN +eN +eN +eN +eN +eN +eN +eN +eN +eN +eN +eN +eN +eN +eN +eN +eN +eN +eN +jG +jG +jG +jG +Zx +Zx +Zx +Zx +Zx +Zx +Zx +Zx +Zx +Zx +Zx +Zx +Zx +Zx +Zx +Zx +Zx +Zx +Zx +Zx +Zx +Zx +Zx +Zx +Zx +Zx +Zx +Zx +Zx +Zx +Zx +Zx +it +it +it +it +it +SR +lc +gz +Al +EE +it +it +it +it +it +Zx +Zx +Zx +Zx +Zx +Zx +Zx +Zx +ON +"} +(8,1,1) = {" +fX +xE +xE +KW +KW +KW +KW +KW +xE +xE +xE +xE +xE +KW +KW +KW +xE +xE +xE +xE +xE +xE +xE +xE +xE +xE +KW +KW +KW +KW +UH +UH +UH +UH +UH +wS +wS +wS +wS +wS +Fw +Fs +Fs +Fs +Fs +xE +bY +bY +Jc +Jc +Jc +bY +bY +bY +bY +bY +bY +bY +bY +bY +bY +bY +eN +eN +eN +eN +eN +eN +eN +eN +eN +eN +eN +eN +eN +eN +eN +eN +eN +eN +eN +jG +jG +jG +jG +Zx +Zx +Zx +Zx +Zx +Zx +Zx +Zx +Zx +Zx +Zx +Zx +Zx +Zx +Zx +Zx +Zx +Zx +Zx +Zx +Zx +Zx +Zx +Zx +Zx +Zx +Zx +Zx +Zx +Zx +Zx +it +JP +jA +iQ +Kg +wc +ls +WG +ls +DX +pq +Zo +jA +Wk +it +Zx +Zx +Zx +Zx +Zx +Zx +Zx +Zx +ON +"} +(9,1,1) = {" +fX +xE +xE +KW +KW +KW +KW +xE +xE +xE +xE +xE +KW +KW +xE +xE +xE +xE +xE +xE +xE +xE +xE +xE +xE +xE +xE +xE +KW +KW +UH +UH +UH +UH +UH +wS +wS +wS +wS +Fw +Fw +Fs +Fs +KW +KW +xE +bY +bY +Jc +Jc +Jc +Jc +Jc +Jc +bY +bY +bY +bY +bY +Jc +Jc +bY +bY +bY +bY +bY +bY +bY +bY +eN +eN +eN +eN +eN +eN +eN +eN +eN +eN +eN +eN +jG +jG +jG +jG +jG +Zx +Zx +Zx +Zx +Zx +Zx +Zx +Zx +Zx +Zx +Zx +Zx +Zx +Zx +Zx +Zx +Zx +Zx +Zx +Zx +Zx +Zx +Zx +Zx +Zx +Zx +Zx +Zx +Zx +Zx +it +HY +jA +jA +nI +pD +ls +WG +ls +NS +Gj +jA +jA +UG +it +Zx +Zx +Zx +Zx +Zx +Zx +Zx +Zx +ON +"} +(10,1,1) = {" +fX +xE +xE +KW +KW +KW +KW +xE +xE +xE +xE +KW +KW +KW +xE +xE +xE +xE +xE +xE +xE +xE +xE +xE +xE +xE +xE +xE +xE +KW +wS +wS +UH +UH +wS +wS +wS +wS +wS +wS +wS +Fs +xE +xE +xE +xE +bY +bY +bY +rG +il +il +il +il +il +il +il +il +il +il +il +il +il +il +il +zL +bY +bY +bY +bY +bY +eN +eN +eN +eN +eN +eN +eN +eN +eN +eN +eN +jG +jG +jG +jG +jG +Zx +Zx +Zx +Zx +Zx +Zx +Zx +Zx +Zx +Zx +Zx +Zx +Zx +Zx +Zx +Zx +Zx +Zx +Zx +Zx +Zx +Zx +Zx +Zx +Zx +Zx +Zx +Zx +Zx +it +ST +jA +jA +oM +GH +ls +iK +ls +FO +kz +jA +jA +nY +it +Zx +Zx +Zx +Zx +Zx +Zx +Zx +Zx +ON +"} +(11,1,1) = {" +fX +xE +xE +xE +KW +KW +xE +xE +xE +xE +KW +KW +KW +xE +xE +xE +xE +xE +xE +xE +KW +KW +KW +KW +xE +xE +xE +xE +xE +KW +wS +UH +UH +UH +UH +UH +UH +UH +wS +wS +wS +wS +UH +UH +xE +xE +xE +bY +ln +iY +iW +bY +xE +bY +bY +bY +Jc +Jc +bY +Jc +Jc +Jc +Jc +Jc +Jc +sN +Jc +bY +bY +bY +bY +bY +eN +eN +eN +eN +eN +eN +eN +eN +eN +eN +eN +jG +jG +jG +jG +jG +Zx +Zx +Zx +Zx +Zx +Zx +Zx +Zx +Zx +Zx +Zx +Zx +Zx +Zx +Zx +Zx +Zx +Zx +Zx +Zx +Zx +Zx +Zx +Zx +Zx +Zx +Zx +Zx +it +Ii +Ii +Ii +it +DH +Fi +xZ +Al +Zb +it +Dz +Dz +Dz +it +Zx +Zx +Zx +Zx +Zx +Zx +Zx +Zx +ON +"} +(12,1,1) = {" +fX +xE +xE +xE +KW +KW +KW +KW +xE +xE +KW +KW +KW +xE +xE +xE +xE +xE +xE +KW +KW +KW +KW +KW +xE +xE +xE +xE +xE +xE +wS +wS +UH +UH +UH +UH +UH +UH +UH +UH +wS +wS +wS +UH +xE +xE +xE +wK +wK +lY +wK +wK +xE +xE +xE +xE +bY +bY +bY +bY +bY +bY +bY +Jc +Jc +sN +bY +bY +bY +bY +bY +bY +bY +bY +eN +eN +eN +eN +eN +eN +eN +eN +eN +jG +uP +uP +uP +uP +uP +Zx +uP +Zx +Zx +Zx +Zx +Zx +Zx +Zx +Zx +Zx +Zx +Zx +Zx +Zx +Zx +Zx +Zx +Zx +Zx +Zx +Zx +Zx +Zx +Zx +Zx +Zx +it +JP +jA +iQ +CS +wc +ls +WG +ls +DX +aQ +Zo +jA +Wk +it +Zx +Zx +Zx +Zx +Zx +Zx +Zx +Zx +ON +"} +(13,1,1) = {" +fX +xE +xE +xE +KW +KW +KW +KW +xE +xE +KW +KW +KW +xE +xE +xE +xE +xE +KW +KW +KW +KW +KW +KW +xE +xE +xE +xE +xE +xE +wS +wS +UH +UH +UH +UH +UH +UH +UH +UH +UH +UH +wS +UH +xE +xE +xE +wK +rO +Lb +IB +wK +xE +xE +xE +xE +xE +xE +xE +xE +bY +bY +bY +bY +bY +sN +pw +Gp +Gp +Gp +Gp +Gp +bY +bY +eN +eN +eN +eN +eN +eN +eN +eN +eN +eN +uP +uP +uP +uP +uP +uP +uP +uP +uP +Zx +Zx +Zx +Zx +Zx +Zx +Zx +Zx +Zx +Zx +Zx +Zx +Zx +Db +Db +Db +Db +Db +Zx +Zx +Zx +Zx +Zx +it +HY +sg +jA +SC +pD +ls +WG +ls +NS +Aa +jA +sg +UG +it +Zx +Zx +Zx +Zx +Zx +Zx +Zx +Zx +ON +"} +(14,1,1) = {" +fX +xE +xE +xE +xE +KW +KW +xE +xE +KW +KW +KW +KW +KW +xE +xE +xE +xE +KW +KW +KW +KW +KW +KW +xE +xE +xE +xE +xE +xE +wS +wS +UH +UH +UH +UH +wS +UH +UH +UH +UH +UH +wS +wS +xE +xE +xE +wK +Il +Zw +am +wK +xE +xE +xE +xE +xE +xE +xE +xE +xE +xE +xE +bY +bY +yW +Ja +tZ +Pz +KC +ro +QK +bY +bY +bY +eN +eN +eN +eN +eN +eN +eN +eN +eN +uP +uP +uP +uP +uP +uP +uP +uP +uP +uP +uP +uP +uP +uP +Zx +Zx +Zx +Zx +Zx +Zx +Zx +Zx +Db +OK +SV +kI +Db +Zx +Zx +Zx +Zx +Zx +it +ST +jA +jA +UQ +GH +ls +iK +ls +FO +Tu +jA +jA +nY +it +Zx +Zx +Zx +Zx +Zx +Zx +Zx +Zx +ON +"} +(15,1,1) = {" +fX +xE +xE +xE +xE +KW +KW +xE +xE +xE +KW +KW +KW +KW +xE +xE +xE +xE +KW +KW +KW +KW +KW +xE +xE +xE +xE +xE +xE +xE +wS +wS +UH +wS +wS +wS +UH +UH +UH +UH +UH +UH +wS +wS +xE +xE +xE +wK +GQ +ex +qD +wK +xE +xE +xE +xE +xE +xE +xE +xE +xE +xE +xE +bY +bY +sN +pw +OU +Gp +aJ +xA +xA +fD +TZ +bY +eN +eN +eN +eN +eN +eN +eN +eN +eN +uP +uP +uP +uP +uP +uP +uP +uP +uP +uP +uP +uP +uP +uP +uP +Zx +Zx +Zx +Zx +Zx +Zx +Zx +Db +Uh +DF +Wh +Db +Zx +Zx +Zx +Zx +Zx +it +Uj +Uj +Uj +it +wO +Fi +hT +Al +cY +it +oA +Dz +Dz +it +Zx +Zx +Zx +Zx +Zx +Zx +Zx +Zx +ON +"} +(16,1,1) = {" +fX +xE +xE +xE +xE +xE +KW +xE +xE +xE +xE +KW +KW +KW +xE +xE +xE +xE +xE +KW +KW +KW +KW +xE +xE +xE +xE +xE +xE +xE +wS +wS +wS +wS +wS +wS +wS +wS +UH +UH +UH +UH +UH +wS +KW +KW +xE +wK +wK +wK +wK +wK +xE +xE +Do +Do +Do +Do +Do +Do +Do +Do +xE +bY +bY +sN +bY +OU +Gp +aJ +QR +xA +fD +TZ +bY +eN +eN +eN +eN +eN +eN +eN +eN +eN +uP +uP +uP +uP +uP +uP +uP +uP +uP +uP +uP +uP +uP +uP +uP +jG +Zx +Zx +Zx +Zx +Zx +Zx +Db +qB +nE +Wh +Db +Db +Db +Db +Db +Db +it +JP +jA +iQ +zB +wc +ls +WG +ls +DX +NA +Zo +jA +Wk +it +Zx +Zx +Zx +Zx +Zx +Zx +Zx +Zx +ON +"} +(17,1,1) = {" +fX +xE +xE +xE +xE +xE +KW +xE +xE +xE +xE +KW +KW +KW +KW +xE +xE +xE +xE +xE +KW +KW +KW +xE +xE +xE +xE +xE +xE +xE +wS +wS +wS +wS +wS +wS +wS +wS +wS +UH +UH +UH +UH +wS +KW +xE +xE +xE +xE +xE +xE +xE +xE +xE +Do +fZ +yX +Cy +vS +sb +KO +Do +xE +xE +bY +sN +bY +OU +Gp +aJ +xA +QN +fD +TZ +bY +eN +eN +eN +eN +eN +eN +eN +eN +eN +uP +uP +uP +cK +uP +cK +cK +uP +uP +uP +uP +uP +uP +uP +uP +jG +Zx +Zx +Zx +Zx +Zx +Zx +Db +rC +MG +fB +VZ +QC +Ms +lm +Rc +hH +it +HY +pE +jA +tT +pD +ls +WG +ls +NS +zI +jA +pE +UG +it +Zx +Zx +Zx +Zx +Zx +Zx +Zx +Zx +ON +"} +(18,1,1) = {" +fX +xE +xE +xE +xE +xE +KW +xE +xE +xE +xE +xE +KW +KW +KW +xE +xE +xE +xE +KW +KW +KW +xE +xE +xE +xE +xE +xE +xE +KW +wS +wS +wS +wS +wS +wS +wS +UH +UH +UH +UH +UH +UH +UH +KW +xE +xE +xE +xE +xE +xE +xE +xE +xE +Do +BK +Vb +Vb +VJ +Vb +zb +Do +xE +xE +bY +sN +bY +OU +Gp +aJ +JH +bW +fD +TZ +bY +eN +eN +eN +eN +eN +eN +eN +eN +eN +uP +uP +uP +cK +cK +cK +cK +cK +cK +uP +uP +uP +uP +uP +uP +jG +jG +Zx +Zx +Zx +Zx +Zx +Db +Vw +EA +Eb +LB +Ei +Ex +Jy +yM +RB +it +ST +jA +jA +tB +GH +ls +kN +ls +FO +bj +jA +jA +nY +it +Zx +Zx +Zx +Zx +Zx +Zx +Zx +Zx +ON +"} +(19,1,1) = {" +fX +xE +xE +xE +xE +xE +KW +xE +xE +xE +xE +xE +KW +KW +KW +xE +xE +KW +KW +KW +KW +xE +xE +xE +xE +xE +xE +xE +xE +KW +wS +wS +wS +wS +wS +wS +wS +wS +UH +UH +UH +UH +wS +wS +KW +xE +xE +xE +xE +xE +xE +xE +xE +xE +Do +zz +Vb +KE +aD +Vb +YX +Do +xE +xE +bY +sN +bY +OU +Gp +aJ +xA +QN +fD +TZ +bY +eN +eN +eN +eN +eN +eN +eN +eN +eN +uP +uP +uP +uP +uP +cK +cK +cK +cK +cK +cK +cK +uP +uP +uP +jG +jG +jG +Zx +Zx +Zx +Zx +Db +Vw +EA +Eb +bL +DI +te +YL +Rn +OF +it +qS +qS +qS +it +cn +Fi +xZ +Al +Oo +it +Fb +Fb +Fb +it +Zx +Zx +Zx +Zx +Zx +Zx +Zx +Zx +ON +"} +(20,1,1) = {" +fX +xE +xE +xE +xE +xE +KW +KW +xE +xE +xE +xE +KW +KW +KW +KW +xE +KW +KW +KW +xE +xE +xE +xE +xE +xE +xE +xE +xE +KW +wS +UH +UH +wS +wS +wS +wS +wS +wS +UH +wS +wS +wS +wS +xE +xE +xE +xE +xE +xE +xE +xE +xE +xE +Do +HB +eE +nd +ey +Vb +Vb +Do +bY +bY +bY +sN +bY +OU +Gp +aJ +QR +xA +fD +TZ +eN +eN +eN +eN +eN +eN +eN +eN +eN +eN +eN +eN +eN +uP +uP +uP +cK +cK +cK +cK +Qu +cK +cK +uP +uP +jG +jG +jG +jG +Zx +Zx +Zx +Db +ik +EA +Eb +IZ +Ni +YL +Gy +SV +Zz +it +JP +jA +iQ +hX +wc +ls +WG +ls +DX +Sj +Zo +jA +Wk +it +Zx +Zx +Zx +Zx +Zx +Zx +Zx +Zx +ON +"} +(21,1,1) = {" +fX +xE +xE +xE +xE +xE +KW +KW +xE +xE +xE +xE +xE +KW +KW +KW +KW +KW +KW +xE +xE +xE +xE +xE +xE +xE +xE +KW +KW +KW +UH +UH +UH +UH +UH +wS +wS +wS +wS +wS +wS +wS +wS +UH +xE +xE +xE +xE +xE +xE +xE +xE +xE +xE +Do +zO +Vb +Vb +qr +Vb +zb +Do +GY +bY +bY +sN +pw +OU +Gp +aJ +xA +xA +fD +BZ +eN +eN +eN +eN +eN +eN +eN +eN +eN +eN +eN +eN +eN +uP +uP +uP +cK +cK +cK +cK +cK +cK +cK +cK +uP +jG +jG +jG +jG +Zx +Zx +Zx +Db +Vw +EA +Sn +qY +JM +sY +bB +vs +vs +it +HY +jA +jA +xN +pD +ls +WG +ls +NS +xy +jA +jA +UG +it +Zx +Zx +Zx +Zx +Zx +Zx +Zx +Zx +ON +"} +(22,1,1) = {" +fX +xE +xE +xE +xE +xE +KW +KW +KW +xE +xE +xE +xE +KW +KW +xE +xE +xE +xE +xE +xE +xE +xE +xE +xE +xE +KW +KW +KW +KW +UH +UH +UH +UH +wS +wS +Cr +wS +wS +wS +wS +UH +UH +UH +xE +xE +xE +xE +xE +xE +xE +xE +xE +xE +Do +kn +aO +US +HG +rU +jX +Do +bY +Jc +bY +OZ +Cw +ay +oB +vT +SJ +GO +bY +eN +eN +eN +eN +eN +eN +eN +eN +eN +eN +eN +eN +eN +eN +eN +uP +uP +uP +cK +cK +cK +cK +cK +cK +cK +uP +jG +jG +lV +lV +lV +lV +lV +lV +lV +lV +lV +lV +yO +lV +lV +lV +lV +lV +ST +jA +jA +hl +GH +ls +iK +ls +ZK +bb +jA +jA +nY +it +Zx +Zx +Zx +Zx +Zx +Zx +Zx +Zx +ON +"} +(23,1,1) = {" +fX +xE +xE +xE +xE +xE +KW +KW +KW +xE +xE +xE +xE +xE +xE +xE +xE +xE +xE +xE +xE +xE +xE +xE +xE +KW +KW +KW +KW +xE +UH +UH +UH +UH +wS +wS +wS +wS +wS +wS +UH +UH +UH +UH +xE +xE +xE +xE +xE +xE +xE +xE +bY +bY +Do +Do +Do +Do +eJ +Do +Do +Do +bY +Jc +bY +sN +pw +Gp +Gp +Gp +Gp +Gp +bY +eN +eN +eN +eN +eN +eN +eN +eN +eN +eN +eN +eN +eN +eN +eN +eN +uP +uP +uP +uP +cK +cK +cK +cK +cK +cK +jG +jG +lV +IE +BR +BR +nV +RY +qP +IE +BR +BR +kq +yU +lv +eT +Zr +lV +it +it +it +it +do +Fi +xZ +Al +PQ +it +it +it +it +it +Zx +Zx +Zx +Zx +Zx +Zx +Zx +Zx +ON +"} +(24,1,1) = {" +fX +xE +xE +xE +xE +xE +KW +KW +KW +xE +xE +xE +xE +xE +xE +xE +xE +xE +xE +xE +xE +xE +xE +KW +KW +KW +KW +xE +xE +xE +UH +UH +UH +wS +wS +wS +wS +wS +UH +UH +UH +UH +UH +UH +xE +xE +xE +xE +xE +xE +xE +bY +bY +bY +bY +bY +bY +zR +Hv +zR +bY +bY +bY +bY +bY +sN +bY +bY +bY +bY +bY +bY +bY +eN +eN +eN +eN +eN +eN +eN +eN +eN +eN +eN +eN +eN +eN +eN +eN +uP +uP +uP +uP +uP +cK +cK +cK +cK +cK +jG +jG +Yn +BR +BR +es +OL +lJ +BR +BR +BR +BR +Qg +PX +PX +IJ +yU +lV +LE +DD +Ha +Ax +ls +ls +WG +ls +ls +ls +fV +it +Zx +Zx +Zx +Zx +Zx +Zx +Zx +Zx +Zx +Zx +ON +"} +(25,1,1) = {" +fX +xE +xE +xE +xE +xE +xE +KW +KW +KW +xE +xE +xE +xE +xE +xE +xE +xE +xE +xE +xE +xE +KW +KW +KW +KW +xE +xE +xE +xE +UH +UH +wS +wS +wS +wS +UH +UH +UH +UH +UH +UH +UH +UH +xE +xE +xE +xE +xE +xE +xE +bY +bY +Jc +Jc +bY +Zg +bY +GZ +il +il +il +il +il +il +LA +bY +bY +bY +Jc +Jc +Jc +bY +bY +bY +eN +eN +eN +eN +eN +eN +eN +eN +eN +eN +eN +eN +eN +eN +eN +uP +uP +uP +uP +uP +uP +cK +cK +cK +jG +jG +Yn +BR +BR +wF +KY +wF +BR +BR +BR +BR +vO +BR +BR +wn +pk +lV +jL +ls +ls +ls +ls +ls +WG +ls +ls +ls +Uv +it +Zx +Zx +Zx +Zx +Zx +Zx +Zx +Zx +Zx +Zx +ON +"} +(26,1,1) = {" +fX +xE +xE +xE +xE +xE +KW +KW +KW +KW +KW +xE +xE +xE +xE +xE +xE +xE +xE +xE +KW +KW +KW +KW +xE +xE +xE +xE +xE +xE +wS +wS +wS +UH +UH +UH +UH +UH +UH +UH +UH +UH +UH +UH +xE +xE +xE +xE +xE +xE +xE +bY +bY +bY +bY +bY +bY +bY +sZ +bY +bY +bY +bY +wD +bY +Hn +Ja +Hn +Hn +Uc +Gp +bY +bY +bY +bY +bY +bY +eN +eN +eN +eN +eN +eN +eN +eN +eN +eN +eN +eN +eN +eN +jG +jG +jG +jG +jG +jG +Fl +Fl +Fl +jG +Yn +BR +BR +wF +jH +wF +aE +Ir +Ir +Ir +qy +wZ +dl +Xr +lJ +lV +mt +XE +ls +ls +zn +jF +IT +zn +ls +uM +Mz +it +Zx +Zx +Zx +Zx +Zx +Zx +Zx +Zx +Zx +Zx +ON +"} +(27,1,1) = {" +fX +xE +xE +xE +xE +KW +KW +KW +KW +KW +KW +xE +xE +xE +xE +xE +xE +xE +KW +KW +KW +KW +KW +xE +xE +xE +xE +xE +xE +xE +wS +UH +UH +UH +UH +UH +UH +UH +UH +UH +FF +FF +FF +FF +FF +FF +FF +FF +FF +Wc +MD +MD +MD +Gn +FF +FF +FF +bY +sZ +uj +Vl +Vl +Vl +Vl +Vl +Vl +Vl +HW +Vl +Vl +JJ +JJ +JJ +JJ +JJ +JJ +bY +bY +eN +eN +eN +eN +eN +eN +eN +eN +eN +eN +eN +eN +eN +eN +eN +eN +jG +jG +jG +jG +jG +jG +jG +Yn +BR +BR +wF +jH +wF +jH +BR +BR +BR +ox +lV +QP +kq +MX +lV +DK +YQ +YQ +YQ +YQ +tf +ls +ls +ls +ls +zV +it +Zx +Zx +Zx +Zx +Zx +Zx +Zx +Zx +Zx +Zx +ON +"} +(28,1,1) = {" +fX +xE +xE +xE +xE +KW +KW +KW +KW +KW +KW +KW +KW +xE +xE +xE +xE +KW +KW +KW +KW +KW +KW +xE +xE +xE +xE +xE +xE +xE +xE +xE +xE +xE +xE +xE +xE +xE +xE +xE +FF +ye +RU +lu +YR +YR +Yl +Yl +DZ +PU +Ea +XA +AK +cl +ib +sd +FF +bY +sZ +GT +tW +vI +Vl +Oz +Ej +ep +LD +Gc +Wp +JO +JJ +Dp +AF +MB +qo +JJ +bY +bY +eN +eN +eN +eN +eN +eN +eN +eN +eN +eN +eN +eN +eN +eN +eN +eN +eN +eN +jG +jG +jG +jG +jG +lV +Pc +BR +wF +He +wF +jH +yF +Iu +UK +BF +lV +bV +kq +fl +lV +ur +aX +MV +ic +rW +SY +ls +ic +uN +WM +VI +it +Zx +Zx +Zx +Zx +Zx +Zx +Zx +Zx +Zx +Zx +ON +"} +(29,1,1) = {" +fX +xE +xE +xE +xE +KW +KW +KW +KW +KW +KW +KW +KW +KW +KW +KW +KW +KW +KW +KW +xE +xE +xE +xE +xE +xE +xE +rP +rP +rP +rP +rP +rP +rP +rP +rP +rP +xE +xE +xE +FF +Rm +JB +LS +Ny +Ny +LS +LS +kX +LS +LS +Ny +Ny +Ch +JB +jT +rl +bY +sZ +GT +Bz +WR +ZZ +Gc +Gc +Gc +Gc +Gc +Gc +qQ +JJ +CP +AF +AF +si +JJ +bY +bY +eN +eN +eN +eN +eN +eN +eN +eN +eN +eN +eN +eN +eN +eN +eN +eN +eN +eN +eN +jG +jG +jG +jG +Yn +sT +BR +BR +Re +dl +Jz +BR +BR +mB +oq +lV +lV +Su +lV +lV +it +it +it +it +it +Rq +it +it +it +it +it +it +Zx +Zx +Zx +Zx +Zx +Zx +Zx +Zx +Zx +Zx +ON +"} +(30,1,1) = {" +fX +xE +xE +xE +xE +KW +KW +KW +KW +KW +KW +KW +KW +KW +KW +KW +KW +KW +KW +xE +xE +xE +xE +xE +xE +xE +xE +rP +mo +uQ +CW +MY +IR +AG +kt +IR +rP +xE +xE +xE +FF +PS +LS +Ny +Ny +Ny +Ny +Ny +Ux +Ny +Ny +Ny +Ny +yh +LS +sl +rl +bY +sZ +fz +Bz +WR +ZZ +Gc +Gc +eo +Tm +Gc +Gc +Gc +JJ +qZ +Uw +NG +WV +JJ +bY +bY +eN +eN +eN +eN +eN +eN +eN +eN +eN +eN +eN +eN +eN +eN +eN +eN +eN +eN +eN +eN +jG +jG +jG +Yn +aU +BR +wF +KY +wF +BR +GI +BR +cv +ZF +lV +BR +kq +bz +lV +gf +uu +om +it +rT +SY +ls +it +az +KL +ag +ag +ag +ag +ag +ag +Zx +Zx +Zx +Zx +Zx +Zx +ON +"} +(31,1,1) = {" +fX +xE +xE +xE +xE +KW +KW +xE +KW +KW +KW +xE +xE +xE +xE +xE +xE +xE +xE +xE +xE +xE +xE +xE +xE +xE +xE +rP +Zv +MY +MY +MY +Ed +uz +bQ +vQ +rP +xE +xE +xE +FF +Yf +Ny +Ny +GS +TT +TT +TT +TT +TT +TT +TT +Cx +yh +Ny +DT +FF +bY +sZ +fz +Bz +WR +ZZ +Gc +Gc +Jm +Lf +rt +NM +yP +Ac +jw +JQ +JQ +uE +JJ +bY +bY +eN +eN +eN +eN +eN +eN +eN +eN +eN +eN +eN +eN +eN +eN +eN +eN +eN +eN +eN +eN +eN +jG +jG +lV +KF +BR +wF +jH +wF +BR +BR +BR +mB +oq +lV +Th +TV +Pw +Gs +SO +SK +SO +is +qX +Ub +uY +it +QY +Br +lW +ag +ag +ag +Fu +ag +ag +Zx +Zx +Zx +Zx +Zx +ON +"} +(32,1,1) = {" +fX +xE +xE +xE +xE +KW +KW +KW +KW +KW +xE +xE +xE +xE +xE +xE +xE +xE +xE +xE +xE +xE +xE +xE +xE +xE +xE +rP +sy +MY +MY +MY +MY +wg +MY +UR +rP +xE +xE +xE +FF +Dx +Ny +Ny +YO +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Fp +yh +Ny +cs +rl +bY +sZ +fz +Bz +WR +ZZ +ht +Vc +Es +jv +qA +Vf +uh +JJ +Dc +AF +AF +kd +JJ +bY +bY +bY +eN +eN +eN +eN +eN +eN +eN +eN +eN +eN +eN +eN +eN +eN +eN +eN +eN +eN +eN +eN +jG +jG +Yn +BR +BR +wF +jH +wF +BR +yF +Iu +UK +BF +lV +yU +Sa +wY +lV +Fk +pV +Qn +LW +ls +Ks +MV +it +cS +Xx +lW +lW +lW +lW +lW +lW +ag +ag +ag +Zx +Zx +Zx +ON +"} +(33,1,1) = {" +fX +xE +xE +xE +xE +xE +KW +KW +KW +KW +xE +xE +xE +xE +xE +xE +xE +xE +xE +xE +xE +rP +rP +rP +rP +rP +rP +rP +cX +cX +cX +MY +jk +wg +MY +Od +rP +xE +xE +xE +FF +AS +LS +Ny +YO +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Fp +yh +LS +sl +rl +bY +sZ +fz +Bz +WR +ZZ +Tf +eq +Es +JD +qA +Vf +QE +JJ +HT +rr +rr +jy +JJ +bY +bY +bY +eN +eN +eN +eN +eN +eN +eN +eN +eN +eN +eN +eN +eN +eN +eN +eN +eN +eN +eN +eN +jG +jG +Yn +BR +BR +wF +He +wF +BR +mW +Rh +Rh +Rh +Rh +Rh +Rh +Rh +Rh +ff +Gb +oS +jV +it +it +it +it +Bl +Mf +ag +lW +lW +Jq +cP +Jq +lW +ag +ag +ag +Zx +Zx +ON +"} +(34,1,1) = {" +fX +xE +xE +xE +xE +xE +xE +xE +xE +xE +xE +xE +xE +xE +xE +xE +xE +xE +xE +xE +xE +rP +PO +rb +Wz +rb +CC +rP +wE +Ak +cX +zi +AX +XR +MY +MY +rP +xE +xE +xE +FF +PS +LS +Ny +YO +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Fp +yh +LS +sl +rl +bY +sZ +fz +kf +WR +ZZ +iO +tj +Sm +FW +qA +Vf +cE +JJ +JJ +JJ +JJ +JJ +JJ +bY +bY +bY +bY +eN +eN +eN +eN +eN +eN +eN +eN +eN +eN +eN +eN +eN +eN +eN +eN +eN +eN +eN +eN +jG +Yn +BR +BR +KP +oN +pW +BR +Gi +Rh +hh +GJ +Xv +th +my +dm +Rh +EJ +YI +ng +PD +AH +lO +Ga +Ut +Xt +Mf +ag +ag +lW +FU +cP +Jq +lW +ag +ag +ag +Zx +Zx +ON +"} +(35,1,1) = {" +fX +xE +xE +xE +xE +xE +xE +xE +xE +xE +xE +xE +xE +xE +xE +xE +xE +xE +xE +xE +xE +rP +fE +cX +ZY +cX +Qe +rP +zo +nn +cX +iE +fT +WY +MY +MY +rP +xE +xE +xE +FF +Wi +mM +Ux +YO +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Fp +wv +xS +TN +FF +bY +sZ +fz +Bz +WR +ZZ +rL +eq +YA +gv +Ku +Vf +cm +rk +GA +RC +wq +nJ +rk +bY +uP +cK +uP +uP +uP +uP +uP +uP +uP +uP +uP +uP +eN +eN +eN +eN +eN +eN +eN +eN +eN +eN +eN +jG +Yn +BR +BR +BR +BR +BR +BR +zH +Rh +Sb +QV +Tl +Tl +nM +Lk +Rh +bO +AZ +ff +PD +IO +qW +PZ +fP +xX +Vh +ag +lW +lW +Jq +cP +Jq +lW +ag +ag +ag +Zx +Zx +ON +"} +(36,1,1) = {" +fX +xE +xE +xE +Gk +Gk +Gk +Gk +xE +kH +kH +kH +kH +xE +CB +CB +CB +CB +xE +xE +xE +rP +Dq +cX +Vo +gx +gx +Bm +DR +lf +vJ +Py +yt +cW +MY +qw +rP +xE +xE +xE +FF +PS +LS +Ny +YO +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Fp +yh +LS +cU +rl +bY +sZ +fz +Bz +WR +ZZ +jf +CQ +rL +Pk +QW +yE +yP +BO +ca +im +im +Dv +xU +bY +uP +cK +cK +uP +uP +uP +uP +uP +uP +uP +uP +uP +bY +eN +eN +eN +eN +eN +eN +eN +eN +eN +eN +jG +lV +YN +BR +QM +BR +BR +BR +ge +Rh +ri +Tl +Tl +Au +Ty +wI +Rh +ff +AZ +ff +PD +nw +qW +lw +Vr +Vr +jU +lW +lW +lW +lW +lW +lW +ag +ag +Fv +ag +Zx +Zx +ON +"} +(37,1,1) = {" +fX +xE +Gk +Gk +Gk +le +wk +Gk +kH +kH +Kn +OB +kH +CB +CB +Gg +Fr +CB +xE +xE +xE +rP +fE +cX +wG +cX +Qe +rP +cX +fe +cX +iE +fW +WY +MY +MY +rP +xE +xE +xE +FF +PS +LS +Ny +YO +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Fp +yh +LS +Xj +rl +bY +sZ +fz +Bz +WR +ZZ +QW +fC +yq +hi +GL +Vf +uU +rk +cx +Fg +Fg +Fg +xU +bY +cK +cK +cK +cK +uP +uP +uP +uP +uP +uP +uP +uP +bY +eN +eN +eN +eN +eN +eN +eN +eN +eN +eN +jG +lV +lV +ZN +ZN +XI +wx +XI +lV +Rh +NX +Tl +UB +Tl +Ty +Tl +Rh +Fk +AZ +yw +PD +ws +qW +lw +Vr +Vr +Bl +ag +ag +ag +ag +Fu +ag +ag +Fv +Fv +ag +Zx +Zx +ON +"} +(38,1,1) = {" +fX +xE +Gk +co +eu +mU +mU +Gk +BX +ED +Kx +Kx +kH +Xf +mf +Bc +Bc +CB +xE +xE +xE +rP +aV +in +jm +in +Sc +rP +SI +Gm +cX +zi +WA +XR +MY +Ol +rP +xE +xq +xE +FF +Dx +Ny +Ny +YO +Gl +Gl +Gl +Gl +Gl +Gl +Gl +Fp +yh +Ny +Ny +rl +bY +sZ +fz +Bz +WR +ZZ +GL +JL +hV +rx +GL +Vf +Ih +rk +sX +Fg +Fg +Fg +rk +bY +uP +uP +cK +cK +cK +cK +uP +uP +uP +uP +uP +uP +bY +bY +eN +eN +eN +eN +eN +eN +eN +eN +eN +jG +lV +CF +mP +AT +mP +mP +mP +FL +Rh +aj +UX +Dn +ww +Ve +Ix +Rh +vh +Nb +Ys +PD +aB +PR +lw +Vr +aw +Bl +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +Zx +Zx +ON +"} +(39,1,1) = {" +fX +xE +Gk +Gk +Gk +Mr +Gk +Gk +kH +kH +oE +kH +kH +CB +CB +Vq +CB +CB +xE +xE +xE +rP +rP +rP +rP +rP +rP +rP +rn +cX +cX +MY +xt +wg +MY +MY +rP +xW +bX +Gp +FF +xM +Ny +Ny +ps +Bb +Bb +Bb +Bb +Bb +Bb +Bb +Iz +yh +qc +CD +FF +bY +sZ +GT +Bz +WR +ZZ +GL +Uo +qz +VV +GL +Vf +dg +rk +Zi +bl +bl +Oj +rk +bY +uP +cK +cK +cK +cK +cK +cK +cK +cK +cK +uP +uP +bY +bY +bY +eN +eN +eN +eN +eN +eN +eN +eN +jG +ZL +RL +jG +jG +jG +RL +jG +WC +Rh +mZ +kZ +Rh +Rh +Hf +Rh +Rh +PD +qU +PD +PD +Ov +PR +lw +Vr +pT +XX +XX +aa +aa +XX +XX +XX +XX +jG +jG +Zx +Zx +Zx +ON +"} +(40,1,1) = {" +fX +xE +Gk +rc +eU +VK +Tx +Gk +oL +Ho +kC +OR +kH +Kj +Io +Ec +dB +CB +xE +xE +xE +xE +xE +xE +xE +xE +xE +rP +Ee +yp +yp +yp +yp +vA +kA +UR +rP +Nd +mk +ka +rl +PS +LS +Ny +Ny +Ny +Ny +Ny +Ny +Ny +Ny +Ny +Ny +yh +Gz +Ui +rl +bY +sZ +GT +Bz +Op +Vl +zJ +fC +fC +di +YT +np +VH +rk +EW +nf +nf +bl +xU +bY +uP +uP +cK +cK +cK +cK +cK +cK +uP +uP +uP +uP +bY +Hw +Hw +FS +FS +FS +FS +FS +FS +FS +FS +tq +tq +jG +jG +jG +jG +jG +jG +jG +ba +WW +WW +qa +eS +QL +ZJ +Lm +JU +lC +Vr +fn +Vr +Vr +lw +Vr +op +XX +Wy +yT +Fx +kT +hb +uG +XX +jG +jG +Zx +Zx +Zx +ON +"} +(41,1,1) = {" +fX +xE +Gk +Ps +DL +EH +Yx +Gk +dd +Qy +oU +ar +kH +WK +gQ +Kc +DP +CB +jn +jn +jn +jn +jn +jn +jn +jn +jn +rP +Ce +MY +MY +MY +Qh +RR +TD +Oc +rP +bY +sN +bY +rl +Rm +LS +LS +Ny +Ny +Ny +Ny +FT +ip +xm +xm +xm +Um +Ny +hL +rl +bY +sZ +GT +Bz +Bz +bu +Gc +Gc +Gc +ab +Gc +Gc +xs +rk +hm +nf +nf +bl +xU +bY +uP +uP +uP +cK +cK +cK +uP +bY +bY +bY +bY +bY +bY +fD +tO +Nf +VA +VA +VA +VA +VA +VA +Nf +Ru +YM +RL +jG +jG +jG +jG +jG +jG +jG +RL +rF +Ji +Vr +hd +dF +jz +Vr +lC +Vr +dM +Vr +jz +ts +jz +Vr +XX +mz +Fx +nt +pu +Fx +md +aa +jG +jG +Zx +Zx +Zx +ON +"} +(42,1,1) = {" +fX +xE +Gk +EC +OJ +VK +Dl +Gk +XD +wu +ky +RK +kH +jp +Jh +LC +Ht +CB +GF +kY +cQ +ax +jn +vq +HV +vi +jn +rP +mG +JF +LO +MY +RG +Ip +IQ +gR +rP +GY +sN +bY +FF +iB +LV +wd +YR +YR +OC +sH +Uy +yh +Dt +yI +Ny +Ny +jt +hY +FF +bY +sZ +GT +Hz +zc +Vl +gT +Gc +hw +ab +iN +Gc +Rv +rk +gY +NT +Oh +mn +rk +bY +uP +uP +cK +cK +uP +uP +uP +bY +lQ +Ja +Ja +Ja +Ja +Ja +Ja +Nf +VA +VA +VA +VA +VA +VA +Nf +xD +xD +xD +xD +xD +xD +xD +xD +xD +xD +xD +rf +vo +ei +AC +Yd +NW +Nl +xJ +Cd +vB +LL +JT +hx +cy +LL +xp +sB +Fx +fr +LU +ad +zA +aa +jG +jG +Zx +Zx +Zx +ON +"} +(43,1,1) = {" +fX +xE +Gk +eR +sw +PT +yB +Gk +dh +ue +RQ +rM +kH +tM +fm +jJ +fY +CB +VN +xi +ZU +ZU +Tz +uf +uf +pO +jn +rP +rP +rP +rP +PA +eH +Nc +rP +rP +rP +bY +sN +bY +FF +FF +rl +rl +rl +FF +FF +TS +Yr +BT +FF +FF +rl +rl +rl +FF +FF +bY +sZ +uj +Vl +Vl +Vl +tD +tD +Vl +JI +Vl +tD +tD +rk +rk +xU +xU +rk +rk +bY +uP +uP +uP +uP +uP +uP +uP +bY +bX +pw +bY +bY +bY +fD +tO +Nf +VA +VA +VA +VA +VA +VA +Nf +Ru +YM +RL +jG +jG +jG +jG +jG +jG +jG +RL +rF +qa +bF +jz +mx +hd +Vr +Vr +SN +DJ +Vr +jz +IV +jz +Vr +XX +aY +Fx +Fx +Ra +Fx +Fh +aa +jG +jG +Zx +Zx +Zx +ON +"} +(44,1,1) = {" +fX +eC +Gk +Gk +Gk +Gk +jb +Gk +kH +kH +kL +kH +kH +CB +CB +Qq +CB +CB +gV +xi +mw +rm +jn +jn +jn +jn +jn +xE +xE +xE +LT +bX +bY +Pe +LT +bY +bY +bY +sN +Vv +bY +bY +bY +bY +bY +yj +LT +Vk +bY +Ad +LT +bY +bY +bY +bY +bY +bY +bY +sZ +bY +bY +QS +bY +pw +pw +lM +ml +LT +EZ +pw +bY +lM +bY +bY +bY +tm +bY +uP +uP +uP +uP +uP +uP +uP +bY +bX +bY +bY +bY +bY +wA +wA +WX +WX +WX +WX +WX +WX +WX +WX +HQ +HQ +jG +jG +jG +jG +jG +jG +jG +PN +qq +qq +qa +eS +oC +Xl +QL +ya +nK +OG +OE +Vr +Vr +sz +Vr +Vr +XX +xv +Fx +Fx +Ay +ja +Xn +XX +jG +jG +jG +Zx +Zx +ON +"} +(45,1,1) = {" +fX +eC +LN +Xb +BY +eC +Mm +Yp +Ie +aF +Mm +cd +uO +Bs +CH +ug +jW +SF +uC +lN +sM +ZU +jn +xE +xE +xE +xE +xE +xE +Jc +bY +bX +pw +Pe +pw +bY +bY +pw +sN +pw +bY +bY +bY +bY +bY +bY +pw +Vk +pw +Ad +pw +bY +bY +bY +bY +bY +bY +pw +sZ +pw +bY +bY +bY +bY +bY +wl +ml +pw +oG +bY +bY +oG +bY +bY +bY +bY +bY +bY +bY +bY +bY +bY +bY +bY +pw +bX +bY +bY +bY +bY +bY +bY +eN +eN +eN +eN +eN +eN +eN +eN +jG +Cs +RL +jG +jG +jG +RL +jG +jG +Bv +VB +DE +Wn +Wn +Wn +Wn +PW +Wn +Wn +Wn +Wn +Xq +Vr +NY +sn +Av +XX +XX +aa +aa +XX +XX +XX +XX +jG +jG +jG +Zx +Zx +ON +"} +(46,1,1) = {" +fX +eC +LN +kk +bi +eC +LF +iA +pI +iA +HZ +iA +JR +iA +iA +aT +pp +jn +QO +Bj +dI +yy +jn +xE +xE +xE +Jc +Jc +Jc +bY +bY +pG +mm +CX +mm +mm +mm +mm +Eg +mm +mm +mm +Fj +mm +mm +mm +mm +MZ +Hm +oI +Hm +Hm +Hm +Hm +Hm +Hm +Hm +Hm +fK +Hm +Hm +Hm +Hm +Hm +Hm +Hr +pJ +sF +go +sF +vV +go +sF +sF +sF +sF +sF +sF +sF +sF +sF +sF +sF +sF +sF +ET +pw +bY +IA +mS +kl +eN +eN +eN +eN +eN +eN +eN +eN +eN +jG +OY +dy +pt +XH +pt +pt +pt +RE +Wn +hU +al +CA +AR +ov +My +yN +Bh +bf +Ri +Wn +zT +zT +nm +zT +zT +zT +jG +jG +jG +jG +jG +jG +jG +jG +Fl +jG +Zx +Zx +ON +"} +(47,1,1) = {" +fX +eC +LN +zh +HD +eC +bA +Yp +Dw +Dw +vu +Yp +DY +fo +Yp +pK +Kp +jn +jn +jn +jn +jn +jn +By +bY +bY +bY +bY +bY +bY +pw +ml +pw +bY +bY +bY +bY +bY +bY +bY +bY +pw +Vk +pw +bY +bY +bY +bY +bY +bY +bY +bY +bY +bY +bY +bY +bY +bY +bY +bY +bY +bY +bY +bY +bY +wl +sN +pw +oG +bY +Oa +oG +bY +bY +bY +bY +bY +bY +bY +bY +bY +bY +bY +bY +pw +fM +sF +sF +qv +Hn +WX +eN +eN +eN +eN +eN +eN +eN +eN +eN +jG +OY +OY +gm +rh +dN +zK +dN +OY +Wn +GK +nF +nF +nF +gK +sG +eB +WE +Pl +qu +Wn +Qa +aS +mr +yu +fc +zT +EB +jG +jG +jG +jG +jG +Fl +Fl +Fl +jG +Zx +Zx +ON +"} +(48,1,1) = {" +fX +eC +eC +eC +sJ +bn +Cb +bE +As +pA +Wu +RP +XK +As +Mq +IX +yc +jW +jW +iz +jW +jW +dU +mm +mm +mm +mm +mm +cF +hI +mm +Da +bY +bY +Jc +Jc +Jc +Jc +Jc +Jc +bY +bY +Vk +bY +Zg +bY +Jc +Jc +bY +bY +bY +bY +bY +bY +bY +bY +bY +bY +Zg +bY +bY +bY +bY +bY +bY +lM +sN +bY +lM +bY +Oa +lM +wD +Aq +bY +bY +bY +bY +Zg +bY +bY +bY +Wr +wR +Bw +Hn +Ja +Ja +Ja +Hn +FS +eN +eN +eN +eN +eN +eN +eN +eN +eN +jG +OY +bZ +Fm +Fm +Fm +ah +Fm +MR +Wn +tb +dT +qs +Pa +Ev +rq +OQ +mH +Fd +mH +Wn +ee +Gt +ev +Xy +bM +zT +EB +EB +EB +jG +Fl +Fl +Fl +Fl +Fl +jG +Zx +Zx +ON +"} +(49,1,1) = {" +fX +eC +hv +dx +BU +eC +Rk +iP +fo +Dw +jr +iP +Dw +Dw +Yp +Sy +Cu +bN +bN +bN +bN +bN +bN +xE +xE +xE +bY +yS +EI +NK +yS +bY +bY +bY +bY +bY +bY +bY +bY +bY +bY +bY +Vk +bY +uP +cK +cK +uP +uP +cK +uP +uP +uP +bY +St +uX +uX +uX +uX +uX +uX +uX +uX +Wl +Wl +Wl +gH +Wl +Wl +Wl +NP +Wl +Wl +Wl +Cj +bY +bY +bY +bY +bY +bY +bY +bY +pw +pw +bY +bY +bY +bY +bY +eN +eN +eN +eN +eN +eN +eN +eN +eN +eN +jG +OY +rH +Fm +MF +tI +cq +Fm +Yb +Wn +Ao +wJ +AL +ct +AL +nk +Wn +Wn +Wn +Wn +Wn +TM +jB +ku +lZ +kj +zT +EB +EB +EB +jG +jG +jG +Fl +Fl +jG +jG +Zx +Zx +ON +"} +(50,1,1) = {" +fX +eC +eC +eC +IW +eC +MJ +iA +qb +iA +hZ +iA +aA +iA +iA +Ca +sk +bN +Lt +ql +AB +uk +bN +xE +xE +xE +zs +FN +Rs +GU +zs +hM +hM +zs +hM +hM +zs +hM +hM +zs +zs +UF +Vk +bY +cK +cK +uP +uP +cK +uP +cK +cK +uP +bY +bp +iI +iI +iI +iI +iI +iI +iI +iI +Wl +hQ +fs +Wv +pM +UC +JZ +Ep +OA +BS +Wl +bY +bY +bY +bY +eN +eN +bY +bY +bY +bY +bY +bY +bY +bY +eN +eN +eN +eN +eN +eN +eN +eN +eN +eN +eN +eN +jG +OY +Mw +jS +wW +Lu +Iy +cO +jN +cc +Vd +An +oW +MO +oW +de +Wn +Yz +ir +aq +Wn +Gu +Nn +Xa +Bt +KM +zT +EB +EB +EB +EB +jG +jG +jG +jG +jG +jG +jG +Zx +ON +"} +(51,1,1) = {" +fX +eC +EU +ZT +uy +eC +UY +hr +AO +Yp +pK +Yp +Ct +Ai +Yp +eM +Sq +jM +wQ +mF +Tk +CE +bN +xE +xE +xE +zs +XS +eD +CZ +lA +Xd +eD +lA +eD +eD +lA +Xd +eD +hy +zs +bY +Vk +bY +uP +uP +cK +cK +uP +cK +cK +uP +uP +bY +bp +iI +iI +iI +iI +iI +Rp +iI +iI +In +Mo +Yt +Wv +Yt +Yt +Yt +Yt +Yt +Yt +In +bY +bY +bY +eN +eN +eN +eN +eN +eN +eN +eN +eN +eN +eN +eN +eN +eN +eN +eN +eN +eN +eN +eN +Jr +Jr +jG +jG +OY +lK +WB +gd +ph +Fm +bg +EK +Wn +nl +nF +Tj +qk +cB +Ph +bD +Hb +wp +av +Wn +zT +zT +zT +zT +zT +zT +EB +EB +EB +EB +EB +jG +jG +EB +EB +jG +jG +Zx +ON +"} +(52,1,1) = {" +fX +eC +jC +jC +jC +jC +iM +jC +dS +dS +mu +dS +dS +LP +LP +uL +LP +LP +Cg +Uz +jc +jP +bN +bN +bN +bN +zs +ZM +Qw +ZP +eD +eD +eD +eD +kV +Ah +eD +eD +eD +eD +hM +bY +ft +bY +uP +cK +uP +uP +cK +cK +cK +cK +uP +bY +bp +iI +iI +Gd +iI +iI +iI +iI +iI +In +qV +Tp +nh +Tr +Oe +Tr +Tr +FM +Yt +In +bY +bY +bY +eN +eN +eN +eN +eN +eN +eN +eN +eN +eN +eN +eN +eN +eN +eN +eN +eN +eN +eN +eN +Jr +Jr +jG +jG +OY +vF +qt +Cc +Mj +tC +Ls +Dm +Wn +Lo +wP +cN +Fz +Dh +rI +Wn +pP +IL +nN +Wn +jG +jG +jG +jG +EB +EB +EB +EB +EB +EB +EB +EB +EB +EB +EB +EB +EB +Zx +ON +"} +(53,1,1) = {" +fX +xE +jC +aW +JA +Vx +hS +jC +bc +gP +fb +aN +dS +BD +qE +Bi +Pu +LP +qH +Uz +CE +CE +Xp +gS +gS +uH +zs +fh +Tc +Ym +wB +QB +sp +js +NJ +qj +hp +kV +Ah +eD +hM +bY +ft +bY +uP +uP +uP +cK +cK +cK +cK +cK +uP +bY +bp +iI +iI +iI +iI +iI +iI +iI +bT +Wl +kp +Yt +Iv +Yt +Iw +Yt +ji +Yt +Bq +Wl +bY +bY +bY +eN +eN +eN +eN +eN +eN +eN +eN +eN +eN +eN +eN +eN +eN +eN +eN +eN +eN +eN +eN +Jr +Jr +jG +jG +OY +OY +OY +OY +OY +OY +OY +OY +Wn +Wn +DW +Wn +Wn +DW +Wn +Wn +Wn +Wn +Wn +Wn +jG +jG +jG +jG +EB +EB +EB +EB +EB +EB +EB +EB +EB +EB +EB +EB +EB +Zx +ON +"} +(54,1,1) = {" +fX +xE +jC +so +dz +PV +tV +jC +EN +HI +sL +TJ +dS +Pq +jQ +aI +wo +LP +nA +HK +RD +rX +bN +st +vw +mI +zs +fv +Ds +Ib +Qp +wH +fQ +oY +eD +eD +Nz +wH +AA +eD +zs +By +ft +bY +uP +uP +cK +cK +cK +cK +cK +uP +uP +bY +bp +iI +iI +iI +iI +iI +iI +Hi +tr +PM +Yt +Yt +Wv +Yt +Yt +Yt +Yt +Yt +Yt +In +bY +bY +bY +OI +OI +OI +OI +OI +OI +eN +eN +eN +eN +eN +eN +eN +eN +eN +eN +eN +eN +eN +eN +Jr +jG +jG +jG +jG +jG +jG +jG +jG +jG +jG +jG +jG +jG +jG +jG +jG +jG +jG +jG +jG +EB +EB +jG +jG +jG +jG +jG +EB +EB +EB +EB +EB +EB +EB +EB +EB +EB +EB +EB +EB +EB +ON +"} +(55,1,1) = {" +fX +xE +jC +Uk +lx +Zk +qf +jC +Be +qJ +Df +BC +dS +fH +el +mN +Za +LP +bN +bN +bN +bN +bN +XL +XL +XL +zs +eD +QZ +RH +Qp +eD +Qp +hD +kV +LR +WO +eD +eD +bU +Hp +Ja +Sf +bY +cK +cK +cK +cK +cK +cK +cK +uP +uP +bY +dY +iI +iI +iI +Rp +iI +iI +Hi +HH +Wl +Eo +Tp +nh +Tr +Zl +Tr +Tr +NE +WP +In +bY +bY +bY +bY +bY +OI +OI +OI +OI +eN +eN +eN +eN +eN +eN +eN +eN +eN +eN +eN +eN +eN +eN +Jr +jG +jG +jG +jG +jG +jG +jG +jG +jG +jG +jG +jG +jG +jG +EB +EB +jG +jG +jG +EB +EB +EB +EB +EB +EB +jG +EB +EB +EB +EB +EB +EB +EB +EB +EB +EB +EB +EB +EB +EB +EB +ON +"} +(56,1,1) = {" +fX +xE +jC +AY +jq +PV +fO +jC +aP +Im +JY +UN +dS +LZ +Ka +zE +vK +LP +xE +xE +xE +ME +df +zG +lI +IF +zs +eD +YH +VS +Nv +iu +Nv +bI +Xi +Je +wb +iu +iu +iu +uo +sF +Zn +bY +uP +uP +cK +uP +cK +cK +cK +cK +uP +bY +bp +iI +iI +iI +iI +iI +iI +Hi +HH +Wl +WP +Yt +Wv +Yt +Yt +Yt +Yt +Yt +Yt +In +bY +bY +bY +bY +bY +OI +OI +OI +OI +eN +eN +eN +eN +eN +eN +eN +eN +eN +eN +eN +eN +eN +eN +uP +uP +uP +uP +uP +uP +uP +cK +cK +cK +cK +uP +uP +uP +EB +EB +EB +jG +EB +EB +EB +EB +EB +EB +EB +EB +EB +EB +EB +EB +EB +EB +EB +EB +EB +EB +EB +EB +EB +EB +EB +EB +ON +"} +(57,1,1) = {" +fX +xE +jC +jC +jC +ai +jC +jC +dS +dS +tP +dS +dS +LP +LP +YF +LP +LP +xE +xE +xE +ME +Cl +VW +gA +IS +zs +eD +YH +Nj +SW +kV +Oq +GP +eD +eD +BB +kV +Ah +eD +FN +By +HX +bY +uP +uP +cK +cK +uP +cK +cK +cK +cK +bY +bp +iI +iI +iI +iI +iI +iI +Hi +tr +PM +Yt +Yt +Iv +Yt +mC +Yt +ji +Yt +Yt +In +bY +bY +bY +bY +bY +OI +OI +OI +OI +eN +eN +eN +eN +eN +eN +eN +eN +eN +eN +eN +eN +Jr +Jr +uP +uP +uP +uP +cK +cK +cK +cK +cK +cK +uP +uP +uP +uP +EB +EB +EB +EB +EB +EB +EB +EB +EB +EB +EB +EB +EB +EB +EB +EB +EB +EB +EB +EB +EB +EB +EB +EB +EB +EB +EB +EB +ON +"} +(58,1,1) = {" +fX +xE +jC +cI +jx +nv +nv +jC +DN +IY +Lp +Lp +dS +ZC +rR +pr +pr +LP +xE +xE +xE +ME +eO +gq +Wa +Xh +pU +Eh +Lg +Rb +dX +wH +lX +QJ +Sv +El +pX +wH +AA +eD +hM +bY +HX +pw +Jc +bY +bY +bY +bY +bY +Jc +Jc +bY +bY +bp +iI +iI +iI +iI +iI +iI +iI +bT +Wl +oe +Tp +Ew +Tr +UW +Tr +Tr +FM +Bq +Wl +bY +bY +bY +bY +OI +OI +OI +OI +OI +eN +eN +eN +eN +eN +eN +eN +eN +eN +eN +eN +eN +Jr +uP +uP +uP +uP +cK +cK +cK +cK +cK +cK +uP +uP +uP +uP +EB +EB +EB +EB +EB +EB +EB +EB +EB +EB +EB +EB +EB +EB +EB +EB +EB +EB +EB +EB +EB +EB +EB +EB +EB +EB +EB +EB +EB +ON +"} +(59,1,1) = {" +fX +xE +jC +jC +jC +rD +yC +jC +dS +dS +NZ +VT +dS +LP +LP +Uq +oj +LP +xE +xE +xE +ME +fj +bk +QQ +rp +zs +eD +eD +eD +eD +eD +eD +eD +wH +AA +eD +eD +eD +eD +hM +bY +HX +Ja +Ja +Ja +Ja +Ja +bY +Jc +Jc +Jc +bY +bY +bp +iI +iI +Rp +iI +iI +iI +Gd +iI +In +rQ +Yt +ny +Yt +Yt +Yt +Yt +Yt +Yt +In +bY +bY +bY +OI +OI +OI +OI +OI +OI +eN +eN +eN +eN +eN +eN +eN +eN +eN +eN +uP +uP +uP +uP +uP +cK +cK +cK +cK +cK +cK +uP +uP +uP +uP +uP +EB +EB +EB +EB +EB +EB +EB +EB +EB +EB +EB +EB +EB +EB +EB +EB +EB +EB +EB +EB +EB +EB +EB +EB +EB +EB +EB +EB +EB +EB +ON +"} +(60,1,1) = {" +fX +xE +xE +xE +jC +jC +jC +jC +xE +dS +dS +dS +dS +VR +LP +LP +LP +LP +bY +bY +bY +ME +cA +mJ +sU +ma +zs +zS +eD +eD +jh +xk +eD +jh +eD +eD +jh +xk +eD +zS +zs +bY +HX +pw +bY +pw +Hn +Hn +bY +Jc +bY +Jc +bY +bY +bp +iI +iI +iI +iI +iI +iI +iI +iI +In +Bn +Yt +Aj +JX +Ox +Yt +Yt +Yt +Yt +In +bY +bY +iH +eN +eN +eN +eN +eN +eN +eN +eN +eN +eN +eN +eN +eN +eN +eN +eN +uP +uP +uP +cK +cK +cK +cK +cK +cK +cK +uP +uP +uP +uP +uP +uP +EB +EB +EB +EB +EB +EB +EB +EB +EB +EB +EB +EB +EB +EB +EB +EB +EB +EB +EB +EB +EB +EB +EB +EB +EB +EB +EB +EB +EB +EB +ON +"} +(61,1,1) = {" +fX +xE +xE +xE +xE +xE +xE +xE +xE +xE +VR +VR +VR +VR +VR +VR +VR +VR +VR +bY +bY +ME +ME +Iq +Iq +ME +zs +zs +hM +hM +zs +hM +hM +zs +hM +hM +zs +hM +hM +zs +zs +bY +HX +bY +Zg +bY +uT +aC +VR +bY +bY +bY +bY +bY +bp +iI +iI +iI +iI +iI +iI +iI +iI +Wl +Kh +Yt +Rf +Rf +HF +KN +YS +Yt +zP +Wl +bY +bY +bY +eN +eN +eN +eN +eN +eN +eN +eN +eN +eN +eN +eN +eN +eN +eN +eN +uP +uP +uP +cK +cK +cK +cK +cK +cK +uP +uP +uP +uP +uP +uP +EB +EB +EB +EB +EB +EB +EB +EB +EB +EB +EB +EB +EB +EB +EB +EB +EB +EB +EB +EB +EB +EB +EB +EB +EB +EB +EB +EB +EB +EB +EB +ON +"} +(62,1,1) = {" +fX +xE +xE +xE +xE +xE +VR +VR +xE +VR +VR +VR +VR +VR +VR +VR +VR +VR +VR +VR +bY +bY +bY +VR +VR +VR +VR +VR +bY +bY +bY +bY +bY +bY +bY +bY +bY +VR +VR +bY +bY +bY +HX +bY +bY +VR +VR +VR +VR +bY +bY +bY +bY +bY +YW +uX +uX +uX +uX +uX +uX +uX +uX +Wl +Wl +In +In +Wl +Wl +Wl +In +In +Wl +Wl +bY +OI +OI +eN +eN +eN +eN +eN +eN +eN +eN +eN +eN +eN +eN +eN +eN +eN +eN +uP +Nk +uP +cK +cK +cK +cK +uP +uP +uP +uP +uP +uP +uP +EB +EB +EB +EB +EB +EB +EB +EB +EB +EB +EB +EB +EB +EB +EB +EB +EB +EB +EB +EB +EB +EB +EB +EB +EB +EB +EB +EB +EB +EB +EB +fk +je +"} +(63,1,1) = {" +fX +xE +xE +xE +xE +xE +VR +VR +VR +VR +VR +VR +VR +VR +VR +VR +VR +VR +VR +VR +VR +VR +VR +VR +VR +VR +VR +VR +bY +bY +bY +bY +Jc +bY +bY +VR +VR +VR +VR +VR +bY +bY +HX +bY +bY +VR +VR +VR +VR +OI +bY +bY +bY +bY +bY +bY +bY +bY +bY +bY +bY +bY +bY +bY +bY +bY +bY +bY +bY +bY +bY +bY +bY +bY +bY +OI +OI +eN +eN +eN +eN +eN +eN +eN +eN +eN +eN +eN +eN +eN +eN +eN +uP +uP +uP +uP +uP +cK +cK +uP +uP +uP +uP +uP +uP +uP +EB +EB +EB +EB +EB +EB +EB +EB +EB +EB +EB +EB +EB +EB +EB +EB +EB +EB +EB +EB +EB +EB +EB +EB +EB +EB +EB +EB +EB +EB +EB +fk +fk +je +"} +(64,1,1) = {" +fX +xE +VR +VR +VR +VR +VR +VR +VR +VR +VR +VR +VR +VR +VR +VR +VR +VR +VR +VR +VR +VR +VR +VR +VR +VR +VR +VR +VR +VR +VR +bY +bY +bY +VR +VR +VR +VR +VR +VR +Zg +bY +HX +bY +VR +VR +VR +VR +VR +OI +OI +OI +OI +bY +bY +bY +bY +bY +bY +bY +bY +kR +bY +bY +bY +bY +bY +bY +bY +bY +bY +bY +bY +OI +OI +OI +OI +eN +eN +eN +eN +eN +eN +eN +eN +eN +eN +eN +eN +eN +eN +eN +EB +EB +uP +uP +uP +uP +uP +uP +uP +uP +uP +uP +EB +EB +EB +EB +EB +EB +EB +EB +EB +EB +EB +EB +EB +EB +EB +EB +EB +EB +EB +EB +EB +EB +EB +EB +EB +EB +EB +EB +EB +EB +EB +EB +EB +uP +fk +je +"} +(65,1,1) = {" +fX +VR +VR +VR +VR +VR +VR +VR +VR +VR +VR +VR +VR +VR +VR +VR +VR +VR +VR +VR +VR +VR +VR +VR +VR +VR +VR +VR +VR +VR +VR +VR +VR +VR +VR +VR +VR +VR +VR +VR +VR +bY +HX +bY +VR +VR +VR +VR +VR +OI +OI +OI +OI +OI +OI +OI +bY +bY +bY +bY +bY +bY +bY +bY +bY +bY +VR +VR +VR +VR +VR +VR +VR +VR +eN +eN +eN +eN +eN +eN +eN +eN +eN +eN +eN +eN +eN +eN +eN +eN +eN +EB +EB +EB +EB +EB +EB +uP +uP +uP +EB +EB +EB +EB +EB +EB +EB +EB +EB +EB +EB +EB +EB +EB +EB +EB +EB +EB +EB +EB +EB +EB +EB +EB +EB +EB +EB +EB +EB +EB +EB +EB +EB +uP +EB +EB +uP +uP +fk +je +"} +(66,1,1) = {" +fX +VR +VR +VR +VR +VR +VR +VR +VR +VR +VR +VR +VR +VR +VR +VR +VR +VR +VR +VR +VR +VR +VR +VR +VR +VR +VR +VR +VR +VR +VR +VR +VR +VR +VR +VR +VR +VR +VR +VR +VR +bY +HX +bY +VR +VR +VR +VR +VR +VR +VR +VR +VR +VR +VR +VR +VR +VR +bY +VR +bY +bY +bY +VR +VR +VR +VR +VR +VR +VR +VR +VR +VR +VR +eN +eN +eN +eN +eN +eN +eN +eN +eN +eN +eN +eN +eN +eN +eN +eN +EB +EB +EB +EB +EB +EB +EB +EB +EB +EB +EB +EB +EB +EB +EB +EB +EB +EB +EB +EB +EB +EB +EB +EB +EB +EB +EB +EB +EB +EB +EB +EB +EB +EB +uP +uP +uP +uP +uP +uP +uP +uP +uP +uP +uP +uP +uP +uP +fk +je +"} +(67,1,1) = {" +fX +VR +VR +VR +VR +VR +VR +VR +VR +VR +VR +VR +VR +VR +VR +VR +VR +VR +VR +VR +VR +VR +VR +VR +VR +VR +VR +VR +VR +VR +VR +VR +VR +VR +VR +VR +VR +VR +VR +VR +VR +bY +yn +bY +VR +VR +VR +VR +VR +VR +VR +VR +VR +VR +VR +VR +VR +VR +VR +VR +VR +VR +VR +VR +VR +VR +VR +VR +VR +VR +VR +VR +VR +VR +eN +eN +eN +eN +eN +eN +eN +eN +eN +eN +eN +eN +eN +eN +eN +eN +EB +EB +EB +EB +EB +EB +EB +EB +EB +EB +EB +EB +EB +EB +EB +EB +EB +EB +EB +EB +EB +EB +EB +uP +uP +uP +uP +uP +uP +EB +EB +uP +uP +uP +uP +uP +uP +uP +uP +uP +uP +uP +uP +uP +uP +uP +fk +fk +fk +je +"} +(68,1,1) = {" +fX +VR +VR +VR +VR +VR +VR +VR +VR +VR +VR +VR +VR +VR +VR +VR +VR +VR +VR +VR +VR +VR +VR +VR +VR +VR +VR +VR +VR +VR +VR +VR +VR +VR +VR +VR +VR +VR +VR +VR +VR +to +iD +to +VR +VR +VR +VR +VR +VR +VR +VR +VR +VR +VR +VR +VR +VR +VR +VR +VR +VR +VR +VR +VR +VR +VR +VR +VR +VR +VR +VR +VR +VR +eN +eN +eN +eN +eN +eN +eN +eN +eN +eN +eN +eN +eN +eN +eN +EB +EB +EB +EB +EB +EB +EB +EB +EB +EB +EB +EB +EB +EB +EB +EB +EB +EB +EB +EB +EB +EB +EB +EB +uP +uP +uP +uP +uP +uP +uP +uP +uP +uP +uP +uP +cK +cK +cK +uP +uP +uP +uP +uP +uP +uP +fk +fk +fk +fk +je +"} +(69,1,1) = {" +fX +VR +VR +VR +VR +VR +VR +VR +VR +VR +VR +VR +VR +VR +VR +VR +VR +VR +VR +VR +VR +VR +VR +VR +VR +VR +VR +VR +VR +VR +VR +VR +VR +VR +VR +VR +VR +VR +VR +VR +VR +to +iD +to +to +VR +VR +VR +VR +VR +VR +VR +VR +VR +VR +VR +VR +VR +VR +VR +VR +VR +VR +VR +VR +VR +VR +VR +VR +VR +VR +VR +VR +VR +VR +VR +VR +VR +eN +eN +eN +eN +eN +eN +eN +eN +eN +eN +EB +EB +EB +EB +EB +EB +EB +EB +EB +EB +EB +EB +uP +uP +EB +EB +EB +uP +uP +uP +uP +uP +uP +uP +uP +uP +uP +uP +uP +uP +uP +uP +uP +uP +uP +cK +cK +cK +cK +uP +uP +uP +uP +uP +uP +fk +fk +fk +fk +fk +fk +je +"} +(70,1,1) = {" +fX +VR +VR +VR +VR +VR +VR +VR +VR +VR +VR +VR +VR +VR +VR +VR +VR +VR +VR +VR +VR +VR +VR +VR +VR +VR +VR +VR +VR +VR +VR +VR +VR +VR +VR +VR +VR +VR +VR +VR +to +to +iD +to +to +VR +VR +VR +VR +VR +VR +VR +VR +VR +VR +VR +VR +VR +VR +VR +VR +VR +VR +VR +VR +VR +VR +VR +VR +VR +VR +VR +VR +VR +VR +VR +VR +VR +VR +VR +eN +eN +eN +eN +eN +eN +eN +eN +EB +EB +EB +EB +EB +EB +EB +EB +EB +EB +EB +EB +uP +uP +uP +uP +uP +uP +uP +uP +uP +uP +uP +uP +uP +uP +uP +uP +uP +uP +uP +cK +cK +cK +cK +cK +cK +cK +uP +uP +uP +uP +uP +uP +fk +fk +fk +fk +fk +fk +fk +je +"} +(71,1,1) = {" +ni +VR +VR +VR +VR +VR +VR +VR +VR +VR +VR +VR +VR +VR +VR +VR +VR +VR +VR +VR +VR +VR +VR +VR +VR +VR +VR +VR +VR +VR +VR +to +to +to +to +VR +VR +VR +VR +VR +to +to +iD +to +to +to +VR +VR +VR +VR +VR +VR +VR +fp +fp +fp +fp +fp +fp +fp +fp +fp +fp +VR +VR +VR +VR +VR +VR +VR +VR +VR +VR +VR +VR +VR +VR +VR +oH +oH +gs +gs +gs +gs +gs +gs +gs +gs +gs +gs +gs +gs +gs +gs +gs +gs +gs +gs +uP +uP +uP +cK +cK +uP +uP +cK +uP +uP +uP +uP +uP +uP +uP +cK +cK +cK +cK +cK +cK +cK +cK +cK +cK +cK +cK +uP +uP +uP +uP +uP +fk +fk +fk +fk +fk +fk +fk +fk +fk +je +"} +(72,1,1) = {" +ni +ks +VR +VR +VR +VR +VR +VR +ks +ks +ks +VR +VR +ks +uP +uP +uP +uP +uP +uP +uP +VR +VR +VR +VR +VR +VR +to +VR +to +to +to +to +to +to +to +to +VR +VR +to +to +to +iD +to +to +to +to +to +to +VR +VR +VR +VR +fp +fp +fp +fp +fp +fp +fp +fp +fp +fp +VR +VR +VR +VR +VR +VR +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +gs +gs +gs +gs +gs +gs +gs +gs +gs +gs +gs +gs +gs +gs +gs +gs +gs +gs +uP +uP +cK +cK +cK +cK +uP +uP +uP +gs +uP +uP +uP +uP +uP +uP +cK +cK +cK +cK +cK +cK +cK +cK +cK +cK +uP +uP +uP +uP +fk +fk +fk +fk +fk +fk +fk +fk +fk +fk +fk +je +"} +(73,1,1) = {" +ni +ks +VR +ks +VR +ks +ks +ks +ks +ks +ks +ks +ks +ks +ks +uP +cK +cK +cK +uP +uP +uP +uP +uP +uP +VR +VR +to +to +to +to +to +to +to +to +to +to +to +to +to +to +to +iD +to +to +to +to +mR +Lv +Wd +VR +VR +VR +fp +fp +fp +fp +to +fp +fp +to +to +to +fp +fp +fp +fp +fp +VR +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +gs +gs +gs +gs +gs +gs +gs +gs +gs +gs +gs +gs +gs +gs +gs +gs +gs +gs +uP +uP +cK +cK +uP +uP +uP +gs +gs +gs +uP +uP +uP +uP +uP +uP +uP +cK +cK +cK +cK +Qu +cK +cK +cK +cK +uP +uP +uP +fk +fk +fk +fk +fk +fk +fk +fk +fk +fk +fk +fk +je +"} +(74,1,1) = {" +ni +ks +VR +ks +ks +ks +ks +ks +ks +ks +ks +ks +ks +ks +ks +uP +uP +cK +cK +cK +cK +cK +cK +cK +uP +uP +to +to +Wj +Wj +oa +Wj +Wj +oa +oa +Wj +Wj +to +to +to +to +to +iD +XJ +to +to +to +mR +mR +BW +VR +to +to +fp +fp +to +to +to +to +to +to +to +to +fp +fp +fp +fp +fp +fp +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +gs +gs +gs +gs +gs +gs +gs +gs +gs +gs +gs +gs +gs +gs +gs +gs +gs +gs +gs +uP +uP +uP +uP +gs +gs +gs +gs +gs +gs +gs +uP +gs +gs +uP +uP +uP +cK +cK +cK +cK +cK +cK +cK +cK +uP +uP +fk +fk +fk +fk +fk +fk +fk +fk +fk +fk +fk +fk +fk +je +"} +(75,1,1) = {" +ni +ks +ks +ks +ks +ks +ks +ks +ks +ks +ks +ks +ks +ks +ks +uP +uP +uP +uP +cK +cK +cK +cK +cK +cK +uP +to +Em +vH +hc +Rg +MC +MC +MC +Dk +Ww +FD +Wj +oa +oa +Wj +rE +ap +Dd +Dd +Dd +Dd +Dd +SZ +to +to +to +to +to +to +to +iw +iw +iw +iw +iw +to +to +fp +fp +fp +fp +fp +fp +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +gs +gs +gs +gs +gs +gs +gs +gs +gs +gs +gs +gs +gs +gs +gs +gs +gs +gs +gs +gs +uP +uP +gs +gs +gs +gs +gs +gs +gs +gs +gs +gs +gs +gs +uP +uP +uP +uP +cK +cK +cK +cK +cK +cK +uP +fk +fk +fk +fk +fk +fk +fk +fk +fk +fk +fk +fk +fk +fk +je +"} +(76,1,1) = {" +ni +ks +ks +ks +ks +ks +UH +UH +UH +UH +UH +ks +ks +ks +ks +ks +ks +uP +uP +uP +cK +cK +cK +cK +cK +uP +to +RX +It +rv +Ti +XT +CR +pd +Wj +Wj +AU +Qi +PJ +nP +YZ +to +Aw +XJ +to +to +to +XJ +NC +to +to +to +to +to +to +to +to +to +iw +iw +iw +iw +to +to +to +fp +fp +fp +fp +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +gs +gs +gs +gs +gs +gs +gs +gs +gs +gs +gs +gs +gs +gs +gs +gs +gs +gs +gs +gs +gs +gs +gs +gs +gs +gs +gs +gs +gs +gs +gs +gs +gs +gs +uP +uP +uP +uP +cK +cK +cK +cK +cK +cK +uP +fk +fk +fk +fk +fk +fk +fk +fk +fk +fk +fk +fk +fk +fk +je +"} +(77,1,1) = {" +ni +ks +UH +UH +UH +UH +UH +UH +UH +UH +UH +ks +ks +ks +ks +ks +ks +ks +uP +uP +cK +cK +cK +uP +uP +uP +to +mj +up +ea +Ln +Gf +LG +Lj +xc +iV +Xg +sP +sI +Zh +nP +XJ +Aw +to +to +Ou +to +to +NC +fJ +to +to +to +to +to +to +to +to +to +to +to +to +to +to +to +to +fp +fp +fp +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +gs +gs +gs +gs +gs +gs +gs +gs +gs +gs +gs +gs +gs +gs +gs +gs +gs +gs +gs +gs +gs +gs +gs +gs +gs +gs +gs +gs +gs +gs +gs +gs +gs +gs +gs +uP +uP +uP +uP +uP +cK +cK +cK +uP +uP +fk +fk +fk +fk +fk +fk +fk +fk +fk +fk +fk +fk +fk +fk +je +"} +(78,1,1) = {" +ni +ks +UH +UH +UH +UH +UH +UH +UH +UH +UH +UH +UH +UH +UH +UH +ks +ks +to +to +iw +to +to +to +to +to +to +mj +FR +Lc +Oi +xK +uS +qN +FR +FR +Lc +OO +LX +PC +BI +wX +Sp +to +to +to +Du +mv +ci +Du +Du +Du +Du +Du +Du +fy +fy +yL +yL +yL +fy +fy +to +to +to +to +fp +fp +fp +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +gs +gs +gs +gs +gs +gs +gs +gs +gs +gs +gs +gs +gs +gs +gs +gs +gs +gs +gs +gs +gs +gs +gs +gs +gs +gs +gs +gs +gs +gs +gs +gs +gs +gs +gs +gs +gs +gs +uP +uP +uP +cK +cK +uP +uP +fk +fk +fk +fk +fk +fk +fk +fk +fk +fk +fk +fk +fk +fk +je +"} +(79,1,1) = {" +ni +ks +UH +UH +UH +UH +UH +UH +UH +UH +UH +UH +UH +UH +UH +UH +ks +ks +to +to +to +to +Cz +Cz +sS +gX +Cz +Ly +Ef +yb +Kr +Dr +Sl +Pb +rg +FR +cp +mq +uq +nP +nP +to +iD +XJ +to +to +mv +We +tw +Ia +yJ +HU +Du +ty +Ud +fy +ll +br +iy +Qs +pi +fy +to +to +to +to +to +fp +fp +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +gs +gs +gs +gs +gs +gs +gs +gs +gs +gs +gs +gs +gs +gs +gs +gs +gs +gs +gs +gs +gs +gs +gs +gs +gs +gs +gs +gs +gs +gs +gs +gs +gs +gs +gs +gs +gs +gs +uP +uP +uP +cK +cK +uP +uP +uP +fk +fk +fk +fk +fk +fk +fk +fk +fk +fk +fk +fk +fk +je +"} +(80,1,1) = {" +ni +ks +UH +UH +UH +wS +wS +UH +UH +UH +UH +UH +UH +UH +UH +UH +ks +ks +to +to +to +OM +Cz +EQ +ZD +Zt +EX +MW +Wg +gB +oo +ga +zf +cr +Po +Zy +MQ +en +IK +Ro +Ro +jY +lk +gZ +gZ +gZ +Ft +mT +lr +Ud +Ud +iL +Ud +Ud +ao +fy +RO +Zs +CL +xu +VC +yL +to +to +to +to +to +fp +fp +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +gs +gs +gs +gs +gs +gs +gs +gs +gs +gs +gs +gs +gs +gs +gs +gs +gs +gs +gs +gs +gs +gs +gs +gs +gs +gs +gs +gs +gs +gs +gs +gs +gs +gs +gs +gs +uP +uP +uP +uP +cK +cK +uP +uP +uP +fk +fk +fk +fk +fk +fk +fk +fk +fk +fk +fk +fk +fk +je +"} +(81,1,1) = {" +ni +ks +UH +UH +UH +wS +wS +wS +wS +wS +UH +UH +UH +UH +UH +UH +ks +ks +ks +to +to +to +Cz +Ok +KS +QH +QH +Jp +Ug +tU +Cf +Kk +Le +rN +EF +rg +TO +UL +gn +nP +nP +XJ +Vs +to +to +Vm +Du +jK +gt +jl +DO +qh +Mp +mY +hs +bv +MM +EV +BV +ih +VC +yL +to +to +to +to +to +fp +fp +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +gs +gs +gs +gs +gs +gs +gs +gs +gs +gs +gs +gs +gs +gs +gs +gs +gs +gs +gs +gs +gs +gs +gs +gs +gs +gs +gs +gs +gs +gs +gs +gs +gs +gs +gs +gs +gs +uP +uP +uP +uP +uP +uP +uP +uP +fk +fk +fk +fk +fk +fk +fk +fk +fk +fk +fk +fk +je +"} +(82,1,1) = {" +ni +ks +UH +UH +UH +UH +wS +wS +UH +wS +UH +UH +UH +UH +UH +UH +ks +ks +ks +ks +ks +ks +Cz +Vi +FJ +JW +eV +Cz +Ki +za +za +Vu +Lc +rj +dA +XU +wm +dH +Jt +gI +Lz +to +Vs +to +to +to +Du +xa +lb +wL +Ud +me +Du +Ud +as +fy +gF +Tn +VC +VC +TB +fy +to +to +to +to +fp +fp +fp +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +gs +gs +gs +gs +gs +gs +gs +gs +gs +gs +gs +gs +gs +gs +Bo +Bo +gs +gs +gs +gs +gs +gs +gs +gs +gs +gs +gs +gs +gs +gs +gs +gs +gs +gs +gs +gs +gs +uP +uP +uP +uP +uP +uP +uP +fk +fk +fk +fk +fk +fk +fk +fk +fk +fk +fk +fk +je +"} +(83,1,1) = {" +ni +ks +UH +UH +UH +UH +wS +wS +UH +wS +UH +wS +UH +UH +UH +UH +ks +ks +ks +ks +ks +ks +Cz +Ns +vW +lU +he +gX +Mk +Lc +Lc +yH +gL +Lc +Me +Wj +Wj +Wj +oa +oa +Wj +rE +Vs +to +to +to +Du +Du +vL +oD +vP +Du +Du +SL +No +fy +NU +cT +oh +AI +yG +yL +to +to +fp +fp +fp +fp +fp +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +gs +gs +gs +gs +gs +gs +gs +gs +gs +gs +gs +Bo +Bo +Bo +Bo +Bo +gs +gs +gs +gs +gs +gs +gs +gs +gs +gs +gs +gs +gs +gs +gs +gs +gs +gs +gs +gs +gs +gs +uP +uP +uP +uP +uP +uP +uP +fk +fk +fk +fk +fk +fk +fk +fk +fk +fk +fk +je +"} +(84,1,1) = {" +ni +ks +UH +UH +UH +UH +UH +UH +UH +wS +wS +wS +UH +UH +UH +UH +ks +ks +ks +ks +ks +ks +Cz +GD +ot +gk +KB +Cz +Qv +zp +zp +Yc +eL +Lc +FR +Ta +dv +Wj +to +to +UI +jY +ZE +to +to +to +Du +um +HC +td +wj +ZB +Du +ZW +GN +fy +Vg +Ry +yG +zj +yG +yL +to +to +to +fp +fp +fp +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +ha +ix +gs +gs +gs +gs +gs +Bo +Bo +Bo +Bo +Bo +Bo +Bo +Bo +gs +gs +gs +gs +gs +gs +gs +gs +gs +gs +gs +gs +gs +gs +gs +gs +gs +gs +gs +gs +gs +gs +gs +uP +gs +uP +uP +uP +uP +uP +fk +fk +fk +fk +fk +fk +fk +fk +fk +fk +je +"} +(85,1,1) = {" +ni +ks +UH +UH +UH +UH +UH +UH +UH +wS +wS +wS +wS +UH +UH +UH +UH +UH +UH +ks +ks +ks +Cz +Cz +Cz +Cz +Cz +Cz +zX +zX +Lc +VG +yr +za +Eq +xP +HJ +Wj +JS +to +to +to +NC +to +to +to +HL +eP +au +mO +wa +Xw +Du +Wx +po +fy +pC +jI +wf +Mt +sA +fy +to +to +to +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +Bo +Bo +Bo +Js +NO +Bo +Bo +Bo +Bo +Bo +Bo +Bo +Bo +Bo +Bo +Bo +Bo +Bo +Bo +Bo +Bo +gs +gs +gs +gs +gs +gs +gs +gs +gs +gs +gs +gs +gs +gs +gs +gs +gs +gs +gs +gs +gs +gs +uP +uP +uP +uP +uP +uP +fk +fk +fk +fk +fk +fk +fk +fk +fk +je +"} +(86,1,1) = {" +ni +ks +UH +UH +UH +UH +UH +UH +UH +wS +wS +wS +wS +UH +UH +UH +UH +UH +UH +ks +ks +ks +ks +ks +ks +ks +ks +Wj +dE +dE +Lc +Ld +gu +Lc +nD +cZ +uK +Wj +to +to +to +to +NC +to +to +to +HL +WZ +cM +ac +WQ +qT +Bx +CN +ii +fy +fy +fy +fy +fy +fy +fy +cR +to +to +to +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +QD +Bo +Bo +Qc +jR +kU +kU +hP +hP +hP +hP +hP +hP +hP +hP +kU +mK +Bo +Bo +Bo +Bo +Bo +Bo +Bo +Bo +gs +gs +gs +gs +gs +gs +gs +gs +gs +gs +gs +gs +gs +gs +gs +gs +gs +gs +gs +gs +uP +uP +uP +uP +uP +uP +fk +fk +fk +fk +fk +fk +fk +fk +fk +je +"} +(87,1,1) = {" +ni +ks +UH +UH +UH +UH +UH +UH +UH +wS +wS +wS +wS +wS +wS +UH +UH +UH +UH +ks +ks +ks +ks +ks +ks +ks +ks +Wj +Wj +oa +oa +Wj +Ob +Hx +Wj +oa +Wj +Wj +vk +TI +to +to +NC +to +to +to +Du +JK +VD +hK +Ud +gy +Du +Ye +RI +tH +Fc +Pv +xh +xw +OP +nH +cR +to +to +to +to +fp +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +QD +Bo +Bo +Bo +kU +BP +eF +eF +eF +eF +eF +eF +eF +eF +eF +BP +kU +Bo +Bo +Bo +Bo +Bo +Bo +Bo +Bo +Bo +Bo +Bo +gs +gs +gs +gs +gs +gs +gs +gs +gs +gs +gs +gs +gs +gs +gs +gs +gs +uP +uP +uP +uP +uP +uP +uP +fk +fk +fk +fk +fk +fk +fk +fk +je +"} +(88,1,1) = {" +ni +ks +UH +UH +UH +UH +UH +UH +UH +wS +wS +UH +wS +wS +wS +wS +UH +UH +UH +ks +ks +ks +ks +ks +ks +ks +ks +MH +ck +PI +PI +AM +pB +KU +fq +PI +ZI +ck +KU +MH +to +to +NC +to +to +OM +sW +sW +sW +sW +tQ +sW +sW +xg +Mh +CN +xd +CN +xd +Ey +su +vy +cR +to +to +to +to +fp +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +Bo +Bo +Bo +Bo +kU +AN +MA +mi +Qt +LK +NF +zd +nX +BQ +xY +AN +kU +Bo +Bo +Bo +Bo +Bo +Bo +Bo +Bo +Bo +Bo +Bo +Bo +Bo +gs +gs +Bo +Bo +gs +gs +gs +gs +gs +gs +gs +gs +gs +gs +gs +gs +gs +uP +uP +uP +uP +uP +fk +fk +fk +fk +fk +fk +fk +fk +je +"} +(89,1,1) = {" +ni +ks +UH +UH +UH +UH +UH +wS +wS +wS +wS +UH +UH +UH +UH +wS +wS +wS +UH +UH +UH +UH +UH +ks +ks +ks +ks +MH +KU +KU +KU +KU +KU +KU +KU +KU +KU +KU +KU +MH +to +to +NC +to +to +to +sW +Ke +lH +dk +pg +hJ +sW +xj +wN +nR +KV +nR +Eu +CV +ok +cR +cR +to +to +to +to +fp +oH +oH +oH +oH +oH +oH +oH +oH +Bo +oH +oH +Bo +Bo +Bo +Bo +yo +BP +Wm +pl +ZG +ZG +Gv +ZG +ZG +pl +xx +BP +KJ +At +Bo +Bo +Bo +Bo +UE +cK +cK +uP +uP +uP +uP +uP +uP +uP +uP +uP +uP +gs +gs +gs +gs +gs +gs +gs +gs +gs +gs +gs +gs +uP +uP +uP +uP +uP +uP +fk +fk +fk +fk +fk +fk +fk +je +"} +(90,1,1) = {" +ni +ks +UH +UH +UH +UH +wS +wS +wS +wS +UH +UH +UH +UH +UH +UH +UH +wS +wS +UH +UH +UH +UH +ks +ks +ks +to +MH +PI +PI +PI +KU +KU +XG +KU +PI +PI +PI +KU +MH +to +to +NC +to +to +to +ki +nS +Ur +Yu +Ur +Ur +io +nR +II +TF +Pp +XB +JV +VX +at +uw +to +to +to +to +to +fp +oH +oH +oH +oH +oH +oH +Bo +Bo +Bo +Bo +Bo +Bo +Bo +Bo +At +Yg +oZ +vr +sx +ld +jg +ae +ss +Mb +vr +sx +rK +CK +kU +MU +kU +kU +Bo +Bo +cK +cK +cK +uP +uP +uP +uP +uP +uP +uP +uP +uP +uP +gs +gs +gs +gs +gs +gs +gs +gs +gs +gs +gs +uP +uP +uP +uP +uP +uP +fk +fk +fk +fk +fk +fk +fk +je +"} +(91,1,1) = {" +ni +ks +UH +UH +UH +UH +wS +wS +wS +UH +UH +UH +UH +UH +UH +UH +UH +UH +wS +UH +UH +UH +UH +ks +ks +ks +to +MH +KU +KU +KU +KU +KU +KU +KU +KU +KU +KU +KU +MH +to +to +NC +to +to +to +ki +xo +UV +Yu +Ur +SQ +sW +pv +Qf +zw +ol +ID +ol +nR +ry +cR +to +to +iw +to +to +fp +oH +oH +oH +oH +oH +oH +oH +Bo +Bo +Bo +Bo +hC +TL +TL +TL +qe +BP +iT +ZG +KQ +Ig +ZG +DG +kE +ZG +Td +DS +GM +GM +GM +GM +kU +Bo +Bo +cK +cK +cK +cK +cK +cK +uP +uP +uP +uP +uP +uP +uP +uP +gs +gs +gs +gs +gs +gs +gs +gs +gs +gs +gs +gs +uP +uP +uP +uP +fk +fk +fk +fk +fk +fk +fk +je +"} +(92,1,1) = {" +ni +ks +UH +UH +UH +UH +wS +wS +wS +wS +UH +UH +UH +UH +UH +UH +UH +UH +wS +UH +UH +UH +UH +ks +ks +ks +to +MH +JN +JN +JN +JN +JN +JN +JN +JN +JN +JN +JN +MH +Pt +to +NC +to +De +to +sW +nW +Ur +Fo +bG +bS +vt +eX +pf +Ij +PL +zF +Mu +nR +zW +cR +to +iw +to +to +fp +fp +oH +oH +oH +oH +oH +oH +oH +Bo +Bo +Bo +Bo +cV +qd +Bo +Bo +Bo +BP +BP +Jo +aR +Ig +se +Dj +tX +Na +BP +lF +KR +NR +la +GM +kU +Bo +Bo +uP +cK +cK +cK +cK +cK +cK +cK +cK +cK +uP +uP +uP +uP +uP +gs +gs +gs +gs +gs +gs +gs +gs +gs +gs +gs +uP +uP +uP +uP +fk +fk +fk +fk +fk +fk +fk +je +"} +(93,1,1) = {" +ni +ks +UH +UH +UH +wS +wS +wS +wS +wS +wS +UH +wS +UH +UH +UH +UH +UH +UH +UH +UH +UH +UH +ks +ks +to +to +MH +KU +KU +KU +KU +KU +KU +KU +KU +KU +KU +KU +MH +XC +XJ +NC +XJ +Lq +to +vc +XO +Ur +lL +tv +uF +sW +Pn +YG +GX +xG +ID +ko +nR +UA +cR +to +iw +to +to +fp +fp +oH +oH +oH +oH +oH +oH +oH +Bo +Bo +UE +Bo +cV +Bo +qg +qg +qg +qg +qg +qg +qg +Kv +BP +XM +BP +BP +BP +xV +qn +xF +gN +mQ +kU +Bo +Bo +uP +uP +cK +cK +cK +cK +cK +cK +cK +cK +cK +cK +uP +uP +uP +uP +uP +gs +gs +gs +gs +gs +gs +gs +gs +gs +uP +uP +uP +uP +fk +fk +fk +fk +fk +fk +fk +je +"} +(94,1,1) = {" +ni +ks +UH +UH +UH +wS +wS +UH +wS +wS +UH +wS +wS +UH +UH +UH +UH +UH +UH +UH +UH +UH +ks +ks +ks +to +to +MH +KU +KU +KU +KU +KU +KU +KU +KU +KU +KU +KU +MH +gM +to +NC +to +Ik +to +sW +Kd +Tq +RV +Ur +rZ +sW +TU +dt +On +DM +ID +rs +nR +sh +cR +to +iw +to +to +fp +fp +oH +oH +oH +oH +oH +oH +oH +Bo +Bo +UE +Bo +cV +Bo +qg +DV +Sz +dL +IP +sK +qg +iF +QX +HA +jo +jo +on +jo +jo +jo +qC +UT +kU +Bo +Bo +uP +uP +uP +cK +cK +cK +cK +cK +cK +cK +cK +cK +uP +uP +uP +uP +uP +uP +uP +gs +gs +gs +gs +gs +gs +gs +uP +uP +uP +uP +fk +fk +fk +fk +fk +fk +fk +je +"} +(95,1,1) = {" +ni +ks +UH +UH +wS +wS +UH +UH +UH +wS +wS +wS +wS +wS +wS +wS +UH +UH +UH +UH +UH +ks +ks +ks +ks +to +to +MH +KU +KU +KU +KU +KU +KU +KU +KU +KU +KU +KU +MH +to +to +NC +to +to +to +ki +tt +bx +Yu +Ur +FC +sW +TU +RJ +fG +lz +ID +ol +nR +QF +cR +to +iw +iw +to +fp +fp +oH +oH +oH +oH +oH +oH +oH +Bo +UE +UE +Bo +cV +Bo +qg +aM +em +ZR +hk +uv +qg +VL +sv +Pm +iC +PG +Xs +vn +xr +GC +iC +dK +kU +Bo +Bo +uP +cK +uP +uP +cK +cK +cK +cK +cK +cK +cK +cK +cK +uP +uP +uP +uP +uP +uP +gs +gs +gs +gs +gs +gs +gs +uP +uP +uP +uP +fk +fk +fk +fk +fk +fk +fk +je +"} +(96,1,1) = {" +ni +ks +UH +UH +wS +wS +UH +UH +UH +UH +wS +wS +wS +wS +wS +wS +wS +wS +UH +UH +UH +ks +ks +ks +to +to +to +MH +KU +Km +KU +KU +KU +KU +KU +KU +KU +KU +KU +MH +to +to +NC +to +to +to +ki +ua +Ur +Yu +lp +Uu +sW +af +af +we +Un +ak +TC +TC +TH +cR +to +iw +iw +to +oH +oH +oH +oH +oH +oH +oH +oH +oH +Bo +UE +UE +Bo +cV +Bo +qg +by +ZV +cf +Ap +QG +Fa +Mc +da +zC +iC +Dy +Hs +ru +Or +GC +Jl +Bf +kU +Bo +Bo +uP +cK +cK +uP +uP +cK +cK +cK +cK +cK +cK +cK +cK +cK +cK +cK +uP +uP +uP +UD +gs +gs +gs +gs +gs +gs +uP +uP +uP +uP +fk +fk +fk +fk +fk +fk +fk +je +"} +(97,1,1) = {" +ni +ks +UH +UH +UH +UH +UH +UH +UH +UH +UH +UH +wS +wS +wS +wS +wS +wS +wS +UH +UH +ks +ks +ks +to +to +to +MH +KU +KU +KU +KU +KU +KU +KU +KU +KU +KU +KU +MH +to +to +NC +to +to +to +sW +Mi +Xc +kP +OD +HR +sW +dr +dr +SH +Fy +fF +DQ +xz +Ow +cR +to +iw +to +to +oH +oH +oH +oH +oH +oH +oH +oH +oH +Bo +UE +UE +Bo +cV +Bo +qg +lD +oO +dV +oO +Qz +qg +VL +sv +Pm +iC +Rd +Yv +Gx +xB +GC +Jl +Bf +kU +Bo +Bo +uP +cK +cK +cK +uP +uP +cK +cK +cK +cK +cK +cK +cK +cK +cK +cK +uP +uP +uP +uP +UD +gs +gs +gs +gs +gs +uP +uP +uP +uP +fk +fk +fk +fk +fk +fk +fk +je +"} +(98,1,1) = {" +ni +ks +UH +UH +UH +UH +UH +UH +UH +UH +UH +UH +UH +UH +wS +wS +wS +wS +wS +ks +ks +ks +ks +ks +to +iw +iw +MH +KU +KU +KU +KU +KU +KU +KU +KU +KU +KU +KU +MH +to +to +NC +to +vb +to +sW +sW +ki +ki +ki +sW +sW +cR +cR +lT +un +cR +cR +cR +cR +cR +to +to +to +to +oH +oH +oH +oH +oH +oH +oH +oH +oH +Bo +UE +Bo +Bo +cV +Bo +qg +KD +oO +Cq +OV +Rw +qg +Pr +of +Pm +iC +QI +pz +zk +Or +GC +Jl +Bf +kU +Bo +Bo +uP +uP +cK +cK +uP +uP +cK +cK +cK +cK +cK +cK +cK +cK +cK +cK +uP +uP +uP +UD +UD +gs +gs +gs +gs +gs +uP +uP +uP +fk +fk +fk +fk +fk +fk +fk +fk +je +"} +(99,1,1) = {" +ni +ks +UH +UH +UH +UH +UH +UH +UH +UH +UH +UH +UH +UH +wS +wS +UH +wS +wS +ks +ks +ks +ks +to +to +iw +to +MH +KU +KU +KU +KU +KU +KU +KU +KU +KU +KU +KU +MH +to +to +NC +XJ +to +to +Nw +to +to +to +to +to +to +to +to +Nw +KA +Nw +to +EP +to +to +to +iw +iw +to +oH +oH +oH +oH +oH +oH +oH +oH +oH +Bo +UE +Bo +Bo +cV +Bo +qg +ia +ia +yk +ia +ia +ia +dq +Qx +Vt +Fq +CT +fg +fu +GC +GC +Jl +Bf +kU +Bo +Bo +uP +uP +cK +uP +uP +uP +uP +cK +cK +cK +cK +cK +cK +cK +cK +cK +uP +uP +uP +uP +UD +gs +gs +gs +gs +gs +gs +uP +uP +uP +fk +fk +fk +fk +fk +fk +fk +je +"} +(100,1,1) = {" +ni +ks +UH +UH +UH +UH +UH +UH +wS +wS +wS +UH +UH +wS +wS +UH +UH +wS +wS +ks +ks +ks +ks +to +iw +iw +to +MH +KU +KU +KU +KU +KU +KU +KU +KU +KU +KU +KU +MH +to +to +Hu +Dd +Dd +Dd +Dd +Dd +Dd +Dd +Dd +Dd +Dd +Dd +Dd +Dd +mp +to +to +to +to +iw +iw +iw +to +to +oH +oH +oH +oH +oH +oH +oH +oH +oH +Bo +Bo +Bo +Bo +cV +Bo +Bo +ia +bP +tL +Yj +ZO +ia +qK +da +VQ +iC +Ck +Xs +ec +GC +GC +Jl +Bf +kU +Bo +Bo +uP +uP +uP +uP +uP +uP +uP +uP +uP +cK +cK +cK +cK +cK +cK +cK +cK +uP +uP +UD +UD +gs +gs +gs +gs +gs +uP +uP +uP +uP +fk +fk +fk +fk +fk +fk +fk +je +"} +(101,1,1) = {" +ni +ks +UH +UH +UH +UH +UH +UH +wS +UH +wS +UH +wS +wS +UH +UH +UH +wS +UH +ks +ks +ks +to +to +iw +iw +to +FI +vk +vk +vk +vk +vk +vk +vk +vk +vk +vk +vk +zt +to +vb +qG +to +to +to +to +to +to +to +to +to +to +to +Mn +Hj +dp +Hj +et +to +iw +iw +iw +to +to +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +Bo +Bo +UE +Bo +cV +Bo +Bo +ia +fS +eA +XW +VE +ia +VL +sv +Pm +iC +Ml +dW +yv +eg +ym +Jl +ND +kU +Bo +Bo +Bo +fk +fk +fk +fk +fk +uP +uP +uP +cK +cK +cK +cK +cK +cK +cK +cK +uP +uP +UD +UD +gs +gs +gs +gs +gs +uP +uP +uP +uP +fk +fk +fk +fk +fk +fk +fk +je +"} +(102,1,1) = {" +ni +ks +UH +UH +UH +UH +UH +wS +wS +UH +wS +wS +wS +wS +UH +UH +UH +wS +UH +ks +ks +ks +to +to +iw +iw +iw +to +to +to +to +to +to +to +to +to +to +to +to +oH +oH +oH +sQ +to +to +to +to +to +to +fp +to +to +to +to +Mn +MS +dp +MS +et +to +iw +to +to +to +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +bh +Bo +UE +Bo +cV +Bo +jd +ia +Hc +TX +Hl +ej +ia +ek +sv +ta +iC +iJ +GC +GC +GC +IU +VY +if +kU +Bo +Bo +Bo +fk +fk +fk +fk +fk +fk +uP +uP +uP +cK +cK +cK +cK +cK +cK +cK +uP +uP +uP +uP +gs +gs +gs +gs +gs +gs +uP +uP +uP +fk +fk +fk +fk +fk +fk +fk +je +"} +(103,1,1) = {" +ni +ks +UH +UH +UH +UH +wS +wS +wS +UH +UH +UH +wS +wS +wS +UH +UH +wS +UH +ks +ks +uP +uP +cK +cK +cK +cK +cK +cK +cK +cK +uP +uP +oH +oH +to +iw +to +oH +oH +oH +oH +oH +oH +oH +oH +oH +to +oH +fp +fp +fp +fp +fp +Am +MS +Jv +MS +et +to +to +to +to +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +bh +Bo +Bo +Bo +cV +Bo +Bo +ia +nz +no +mX +ow +ia +kr +pN +Pm +iC +Ne +GC +DA +mE +sV +iC +qM +Bo +Bo +Bo +fk +fk +fk +fk +fk +fk +fk +fk +uP +uP +uP +cK +cK +cK +Qu +cK +cK +uP +uP +uP +UD +gs +gs +gs +gs +gs +gs +uP +uP +uP +fk +fk +fk +fk +fk +fk +fk +je +"} +(104,1,1) = {" +ni +ks +UH +UH +UH +UH +wS +wS +wS +UH +UH +wS +wS +wS +UH +UH +UH +wS +UH +ks +ks +uP +cK +cK +cK +cK +cK +cK +cK +cK +cK +uP +uP +oH +oH +to +to +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +Oy +zx +tK +zx +VO +to +to +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +bh +Bo +Bo +Bo +cV +Bo +Bo +ia +ia +an +an +an +an +Gq +an +gJ +an +an +an +an +iC +iC +iC +lG +Bo +Bo +fk +fk +fk +fk +fk +fk +fk +fk +fk +uP +uP +uP +cK +cK +cK +cK +cK +cK +uP +uP +uP +uP +gs +gs +gs +gs +gs +uP +uP +uP +uP +fk +fk +fk +fk +fk +fk +fk +je +"} +(105,1,1) = {" +ni +ks +UH +UH +UH +UH +wS +wS +UH +UH +UH +UH +wS +UH +UH +UH +wS +wS +UH +ks +ks +uP +uP +cK +cK +cK +cK +cK +cK +cK +cK +uP +oH +oH +oH +to +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +Oy +zx +tK +zx +VO +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +bh +Bo +Bo +Bo +cV +Bo +Bo +Bo +Bo +an +Af +lq +kJ +Wf +hz +LQ +kJ +Zp +SX +an +Bo +Bo +Bo +Bo +Bo +fk +fk +fk +fk +fk +fk +fk +fk +fk +fk +fk +uP +uP +cK +cK +cK +cK +cK +cK +uP +uP +uP +UD +gs +gs +gs +gs +uP +uP +uP +uP +uP +fk +fk +fk +fk +fk +fk +fk +je +"} +(106,1,1) = {" +ni +ks +UH +UH +UH +wS +wS +UH +UH +UH +UH +UH +wS +wS +UH +UH +wS +wS +UH +ks +uP +uP +uP +cK +cK +cK +cK +cK +cK +cK +cK +uP +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +Oy +zx +tK +zx +VO +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +Bo +Bo +Bo +Bo +cV +Bo +Bo +UE +Bo +an +sD +gE +mL +Hk +vj +sc +gE +gE +pn +an +Bo +Bo +Bo +Bo +Bo +fk +fk +fk +fk +fk +fk +fk +fk +fk +fk +fk +uP +uP +uP +uP +cK +cK +cK +cK +uP +uP +uP +gs +gs +gs +gs +gs +gs +uP +uP +uP +uP +fk +fk +fk +fk +fk +fk +fk +je +"} +(107,1,1) = {" +ni +ks +UH +UH +UH +wS +wS +UH +UH +UH +UH +UH +wS +UH +UH +UH +wS +wS +wS +rz +uP +uP +cK +cK +cK +cK +cK +cK +cK +uP +uP +uP +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +Oy +zx +tK +zx +VO +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +Bo +Bo +Bo +Bo +cV +Bo +UE +UE +Bo +an +pH +gE +iZ +be +dj +pm +SE +gE +hA +an +Zf +Bo +Bo +fk +fk +fk +fk +fk +fk +fk +fk +fk +fk +fk +fk +fk +uP +uP +uP +cK +cK +cK +cK +cK +uP +uP +uP +gs +gs +gs +gs +gs +gs +uP +uP +uP +uP +fk +fk +fk +fk +fk +fk +fk +je +"} +(108,1,1) = {" +ni +ks +UH +UH +UH +wS +UH +UH +UH +UH +UH +wS +wS +UH +UH +UH +UH +UH +wS +rz +uP +uP +cK +cK +cK +cK +cK +cK +cK +uP +uP +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +Oy +zx +tK +zx +VO +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +Bo +Bo +Bo +Bo +cV +Bo +UE +UE +Bo +an +Uf +gE +iZ +wh +pj +tJ +SE +gE +Et +an +Bo +Bo +Bo +Bo +fk +fk +fk +fk +fk +fk +fk +fk +fk +fk +fk +fk +uP +uP +uP +uP +cK +cK +cK +cK +cK +uP +uP +gs +gs +gs +gs +gs +gs +uP +uP +uP +uP +uP +fk +fk +fk +fk +fk +fk +je +"} +(109,1,1) = {" +ni +ks +UH +UH +UH +wS +UH +UH +UH +UH +UH +wS +wS +UH +UH +UH +UH +UH +wS +rz +uP +cK +cK +cK +cK +cK +cK +cK +cK +uP +uP +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +Oy +zx +tK +zx +VO +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +Bo +Bo +Bo +Bo +uI +CG +Bo +UE +Bo +Bo +an +GW +OS +zZ +iX +gU +ds +zZ +YV +Se +an +Bo +Bo +Bo +Bo +fk +fk +fk +fk +fk +fk +fk +fk +fk +fk +fk +fk +fk +uP +uP +uP +uP +cK +cK +cK +uP +uP +uP +gs +gs +gs +gs +gs +gs +uP +uP +cK +cK +uP +fk +fk +fk +fk +fk +fk +je +"} +(110,1,1) = {" +ni +ks +UH +UH +UH +UH +UH +UH +UH +UH +UH +wS +wS +UH +UH +UH +UH +UH +UH +ks +uP +cK +cK +cK +cK +Qu +cK +cK +uP +uP +uP +uP +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +Oy +zx +tK +zx +VO +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +Bo +Bo +Bo +Bo +uI +SU +Bo +Bo +UE +Bo +Bo +an +an +an +an +an +an +an +an +an +an +an +Bo +Bo +Bo +fk +fk +fk +fk +fk +fk +fk +fk +fk +fk +fk +fk +fk +fk +uP +uP +uP +cK +cK +cK +cK +uP +uP +uP +gs +gs +gs +gs +gs +uP +uP +uP +cK +uP +uP +fk +fk +fk +fk +fk +fk +je +"} +(111,1,1) = {" +ni +ks +UH +UH +UH +UH +UH +UH +UH +UH +UH +wS +wS +UH +UH +UH +UH +UH +UH +ks +uP +cK +cK +cK +cK +cK +cK +cK +cK +cK +uP +uP +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +Oy +zx +tK +zx +VO +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +Bo +Bo +Bo +uI +SU +Bo +Bo +Bo +Bo +Bo +Bo +Bo +Bo +Bo +Bo +Bo +Bo +Bo +Bo +Bo +Bo +Bo +Bo +Bo +Bo +fk +fk +fk +fk +fk +fk +fk +fk +fk +fk +fk +fk +fk +fk +uP +uP +uP +uP +cK +cK +cK +uP +uP +uP +gs +gs +gs +gs +gs +uP +uP +cK +cK +cK +cK +uP +fk +fk +fk +fk +fk +je +"} +(112,1,1) = {" +ni +ks +UH +UH +UH +UH +UH +UH +UH +UH +wS +wS +UH +UH +UH +UH +UH +UH +UH +ks +uP +uP +cK +cK +cK +cK +cK +cK +cK +cK +uP +uP +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +Oy +zx +tK +zx +VO +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +Bo +Bo +Bo +Bo +uI +SU +Bo +Bo +Bo +Bo +Bo +fk +fk +fk +fk +Bo +Bo +Bo +Bo +Bo +UE +UE +UE +UE +Bo +Bo +Bo +fk +fk +fk +fk +fk +fk +tN +fk +fk +fk +fk +fk +fk +fk +fk +uP +uP +uP +uP +cK +uP +uP +uP +uP +gs +gs +gs +gs +gs +uP +cK +cK +cK +cK +cK +uP +fk +fk +fk +fk +fk +je +"} +(113,1,1) = {" +ni +ks +UH +UH +UH +UH +UH +wS +wS +wS +wS +wS +wS +wS +wS +wS +wS +UH +UH +ks +ks +uP +uP +cK +cK +cK +cK +cK +cK +uP +uP +uP +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +Oy +zx +tK +zx +VO +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +Bo +Bo +Bo +Bo +Bo +uI +SU +Bo +Bo +Bo +Bo +fk +fk +fk +fk +fk +fk +fk +Bo +Bo +Bo +UE +UE +UE +UE +UE +Bo +Bo +Bo +fk +fk +fk +tN +tN +tN +tN +tN +fk +fk +fk +fk +fk +fk +fk +uP +uP +uP +uP +cK +cK +uP +uP +uP +gs +gs +gs +gs +gs +uP +uP +cK +cK +cK +uP +uP +uP +uP +fk +fk +fk +je +"} +(114,1,1) = {" +ni +ks +UH +UH +UH +UH +wS +wS +wS +wS +wS +wS +wS +wS +wS +wS +wS +wS +UH +ks +ks +ks +uP +uP +uP +cK +cK +cK +cK +cK +cK +uP +uP +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +Bo +Bo +Bo +oH +oH +oH +oH +oH +oH +oH +Oy +zx +tK +zx +VO +oH +oH +oH +oH +oH +Bo +Bo +Bo +Bo +Bo +Bo +Bo +Bo +Bo +uI +SU +Bo +Bo +Bo +fk +fk +fk +fk +fk +fk +fk +fk +fk +fk +Bo +Bo +UE +UE +UE +UE +UE +Bo +Bo +fk +fk +fk +tN +tN +tN +tN +tN +tN +tN +tN +fk +fk +fk +fk +fk +fk +uP +uP +uP +cK +uP +uP +uP +gs +gs +gs +gs +gs +gs +gs +uP +uP +uP +uP +uP +uP +uP +uP +uP +fk +fk +je +"} +(115,1,1) = {" +ni +ks +UH +UH +UH +UH +wS +wS +wS +UH +wS +UH +UH +UH +wS +wS +wS +UH +UH +ks +ks +ks +ks +ks +uP +cK +cK +cK +cK +cK +cK +cK +uP +uP +uP +uP +oH +oH +oH +oH +oH +oH +oH +Bo +Bo +Bo +Bo +Bo +Bo +oH +oH +oH +oH +oH +Oy +zx +tK +zx +VO +oH +oH +oH +oH +Bo +UE +UE +Bo +Bo +Bo +Bo +Bo +Bo +uI +SU +Bo +Bo +Bo +fk +fk +fk +fk +fk +fk +fk +fk +fk +fk +fk +fk +Bo +Bo +UE +UE +UE +UE +Bo +Bo +fk +fk +tN +tN +tN +tN +fk +fk +fk +fk +tN +tN +fk +fk +fk +fk +fk +uP +uP +uP +uP +uP +uP +uP +gs +gs +gs +gs +gs +gs +gs +gs +gs +gs +gs +gs +gs +uP +uP +uP +fk +fk +je +"} +(116,1,1) = {" +ni +ks +UH +UH +UH +UH +UH +UH +UH +UH +UH +UH +UH +UH +UH +UH +UH +UH +UH +ks +ks +ks +ks +ks +uP +uP +cK +cK +cK +cK +cK +cK +uP +uP +uP +uP +oH +oH +oH +oH +oH +oH +oH +Bo +Bo +Bo +Bo +Bo +Bo +Bo +oH +oH +oH +oH +Oy +zx +tK +zx +VO +oH +oH +oH +Bo +UE +UE +Bo +Bo +uI +ut +ut +ut +ut +SU +Bo +Bo +Bo +Bo +fk +fk +UH +UH +UH +UH +wS +wS +wS +UH +fk +fk +Bo +Bo +UE +UE +Bo +Bo +Bo +fk +fk +fk +tN +tN +tN +tN +fk +fk +fk +fk +fk +tN +tN +fk +fk +fk +fk +fk +fk +Bo +Bo +Bo +Bo +Bo +gs +gs +gs +gs +gs +gs +gs +gs +gs +gs +gs +gs +gs +gs +uP +uP +fk +fk +je +"} +(117,1,1) = {" +ni +ks +UH +UH +UH +UH +UH +UH +UH +UH +UH +UH +UH +UH +UH +UH +UH +UH +UH +ks +ks +ks +ks +ks +uP +uP +cK +cK +cK +cK +cK +cK +cK +uP +uP +uP +uP +oH +oH +oH +oH +oH +oH +oH +oH +Bo +Bo +UE +Bo +Bo +Bo +Bo +oH +oH +Oy +zx +tK +zx +VO +oH +oH +Bo +Bo +UE +Bo +Bo +uI +SU +Bo +Bo +Bo +Bo +Bo +Bo +Bo +Bo +fk +fk +fk +UH +UH +UH +wS +wS +UH +UH +UH +fk +fk +fk +Bo +Bo +Bo +Bo +Bo +fk +fk +fk +fk +tN +tN +tN +fk +fk +fk +fk +fk +fk +fk +tN +tN +tN +fk +fk +fk +fk +fk +Bo +Bo +Bo +Bo +gs +gs +gs +gs +gs +gs +gs +gs +gs +gs +gs +gs +gs +gs +uP +uP +fk +fk +je +"} +(118,1,1) = {" +ni +ks +UH +UH +UH +UH +UH +UH +UH +UH +UH +UH +UH +UH +UH +UH +ks +ks +ks +ks +ks +ks +to +to +uP +uP +uP +cK +cK +cK +cK +cK +cK +cK +uP +uP +uP +oH +oH +oH +oH +oH +oH +oH +oH +oH +Bo +Bo +UE +UE +UE +Bo +Bo +Bo +kG +Nq +ke +Nq +cC +Bo +Bo +UE +UE +Bo +Bo +uI +SU +Bo +Bo +UE +UE +UE +Bo +Bo +Bo +fk +fk +fk +fk +UH +UH +wS +wS +UH +UH +UH +UH +UH +fk +fk +fk +At +Bo +At +fk +fk +fk +fk +tN +tN +tN +fk +fk +fk +fk +fk +fk +fk +fk +fk +fk +tN +tN +fk +fk +fk +fk +fk +Bo +Bo +Bo +gs +gs +gs +gs +gs +gs +gs +gs +gs +gs +gs +gs +gs +gs +gs +uP +uP +fk +je +"} +(119,1,1) = {" +ni +ks +UH +UH +UH +UH +UH +UH +UH +UH +UH +UH +UH +UH +UH +ks +ks +ks +ks +ks +to +to +to +iw +cK +cK +cK +cK +cK +cK +cK +cK +cK +uP +uP +uP +uP +oH +oH +oH +oH +oH +oH +oH +oH +oH +Bo +Bo +Bo +UE +UE +UE +Bo +Bo +kG +Nq +zg +Nq +cC +Bo +Bo +Bo +Bo +Bo +uI +SU +Bo +Bo +UE +UE +UE +UE +Bo +Bo +fk +fk +fk +fk +fk +UH +UH +wS +wS +wS +UH +UH +UH +UH +UH +fk +fk +At +At +At +fk +fk +fk +fk +tN +tN +fk +fk +fk +fk +fk +fk +fk +tN +tN +tN +fk +fk +tN +fk +fk +fk +fk +fk +Bo +Bo +Bo +gs +gs +gs +gs +gs +gs +gs +gs +gs +gs +gs +gs +gs +gs +gs +uP +uP +fk +je +"} +(120,1,1) = {" +ni +ks +UH +UH +UH +UH +UH +UH +UH +UH +UH +UH +UH +UH +UH +ks +ks +ks +to +to +to +to +to +to +cK +cK +cK +cK +cK +cK +cK +uP +uP +uP +uP +uP +UD +oH +oH +oH +oH +oH +oH +oH +oH +oH +Bo +Bo +Bo +Bo +UE +UE +UE +Bo +kG +kU +zg +kU +cC +Bo +UE +UE +Bo +uI +SU +Bo +Bo +UE +UE +UE +UE +Bo +Bo +fk +fk +fk +fk +fk +fk +UH +UH +UH +wS +wS +wS +wS +UH +UH +UH +fk +fk +oF +oF +oF +fk +fk +fk +fk +tN +fk +fk +fk +fk +fk +fk +fk +fk +fk +fk +tN +tN +tN +tN +fk +fk +fk +fk +fk +fk +Bo +Bo +Bo +gs +gs +gs +gs +gs +gs +gs +gs +gs +gs +gs +gs +gs +gs +gs +uP +fk +je +"} +(121,1,1) = {" +ni +ks +UH +UH +UH +UH +UH +UH +UH +UH +UH +ks +ks +ks +ks +ks +ks +to +to +to +to +to +to +to +uP +uP +uP +uP +uP +uP +uP +uP +uP +uP +uP +uP +UD +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +Bo +Bo +Bo +Bo +Bo +UE +UE +Bo +Bo +zg +Bo +Bo +UE +UE +Bo +Bo +cV +Bo +Bo +Bo +UE +UE +UE +Bo +Bo +fk +fk +fk +fk +fk +fk +fk +UH +UH +UH +wS +wS +wS +wS +wS +UH +UH +UH +UH +UH +Fw +UH +fk +fk +tN +tN +tN +fk +fk +fk +fk +fk +fk +fk +fk +fk +fk +fk +fk +fk +fk +fk +fk +fk +fk +fk +fk +Bo +Bo +Bo +gs +gs +gs +gs +gs +gs +gs +gs +gs +gs +gs +gs +gs +gs +gs +gs +fk +je +"} +(122,1,1) = {" +ni +ks +ks +ks +ks +ks +ks +ks +ks +ks +ks +ks +ks +ks +ks +ks +to +to +to +to +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +uP +oH +oH +oH +uP +UD +UD +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +Bo +Bo +UE +Bo +Bo +zg +Bo +Bo +UE +UE +Bo +Bo +cV +Bo +Bo +Bo +Bo +Co +Bo +Bo +fk +fk +fk +fk +fk +fk +fk +fk +UH +UH +wS +wS +wS +wS +wS +UH +UH +UH +UH +UH +UH +wS +UH +fk +tN +tN +tN +fk +fk +fk +fk +fk +tN +tN +tN +fk +fk +fk +fk +fk +fk +fk +fk +fk +fk +fk +fk +fk +Bo +Bo +Bo +gs +gs +gs +gs +gs +gs +gs +gs +gs +gs +gs +gs +gs +gs +gs +gs +fk +je +"} +(123,1,1) = {" +ni +ks +ks +ks +ks +ks +ks +ks +ks +ks +ks +ks +ks +ks +to +to +to +iw +iw +to +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +Bo +Bo +Bo +UE +Bo +zg +Bo +Bo +UE +UE +Bo +Bo +cV +Bo +Bo +pe +pe +pe +pe +pe +pe +pe +pe +pe +pe +pe +pe +fk +UH +UH +wS +wS +UH +UH +wS +UH +UH +UH +UH +UH +UH +wS +UH +fk +tN +kQ +tN +tN +fk +fk +fk +tN +tN +tN +tN +tN +fk +fk +fk +fk +fk +fk +fk +fk +fk +fk +fk +fk +fk +Bo +Bo +Bo +gs +uP +uP +gs +uP +uP +gs +gs +gs +gs +gs +gs +gs +gs +gs +fk +je +"} +(124,1,1) = {" +ni +ks +ks +ks +ks +ks +ks +ks +to +to +to +to +to +to +to +to +iw +iw +iw +to +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +Bo +Bo +Bo +Bo +zg +Bo +Bo +UE +Bo +Bo +Bo +cV +At +WD +pe +Bg +Ge +UU +pe +Om +lP +Ky +oT +fx +kK +pe +fk +UH +UH +wS +wS +UH +UH +wS +UH +UH +UH +UH +UH +UH +wS +UH +fk +tN +tN +tN +tN +tN +fk +fk +tN +tN +tN +tN +tN +tN +fk +fk +fk +fk +fk +fk +fk +fk +fk +fk +fk +fk +fk +Bo +Bo +Bo +uP +uP +uP +uP +uP +uP +uP +gs +gs +gs +gs +gs +gs +gs +fk +je +"} +(125,1,1) = {" +ni +ks +ks +ks +ks +ks +to +to +to +to +to +to +to +to +to +to +to +to +iw +to +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +Bo +Of +Bo +zg +At +Bo +Bo +Bo +Bo +At +Sg +rA +oX +fN +EY +Ze +cD +od +cD +Fn +CJ +CJ +iG +Vz +pe +fk +UH +wS +wS +UH +UH +UH +wS +wS +UH +UH +UH +UH +wS +wS +UH +fk +tN +tN +fk +tN +tN +fk +fk +tN +tN +tN +tN +tN +tN +fk +fk +fk +tN +tN +tN +tN +fk +fk +fk +fk +fk +fk +fk +Bo +Bo +uP +uP +uP +uP +uP +uP +uP +uP +uP +gs +gs +gs +gs +gs +gs +je +"} +(126,1,1) = {" +ni +ks +ks +ks +ks +to +to +to +to +to +to +to +to +oH +oH +oH +oH +to +to +to +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +Bo +Bo +Bo +WH +vY +vY +vY +vY +vY +vY +eY +At +WD +wy +yY +tY +QA +pe +lj +RW +Zd +kb +aZ +mb +pe +fk +UH +wS +wS +UH +UH +UH +UH +wS +UH +UH +UH +UH +wS +UH +fk +fk +tN +tN +fk +fk +tN +fk +fk +fk +tN +tN +tN +tN +tN +fk +fk +fk +fk +fk +tN +tN +tN +fk +fk +fk +fk +fk +fk +fk +Bo +uP +uP +cK +cK +cK +cK +cK +uP +uP +uP +gs +gs +gs +gs +gs +je +"} +(127,1,1) = {" +ni +ks +ks +ks +to +to +to +to +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +Bo +Bo +At +At +At +Bo +Bo +Bo +Bo +Bo +Bo +pe +pe +pe +pe +pe +tk +OH +cG +Qr +cG +xf +pe +fk +UH +wS +wS +UH +UH +UH +UH +wS +wS +UH +UH +wS +wS +UH +fk +tN +tN +tN +fk +fk +tN +tN +fk +fk +fk +tN +tN +tN +tN +tN +tN +fk +fk +fk +fk +tN +tN +tN +fk +fk +fk +fk +fk +fk +fk +uP +cK +cK +cK +cK +cK +cK +uP +uP +uP +gs +gs +gs +gs +gs +je +"} +(128,1,1) = {" +ni +ks +ks +to +to +to +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +Bo +Bo +At +Bo +Bo +UE +UE +UE +Bo +Bo +pe +qp +Wb +lh +pe +kc +OH +aH +bC +cG +nx +pe +fk +UH +wS +UH +UH +UH +UH +UH +UH +wS +wS +wS +wS +UH +UH +fk +tN +tN +fk +fk +fk +tN +tN +fk +fk +fk +tN +tN +tN +tN +tN +tN +tN +fk +fk +fk +tN +tN +tN +tN +fk +fk +fk +fk +fk +fk +uP +uP +uP +cK +cK +cK +cK +cK +uP +uP +gs +gs +gs +gs +gs +je +"} +(129,1,1) = {" +ni +ks +ks +to +to +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +Bo +Bo +At +tA +Bo +Bo +UE +UE +UE +Bo +Bu +KG +cG +Rz +pe +bs +Rr +IH +IH +IH +Ag +pe +fk +UH +wS +wS +UH +UH +UH +UH +UH +UH +UH +UH +UH +UH +UH +wS +wS +wS +UH +fk +tN +tN +tN +fk +fk +fk +tN +tN +tN +tN +tN +fk +tN +tN +fk +fk +fk +fk +tN +tN +tN +fk +fk +fk +fk +fk +fk +fk +uP +uP +cK +cK +cK +cK +cK +uP +uP +gs +gs +gs +gs +je +"} +(130,1,1) = {" +ni +ks +to +to +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +Bo +At +gC +Bo +Bo +Bo +UE +UE +Bo +Bu +KG +cG +tF +pe +yz +OH +cG +cG +cG +Vz +pe +fk +UH +UH +wS +UH +UH +UH +UH +UH +UH +UH +UH +UH +wS +wS +wS +wS +wS +UH +fk +tN +tN +tN +fk +fk +tN +tN +tN +tN +tN +tN +fk +fk +tN +fk +fk +fk +fk +tN +tN +tN +tN +fk +fk +fk +fk +fk +fk +uP +uP +uP +uP +cK +cK +cK +uP +uP +gs +gs +gs +gs +je +"} +(131,1,1) = {" +ni +ks +to +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +Bo +Bo +sr +Bo +Bo +UE +UE +Bo +Bo +pe +nT +IH +uJ +GE +cj +wt +Mx +FB +cG +fa +pe +fk +UH +UH +wS +UH +UH +UH +wS +UH +UH +UH +UH +wS +wS +wS +UH +UH +UH +UH +fk +tN +tN +tN +fk +fk +fk +tN +tN +tN +tN +tN +fk +fk +tN +fk +fk +fk +tN +tN +tN +tN +tN +tN +fk +fk +fk +fk +fk +fk +uP +uP +cK +cK +cK +cK +uP +uP +uP +uP +gs +gs +je +"} +(132,1,1) = {" +ni +ks +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +Bo +Bo +Bo +Bo +Bo +UE +Bo +Bo +fk +pe +Ju +cG +OH +pe +pe +Jn +pe +pe +OX +pe +pe +fk +UH +UH +wS +UH +UH +wS +wS +UH +UH +UH +UH +wS +wS +wS +wS +UH +UH +UH +fk +fk +tN +tN +fk +fk +fk +fk +fk +fk +fk +fk +fk +fk +tN +fk +fk +tN +tN +fk +fk +tN +tN +tN +tN +fk +fk +fk +fk +fk +fk +uP +uP +uP +uP +cK +uP +uP +uP +uP +gs +gs +je +"} +(133,1,1) = {" +ni +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +Bo +Bo +Bo +Bo +UE +Bo +Bo +Bo +fk +fk +pe +WN +cG +OH +WN +pe +cG +Zc +pe +cG +Zc +pe +fk +fk +UH +wS +wS +UH +UH +wS +wS +UH +UH +UH +UH +UH +UH +wS +wS +UH +UH +fk +fk +tN +tN +tN +fk +fk +fk +fk +fk +fk +fk +fk +fk +tN +fk +tN +tN +tN +tN +tN +tN +tN +tN +tN +tN +fk +fk +fk +fk +fk +fk +uP +uP +uP +uP +uP +uP +uP +fk +gs +gs +je +"} +(134,1,1) = {" +ni +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +Bo +Bo +Bo +Bo +Bo +Bo +fk +fk +fk +fk +pe +cG +cG +OH +cG +pe +Ju +Vz +pe +Ju +Vz +pe +fk +fk +tN +tN +wS +wS +wS +wS +wS +UH +UH +UH +UH +UH +UH +UH +wS +UH +UH +fk +fk +fk +tN +tN +tN +fk +fk +fk +fk +fk +fk +tN +tN +tN +tN +tN +fk +fk +fk +fk +fk +tN +tN +tN +tN +tN +fk +fk +fk +fk +fk +fk +uP +uP +uP +uP +uP +fk +fk +gs +gs +je +"} +(135,1,1) = {" +ni +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +fk +fk +fk +fk +fk +fk +fk +fk +fk +pe +SM +LY +vm +bo +pe +Vj +LJ +pe +Vj +LJ +pe +RF +RF +oy +tN +wS +wS +wS +wS +wS +wS +UH +UH +UH +UH +UH +UH +wS +UH +UH +fk +fk +fk +fk +tN +tN +tN +fk +fk +fk +fk +tN +tN +tN +tN +fk +fk +fk +fk +fk +fk +fk +fk +fk +tN +tN +tN +fk +fk +fk +fk +fk +fk +fk +fk +fk +fk +fk +fk +fk +fk +gs +je +"} +(136,1,1) = {" +ni +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +fk +fk +fk +fk +fk +fk +fk +fk +fk +fk +fk +pe +pe +pe +pe +pe +pe +pe +pe +pe +pe +pe +pe +RF +RF +oy +tN +wS +wS +wS +wS +wS +wS +wS +wS +UH +UH +UH +wS +wS +UH +UH +fk +fk +fk +fk +fk +fk +tN +tN +tN +tN +tN +tN +tN +tN +fk +fk +fk +fk +fk +fk +fk +fk +fk +fk +tN +tN +tN +tN +fk +fk +fk +fk +fk +fk +fk +fk +fk +fk +fk +fk +fk +fk +je +"} +(137,1,1) = {" +ni +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +fk +fk +fk +fk +fk +fk +fk +fk +fk +fk +fk +fk +fk +fk +fk +fk +fk +fk +fk +fk +fk +fk +fk +fk +fk +fk +fk +fk +fk +tN +tN +wS +wS +wS +UH +UH +wS +wS +wS +wS +wS +wS +wS +UH +UH +UH +fk +fk +fk +fk +fk +fk +fk +fk +fk +fk +fk +fk +fk +fk +fk +fk +fk +fk +fk +fk +fk +fk +fk +fk +fk +fk +tN +tN +tN +tN +tN +fk +fk +fk +fk +fk +fk +fk +fk +fk +fk +fk +je +"} +(138,1,1) = {" +ni +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +fk +fk +fk +fk +fk +fk +fk +fk +fk +fk +fk +fk +fk +fk +fk +fk +fk +fk +fk +fk +fk +fk +fk +fk +fk +fk +fk +tN +tN +wS +UH +UH +UH +UH +UH +wS +wS +wS +UH +UH +UH +UH +UH +fk +fk +fk +fk +fk +fk +fk +fk +fk +fk +fk +fk +fk +fk +fk +fk +fk +fk +fk +fk +fk +fk +fk +fk +fk +fk +fk +fk +tN +tN +tN +tN +fk +fk +fk +fk +fk +fk +fk +fk +fk +fk +je +"} +(139,1,1) = {" +ni +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +oH +fk +fk +fk +fk +fk +fk +fk +fk +fk +fk +fk +fk +fk +fk +fk +fk +fk +fk +fk +fk +fk +fk +fk +fk +fk +fk +fk +fk +UH +UH +UH +UH +UH +UH +UH +UH +UH +UH +UH +UH +UH +UH +fk +fk +fk +fk +fk +fk +fk +fk +fk +fk +fk +fk +fk +fk +fk +fk +fk +fk +fk +fk +fk +fk +fk +fk +fk +fk +fk +fk +fk +fk +fk +fk +fk +fk +fk +fk +fk +fk +fk +fk +fk +fk +je +"} +(140,1,1) = {" +ni +ni +ni +ni +ni +ni +ni +ni +ni +ni +ni +ni +ni +ni +ni +ni +ni +ni +ni +ni +ni +ni +ni +ni +ni +ni +ni +ni +ni +ni +ni +ni +ni +ni +ni +ni +ni +ni +ni +ni +ni +ni +ni +ni +ni +ni +ni +ni +ni +ni +je +je +je +je +je +je +je +je +je +je +je +je +je +je +je +je +je +je +je +je +je +je +je +je +je +je +je +je +je +je +je +je +je +je +je +je +je +je +je +je +je +je +je +je +je +je +je +je +je +je +je +je +je +je +je +je +je +je +je +je +je +je +je +je +je +je +je +je +je +je +je +je +je +je +je +je +je +je +je +je +je +je +je +je +je +je +je +je +je +je +"} +>>>>>>> ad7ceda4db... Merge pull request #14481 from Runa-Dacino/Industrial-AutoInjectors diff --git a/maps/overmap/space_pois/listeningpost_40x40.dmm b/maps/overmap/space_pois/listeningpost_40x40.dmm deleted file mode 100644 index a18cd316d5..0000000000 --- a/maps/overmap/space_pois/listeningpost_40x40.dmm +++ /dev/null @@ -1,104 +0,0 @@ -"aI" = (/obj/item/device/gps/internal/poi{name = "#$(@@%$#"},/turf/simulated/wall/r_wall,/area/submap/listeningpost) -"br" = (/obj/effect/catwalk_plated/techmaint,/turf/simulated/floor/plating,/area/submap/listeningpost) -"er" = (/mob/living/simple_mob/humanoid/merc/ranged/space,/turf/simulated/floor/tiled/asteroid_steel,/area/submap/listeningpost) -"ex" = (/obj/structure/disposalpipe/segment,/turf/simulated/mineral,/area/submap/listeningpost) -"gq" = (/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/mineral,/area/submap/listeningpost) -"gQ" = (/obj/machinery/vending/cola,/turf/simulated/floor/tiled/asteroid_steel,/area/submap/listeningpost) -"gZ" = (/obj/machinery/shower{dir = 8; tag = "icon-shower (WEST)"},/turf/simulated/floor/tiled/freezer,/area/submap/listeningpost) -"hP" = (/obj/item/weapon/paper/monitorkey,/obj/item/clothing/glasses/regular,/obj/structure/table/steel,/turf/simulated/floor/tiled/asteroid_steel,/area/submap/listeningpost) -"hU" = (/obj/item/clothing/suit/space/syndicate,/obj/item/clothing/mask/gas,/obj/item/clothing/head/helmet/space/syndicate,/obj/structure/table/rack/shelf/steel,/turf/simulated/floor/tiled/asteroid_steel,/area/submap/listeningpost) -"iH" = (/obj/item/weapon/paper{info = "Mission Details: You have been assigned to a newly constructed listening post constructed within an asteroid in Nanotrasen space to monitor their plasma mining operations. Accurate intel is crucial to the success of our operatives onboard, do not fail us."; name = "mission briefing"},/obj/structure/table/steel,/turf/simulated/floor/tiled/asteroid_steel,/area/submap/listeningpost) -"kh" = (/obj/structure/bed,/obj/item/weapon/bedsheet/brown,/turf/simulated/floor/tiled/asteroid_steel,/area/submap/listeningpost) -"ki" = (/turf/simulated/mineral,/area/submap/listeningpost) -"lY" = (/obj/machinery/door/airlock,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/asteroid_steel,/area/submap/listeningpost) -"ml" = (/obj/structure/table/rack/shelf/steel,/obj/item/weapon/storage/toolbox/syndicate/powertools,/obj/item/weapon/cell/super/empty,/turf/simulated/floor/plating,/area/submap/listeningpost) -"mq" = (/turf/simulated/floor/tiled/freezer,/area/submap/listeningpost) -"mT" = (/obj/machinery/light/small{dir = 1},/turf/simulated/floor/plating,/area/submap/listeningpost) -"nq" = (/obj/machinery/telecomms/relay/preset/ruskie,/turf/simulated/floor/tiled/asteroid_steel,/area/submap/listeningpost) -"nx" = (/obj/machinery/power/apc/high{dir = 8; pixel_x = -20},/obj/structure/cable{d2 = 4; icon_state = "0-4"},/turf/simulated/floor/tiled/asteroid_steel,/area/submap/listeningpost) -"nK" = (/obj/structure/table/steel,/obj/item/device/radio/bluespacehandset/linked/talon_prelinked,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/floor_decal/rust,/turf/simulated/floor/tiled/asteroid_steel,/area/submap/listeningpost) -"pK" = (/obj/structure/table/steel,/obj/machinery/light/small{dir = 1},/turf/simulated/floor/tiled/asteroid_steel,/area/submap/listeningpost) -"qx" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/embedded_controller/radio/airlock/access_controller{id_tag = "spacebar_control"; pixel_x = -26; pixel_y = -26; tag_exterior_door = "spacebar_exterior"; tag_interior_door = "spacebar_interior"},/turf/simulated/floor/tiled/asteroid_steel,/area/submap/listeningpost) -"rP" = (/turf/template_noop,/area/template_noop) -"tg" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/mineral,/area/submap/listeningpost) -"tX" = (/obj/item/weapon/tank/jetpack/carbondioxide,/obj/item/weapon/tank/air,/obj/structure/table/rack/shelf/steel,/turf/simulated/floor/tiled/asteroid_steel,/area/submap/listeningpost) -"ub" = (/mob/living/simple_mob/humanoid/merc/ranged/space/shotgun/auto,/turf/simulated/floor/tiled/asteroid_steel,/area/submap/listeningpost) -"uw" = (/obj/random/outcrop,/turf/simulated/mineral/floor/vacuum,/area/submap/listeningpost) -"uD" = (/obj/machinery/access_button{command = "cycle_exterior"; frequency = 1379; master_tag = "listeningpost_control"; name = "External Access Button"; pixel_y = -26},/obj/machinery/door/airlock/glass_external{autoclose = 0; frequency = 1379; icon_state = "door_locked"; id_tag = "listeningpost_exterior"; locked = 1; name = "Bar Airlock"},/turf/simulated/floor/plating,/area/submap/listeningpost) -"uM" = (/obj/machinery/light/small{dir = 1},/obj/structure/table/steel,/obj/item/device/radio/bluespacehandset/linked/talon_prelinked,/turf/simulated/floor/tiled/asteroid_steel,/area/submap/listeningpost) -"vl" = (/turf/simulated/wall/r_wall,/area/submap/listeningpost) -"vm" = (/obj/machinery/computer/message_monitor{dir = 4},/turf/simulated/floor/tiled/asteroid_steel,/area/submap/listeningpost) -"wB" = (/obj/machinery/disposal,/obj/structure/disposalpipe/trunk{dir = 4},/turf/simulated/floor/tiled/asteroid_steel,/area/submap/listeningpost) -"xD" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/effect/floor_decal/rust,/turf/simulated/floor/plating,/area/submap/listeningpost) -"ya" = (/turf/simulated/mineral/floor/vacuum,/area/submap/listeningpost) -"yD" = (/obj/machinery/embedded_controller/radio/airlock/access_controller{id_tag = "listeningpost_control"; pixel_x = 25; pixel_y = -26; tag_exterior_door = "listeningpost_exterior"; tag_interior_door = "listeningpost_interior"},/obj/effect/floor_decal/rust,/turf/simulated/floor/tiled/asteroid_steel,/area/submap/listeningpost) -"zd" = (/obj/structure/filingcabinet,/obj/item/weapon/paper{info = "A good start to the operation: intercepted Nanotrasen military communications. A convoy is scheduled to transfer nuclear warheads to a new military base. This is as good a chance as any to get our hands on some heavy weaponry, I suggest we take it."; name = "april report"},/obj/item/weapon/paper{info = "Nothing of real interest to report this month. I have intercepted faint transmissions from what appears to be some sort of pirate radio station. They do not appear to be relevant to my assignment."; name = "may report"},/obj/item/weapon/paper{info = "Nanotrasen communications have been noticably less frequent recently. The pirate radio station I found last month has been transmitting pro-Nanotrasen propaganda. I will continue to monitor it."; name = "june report"},/obj/item/weapon/paper{info = "Nothing of interest to report."; name = "july report"},/obj/item/weapon/paper{info = "Nothing of interest to report."; name = "august report"},/obj/item/weapon/paper{info = "Nothing of interest to report."; name = "september report"},/obj/item/weapon/paper{info = "Nothing of interest to report."; name = "october report"},/obj/item/weapon/paper{info = "1 x Stechtkin pistol - $600
1 x silencer - $200
shipping charge - $4360
total - $5160"; name = "receipt"},/turf/simulated/floor/tiled/asteroid_steel,/area/submap/listeningpost) -"zk" = (/turf/simulated/wall,/area/submap/listeningpost) -"zo" = (/obj/machinery/light/small,/turf/simulated/floor/plating,/area/submap/listeningpost) -"Ac" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/effect/floor_decal/rust,/turf/simulated/floor/tiled/asteroid_steel,/area/submap/listeningpost) -"Ba" = (/obj/structure/disposaloutlet{dir = 4},/obj/structure/disposalpipe/trunk{dir = 8},/turf/simulated/floor/plating,/area/submap/listeningpost) -"BG" = (/obj/machinery/vending/snack,/turf/simulated/floor/tiled/asteroid_steel,/area/submap/listeningpost) -"Gg" = (/obj/machinery/door/airlock/glass_external{autoclose = 0; frequency = 1379; icon_state = "door_locked"; id_tag = "listeningpost_exterior"; locked = 1; name = "Bar Airlock"},/turf/simulated/floor/plating,/area/submap/listeningpost) -"GT" = (/turf/simulated/floor/plating,/area/submap/listeningpost) -"IL" = (/obj/machinery/light/small{dir = 8},/turf/simulated/floor/tiled/freezer,/area/submap/listeningpost) -"Kl" = (/obj/structure/cable{d2 = 2; icon_state = "0-2"},/obj/machinery/power/port_gen/pacman,/turf/simulated/floor/plating,/area/submap/listeningpost) -"KY" = (/obj/item/weapon/paper{info = "Nothing of interest to report."; name = "november report"},/obj/item/weapon/pen,/obj/structure/table/steel,/turf/simulated/floor/tiled/asteroid_steel,/area/submap/listeningpost) -"LC" = (/obj/effect/catwalk_plated/techmaint,/turf/template_noop,/area/template_noop) -"MO" = (/obj/machinery/access_button{command = "cycle_interior"; frequency = 1379; master_tag = "listeningpost_control"; name = "Internal Access Button"; pixel_x = 7; pixel_y = -26},/obj/machinery/door/airlock/glass_external{autoclose = 0; frequency = 1379; icon_state = "door_locked"; id_tag = "listeningpost_interior"; locked = 1; name = "Bar Airlock"},/turf/simulated/floor/plating,/area/submap/listeningpost) -"Nv" = (/obj/structure/table/rack/shelf/steel,/obj/item/stack/material/phoron{amount = 10},/obj/item/stack/material/phoron{amount = 10},/turf/simulated/floor/plating,/area/submap/listeningpost) -"Ny" = (/obj/machinery/door/airlock,/turf/simulated/floor/tiled/asteroid_steel,/area/submap/listeningpost) -"NE" = (/obj/structure/closet,/obj/item/clothing/gloves/boxing,/turf/simulated/floor/tiled/asteroid_steel,/area/submap/listeningpost) -"OM" = (/obj/machinery/light/small{dir = 1},/turf/simulated/floor/tiled/asteroid_steel,/area/submap/listeningpost) -"PL" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/wall/r_wall,/area/submap/listeningpost) -"Qp" = (/obj/machinery/light/small,/obj/effect/floor_decal/rust,/turf/simulated/floor/tiled/asteroid_steel,/area/submap/listeningpost) -"Ri" = (/obj/machinery/door/airlock{name = "Toilet"},/turf/simulated/floor/tiled/asteroid_steel,/area/submap/listeningpost) -"RJ" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/asteroid_steel,/area/submap/listeningpost) -"Sd" = (/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/mineral,/area/submap/listeningpost) -"Sj" = (/obj/machinery/power/smes/buildable/hybrid,/obj/structure/cable{d2 = 8; icon_state = "0-8"},/turf/simulated/floor/plating,/area/submap/listeningpost) -"TS" = (/obj/effect/floor_decal/rust,/turf/simulated/floor/tiled/asteroid_steel,/area/submap/listeningpost) -"Vz" = (/turf/simulated/floor/tiled/asteroid_steel,/area/submap/listeningpost) -"WK" = (/obj/structure/toilet{dir = 8; tag = "icon-toilet00 (WEST)"},/turf/simulated/floor/tiled/freezer,/area/submap/listeningpost) -"WO" = (/obj/machinery/door/airlock/glass_external{autoclose = 0; frequency = 1379; icon_state = "door_locked"; id_tag = "listeningpost_interior"; locked = 1; name = "Bar Airlock"},/turf/simulated/floor/plating,/area/submap/listeningpost) - -(1,1,1) = {" -rPrPrPrPrPrPrPrPrPrPrPrPrPrPrPrPrPrPrPrPrPrPrPrPrPrPrPrPrPrPrPrPrPrPrPrPrPrPrPrP -rPrPkikirPrPrPrPrPrPrPrPrPrPrPrPrPrPrPrPrPrPrPrPrPrPrPrPrPrPrPrPrPrPrPrPrPrPrPrP -rPrPrPkikikikirPrPrPrPrPrPrPrPrPrPrPrPrPrPrPrPrPrPrPrPrPrPrPrPkikirPkikirPrPrPrP -rPrPrPkikikikikirPrPrPrPrPrPrPrPrPrPrPrPrPrPrPrPrPkirPrPrPrPkikikikirPrPrPrPrPrP -rPrPrPkikikikikikirPrPrPrPrPrPrPrPrPrPrPrPrPrPkirPrPrPrPrPrPkikikikirPrPrPrPrPrP -rPrPrPrPkikikikirPrPrPrPrPrPrPrPrPrPrPrPrPrPrPkikikirPrPrPrPrPrPkikirPrPrPrPrPrP -rPrPrPrPrPkikikirPrPrPrPrPrPrPrPrPrPrPrPrPrPrPkikikikirPrPrPrPrPrPrPrPrPkirPrPrP -rPrPrPrPrPrPrPkikirPrPrPkikikikirPrPrPrPrPrPrPrPrPkikirPrPrPrPrPrPrPrPrPrPrPrPrP -rPrPrPrPrPrPrPrPrPrPkikikikikikikikikirPrPrPrPrPrPrPrPrPrPrPrPrPkikirPrPrPrPrPrP -rPrPrPrPrPrPrPrPkikikikikikikikikikikikikikirPrPrPrPrPrPrPrPrPkikikikirPrPrPrPrP -rPrPrPrPrPrPrPyayauwkikikikikikikikikikikikikikirPrPrPrPrPrPrPrPrPkikikirPrPrPrP -rPrPrPrPrPrPyayayayayakikikikikivlvlvlvlvlkikikikikirPrPrPrPrPrPrPrPkikikirPrPrP -rPrPrPrPkikikikiyayayakikikikikivlmlNvKlvlvlkikikikikirPrPrPrPrPrPrPrPrPrPrPrPrP -rPrPkikikikikiyayayakikikikikikivlGTzoxDSjvlkikikikikikirPrPrPrPrPrPrPrPrPrPrPrP -rPkikikikikiyayayauwkikikikikikivlvlvllYzkvlvlvlvlbrrPkikirPrPrPrPrPrPrPrPrPrPrP -rPyauwkikiuwyayayakikikikikikivlvlhPuMRJVzWOmTGTGgbrLCLCrPrPrPrPrPrPrPrPrPrPrPrP -rPrPyayayayayayakikikikikikikivlvmubKYqxyDMOGTGTuDbrLCLCrPrPrPrPrPrPrPrPrPrPrPrP -rPrPyayayayayayakikikikikikikivlaInxnKActXvlvlvlvlbryayarPrPrPrPrPrPrPrPrPrPrPrP -rPrPyayayayayayakikikikikikikivlnqVzQpTShUvlkikikikikikikirPrPrPrPrPrPrPrPrPrPrP -rPrPyayayakikiuwyakikikikivlvlvlvlNyzkzkzkvlkigqtgtgBarPrPrPrPrPrPrPrPrPrPrPrPrP -rPrPrPyakikikikiyakikikikivlkhpKzkVzOMVzBGvlkiexkikikikikirPrPrPrPrPrPrPrPrPrPrP -rPrPrPyauwkikiyayakikikikivlerTSNyVzTSVzgQvlkiexkikikikikirPrPrPrPrPrPrPrPrPrPrP -rPrPrPkikikiyayayakikikikivlNEzdzkiHVzwBPLPLtgSdkikikikirPrPrPrPrPrPrPrPrPrPrPrP -rPrPrPrPkiyayakikikikikikivlvlvlvlvlRizkvlkikikikikikirPrPrPrPrPrPrPrPrPrPrPrPrP -rPrPrPrPrPrPkikikikikikikikikikikivlILgZvlkikikikikikikikirPrPrPrPrPrPrPrPrPrPrP -rPrPrPrPrPrPrPkikikikikikikikikikivlmqWKvlkikikikikikiyayarPrPrPrPrPrPrPrPrPrPrP -rPrPrPrPrPrPrPkikikikikikikikikikivlvlvlvlkikikikikiyayarPrPrPrPrPrPrPrPrPrPrPrP -rPrPrPrPrPkikikikikikikikikikikikikikikikikikiuwyayayayarPrPrPrPrPrPrPrPrPrPrPrP -rPrPrPrPrPrPkikikikikikikikikikikikikikikiyayayayayarPrPrPrPrPrPrPrPrPrPrPrPrPrP -rPrPrPrPrPrPrPrPkikikikikikikikikikikiyayayayayarPrPrPrPrPrPrPrPrPrPrPrPrPrPrPrP -rPrPkikirPrPrPrPrPrPkikikikikikikiuwyayayayarPrPrPrPrPrPrPrPrPrPrPrPrPrPrPrPrPrP -rPrPrPkikikirPrPrPkikikikikikikiyayayayarPrPrPrPrPrPrPrPrPrPrPrPrPrPrPrPrPrPrPrP -rPrPkikikikikirPrPrPrPrPrPkikiyayayarPrPrPrPrPrPrPrPrPrPrPrPrPrPrPrPrPrPrPrPrPrP -rPkikikirPrPkikirPrPrPrPrPrPrPrPrPrPrPrPrPrPrPrPrPrPrPrPrPrPrPrPrPrPrPrPrPrPrPrP -rPrPrPrPrPkikikirPrPrPrPrPrPrPrPrPrPrPrPrPrPrPrPrPrPrPrPrPrPrPrPrPrPrPrPrPrPrPrP -rPrPkikikikikirPrPrPrPrPrPrPrPrPrPrPrPrPrPrPrPrPrPrPrPrPrPrPrPrPrPrPrPrPrPrPrPrP -rPrPrPkikikirPrPrPrPrPrPrPrPrPrPrPrPrPrPrPrPrPrPrPrPrPrPrPrPrPrPrPrPrPrPrPrPrPrP -rPrPrPkikirPrPrPrPrPrPrPrPrPrPrPrPrPrPrPrPrPrPrPrPrPrPrPrPrPrPrPrPrPrPrPrPrPrPrP -rPrPrPrPkikirPrPrPrPrPrPrPrPrPrPrPrPrPrPrPrPrPrPrPrPrPrPrPrPrPrPrPrPrPrPrPrPrPrP -rPrPrPkirPrPrPrPrPrPrPrPrPrPrPrPrPrPrPrPrPrPrPrPrPrPrPrPrPrPrPrPrPrPrPrPrPrPrPrP -"} diff --git a/maps/overmap/space_pois/syndiedepot_57x49.dmm b/maps/overmap/space_pois/syndiedepot_57x49.dmm deleted file mode 100644 index 5518c7a159..0000000000 --- a/maps/overmap/space_pois/syndiedepot_57x49.dmm +++ /dev/null @@ -1,191 +0,0 @@ -"ad" = (/turf/template_noop,/area/template_noop) -"ae" = (/obj/structure/simple_door/iron,/turf/simulated/floor/tiled/asteroid_steel{icon_state = "dark"},/area/submap/syndiedepotoutter) -"ag" = (/obj/effect/decal/cleanable/cobweb,/turf/simulated/floor/tiled/asteroid_steel{icon_state = "dark"},/area/submap/syndiedepotoutter) -"ai" = (/obj/effect/decal/cleanable/spiderling_remains,/turf/simulated/floor/tiled/asteroid_steel{icon_state = "dark"},/area/submap/syndiedepotoutter) -"am" = (/obj/structure/fans/tiny,/turf/simulated/floor/tiled/asteroid_steel{icon_state = "dark"},/area/submap/syndiedepotoutter) -"ao" = (/turf/simulated/wall,/area/submap/syndiedepotoutter) -"aq" = (/obj/machinery/light,/turf/simulated/mineral/floor/vacuum,/area/submap/syndiedepotoutter) -"as" = (/obj/effect/decal/cleanable/cobweb2,/turf/simulated/floor/tiled/asteroid_steel{icon_state = "dark"},/area/submap/syndiedepotoutter) -"au" = (/obj/machinery/light{dir = 8},/turf/simulated/mineral/floor/vacuum,/area/submap/syndiedepotoutter) -"aw" = (/obj/structure/bed,/turf/simulated/floor/tiled/asteroid_steel{icon_state = "dark"},/area/submap/syndiedepotinner) -"ay" = (/obj/item/weapon/reagent_containers/food/drinks/flask/barflask,/obj/structure/table/standard,/turf/simulated/floor/tiled/asteroid_steel{icon_state = "dark"},/area/submap/syndiedepotinner) -"az" = (/obj/structure/reagent_dispensers/beerkeg,/obj/structure/table/standard,/turf/simulated/floor/tiled/asteroid_steel{icon_state = "dark"},/area/submap/syndiedepotinner) -"aG" = (/obj/machinery/light/small,/turf/simulated/floor/tiled/asteroid_steel{icon_state = "dark"},/area/submap/syndiedepotinner) -"aH" = (/obj/effect/decal/cleanable/blood,/obj/machinery/door/airlock/phoron{icon_state = "door_locked"; locked = 1},/turf/simulated/floor/tiled/techfloor,/area/submap/syndiedepotinner) -"aN" = (/obj/item/weapon/storage/backpack/holding/duffle,/turf/simulated/floor/greengrid/nitrogen,/area/submap/syndiedepotinner) -"aO" = (/obj/item/stack/material/steel{layer = 4.1},/turf/simulated/floor/tiled/asteroid_steel{icon_state = "dark"},/area/submap/syndiedepotinner) -"aP" = (/obj/machinery/light{dir = 1; on = 1},/obj/item/stack/material/steel{layer = 4.1},/turf/simulated/floor/tiled/asteroid_steel{icon_state = "dark"},/area/submap/syndiedepotinner) -"aV" = (/obj/machinery/light{dir = 4},/turf/simulated/mineral/floor/vacuum,/area/submap/syndiedepotoutter) -"aX" = (/obj/structure/bed/chair{dir = 1},/turf/simulated/floor/tiled/asteroid_steel{icon_state = "dark"},/area/submap/syndiedepotinner) -"bk" = (/obj/machinery/light{dir = 1; on = 1},/obj/machinery/portable_atmospherics/canister/oxygen,/turf/simulated/floor/tiled/asteroid_steel{icon_state = "dark"},/area/submap/syndiedepotoutter) -"bo" = (/obj/machinery/light{dir = 4},/turf/simulated/floor/tiled/asteroid_steel{icon_state = "dark"},/area/submap/syndiedepotinner) -"br" = (/obj/machinery/door/airlock/external{id_tag = "sst_away"; req_access_txt = "150"},/obj/structure/fans/tiny,/turf/simulated/floor/tiled/techfloor,/area/submap/syndiedepotoutter) -"bu" = (/obj/structure/dispenser,/turf/simulated/floor/tiled/asteroid_steel{icon_state = "dark"},/area/submap/syndiedepotoutter) -"bw" = (/obj/item/weapon/storage/box/donkpockets,/obj/structure/table/standard,/turf/simulated/floor/tiled/asteroid_steel{icon_state = "dark"},/area/submap/syndiedepotinner) -"bz" = (/obj/machinery/portable_atmospherics/canister/oxygen,/turf/simulated/floor/tiled/asteroid_steel{icon_state = "dark"},/area/submap/syndiedepotinner) -"bF" = (/obj/structure/bed/chair,/turf/simulated/floor/tiled/asteroid_steel{icon_state = "dark"},/area/submap/syndiedepotinner) -"bH" = (/obj/machinery/door/airlock/silver,/turf/simulated/floor/tiled/techfloor,/area/submap/syndiedepotinner) -"bI" = (/obj/machinery/door/airlock/external{id_tag = "sst_away"; req_access_txt = "150"},/turf/simulated/floor/tiled/techfloor,/area/submap/syndiedepotoutter) -"bL" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor/tiled/asteroid_steel{icon_state = "dark"},/area/submap/syndiedepotinner) -"bM" = (/obj/structure/cable{d2 = 8; icon_state = "0-8"},/obj/machinery/power/apc/high{dir = 4; pixel_x = 20},/turf/simulated/floor/tiled/asteroid_steel{icon_state = "dark"},/area/submap/syndiedepotinner) -"bO" = (/obj/item/weapon/reagent_containers/food/snacks/syndicake,/obj/structure/table/standard,/turf/simulated/floor/tiled/asteroid_steel{icon_state = "dark"},/area/submap/syndiedepotinner) -"bR" = (/obj/machinery/light/small{dir = 1},/obj/effect/decal/cleanable/blood,/turf/simulated/floor/tiled/asteroid_steel{icon_state = "dark"},/area/submap/syndiedepotinner) -"bU" = (/obj/structure/table/standard,/turf/simulated/floor/tiled/asteroid_steel{icon_state = "dark"},/area/submap/syndiedepotoutter) -"bV" = (/obj/item/weapon/folder,/obj/item/weapon/pen,/obj/structure/table/standard,/turf/simulated/floor/tiled/asteroid_steel{icon_state = "dark"},/area/submap/syndiedepotinner) -"bW" = (/obj/structure/cable,/obj/machinery/power/terminal,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/asteroid_steel{icon_state = "dark"},/area/submap/syndiedepotinner) -"ca" = (/obj/machinery/atmospherics/pipe/simple/hidden,/obj/structure/sign/warning/emergence,/turf/simulated/wall/dungeon,/area/submap/syndiedepotinner) -"cd" = (/turf/simulated/floor/tiled/kafel_full,/area/submap/syndiedepotinner) -"ce" = (/obj/machinery/light/small{dir = 4; tag = "icon-bulb1 (EAST)"},/turf/simulated/floor/tiled/kafel_full,/area/submap/syndiedepotinner) -"cg" = (/turf/simulated/wall,/turf/space,/area/submap/syndiedepotoutter) -"ci" = (/obj/structure/cable{d2 = 2; icon_state = "0-2"},/obj/machinery/power/smes/buildable/hybrid,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/asteroid_steel{icon_state = "dark"},/area/submap/syndiedepotinner) -"cm" = (/obj/machinery/atmospherics/pipe/simple/hidden,/obj/structure/table/standard,/obj/machinery/microwave/advanced,/turf/simulated/floor/tiled/asteroid_steel{icon_state = "dark"},/area/submap/syndiedepotinner) -"cn" = (/obj/machinery/light{dir = 1; on = 1},/turf/simulated/floor/tiled/asteroid_steel{icon_state = "dark"},/area/submap/syndiedepotinner) -"co" = (/obj/effect/floor_decal/techfloor/orange{dir = 6},/turf/simulated/floor/tiled/techfloor,/area/submap/syndiedepotinner) -"cq" = (/obj/structure/mirror{pixel_x = -32},/turf/simulated/floor/tiled/kafel_full,/area/submap/syndiedepotinner) -"cr" = (/obj/structure/sink{dir = 4; pixel_x = 12},/turf/simulated/floor/tiled/kafel_full,/area/submap/syndiedepotinner) -"cv" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4},/turf/simulated/floor/tiled/asteroid_steel{icon_state = "dark"},/area/submap/syndiedepotinner) -"cw" = (/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/simple/hidden{dir = 4},/turf/simulated/floor/tiled/asteroid_steel{icon_state = "dark"},/area/submap/syndiedepotinner) -"cA" = (/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden,/obj/machinery/power/supermatter,/turf/simulated/floor/greengrid/nitrogen,/area/submap/syndiedepotinner) -"cB" = (/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4},/turf/simulated/floor/tiled/asteroid_steel{icon_state = "dark"},/area/submap/syndiedepotinner) -"cC" = (/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4},/obj/structure/sign/warning/emergence,/turf/simulated/wall/dungeon,/area/submap/syndiedepotinner) -"cE" = (/obj/structure/toilet{dir = 8},/turf/simulated/floor/tiled/kafel_full,/area/submap/syndiedepotinner) -"cF" = (/obj/structure/table/standard,/obj/item/weapon/flame/candle/everburn,/turf/simulated/mineral/floor/vacuum,/area/submap/syndiedepotoutter) -"cG" = (/obj/structure/bed/chair{dir = 8},/turf/simulated/mineral/floor/vacuum,/area/submap/syndiedepotoutter) -"cH" = (/obj/machinery/light,/turf/simulated/floor/tiled/asteroid_steel{icon_state = "dark"},/area/submap/syndiedepotinner) -"cI" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/asteroid_steel{icon_state = "dark"},/area/submap/syndiedepotinner) -"cJ" = (/obj/structure/cable,/turf/simulated/floor/tiled/asteroid_steel{icon_state = "dark"},/area/submap/syndiedepotinner) -"cM" = (/obj/machinery/light{dir = 1; on = 1},/turf/simulated/mineral/floor/vacuum,/area/submap/syndiedepotoutter) -"cO" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/wall/iron,/area/submap/syndiedepotinner) -"cT" = (/obj/machinery/light{dir = 1; on = 1},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/asteroid_steel{icon_state = "dark"},/area/submap/syndiedepotinner) -"cU" = (/obj/machinery/light{dir = 1; on = 1},/obj/machinery/atmospherics/pipe/simple/hidden,/turf/simulated/floor/tiled/asteroid_steel{icon_state = "dark"},/area/submap/syndiedepotinner) -"cV" = (/obj/machinery/recharge_station,/turf/simulated/floor/tiled/asteroid_steel{icon_state = "dark"},/area/submap/syndiedepotinner) -"cW" = (/obj/machinery/light{dir = 8},/turf/simulated/floor/tiled/asteroid_steel{icon_state = "dark"},/area/submap/syndiedepotinner) -"cY" = (/obj/structure/bed/chair{dir = 8},/turf/simulated/floor/tiled/asteroid_steel{icon_state = "dark"},/area/submap/syndiedepotinner) -"cZ" = (/turf/simulated/floor/tiled/asteroid_steel{icon_state = "dark"},/area/submap/syndiedepotoutter) -"db" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/light/small,/turf/simulated/floor,/area/submap/syndiedepotinner) -"dd" = (/obj/machinery/light/small{dir = 8},/turf/simulated/floor/tiled/asteroid_steel{icon_state = "dark"},/area/submap/syndiedepotinner) -"de" = (/obj/structure/cable,/obj/machinery/power/apc/high{dir = 4; pixel_x = 20},/turf/simulated/floor,/area/submap/syndiedepotoutter) -"df" = (/turf/simulated/mineral/floor/vacuum,/area/submap/syndiedepotoutter) -"dg" = (/turf/simulated/wall/iron,/area/submap/syndiedepotinner) -"dL" = (/obj/item/stack/material/steel{layer = 4.1},/obj/structure/closet/emcloset,/turf/simulated/floor/tiled/asteroid_steel{icon_state = "dark"},/area/submap/syndiedepotinner) -"ea" = (/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4},/obj/machinery/door/blast/puzzle{checkrange_mult = 3; dir = 4},/turf/simulated/floor/tiled/techfloor,/area/submap/syndiedepotinner) -"ee" = (/obj/structure/prop/lock/projectile{pixel_y = 6},/turf/simulated/floor/tiled/techfloor,/area/submap/syndiedepotinner) -"eK" = (/obj/effect/floor_decal/techfloor/orange,/turf/simulated/floor/tiled/techfloor,/area/submap/syndiedepotinner) -"eM" = (/obj/machinery/door/airlock/phoron{icon_state = "door_locked"; locked = 1},/turf/simulated/floor/tiled/techfloor,/area/submap/syndiedepotinner) -"fz" = (/obj/machinery/light/small,/turf/simulated/floor,/area/submap/syndiedepotinner) -"gv" = (/obj/machinery/atmospherics/pipe/simple/hidden,/obj/effect/landmark/loot_spawn,/turf/simulated/floor/greengrid/nitrogen,/area/submap/syndiedepotinner) -"iw" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/turf/simulated/floor/tiled/asteroid_steel{icon_state = "dark"},/area/submap/syndiedepotinner) -"kB" = (/obj/structure/closet/syndicate/suit,/turf/simulated/floor/tiled/asteroid_steel{icon_state = "dark"},/area/submap/syndiedepotinner) -"kJ" = (/turf/simulated/wall/iron,/area/submap/syndiedepotoutter) -"mt" = (/obj/structure/table/standard,/turf/simulated/floor/tiled/asteroid_steel{icon_state = "dark"},/area/submap/syndiedepotinner) -"oM" = (/obj/effect/floor_decal/techfloor/orange{dir = 10},/turf/simulated/floor/tiled/techfloor,/area/submap/syndiedepotinner) -"qg" = (/obj/machinery/light{dir = 1; on = 1},/obj/structure/closet/syndicate/suit,/turf/simulated/floor/tiled/asteroid_steel{icon_state = "dark"},/area/submap/syndiedepotinner) -"qt" = (/obj/machinery/replicator,/turf/simulated/floor/greengrid/nitrogen,/area/submap/syndiedepotinner) -"rd" = (/obj/machinery/power/emitter,/turf/simulated/floor/tiled/asteroid_steel{icon_state = "dark"},/area/submap/syndiedepotinner) -"rw" = (/obj/random/multiple/large_corp_crate,/turf/simulated/floor/tiled/asteroid_steel{icon_state = "dark"},/area/submap/syndiedepotinner) -"sg" = (/obj/machinery/light{dir = 1; on = 1},/obj/effect/floor_decal/techfloor/orange{dir = 8},/turf/simulated/floor/tiled/techfloor,/area/submap/syndiedepotinner) -"tF" = (/mob/living/simple_mob/humanoid/merc/ranged/rifle/mag/poi,/turf/simulated/floor/tiled/asteroid_steel{icon_state = "dark"},/area/submap/syndiedepotinner) -"uK" = (/obj/machinery/power/singularity_beacon/syndicate,/turf/simulated/floor/greengrid/nitrogen,/area/submap/syndiedepotinner) -"vC" = (/obj/structure/table/standard,/obj/item/weapon/storage/box/syndicate,/turf/simulated/floor/tiled/asteroid_steel{icon_state = "dark"},/area/submap/syndiedepotinner) -"vH" = (/obj/item/weapon/storage/belt/holding,/turf/simulated/floor/greengrid/nitrogen,/area/submap/syndiedepotinner) -"wv" = (/obj/item/weapon/inducer/syndicate,/turf/simulated/floor/tiled/asteroid_steel{icon_state = "dark"},/area/submap/syndiedepotinner) -"xv" = (/obj/machinery/atmospherics/pipe/simple/hidden,/obj/item/weapon/storage/toolbox/syndicate/powertools,/turf/simulated/floor/greengrid/nitrogen,/area/submap/syndiedepotinner) -"xV" = (/obj/machinery/light,/obj/random/multiple/large_corp_crate,/turf/simulated/floor/tiled/asteroid_steel{icon_state = "dark"},/area/submap/syndiedepotinner) -"ya" = (/mob/living/simple_mob/humanoid/merc/ranged/technician/poi,/turf/simulated/floor/tiled/asteroid_steel{icon_state = "dark"},/area/submap/syndiedepotinner) -"yi" = (/obj/machinery/light{dir = 1; on = 1},/obj/machinery/power/emitter,/turf/simulated/floor/tiled/asteroid_steel{icon_state = "dark"},/area/submap/syndiedepotinner) -"ym" = (/obj/structure/sign/warning/emergence,/turf/simulated/wall/dungeon,/area/submap/syndiedepotinner) -"zT" = (/obj/effect/landmark/loot_spawn,/turf/simulated/floor/greengrid/nitrogen,/area/submap/syndiedepotinner) -"AF" = (/obj/machinery/door/blast/puzzle{checkrange_mult = 3},/turf/simulated/floor/tiled/techfloor,/area/submap/syndiedepotinner) -"AT" = (/obj/structure/sign/poster,/turf/simulated/wall/iron,/area/submap/syndiedepotinner) -"Cc" = (/obj/structure/closet/syndicate,/turf/simulated/floor/tiled/asteroid_steel{icon_state = "dark"},/area/submap/syndiedepotinner) -"Cy" = (/obj/machinery/door/airlock/external{id_tag = "sst_away"; req_access_txt = "150"},/obj/structure/fans/tiny,/obj/structure/fans/hardlight,/turf/simulated/floor/tiled/techfloor,/area/submap/syndiedepotinner) -"Dh" = (/obj/machinery/light{dir = 8},/obj/structure/closet/syndicate/personal,/turf/simulated/floor/tiled/asteroid_steel{icon_state = "dark"},/area/submap/syndiedepotinner) -"DC" = (/obj/effect/floor_decal/techfloor/orange{dir = 4},/turf/simulated/floor/tiled/techfloor,/area/submap/syndiedepotinner) -"Fl" = (/mob/living/simple_mob/humanoid/merc/melee/sword/poi,/turf/simulated/floor/tiled/asteroid_steel{icon_state = "dark"},/area/submap/syndiedepotinner) -"Hc" = (/obj/structure/table/standard,/obj/item/weapon/card/id/syndicate,/obj/item/weapon/card/id/syndicate,/obj/item/weapon/card/id/syndicate,/obj/item/weapon/card/id/syndicate,/obj/item/weapon/card/id/syndicate,/obj/item/weapon/card/id/syndicate,/obj/item/weapon/card/id/syndicate,/turf/simulated/floor/tiled/asteroid_steel{icon_state = "dark"},/area/submap/syndiedepotinner) -"Ia" = (/mob/living/simple_mob/humanoid/merc/ranged/smg,/turf/simulated/floor/tiled/asteroid_steel{icon_state = "dark"},/area/submap/syndiedepotinner) -"Jh" = (/obj/structure/bed/chair{dir = 1},/mob/living/simple_mob/humanoid/merc/ranged/smg,/turf/simulated/floor/tiled/asteroid_steel{icon_state = "dark"},/area/submap/syndiedepotinner) -"Jl" = (/turf/simulated/wall/dungeon,/area/submap/syndiedepotinner) -"Jv" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/turf/simulated/floor/tiled/asteroid_steel{icon_state = "dark"},/area/submap/syndiedepotinner) -"KN" = (/turf/simulated/floor/tiled/asteroid_steel{icon_state = "dark"},/area/submap/syndiedepotinner) -"Ll" = (/obj/machinery/light{dir = 1; on = 1},/obj/effect/landmark/loot_spawn,/turf/simulated/floor/greengrid/nitrogen,/area/submap/syndiedepotinner) -"Mr" = (/obj/machinery/light{dir = 1; on = 1},/obj/structure/closet/syndicate/resources,/turf/simulated/floor/tiled/asteroid_steel{icon_state = "dark"},/area/submap/syndiedepotinner) -"NM" = (/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4},/obj/item/clothing/accessory/medal/dungeon,/turf/simulated/floor/greengrid/nitrogen,/area/submap/syndiedepotinner) -"NQ" = (/obj/machinery/door/airlock/multi_tile/metal/mait{icon_state = "door_locked"; locked = 1},/turf/simulated/floor/tiled/asteroid_steel{icon_state = "dark"},/area/submap/syndiedepotinner) -"NS" = (/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4},/obj/item/stolenpackage,/turf/simulated/floor/greengrid/nitrogen,/area/submap/syndiedepotinner) -"Oj" = (/mob/living/simple_mob/humanoid/merc/ranged/sniper,/turf/simulated/mineral/floor/vacuum,/area/submap/syndiedepotoutter) -"Oq" = (/obj/item/toy/syndicateballoon,/turf/simulated/floor/tiled/asteroid_steel{icon_state = "dark"},/area/submap/syndiedepotinner) -"OD" = (/turf/template_noop,/area/submap/syndiedepotoutter) -"QR" = (/turf/simulated/mineral,/area/submap/syndiedepotoutter) -"Rr" = (/obj/structure/closet/syndicate/nuclear,/turf/simulated/floor/tiled/asteroid_steel{icon_state = "dark"},/area/submap/syndiedepotinner) -"RQ" = (/obj/structure/closet/syndicate/resources/everything,/turf/simulated/floor/tiled/asteroid_steel{icon_state = "dark"},/area/submap/syndiedepotinner) -"Sf" = (/obj/structure/closet/syndicate/resources,/turf/simulated/floor/tiled/asteroid_steel{icon_state = "dark"},/area/submap/syndiedepotinner) -"Sn" = (/obj/structure/dispenser,/turf/simulated/floor/tiled/asteroid_steel{icon_state = "dark"},/area/submap/syndiedepotinner) -"SF" = (/obj/machinery/door/airlock/hatch{icon_state = "door_locked"; locked = 1},/turf/simulated/floor,/area/submap/syndiedepotinner) -"SK" = (/obj/item/stolenpackage,/turf/simulated/floor/greengrid/nitrogen,/area/submap/syndiedepotinner) -"Te" = (/obj/machinery/atmospherics/unary/vent_pump/on,/turf/simulated/floor/tiled/asteroid_steel{icon_state = "dark"},/area/submap/syndiedepotinner) -"TQ" = (/obj/machinery/vending/emergencyfood/filled,/turf/simulated/floor/tiled/asteroid_steel{icon_state = "dark"},/area/submap/syndiedepotinner) -"TX" = (/obj/machinery/door/airlock/phoron{icon_state = "door_locked"; locked = 1},/turf/simulated/floor/tiled/asteroid_steel{icon_state = "dark"},/area/submap/syndiedepotinner) -"UA" = (/mob/living/simple_mob/humanoid/merc/ranged/space,/turf/simulated/mineral/floor/vacuum,/area/submap/syndiedepotoutter) -"UT" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/turf/simulated/floor/tiled/asteroid_steel{icon_state = "dark"},/area/submap/syndiedepotinner) -"UV" = (/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4},/turf/simulated/floor/greengrid/nitrogen,/area/submap/syndiedepotinner) -"VZ" = (/obj/structure/closet/emcloset,/turf/simulated/floor/tiled/asteroid_steel{icon_state = "dark"},/area/submap/syndiedepotinner) -"WI" = (/obj/machinery/suit_cycler/syndicate,/turf/simulated/floor/tiled/asteroid_steel{icon_state = "dark"},/area/submap/syndiedepotinner) -"Xz" = (/obj/structure/reagent_dispensers/beerkeg/fakenuke{desc = "Something seems off about this bomb."; name = "\improper Nuclear Fission Explosive"},/turf/simulated/floor/greengrid/nitrogen,/area/submap/syndiedepotinner) -"Yj" = (/mob/living/simple_mob/humanoid/merc/ranged/ionrifle,/turf/simulated/floor/tiled/asteroid_steel{icon_state = "dark"},/area/submap/syndiedepotinner) -"YU" = (/obj/machinery/light{dir = 1; on = 1},/mob/living/simple_mob/humanoid/merc/melee/sword/poi,/turf/simulated/floor/tiled/asteroid_steel{icon_state = "dark"},/area/submap/syndiedepotinner) -"Zh" = (/obj/machinery/door/blast/puzzle{checkrange_mult = 3; dir = 4},/turf/simulated/floor/tiled/techfloor,/area/submap/syndiedepotinner) -"Zs" = (/obj/machinery/door/airlock/hatch{icon_state = "door_locked"; locked = 1},/obj/structure/fans/hardlight,/turf/simulated/floor,/area/submap/syndiedepotinner) -"ZC" = (/obj/random/multiple/corp_crate,/turf/simulated/floor/tiled/asteroid_steel{icon_state = "dark"},/area/submap/syndiedepotinner) - -(1,1,1) = {" -adadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadad -adadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadad -adadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadad -adadadadadadadadadadadadadadadadODODODODODODODODODODODODQRODODODODODODODODODODODQRODODODODQRODODQRODODODODadadadad -adadadadadadadadadadadadadadadadODODODODODODODODODODODODODODODQRODODQRODODODODQRQRODQRODQRQRQRQRODODODODODadadadad -adadadadadadadadadadadadadadadadQRQRODODODODODODODQRODODODODODODODQRODODODODQRQRQRQRQRQRQRQRQRQRQRODODODODadadadad -adadadadadadadadadadadadadadadadODQRQRODODODODODQRQRODODQRODODODODQRQRQRODODQRQRQRQRQRQRQRQRQRQRQRQRODODODadadadad -adadadadadadadadadadadadadadadadODODQRQRQRODQRQRQRODODQRQRQRQRODQRQRQRQRQRQRQRQRQRQRQRQRQRQRQRQRQRQRODODODadadadad -adadadadODODODODODODODODODQRODODODODODQRQRQRQRQRQRQRQRQRQRQRQRQRQRQRQRQRQRQRQRQRQRQRQRQRQRQRQRQRQRQRQRQRODadadadad -adadadadODODODODODODODQRQRQRQRQRaeaeQRQRQRQRQRQRQRQRQRQRQRQRQRQRQRQRdfQRQRQRQRQRQRQRQRQRQRQRQRQRQRQRQRODODadadadad -adadadadODODODODODODQRQRagcZaicZcZcZascZcZQRQRdfdfdfdfdfdfUAdfdfdfdfdfdfdfdfQRQRQRQRQRQRQRQRQRQRQRQRQRODODadadadad -adadadadODODODODODQRQRaocZcZcZcZcZcZcZaicZaoQRdfdfdfdfaqdfdfdfdfdfaqdfdfdfdfQRQRQRQRQRQRQRQRQRQRQRQRODODODadadadad -adadadadODODODODQRQRQRaocZcZcZcZcZcZbUcZasaoQRQRQRdgdgdgdgdgdgdgdgdgdgdgaudfdfQRQRQRQRQRQRQRQRQRQRQRODODODadadadad -adadadadODODODQRQRQRQRaocgcgaoaoaoaoaoaoaoaoQRQRQRdgawawawKNayazdgcnKNdgSFdgOjdfQRQRQRQRQRQRQRQRQRQRQRODODadadadad -adadadadODODQRQRQRQRQRQRamamQRQRQRQRQRQRQRQRQRQRQRdgKNKNKNKNKNKNeMKNKNZsfzdgUAdfQRQRQRQRQRQRQRQRQRQRQRQRODadadadad -adadadadODODQRQRdfdfdgdgaHeMdgdgdgdgdgdgdgdgdgdgdgdgVZKNcHKNKNKNdgTXdgdgdgdgdfdfQRQRQRQRQRQRQRQRQRQRQRODODadadadad -adadadadODQRQRQRdfdfdgKNKNKNMrSfSfdgaOaOaOaPKNKNdgdgdgdgdgdgdgeMdgKNcnmtKNdgdfdfQRQRQRQRQRQRQRQRQRQRQRODODadadadad -adadadadODQRQRdfdfaVdgKNaGKNKNKNaGeMKNaOaOaOaOKNeMKNkBkBqgkBkBKNeMKNKNJhKNdgaudfQRQRQRQRQRQRQRQRQRQRODODODadadadad -adadadadQRQRQRdfdfdfdgdgdgdgNQKNdgdgVZVZdLdgdgTXdgKNKNKNOqKNKNKNdgKNKNKNKNdgdfdfQRQRQRQRQRQRQRQRQRQRQRQRQRadadadad -adadadadQRQRQRQRdfdfdgCcKNKNKNKNdgdgdgATdgdgKNKNdgKNKNIaKNyaKNVZdgeMdgATdgdgdfdfkJkJkJkJkJkJQRQRQRQRQRQRODadadadad -adadadadODQRQRQRUAdfdgRrwvKNKNKNdgKNcnKNdgcnKNKNdgdgATdgdgeMdgdgdgKNKNcnVZdgdfdfkJbubkbUcZkJkJQRQRQRQRODODadadadad -adadadadODODQRQRdfdfdgDhKNKNOqbodgYjKNKNeMKNYjKNeMKNKNKNcnKNKNKNeMKNYjKNKNCydfdfbrcZcZcZcZcZkJQRQRQRQRODODadadadad -adadadadODODQRQRdfaVdgSnIaKNKNKNeMKNKNVZdgVZKNOqdgIaKNKNKNFlKNbwdgZCZCZCKNdgdfdfkJcZcZcZcZkJkJQRQRQRODODODadadadad -adadadadODQRQRQRdfdfdgbzKNKNKNVZdgdgeMdgdgdgdgdgdgKNTeKNbFbFKNKNdgdgdgdgbHdgUAdfkJkJkJbIkJkJQRQRQRQRODODODadadadad -adadadadQRQRQRdfdfdfdgdgdgeMATdgdgVZKNsgeeDCbLbMdgKNcmmtbOvCKNOqdgbRdgcdcddgdfdfQRQRkJamkJQRQRQRkJQRODODODadadadad -adadadadODQRQRQRdfdfSFfzZsKNKNHcdgbVKNoMeKcobWJlJlAFcaJlJlJleMdgdgdgdgcdcedgdfdfQRQRkJcgQRQRQRQRkJODODODODadadadad -adadadadODQRQRQRdfdfdgdgdgyaKNKNeMKNKNtFKNKNciJluKXzgvLlzTJlKNKNcnmtdgcqcrdgdfdfQRQRdfdfdfdfQRQRODODQRODODadadadad -adadadadODODQRQRdfdfaVdgOqKNKNbodgKNKNFliwcvcweaUVNScANMNScCcBUTKNaXdgcqcEdgaudfQRQRcFcGdfdfdfQRdfkJkJdfODadadadad -adadadadODODQRQRdfdfdfdgdgdgeMdgdgrwrwxVKNcIcJymvHaNxvqtSKZhKNtFKNKNdgbHdgdgdfdfQRkJdfdfdfQRdfdfdfdfdfdfODadadadad -adadadadODQRQRQRdfdfUAdfcMdgKNKNdgdgdgdgeMcOdgJlJlJlcaAFJlJlVZKNKNOqdgKNOqdgdfdfQRkJdfkJQRQRdfdfdfQRQRQRdfadadadad -adadadadODQRQRQRdfdfdfdfdfdgKNKNcnKNKNdgKNcTdgTQTQTQcUKNcVdgdgATeMdgdgcWWIdgdfdfQRQRQRkJdfdfdfdfkJkJdfQRODadadadad -adadadadQRQRQRQRQRQRQRdfdfdgdgRQmtcYKNeMyacIeMKNOqKNJvKNKNeMKNYUKNaOeMKNWIdgdfdfQRQRQRQRdfkJkJdfQRdfdfQRODadadadad -adadadadODODQRQRQRQRQRQRdfdfdgdgdgdgdgdgddcIdgKNFlKNKNKNKNdgKNKNKNKNdgKNWIdgdfdfQRQRQRQRdfQRdfdfdfQRdfkJQRadadadad -adadadadODODODQRODQRQRQRdfdfdfcMdfdfdfdgdgcOdgdgeMdgeMdgATdgdgOqKNcVdgKNVZdgdfdfQRQRkJQRdfdfdfQRdfQRdfkJODadadadad -adadadadODODODODODODQRQRQRdfdfdfUAdfdfdfSFdbZsKNKNdgKNyirdVZdgKNKNcVdgdgdgdgdfdfQRQRkJdfdfQRkJkJdfQRdfQRODadadadad -adadadadODODODODODQRQRODQRQRdfdfdfdfdfdfdgcOdgddKNTXKNKNIaKNeMKNKNcVdgdfdfcMdfUAQRQRdfQRODODdfODdfdfdfODODadadadad -adadadadODODODODODODODODQRQROjdfdfdfdfdfcMdedgdgdgdgdgdgdgKNdgKNKNVZdgdfdfdfdfdfQRQRdfdfODODODODdfdfkJkJODadadadad -adadadadODODODODODODODQRQRQRQRQRQRdfdfdfdfdfdfcMdfdfdfdfdgdgdgdgdgdgdgdfdfdfdfQRQRQRdfkJODODODODdfODODODODadadadad -adadadadODODODODODODQRQRQRQRQRQRQRQRQRQRQRQRdfdfUAdfdfdfdfdfcMdfdfdfcMdfdfdfQRQRQRdfdfkJODODODODODODODODODadadadad -adadadadODODODODODODODQRQRODODQRQRQRQRQRQRQRQRQRQRdfdfdfdfdfdfdfUAdfdfdfdfQRQRQRQRQRODQRODODODODODODODODODadadadad -adadadadODODODODODODODODQRODODODQRQRQRODODQRQRQRQRQRQRQRQRQRQRQRQRQRQRQRQRQRQRQRODQRODODQRODODODODODODODODadadadad -adadadadODODODODODODODODODODODODODQRODODQRODODQRQRQRQRQRQRQRQRQRQRQRQRQRQRQRQRQRQRODODODODODODODODODODODODadadadad -adadadadODODODODODODODODODODODODODODODODODODODODQRQRQRQRODODQRQRQRODODQRQRQRODODQRODODODODODODODODODODODODadadadad -adadadadODODODODODODODODODODODODODODODODODODODODODQRODODODODODODQRQRODODQRQRQRODODODODODODODODODODODODODODadadadad -adadadadODODODODODODODODODODODODODODODODODODODODODODODODODODODQRQRODODODODQRODODODODODODODODODODODODODODODadadadad -adadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadad -adadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadad -adadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadad -adadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadad -"} diff --git a/maps/stellar_delight/stellar_delight1.dmm b/maps/stellar_delight/stellar_delight1.dmm index 54299a48fb..7566485cf6 100644 --- a/maps/stellar_delight/stellar_delight1.dmm +++ b/maps/stellar_delight/stellar_delight1.dmm @@ -1 +1,2595 @@ -no \ No newline at end of file +<<<<<<< HEAD +no +======= +"aa" = (/obj/structure/cable/pink{icon_state = "4-8"},/obj/effect/floor_decal/milspec/color/red/half{dir = 1},/obj/machinery/newscaster/security_unit{pixel_y = 28},/mob/living/simple_mob/vore/fennec/bridgette,/turf/simulated/floor/tiled/dark,/area/security/security_cell_hallway) +"ab" = (/obj/structure/cable/pink{icon_state = "2-4"},/turf/simulated/floor/tiled/dark,/area/security/security_processing) +"ac" = (/obj/structure/table/steel_reinforced,/obj/machinery/power/apc/angled{cell_type = /obj/item/weapon/cell/super; dir = 1; name = "night shift APC"; nightshift_setting = 2},/obj/structure/cable/pink{icon_state = "0-2"},/turf/simulated/floor/tiled/dark,/area/security/tactical) +"ad" = (/obj/structure/cable/green{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/dark,/area/chapel/main) +"ae" = (/obj/structure/closet/secure_closet/security,/obj/item/device/holowarrant,/obj/item/clothing/accessory/badge/holo/cord,/obj/item/clothing/accessory/badge/holo/cord,/obj/machinery/alarm/angled{dir = 4},/obj/effect/floor_decal/milspec/color/red,/obj/item/device/ticket_printer,/turf/simulated/floor/tiled/dark,/area/security/security_lockerroom) +"af" = (/obj/machinery/computer/transhuman/resleeving{dir = 8},/obj/effect/floor_decal/industrial/warning{dir = 1},/obj/machinery/light{dir = 4},/obj/item/weapon/book/manual/resleeving,/turf/simulated/floor/tiled/steel_grid,/area/assembly/robotics) +"ag" = (/obj/structure/cable/pink{icon_state = "1-4"},/turf/simulated/floor/airless,/area/stellardelight/deck1/exterior) +"ah" = (/obj/structure/cable/pink{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/dark,/area/security/lobby) +"ai" = (/obj/structure/cable/pink{icon_state = "1-2"},/obj/structure/table/rack,/obj/random/maintenance,/obj/random/maintenance/clean,/obj/random/maintenance/security,/obj/random/maintenance/research,/obj/random/contraband,/obj/structure/cable/pink,/obj/machinery/power/apc/angled{dir = 8; name = "night shift APC"; nightshift_setting = 2},/turf/simulated/floor,/area/maintenance/stellardelight/deck1/starboardfore) +"aj" = (/obj/structure/table/woodentable,/obj/machinery/alarm/angled{dir = 8},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/turf/simulated/floor/carpet,/area/stellardelight/deck1/dorms/dorm8) +"ak" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/obj/structure/bed/padded,/obj/item/weapon/bedsheet/orange,/obj/machinery/light{dir = 1},/obj/effect/floor_decal/milspec/color/orange/half{dir = 9},/turf/simulated/floor/tiled/dark,/area/prison/cell_block) +"al" = (/obj/structure/table/standard,/obj/structure/extinguisher_cabinet{dir = 8; pixel_x = 30},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/obj/machinery/computer/med_data/laptop{dir = 8},/turf/simulated/floor/tiled/steel,/area/assembly/robotics) +"am" = (/obj/machinery/door/firedoor/glass/hidden/steel{dir = 2},/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/port) +"an" = (/turf/simulated/wall/bay/white,/area/stellardelight/deck1/aft) +"ao" = (/obj/structure/cable/green{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/fore) +"ap" = (/obj/structure/cable/pink{icon_state = "2-4"},/obj/structure/cable/pink{icon_state = "4-8"},/turf/simulated/floor/airless,/area/stellardelight/deck1/exterior) +"aq" = (/obj/structure/cable/pink{icon_state = "4-8"},/turf/simulated/wall/bay/r_wall/red,/area/security/armoury) +"ar" = (/obj/structure/filingcabinet/chestdrawer{desc = "A large drawer filled with autopsy reports."; name = "Autopsy Reports"},/obj/machinery/firealarm/angled,/turf/simulated/floor/tiled/techfloor,/area/medical/morgue) +"as" = (/obj/machinery/door/firedoor/glass,/obj/structure/window/bay/reinforced,/obj/structure/cable/pink{icon_state = "4-8"},/obj/structure/low_wall/bay/reinforced/steel,/turf/simulated/floor,/area/maintenance/stellardelight/deck1/portfore) +"at" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/port) +"au" = (/obj/machinery/atmospherics/pipe/simple/hidden/universal,/turf/simulated/floor/tiled/dark,/area/security/tactical) +"av" = (/obj/structure/table/standard,/obj/machinery/cell_charger,/obj/machinery/power/apc/angled{dir = 8},/obj/structure/cable/green{color = "#42038a"; icon_state = "0-4"},/obj/item/weapon/storage/box/backup_kit,/turf/simulated/floor/tiled/steel_dirty,/area/assembly/robotics) +"aw" = (/obj/structure/stairs/spawner/north,/obj/structure/railing/grey{dir = 8},/turf/simulated/floor,/area/maintenance/stellardelight/deck1/starboardaft) +"ax" = (/obj/effect/floor_decal/steeldecal/steel_decals10{dir = 6},/obj/effect/floor_decal/steeldecal/steel_decals10{dir = 5},/obj/machinery/shower{dir = 1},/obj/machinery/light/small{dir = 8},/turf/simulated/floor/tiled/white,/area/stellardelight/deck1/shower) +"ay" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/table/standard,/obj/item/device/multitool/station_buffered{pixel_y = 2},/turf/simulated/floor/tiled/milspec,/area/stellardelight/deck1/exploequipment) +"az" = (/obj/structure/cable/green{color = "#42038a"; icon_state = "1-2"},/obj/structure/cable/green{color = "#42038a"; icon_state = "2-8"},/turf/simulated/floor/tiled/eris,/area/rnd/xenobiology/xenoflora) +"aA" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/light/small{dir = 4},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor,/area/maintenance/stellardelight/deck1/exploration) +"aB" = (/obj/structure/table/rack{dir = 8; layer = 2.6},/obj/item/weapon/tank/jetpack/carbondioxide,/obj/item/weapon/tank/jetpack/carbondioxide,/obj/item/weapon/tank/jetpack/carbondioxide,/obj/item/weapon/tank/jetpack/carbondioxide,/obj/effect/floor_decal/milspec/color/red,/obj/item/device/personal_shield_generator/security/loaded,/turf/simulated/floor/tiled/dark,/area/security/tactical) +"aC" = (/obj/structure/cable/green{color = "#42038a"; icon_state = "1-8"},/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/turf/simulated/floor/tiled/milspec,/area/stellardelight/deck1/explobriefing) +"aD" = (/turf/simulated/wall/bay/purple,/area/assembly/robotics) +"aE" = (/turf/simulated/floor/tiled/techfloor,/area/stellardelight/deck1/starboard) +"aF" = (/obj/structure/closet/bombcloset/double,/obj/machinery/recharger/wallcharger{pixel_x = 4; pixel_y = 29},/obj/machinery/recharger/wallcharger{pixel_x = 4; pixel_y = 38},/obj/machinery/recharger/wallcharger{pixel_x = 4; pixel_y = 20},/obj/effect/floor_decal/milspec/color/black,/turf/simulated/floor/tiled/dark,/area/security/armoury) +"aG" = (/obj/structure/bookcase{name = "bookcase (Religious)"},/obj/item/weapon/book/bundle/custom_library/religious/zoroastrianism,/obj/item/weapon/book/custom_library/religious/feastofkubera,/obj/item/weapon/book/custom_library/religious/storyoflordganesha,/obj/item/weapon/book/custom_library/religious/sungoddessofkorea,/obj/item/weapon/book/custom_library/religious/wayofbleedingswan,/turf/simulated/floor/wood,/area/library) +"aH" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/blast/angled{dir = 4; id = "GatewayShutterE"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/steel_ridged,/area/gateway) +"aI" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/obj/structure/cable/green{color = "#42038a"; icon_state = "4-8"},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 6},/turf/simulated/floor/tiled/eris/steel/cargo,/area/stellardelight/deck1/shuttlebay) +"aJ" = (/obj/structure/cable/green{color = "#42038a"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/camera/network/command{dir = 4},/turf/simulated/floor/tiled/milspec,/area/stellardelight/deck1/exploequipment) +"aK" = (/obj/structure/cable/pink{icon_state = "1-2"},/turf/simulated/floor/airless,/area/stellardelight/deck1/exterior) +"aL" = (/obj/machinery/camera/network/research/xenobio{dir = 5; network = list("Xenobiology")},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/reinforced,/area/rnd/xenobiology) +"aM" = (/turf/simulated/wall/bay/purple,/area/rnd/workshop) +"aN" = (/obj/structure/sign/directions/evac{pixel_x = -32},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/port) +"aO" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/alarm/angled{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor,/area/maintenance/stellardelight/deck1/portaft) +"aP" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable/white{icon_state = "1-2"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor,/area/maintenance/stellardelight/deck1/portcent) +"aQ" = (/obj/structure/bed/chair/comfy/brown{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/turf/simulated/floor/carpet/bcarpet,/area/stellardelight/deck1/starboard) +"aR" = (/obj/structure/table/glass,/obj/item/weapon/paper_bin,/obj/item/weapon/pen,/obj/item/weapon/clipboard,/obj/item/weapon/folder/white,/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/exam_room) +"aS" = (/turf/simulated/wall/bay/r_wall/steel,/area/security/security_equiptment_storage) +"aT" = (/obj/item/weapon/storage/box/nifsofts_mining,/obj/structure/table/reinforced,/obj/item/device/personal_shield_generator/belt/mining/loaded,/turf/simulated/floor/tiled/eris/steel/cargo,/area/stellardelight/deck1/miningequipment) +"aU" = (/obj/structure/cable/green{icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/turf/simulated/floor/tiled/dark,/area/chapel/main) +"aV" = (/obj/machinery/alarm/angled{dir = 4},/obj/structure/cable/pink{icon_state = "4-8"},/turf/simulated/floor,/area/maintenance/stellardelight/deck1/portcent) +"aW" = (/obj/machinery/door/firedoor/glass,/obj/structure/window/bay/reinforced,/obj/structure/cable/pink{icon_state = "4-8"},/obj/structure/low_wall/bay/reinforced/steel,/turf/simulated/floor,/area/maintenance/stellardelight/deck1/starboardfore) +"aX" = (/obj/machinery/light{dir = 4},/obj/effect/floor_decal/milspec/color/emerald/corner,/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/starboard) +"aY" = (/obj/structure/table/steel_reinforced,/obj/machinery/door/firedoor/glass,/obj/machinery/door/blast/angled/open{dir = 2; id = "securitylockdown"},/obj/machinery/door/window/brigdoor/eastright{dir = 2},/obj/effect/floor_decal/milspec/color/red,/turf/simulated/floor/tiled/dark,/area/security/lobby) +"aZ" = (/obj/machinery/embedded_controller/radio/airlock/access_controller{dir = 8; id_tag = "xenobio_airlock_control"; name = "Xenobiology Access Console"; pixel_x = 24; tag_exterior_door = "xenobio_airlock_exterior"; tag_interior_door = "xenobio_airlock_interior"},/turf/simulated/floor/tiled/techfloor,/area/rnd/xenobiology) +"ba" = (/obj/item/modular_computer/console/preset/civilian,/turf/simulated/floor/tiled/eris/steel/gray_platform,/area/stellardelight/deck1/exploshuttle) +"bb" = (/obj/machinery/light{dir = 4},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/obj/machinery/botany/editor,/turf/simulated/floor/tiled/eris,/area/rnd/xenobiology/xenoflora) +"bc" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/turf/simulated/floor/tiled/steel_grid,/area/rnd/xenobiology) +"bd" = (/obj/structure/cable/green{icon_state = "2-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals3{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals3{dir = 9},/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/starboard) +"be" = (/obj/machinery/door/firedoor/glass,/obj/structure/cable/green{color = "#42038a"; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/access_button{command = "cycle_interior"; dir = 8; frequency = 1379; master_tag = "xenobio_airlock_control"; name = "Xenobiology Access Button"; pixel_y = -32; req_access = null; req_one_access = list(47,55)},/obj/machinery/door/airlock/angled_bay/standard/color{autoclose = 0; dir = 4; door_color = "#ffffff"; fill_color = "#ead9ff"; frequency = 1379; id_tag = "xenobio_airlock_interior"; locked = 1; name = "Xenobiology Lab"; req_access = list(47,55); stripe_color = "#5a19a8"},/turf/simulated/floor/tiled/steel_ridged,/area/rnd/xenobiology) +"bf" = (/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/obj/structure/cable/white{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/machinery/light/floortube{dir = 4; pixel_x = 6},/turf/simulated/floor/tiled/eris/white/cargo,/area/medical/virology) +"bg" = (/obj/structure/cable/green{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/disposal/wall/cleaner{dir = 8},/obj/structure/disposalpipe/trunk{dir = 8},/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/port) +"bh" = (/obj/structure/cable/green{icon_state = "4-8"},/obj/machinery/alarm/angled,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/aft) +"bi" = (/turf/simulated/wall/bay/r_wall/brown,/area/stellardelight/deck1/dorms/dorm1) +"bj" = (/turf/simulated/wall/bay/r_wall/steel,/area/rnd/xenobiology/xenoflora) +"bk" = (/turf/simulated/wall/bay/r_wall/steel,/area/prison/cell_block/C) +"bl" = (/turf/simulated/wall/bay/steel,/area/maintenance/stellardelight/substation/civilian) +"bm" = (/obj/structure/bed/chair/office/dark,/obj/effect/landmark/start/warden,/turf/simulated/floor/tiled/dark,/area/security/warden) +"bn" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/starboard) +"bo" = (/obj/structure/shuttle/engine/propulsion,/turf/simulated/floor/reinforced,/area/stellardelight/deck1/exploshuttle) +"bp" = (/obj/effect/floor_decal/milspec/color/red/half{dir = 8},/obj/item/weapon/storage/box/evidence,/obj/item/weapon/storage/box/evidence,/obj/structure/closet/walllocker_double/security/west{name = "evidence storage cabinet"},/turf/simulated/floor/tiled/dark,/area/security/security_cell_hallway) +"bq" = (/obj/structure/table/bench/steel,/obj/effect/landmark/start/security,/turf/simulated/floor/tiled/dark,/area/security/security_lockerroom) +"br" = (/obj/machinery/door/firedoor/glass,/obj/structure/cable/green{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/door/airlock/angled_bay/standard/color{door_color = "#9c9c9c"; fill_color = "#5c5c5c"; id_tag = "dorm1"; name = "Room 1"; stripe_color = "#89bd66"},/turf/simulated/floor/tiled/steel_ridged,/area/stellardelight/deck1/dorms/dorm1) +"bs" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/green{icon_state = "1-2"},/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled/steel_ridged,/area/stellardelight/deck1/port) +"bt" = (/obj/structure/table/woodentable,/obj/machinery/light/small,/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/turf/simulated/floor/carpet/purcarpet,/area/stellardelight/deck1/dorms/dorm3) +"bu" = (/obj/structure/cable/white{icon_state = "1-2"},/obj/structure/sign/painting/public{pixel_x = -30},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/aft) +"bv" = (/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/monotile,/area/janitor) +"bw" = (/obj/structure/cable/green{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/effect/catwalk_plated/dark,/obj/effect/landmark/vines,/turf/simulated/floor,/area/stellardelight/deck1/port) +"bx" = (/obj/structure/cable/pink{icon_state = "4-8"},/turf/simulated/floor,/area/maintenance/stellardelight/deck1/starboardfore) +"by" = (/obj/machinery/power/pointdefense{id_tag = "sd_pd"},/obj/effect/floor_decal/industrial/warning/full,/obj/structure/cable/green{color = "#42038a"; icon_state = "0-4"},/obj/structure/cable/green{color = "#42038a"; icon_state = "0-8"},/turf/simulated/floor/airless,/area/stellardelight/deck1/exterior) +"bz" = (/obj/machinery/power/apc/angled{dir = 8; name = "night shift APC"; nightshift_setting = 2},/obj/structure/cable/green{icon_state = "0-4"},/turf/simulated/floor,/area/maintenance/stellardelight/deck1/starboardcent) +"bA" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/turf/simulated/floor/wood,/area/library) +"bB" = (/obj/structure/cable/green{color = "#42038a"; icon_state = "1-8"},/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/turf/simulated/floor,/area/maintenance/stellardelight/deck1/starboardaft) +"bC" = (/obj/effect/floor_decal/milspec/color/red/half{dir = 4},/obj/structure/closet/walllocker_double/emergency_engi/east,/turf/simulated/floor/tiled/dark,/area/security/security_cell_hallway) +"bD" = (/obj/structure/lattice,/turf/space,/area/space) +"bE" = (/obj/structure/cable/pink{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 6},/turf/simulated/floor/tiled/white,/area/security/detectives_office) +"bF" = (/obj/structure/bed/chair/sofa/pew/right{dir = 1},/obj/structure/sign/painting/chapel_secure{pixel_y = -32},/obj/effect/landmark/start/visitor,/turf/simulated/floor/tiled/dark,/area/chapel/main) +"bG" = (/obj/structure/cable/white{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 6},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 1},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/stellardelight/deck1/lowermed) +"bH" = (/obj/machinery/light/small,/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor,/area/maintenance/stellardelight/deck1/portcent) +"bI" = (/obj/effect/floor_decal/borderfloorblack/full,/obj/effect/floor_decal/industrial/hatch/yellow,/obj/machinery/flasher/portable,/obj/machinery/camera/network/security{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/cyan{dir = 4},/turf/simulated/floor/tiled/dark,/area/security/armoury) +"bJ" = (/obj/structure/table/steel,/obj/item/weapon/storage/box/lights/mixed,/obj/machinery/alarm/angled{dir = 4},/turf/simulated/floor/tiled/monotile,/area/janitor) +"bK" = (/obj/structure/disposalpipe/trunk{dir = 8},/obj/machinery/disposal/wall{dir = 4; pixel_x = -24; plane = -34},/turf/simulated/floor/tiled/dark,/area/rnd/xenobiology) +"bL" = (/obj/structure/disposalpipe/segment,/turf/simulated/floor/reinforced,/area/rnd/xenobiology) +"bM" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/turf/simulated/floor,/area/maintenance/stellardelight/deck1/starboardfore) +"bN" = (/obj/structure/cable/green{color = "#42038a"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/turf/simulated/floor/tiled/eris,/area/stellardelight/deck1/researchhall) +"bO" = (/obj/structure/cable/green{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/effect/mouse_hole_spawner{dir = 4},/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/port) +"bP" = (/obj/machinery/light{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/turf/simulated/floor/tiled/eris,/area/stellardelight/deck1/researchequip) +"bQ" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/light/small{dir = 4},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor,/area/maintenance/stellardelight/deck1/portaft) +"bR" = (/obj/structure/cable/green{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/camera/network/halls,/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/aft) +"bS" = (/obj/effect/floor_decal/industrial/warning{dir = 1},/obj/structure/cable/green{color = "#42038a"; icon_state = "1-4"},/turf/simulated/floor/reinforced,/area/stellardelight/deck1/shuttlebay) +"bT" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 6},/turf/simulated/floor/tiled/techfloor,/area/medical/morgue) +"bU" = (/obj/machinery/door/firedoor/glass,/obj/structure/window/bay/reinforced,/obj/structure/curtain/black{anchored = 1},/obj/structure/low_wall/bay/reinforced/steel,/turf/simulated/floor,/area/stellardelight/deck1/dorms/dorm7) +"bV" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/turf/simulated/floor,/area/maintenance/stellardelight/deck1/portaft) +"bW" = (/obj/machinery/light{dir = 1},/turf/simulated/floor/bluegrid,/area/assembly/robotics) +"bX" = (/obj/structure/cable/pink{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/effect/floor_decal/milspec/color/red/corner,/turf/simulated/floor/tiled/dark,/area/security/security_cell_hallway) +"bY" = (/obj/effect/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled/eris/steel/gray_platform,/area/stellardelight/deck1/exploshuttle) +"bZ" = (/turf/simulated/floor,/area/maintenance/stellardelight/substation/civilian) +"ca" = (/obj/item/weapon/storage/briefcase/inflatable,/obj/item/weapon/storage/briefcase/inflatable,/obj/item/weapon/storage/briefcase/inflatable,/obj/structure/closet/walllocker_double/engineering/north,/turf/simulated/floor/tiled/eris/white/gray_platform,/area/gateway) +"cb" = (/obj/structure/cable/green{color = "#42038a"; icon_state = "1-8"},/obj/structure/cable/green{color = "#42038a"; icon_state = "4-8"},/turf/simulated/floor/airless,/area/stellardelight/deck1/exterior) +"cc" = (/obj/fiftyspawner/glass,/obj/fiftyspawner/glass,/obj/fiftyspawner/glass,/obj/fiftyspawner/rods,/obj/fiftyspawner/rglass,/obj/fiftyspawner/steel,/obj/fiftyspawner/steel,/obj/fiftyspawner/steel,/obj/item/stack/material/plasteel{amount = 10},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/structure/closet/walllocker_double/engineering/north,/turf/simulated/floor/tiled/eris/white/gray_platform,/area/gateway) +"cd" = (/obj/machinery/camera/network/halls{dir = 1},/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/port) +"ce" = (/obj/machinery/computer/ship/navigation/telescreen{pixel_x = 32},/turf/simulated/floor/tiled/milspec,/area/stellardelight/deck1/exploration) +"cf" = (/obj/structure/table/steel,/obj/item/weapon/surgical/scalpel,/obj/item/weapon/autopsy_scanner,/obj/item/weapon/surgical/cautery,/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/obj/machinery/camera/network/medbay{dir = 8},/turf/simulated/floor/tiled/techfloor,/area/medical/morgue) +"cg" = (/obj/machinery/photocopier,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/alarm/angled{dir = 4},/turf/simulated/floor/tiled/dark,/area/security/warden) +"ch" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/turf/simulated/floor/lino,/area/chapel/office) +"ci" = (/obj/structure/cable/white{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor/tiled/dark,/area/stellardelight/deck1/resleeving) +"cj" = (/obj/machinery/button/remote/blast_door{dir = 1; id = "xenobiopen3"; name = "Pen 3 Containment"; pixel_x = -30; pixel_y = 8; req_access = list(55)},/obj/machinery/button/remote/blast_door{id = "xenobiopen5"; name = "Pen 5 Containment"; pixel_x = -31; pixel_y = -8; req_access = list(55)},/obj/machinery/button/remote/blast_door{dir = 8; id = "xenobiodiv3"; name = "Divider 3 Blast Doors"; pixel_x = -39; req_access = list(55)},/obj/machinery/light/floortube{dir = 8; pixel_x = -6},/turf/simulated/floor/tiled/dark,/area/rnd/xenobiology) +"ck" = (/obj/structure/cable/yellow{icon_state = "4-8"},/obj/structure/sign/directions/evac{dir = 8; pixel_y = 32},/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/aft) +"cl" = (/obj/structure/table/woodentable,/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/item/weapon/material/ashtray/glass,/turf/simulated/floor/carpet/bcarpet,/area/stellardelight/deck1/starboard) +"cm" = (/obj/structure/table/reinforced,/obj/item/weapon/forensics/sample_kit,/obj/effect/floor_decal/milspec/color/red/half{dir = 10},/turf/simulated/floor/tiled/white,/area/security/detectives_office) +"cn" = (/obj/machinery/light/floortube{dir = 8; pixel_x = -6},/obj/machinery/light/floortube{dir = 4; pixel_x = 6},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/eris/steel/cargo,/area/stellardelight/deck1/shuttlebay) +"co" = (/obj/machinery/vending/fitness,/turf/simulated/floor/tiled/steel_ridged,/area/stellardelight/deck1/starboard) +"cp" = (/obj/machinery/shower{dir = 1},/obj/structure/curtain/open/shower/medical,/obj/structure/window/reinforced{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/turf/simulated/floor/tiled/dark,/area/stellardelight/deck1/resleeving) +"cq" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/button/remote/blast_door{dir = 4; id = "researchwindowlockdown"; name = "Window Lockdown"; pixel_x = -24},/obj/structure/cable/green{color = "#42038a"; icon_state = "1-2"},/turf/simulated/floor/tiled/eris,/area/stellardelight/deck1/researchhall) +"cr" = (/obj/structure/cable/pink{icon_state = "1-4"},/obj/structure/table/rack,/obj/random/maintenance,/obj/random/maintenance/clean,/obj/random/maintenance/security,/obj/random/maintenance/research,/turf/simulated/floor,/area/maintenance/stellardelight/deck1/starboardfore) +"cs" = (/obj/structure/table/rack,/obj/item/clothing/shoes/magboots,/obj/item/clothing/shoes/magboots,/obj/item/clothing/suit/space/void/medical/emt,/obj/item/clothing/suit/space/void/medical/emt,/obj/item/clothing/mask/breath,/obj/item/clothing/mask/breath,/obj/item/clothing/head/helmet/space/void/medical/emt,/obj/item/clothing/head/helmet/space/void/medical/emt,/obj/structure/cable/white{icon_state = "0-2"},/obj/machinery/power/apc/angled{dir = 1; name = "night shift APC"; nightshift_setting = 2},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/stellardelight/deck1/paramedic) +"ct" = (/obj/structure/closet/secure_closet/pilot,/obj/machinery/firealarm/angled,/turf/simulated/floor/tiled/eris/steel/panels,/area/stellardelight/deck1/pilot) +"cu" = (/turf/simulated/floor/tiled/steel_ridged,/area/stellardelight/deck1/shower) +"cv" = (/obj/structure/cable/green{color = "#42038a"; icon_state = "1-2"},/obj/effect/landmark/start/scientist,/turf/simulated/floor/tiled/dark,/area/rnd/research) +"cw" = (/obj/structure/reagent_dispensers/acid{pixel_x = 32},/turf/simulated/floor/tiled/steel_grid,/area/rnd/research) +"cx" = (/obj/item/weapon/storage/toolbox/mechanical{pixel_x = -2; pixel_y = -1},/obj/item/device/multitool,/obj/item/clothing/head/welding,/obj/item/weapon/storage/belt/utility,/obj/item/device/radio/off,/obj/item/device/radio/off,/obj/item/device/radio/off,/obj/item/stack/cable_coil{pixel_x = 3; pixel_y = -7},/obj/item/weapon/storage/toolbox/electrical{pixel_x = 1; pixel_y = -1},/obj/item/device/assembly/signaler,/obj/item/device/assembly/signaler,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/closet/walllocker_double/engineering/north,/turf/simulated/floor/tiled/eris/white/gray_platform,/area/gateway) +"cy" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/firealarm/angled,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/turf/simulated/floor/tiled/dark,/area/security/security_cell_hallway) +"cz" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/structure/closet/walllocker_double/emergency_engi/north,/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/port) +"cA" = (/obj/structure/cable/yellow{icon_state = "4-8"},/obj/machinery/firealarm/angled,/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/aft) +"cB" = (/turf/simulated/floor,/area/maintenance/stellardelight/deck1/portfore) +"cC" = (/obj/structure/cable{icon_state = "1-4"},/obj/structure/cable{icon_state = "4-8"},/turf/simulated/floor,/area/maintenance/stellardelight/substation/atmospherics) +"cD" = (/obj/effect/floor_decal/industrial/warning{dir = 4},/turf/simulated/floor/tiled/steel_grid,/area/assembly/robotics) +"cE" = (/obj/structure/bed/chair{dir = 8},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/turf/simulated/floor/tiled/dark,/area/security/security_processing) +"cF" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor,/area/maintenance/stellardelight/deck1/portcent) +"cG" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/green{icon_state = "1-2"},/obj/machinery/light{dir = 4},/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/port) +"cH" = (/obj/effect/floor_decal/milspec/color/emerald/half{dir = 4},/obj/structure/closet/walllocker_double/emergency_engi/east,/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/starboard) +"cI" = (/obj/effect/floor_decal/steeldecal/steel_decals6{dir = 6},/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/aft) +"cJ" = (/obj/machinery/door/firedoor/glass,/obj/structure/cable/green{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/door/airlock/angled_bay/standard/color{door_color = "#9c9c9c"; fill_color = "#5c5c5c"; id_tag = "dorm2"; name = "Room 2"; stripe_color = "#89bd66"},/turf/simulated/floor/tiled/steel_ridged,/area/stellardelight/deck1/dorms/dorm2) +"cK" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/green{icon_state = "1-2"},/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/port) +"cL" = (/obj/structure/cable/white{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/structure/closet/walllocker_double/emergency_engi/west,/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/port) +"cM" = (/obj/structure/table/rack/shelf/steel,/obj/item/gunbox{pixel_y = 6},/obj/item/gunbox{pixel_y = -3},/obj/effect/floor_decal/milspec/color/black,/turf/simulated/floor/tiled/dark,/area/security/armoury) +"cN" = (/obj/structure/bed/chair{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/turf/simulated/floor/tiled/dark,/area/chapel/chapel_morgue) +"cO" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/port) +"cP" = (/obj/fiftyspawner/steel,/obj/fiftyspawner/steel,/obj/fiftyspawner/steel,/obj/fiftyspawner/steel,/obj/fiftyspawner/steel,/obj/fiftyspawner/glass,/obj/fiftyspawner/glass,/obj/fiftyspawner/glass,/obj/fiftyspawner/glass,/obj/item/stack/material/plasteel{amount = 10},/obj/effect/floor_decal/industrial/warning,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/structure/closet/walllocker_double/science/east{name = "material sheets"},/turf/simulated/floor/tiled/steel,/area/assembly/robotics) +"cQ" = (/obj/machinery/mineral/unloading_machine,/turf/simulated/floor/tiled/eris/steel/cargo,/area/stellardelight/deck1/oreprocessing) +"cR" = (/obj/effect/floor_decal/industrial/warning,/obj/item/device/defib_kit/jumper_kit,/obj/item/weapon/storage/box/gloves,/obj/item/weapon/storage/box/bodybags{pixel_x = -3; pixel_y = -2},/obj/item/weapon/book/manual/robotics_manual,/obj/item/weapon/book/manual/robotics_cyborgs,/obj/structure/closet/walllocker_double/science/east,/turf/simulated/floor/tiled/steel_dirty,/area/assembly/robotics) +"cS" = (/obj/machinery/hologram/holopad,/turf/simulated/floor/tiled/steel_grid,/area/assembly/robotics) +"cT" = (/obj/machinery/smartfridge/drying_rack,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/eris,/area/rnd/xenobiology/xenoflora) +"cU" = (/obj/structure/cable/green{icon_state = "1-2"},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/obj/effect/landmark/vines,/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/starboard) +"cV" = (/obj/structure/cable/green{color = "#42038a"; icon_state = "2-4"},/obj/structure/cable/green{color = "#42038a"; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/milspec,/area/stellardelight/deck1/exploration) +"cW" = (/obj/effect/floor_decal/chapel{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/turf/simulated/floor/tiled/dark,/area/chapel/main) +"cX" = (/obj/structure/bed/chair/office/light{dir = 8},/obj/machinery/light,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/turf/simulated/floor/tiled/techfloor,/area/stellardelight/deck1/researchserver) +"cY" = (/obj/machinery/door/firedoor/glass,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/door/airlock/angled_bay/standard/glass{door_color = "#8c1d11"; name = "Forensics Lab"; req_access = list(4); stripe_color = "#d27428"},/turf/simulated/floor/tiled/steel_ridged,/area/security/detectives_office) +"cZ" = (/obj/machinery/light{dir = 1},/obj/structure/cable/green{icon_state = "2-4"},/obj/machinery/vending/cigarette,/obj/machinery/atmospherics/unary/vent_pump/on,/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/starboard) +"da" = (/obj/structure/bed/chair/comfy/black,/obj/machinery/light/small{dir = 8},/turf/simulated/floor/carpet,/area/stellardelight/deck1/dorms/dorm4) +"db" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/eris/white/gray_platform,/area/gateway) +"dc" = (/obj/structure/table/woodentable,/obj/machinery/alarm/angled{dir = 4},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/turf/simulated/floor/carpet,/area/stellardelight/deck1/dorms/dorm4) +"dd" = (/obj/item/device/radio/intercom/department/medbay{dir = 8; pixel_x = -24},/obj/structure/closet/crate/bin{anchored = 1},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/exam_room) +"de" = (/obj/structure/cable/green{color = "#42038a"; icon_state = "1-2"},/obj/structure/cable/green{color = "#42038a"; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/turf/simulated/floor/tiled/eris,/area/stellardelight/deck1/researchequip) +"df" = (/obj/structure/cable/green{icon_state = "4-8"},/obj/effect/landmark{name = "lightsout"},/obj/machinery/hologram/holopad,/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/fore) +"dg" = (/obj/machinery/button/remote/blast_door{dir = 1; id = "xenobiopen2"; name = "Pen 2 Containment"; pixel_x = 30; pixel_y = 8; req_access = list(55)},/obj/machinery/button/remote/blast_door{id = "xenobiopen4"; name = "Pen 4 Containment"; pixel_x = 29; pixel_y = -8; req_access = list(55)},/obj/machinery/button/remote/blast_door{dir = 4; id = "xenobiodiv2"; name = "Divider 2 Blast Doors"; pixel_x = 38; pixel_y = -1; req_access = list(55)},/obj/machinery/light/floortube{dir = 4; pixel_x = 6},/turf/simulated/floor/tiled/dark,/area/rnd/xenobiology) +"dh" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/dark,/area/prison/cell_block/C) +"di" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/structure/cable/pink{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden{dir = 1},/turf/simulated/floor/tiled/dark,/area/security/tactical) +"dj" = (/obj/structure/table/woodentable,/obj/machinery/light/small{dir = 4},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/turf/simulated/floor/carpet/bcarpet,/area/stellardelight/deck1/starboard) +"dk" = (/obj/effect/floor_decal/industrial/warning/full,/obj/structure/cable/green{color = "#42038a"; icon_state = "0-8"},/obj/structure/cable/green{color = "#42038a"; icon_state = "0-4"},/obj/machinery/power/pointdefense{id_tag = "sd_pd"},/turf/simulated/floor/airless,/area/stellardelight/deck1/exterior) +"dl" = (/turf/simulated/wall/bay/brown,/area/stellardelight/deck1/mining) +"dm" = (/obj/structure/reagent_dispensers/peppertank{pixel_x = 32},/obj/effect/floor_decal/milspec/color/red/half,/turf/simulated/floor/tiled/dark,/area/security/security_lockerroom) +"dn" = (/obj/structure/cable/green{icon_state = "4-8"},/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/aft) +"do" = (/obj/machinery/conveyor{dir = 4; id = "miningops"},/obj/machinery/mineral/input,/turf/simulated/floor/tiled/eris/steel/cargo,/area/stellardelight/deck1/oreprocessing) +"dp" = (/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/turf/simulated/floor/tiled/steel_grid,/area/rnd/research) +"dq" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/button/remote/airlock{desc = "A remote control switch for the medbay foyer."; dir = 4; id = "recoveryexit"; name = "Door Control"; pixel_x = -27; pixel_y = 25},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 6},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 1},/turf/simulated/floor/tiled/white,/area/medical/patient_wing) +"dr" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 10},/obj/effect/floor_decal/steeldecal/steel_decals4,/turf/simulated/floor/tiled/eris/white/bluecorner,/area/stellardelight/deck1/paramedic) +"ds" = (/obj/fiftyspawner/steel,/obj/fiftyspawner/steel,/obj/structure/closet/walllocker_double/science/north{name = "material sheets"},/turf/simulated/floor/tiled/techfloor,/area/rnd/workshop) +"dt" = (/obj/machinery/portable_atmospherics/canister/oxygen,/obj/machinery/firealarm/angled{dir = 4},/obj/effect/floor_decal/milspec/color/red/half,/turf/simulated/floor/tiled/dark,/area/security/tactical) +"du" = (/obj/structure/cable/green{color = "#42038a"; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/turf/simulated/floor/tiled/techfloor,/area/stellardelight/deck1/researchserver) +"dv" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/obj/structure/closet/walllocker_double/generic_civ/west,/turf/simulated/floor/carpet,/area/stellardelight/deck1/dorms/dorm8) +"dw" = (/obj/structure/railing/grey{dir = 8},/obj/structure/window/reinforced{dir = 1},/obj/structure/cable/white{icon_state = "0-4"},/obj/structure/cable/white{icon_state = "16-0"},/obj/structure/stairs/spawner/north,/turf/simulated/floor,/area/stellardelight/deck1/lowermed) +"dx" = (/obj/structure/bookcase{name = "bookcase (Adult)"},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/obj/structure/sign/painting/library_secure{pixel_x = 30},/turf/simulated/floor/wood,/area/library) +"dy" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/cable{icon_state = "1-8"},/turf/simulated/floor,/area/maintenance/stellardelight/substation/medical) +"dz" = (/obj/item/weapon/weldingtool,/obj/item/clothing/glasses/welding,/obj/item/weapon/storage/box/lights/mixed,/obj/item/device/multitool,/obj/structure/sink/kitchen{dir = 4; pixel_x = 11},/obj/machinery/firealarm/angled{dir = 4},/obj/structure/closet/walllocker_double/engineering/north{name = "xenobiology repair supplies"},/turf/simulated/floor/tiled/steel_grid,/area/rnd/xenobiology) +"dA" = (/obj/effect/floor_decal/industrial/warning{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/turf/simulated/floor/reinforced,/area/stellardelight/deck1/shuttlebay) +"dB" = (/obj/structure/sign/painting/library_secure{pixel_x = 30},/obj/effect/floor_decal/milspec/color/red/half{dir = 5},/turf/simulated/floor/tiled/dark,/area/security/security_cell_hallway) +"dC" = (/obj/item/weapon/shovel,/obj/item/weapon/shovel,/obj/item/weapon/shovel,/obj/item/weapon/shovel,/obj/item/weapon/tool/wrench,/obj/item/weapon/tool/wrench,/obj/item/weapon/tool/wrench,/obj/item/weapon/tool/wrench,/obj/item/weapon/tool/crowbar,/obj/item/weapon/tool/crowbar,/obj/item/weapon/tool/crowbar,/obj/item/weapon/tool/crowbar,/obj/item/weapon/pickaxe,/obj/item/weapon/pickaxe,/obj/item/weapon/pickaxe,/obj/item/weapon/pickaxe,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/structure/closet/walllocker_double/cargo/west{name = "mining tools"},/turf/simulated/floor/tiled/eris/steel/cargo,/area/stellardelight/deck1/miningequipment) +"dD" = (/obj/structure/table/rack/shelf/steel,/obj/machinery/atmospherics/pipe/simple/hidden/purple,/obj/effect/floor_decal/milspec/color/black,/obj/item/ammo_magazine/ammo_box/b12g/pellet{pixel_x = 3; pixel_y = -3},/obj/item/ammo_magazine/ammo_box/b12g/pellet{pixel_x = -1; pixel_y = 2},/obj/item/ammo_magazine/ammo_box/b12g/pellet{pixel_x = -5; pixel_y = 7},/turf/simulated/floor/tiled/dark,/area/security/armoury) +"dE" = (/obj/item/device/suit_cooling_unit,/obj/item/device/suit_cooling_unit,/obj/item/device/suit_cooling_unit,/obj/item/device/suit_cooling_unit,/obj/structure/closet/walllocker_double/cargo/west{name = "suit cooling units"},/turf/simulated/floor/tiled/eris/steel/cargo,/area/stellardelight/deck1/miningequipment) +"dF" = (/obj/machinery/computer/security/xenobio,/obj/machinery/alarm/angled,/turf/simulated/floor/tiled/steel_grid,/area/rnd/xenobiology) +"dG" = (/obj/structure/cable/green{icon_state = "1-8"},/obj/structure/cable/green{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/starboard) +"dH" = (/obj/structure/cable/white{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/stellardelight/deck1/resleeving) +"dI" = (/obj/effect/floor_decal/industrial/warning{dir = 1},/turf/simulated/floor/reinforced,/area/stellardelight/deck1/shuttlebay) +"dJ" = (/obj/structure/cable/pink{icon_state = "1-2"},/obj/effect/floor_decal/milspec/color/black,/turf/simulated/floor/tiled/dark,/area/security/armoury) +"dK" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/angled_bay/double/glass{dir = 8; name = "Library"; stripe_color = "#3b3b3b"},/turf/simulated/floor/tiled/steel_ridged,/area/library) +"dL" = (/obj/effect/landmark{name = "lightsout"},/turf/simulated/floor/tiled/eris/steel/cargo,/area/stellardelight/deck1/miningequipment) +"dM" = (/obj/item/weapon/storage/box/syringes,/obj/item/weapon/storage/box/beakers,/obj/item/weapon/storage/box/gloves,/obj/item/weapon/reagent_containers/glass/bucket,/obj/item/weapon/reagent_containers/glass/bucket,/obj/item/robot_parts/l_arm,/obj/item/device/analyzer/plant_analyzer,/obj/item/device/analyzer/plant_analyzer,/obj/item/weapon/material/knife/machete/hatchet,/obj/item/weapon/material/knife/machete/hatchet,/obj/item/weapon/material/minihoe,/obj/item/weapon/material/minihoe,/obj/item/inflatable/door,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/item/weapon/storage/box/botanydisk,/obj/item/weapon/storage/box/botanydisk,/obj/structure/closet/walllocker_double/science/west{name = "xenoflora supplies"},/turf/simulated/floor/tiled/eris,/area/rnd/xenobiology/xenoflora) +"dN" = (/obj/structure/closet/secure_closet/hydroponics/sci{req_access = list(77)},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/obj/machinery/camera/network/research{dir = 8},/turf/simulated/floor/tiled/eris,/area/stellardelight/deck1/researchhall) +"dO" = (/obj/machinery/mineral/input,/obj/effect/floor_decal/industrial/loading{dir = 4},/obj/machinery/light{dir = 1},/turf/simulated/floor/tiled/eris/steel/cargo,/area/stellardelight/deck1/oreprocessing) +"dP" = (/obj/structure/cable/white{icon_state = "1-4"},/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/obj/effect/mouse_hole_spawner{dir = 8},/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/aft) +"dQ" = (/turf/simulated/floor/tiled/eris/steel/cargo,/area/stellardelight/deck1/oreprocessing) +"dR" = (/obj/machinery/power/apc/angled{dir = 8},/obj/structure/cable/pink{icon_state = "0-4"},/obj/machinery/camera/network/security,/obj/machinery/computer/arcade,/obj/effect/floor_decal/milspec/color/orange/half{dir = 9},/turf/simulated/floor/tiled/dark,/area/prison/cell_block) +"dS" = (/obj/structure/table/rack,/obj/random/maintenance,/obj/random/maintenance/clean,/obj/random/maintenance/security,/obj/random/pouch,/turf/simulated/floor,/area/maintenance/stellardelight/deck1/portfore) +"dT" = (/obj/structure/cable/pink{icon_state = "2-8"},/obj/structure/table/bench/standard,/obj/effect/floor_decal/milspec/color/orange/half{dir = 1},/turf/simulated/floor/tiled/dark,/area/prison/cell_block) +"dU" = (/obj/structure/grille,/obj/structure/window/reinforced/full,/obj/machinery/door/firedoor/glass/talon,/obj/machinery/door/blast/regular/open{id = "talon_boat_cockpit"},/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 8},/turf/simulated/floor/plating,/area/stellardelight/deck1/miningshuttle) +"dV" = (/obj/structure/table/rack/shelf/steel,/obj/item/clothing/mask/gas{pixel_x = 3; pixel_y = 3},/obj/item/clothing/mask/gas,/obj/item/clothing/mask/gas{pixel_x = -3; pixel_y = -3},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/obj/item/device/radio/intercom{dir = 4; pixel_x = 24},/turf/simulated/floor/tiled/dark,/area/security/security_equiptment_storage) +"dW" = (/obj/machinery/door/firedoor/glass,/obj/structure/table/reinforced,/obj/machinery/door/blast/angled_shutter/open{dir = 4; id = "dontlooktmyrobotpenis"; name = "Privacy Shutters"},/obj/machinery/door/window/brigdoor/westright{dir = 4; name = "Robotics Desk"; req_access = list(7); req_one_access = list(47)},/turf/simulated/floor/tiled/monotile,/area/assembly/robotics) +"dX" = (/obj/structure/cable/green{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/structure/closet/walllocker_double/emergency_engi/north,/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/aft) +"dY" = (/obj/machinery/mineral/processing_unit,/turf/simulated/floor/tiled/eris/steel/cargo,/area/stellardelight/deck1/oreprocessing) +"dZ" = (/obj/structure/table/standard,/obj/item/weapon/disk/tech_disk,/obj/item/weapon/disk/tech_disk,/obj/item/weapon/disk/design_disk,/obj/item/weapon/disk/design_disk,/obj/item/weapon/reagent_containers/dropper{pixel_y = -4},/obj/item/clothing/glasses/omnihud/rnd,/obj/item/clothing/gloves/sterile/latex,/obj/machinery/alarm/angled{dir = 8},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/turf/simulated/floor/tiled/steel_grid,/area/rnd/research) +"ea" = (/obj/structure/cable/green{color = "#42038a"; icon_state = "2-4"},/turf/simulated/floor/airless,/area/stellardelight/deck1/exterior) +"eb" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/wood,/area/library) +"ec" = (/obj/structure/sign/deck1{pixel_x = -32},/obj/machinery/camera/network/medbay{dir = 4},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/stellardelight/deck1/lowermed) +"ed" = (/obj/structure/cable/pink{icon_state = "1-2"},/obj/effect/floor_decal/milspec/color/red/half{dir = 8},/turf/simulated/floor/tiled/dark,/area/security/security_lockerroom) +"ee" = (/obj/structure/dispenser{phorontanks = 0},/turf/simulated/floor/tiled/dark,/area/security/tactical) +"ef" = (/obj/structure/table/rack,/obj/item/device/suit_cooling_unit{pixel_y = -5},/obj/item/device/suit_cooling_unit{pixel_y = -5},/obj/machinery/alarm/angled,/turf/simulated/floor/tiled/eris/white/bluecorner,/area/stellardelight/deck1/paramedic) +"eg" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/obj/structure/closet/walllocker_double/generic_civ/east,/turf/simulated/floor/carpet,/area/stellardelight/deck1/dorms/dorm1) +"eh" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/window/brigdoor/southleft{id = "Cell B"; name = "Cell B"; req_access = list(2)},/obj/structure/cable/pink{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/steel_ridged,/area/prison/cell_block/B) +"ei" = (/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/starboard) +"ej" = (/obj/structure/cable/green{icon_state = "2-8"},/obj/structure/cable/green{icon_state = "1-2"},/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/obj/effect/floor_decal/steeldecal/steel_decals3{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals3{dir = 4},/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/fore) +"ek" = (/obj/structure/cable/green{icon_state = "4-8"},/turf/simulated/wall/bay/r_wall/steel,/area/maintenance/stellardelight/deck1/portaft) +"el" = (/obj/item/weapon/storage/box/monkeycubes,/obj/item/weapon/storage/box/monkeycubes,/obj/item/weapon/storage/box/monkeycubes,/obj/item/weapon/storage/box/monkeycubes,/obj/item/weapon/storage/box/monkeycubes,/obj/structure/closet/walllocker_double/east,/obj/structure/table/reinforced,/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/obj/item/weapon/storage/box/beakers,/obj/item/weapon/reagent_containers/spray/cleaner,/turf/simulated/floor/tiled/steel_grid,/area/rnd/xenobiology) +"em" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/table/standard,/obj/item/device/gps{pixel_x = 6; pixel_y = 5},/obj/item/device/gps{pixel_x = -6; pixel_y = 5},/obj/item/device/gps{pixel_x = -6; pixel_y = -4},/obj/item/device/gps{pixel_x = 6; pixel_y = -4},/turf/simulated/floor/tiled/milspec,/area/stellardelight/deck1/exploequipment) +"en" = (/obj/structure/cable/green{color = "#42038a"; icon_state = "1-8"},/obj/structure/cable/green{color = "#42038a"; icon_state = "1-4"},/obj/structure/cable/green{color = "#42038a"; icon_state = "4-8"},/turf/simulated/floor/airless,/area/stellardelight/deck1/exterior) +"eo" = (/obj/machinery/door/firedoor/glass,/obj/structure/window/bay/reinforced,/obj/structure/cable/green{color = "#42038a"; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/structure/low_wall/bay/reinforced/purple,/obj/structure/sign/xenobio{plane = -34},/turf/simulated/floor,/area/rnd/xenobiology) +"ep" = (/turf/simulated/floor/tiled/eris/white/bluecorner,/area/stellardelight/deck1/lowermed) +"eq" = (/turf/simulated/floor/carpet,/area/chapel/main) +"er" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/stellardelight/deck1/paramedic) +"es" = (/obj/structure/table/steel,/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/obj/machinery/alarm/angled{dir = 8},/obj/machinery/camera/network/research{dir = 1},/turf/simulated/floor/tiled/techfloor,/area/stellardelight/deck1/researchserver) +"et" = (/obj/effect/landmark{name = "droppod_landing"},/turf/space,/area/space) +"eu" = (/obj/structure/cable/green{color = "#42038a"; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/machinery/light_switch{dir = 8; pixel_x = 24; pixel_y = 32},/obj/effect/floor_decal/steeldecal/steel_decals4,/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 10},/turf/simulated/floor/tiled/milspec,/area/stellardelight/deck1/exploequipment) +"ev" = (/obj/machinery/computer/transhuman/resleeving{dir = 8},/obj/item/device/radio/intercom{dir = 4; pixel_x = 24},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/stellardelight/deck1/resleeving) +"ew" = (/obj/structure/cable/green{icon_state = "1-2"},/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/port) +"ex" = (/obj/machinery/power/terminal{dir = 4},/obj/structure/cable,/obj/machinery/alarm/angled{dir = 4},/turf/simulated/floor,/area/maintenance/stellardelight/substation/exploration) +"ey" = (/obj/structure/cable/green{color = "#42038a"; icon_state = "1-2"},/turf/simulated/wall/bay/purple,/area/stellardelight/deck1/exploration) +"ez" = (/obj/structure/table/reinforced,/obj/item/clothing/gloves/sterile/latex,/obj/item/weapon/reagent_containers/syringe,/turf/simulated/floor/tiled/white,/area/security/detectives_office) +"eA" = (/obj/effect/floor_decal/milspec/color/black,/obj/effect/floor_decal/steeldecal/steel_decals4,/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 10},/turf/simulated/floor/tiled/dark,/area/security/armoury) +"eB" = (/obj/machinery/power/apc/angled{dir = 8},/obj/structure/cable/pink{icon_state = "0-4"},/obj/structure/table/bench/standard,/obj/effect/floor_decal/milspec/color/orange/half{dir = 9},/turf/simulated/floor/tiled/dark,/area/prison/cell_block/B) +"eC" = (/obj/structure/cable/green{icon_state = "1-8"},/obj/structure/cable/green{icon_state = "1-4"},/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor,/area/maintenance/stellardelight/deck1/portcent) +"eD" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/effect/floor_decal/milspec/color/red/half{dir = 4},/turf/simulated/floor/tiled/dark,/area/security/tactical) +"eE" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/turf/simulated/floor,/area/maintenance/stellardelight/deck1/portcent) +"eF" = (/turf/simulated/floor,/area/security/tactical) +"eG" = (/obj/structure/cable/pink{icon_state = "1-2"},/obj/structure/cable/pink{icon_state = "2-4"},/obj/effect/floor_decal/steeldecal/steel_decals4,/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 10},/turf/simulated/floor/tiled/dark,/area/security/security_cell_hallway) +"eH" = (/obj/machinery/light,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/turf/simulated/floor/tiled/dark,/area/security/security_processing) +"eI" = (/obj/machinery/libraryscanner,/obj/machinery/camera/network/civilian{dir = 8},/turf/simulated/floor/carpet,/area/library) +"eJ" = (/obj/structure/table/rack/shelf,/obj/item/device/radio{pixel_x = -4; pixel_y = -4},/obj/item/device/radio{pixel_x = 4; pixel_y = -4},/obj/item/device/radio{pixel_x = -4; pixel_y = 5},/obj/item/device/radio{pixel_x = 4; pixel_y = 5},/turf/simulated/floor/tiled/milspec,/area/stellardelight/deck1/exploequipment) +"eK" = (/obj/structure/closet/walllocker_double/generic_civ/west,/turf/simulated/floor/carpet/purcarpet,/area/stellardelight/deck1/dorms/dorm7) +"eL" = (/obj/structure/mirror{pixel_y = 38},/obj/structure/sink{pixel_y = 20},/obj/structure/cable/green{icon_state = "2-8"},/turf/simulated/floor/tiled/white,/area/crew_quarters/toilet) +"eM" = (/obj/structure/cable/green{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/turf/simulated/floor,/area/maintenance/stellardelight/deck1/starboardcent) +"eN" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/starboard) +"eO" = (/obj/structure/bed/padded,/obj/item/weapon/bedsheet/medical,/obj/structure/curtain/open/privacy,/obj/structure/sign/painting/library_secure{pixel_y = 30},/turf/simulated/floor/tiled/white,/area/medical/patient_wing) +"eP" = (/obj/machinery/computer/timeclock/premade/east,/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/starboard) +"eQ" = (/obj/machinery/light{dir = 4},/obj/structure/cable/pink{icon_state = "1-8"},/turf/simulated/floor/tiled/dark,/area/security/security_cell_hallway) +"eR" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/dark,/area/rnd/xenobiology) +"eS" = (/obj/machinery/door/firedoor/glass,/obj/structure/window/bay/reinforced,/obj/machinery/door/blast/angled/open{dir = 4; id = "chapelofficelockdown"},/obj/structure/low_wall/bay/reinforced/black,/turf/simulated/floor,/area/chapel/office) +"eT" = (/obj/machinery/recharge_station,/turf/simulated/floor/tiled/dark,/area/security/tactical) +"eU" = (/obj/effect/floor_decal/industrial/outline,/turf/simulated/floor/tiled/eris/steel/brown_platform,/area/stellardelight/deck1/miningshuttle) +"eV" = (/turf/simulated/floor,/area/stellardelight/deck1/aft) +"eW" = (/obj/structure/cable/green{icon_state = "4-8"},/obj/structure/flora/pottedplant/stoutbush,/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/starboard) +"eX" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden{dir = 1},/obj/machinery/hologram/holopad,/turf/simulated/floor/tiled/dark,/area/security/tactical) +"eY" = (/obj/structure/reagent_dispensers/watertank,/obj/structure/extinguisher_cabinet{dir = 8; pixel_x = 30},/obj/machinery/alarm/angled,/obj/structure/cable/green{color = "#42038a"; icon_state = "4-8"},/turf/simulated/floor/tiled/steel_grid,/area/rnd/xenobiology) +"eZ" = (/obj/structure/closet/walllocker_double/generic_civ/east,/turf/simulated/floor/carpet/purcarpet,/area/stellardelight/deck1/dorms/dorm2) +"fa" = (/obj/machinery/door/firedoor/glass,/obj/structure/cable/pink{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/door/airlock/angled_bay/standard/color{dir = 4; door_color = "#8c1d11"; fill_color = "#854a44"; name = "Warden's Office"; req_access = list(3); stripe_color = "#d27428"},/turf/simulated/floor/tiled/steel_ridged,/area/security/warden) +"fb" = (/obj/structure/cable/green{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/turf/simulated/floor/tiled/white,/area/crew_quarters/toilet) +"fc" = (/obj/machinery/door/firedoor/glass,/obj/structure/cable/green{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/door/airlock/angled_bay/hatch{name = "maintenance access"; stripe_color = "#454545"},/turf/simulated/floor/tiled/steel_ridged,/area/chapel/main) +"fd" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/structure/cable/pink{icon_state = "4-8"},/turf/simulated/floor/tiled/white,/area/security/detectives_office) +"fe" = (/obj/item/device/camera,/obj/item/weapon/folder/yellow,/obj/item/weapon/pen,/obj/structure/cable/green{color = "#42038a"; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/closet/walllocker_double/generic_civ/east,/turf/simulated/floor/tiled/milspec,/area/stellardelight/deck1/explobriefing) +"ff" = (/obj/machinery/conveyor{dir = 8; id = "miningops"},/turf/simulated/floor/tiled/eris/steel/cargo,/area/stellardelight/deck1/oreprocessing) +"fg" = (/obj/machinery/door/firedoor/glass,/obj/structure/window/bay/reinforced,/obj/structure/low_wall/bay/reinforced/steel,/turf/simulated/floor,/area/rnd/xenobiology) +"fh" = (/obj/structure/cable{icon_state = "0-4"},/obj/machinery/power/apc/angled{dir = 8; name = "night shift APC"; nightshift_setting = 2},/turf/simulated/floor/tiled/eris/white/gray_platform,/area/gateway) +"fi" = (/turf/simulated/floor/tiled/eris/steel/gray_platform,/area/stellardelight/deck1/exploshuttle) +"fj" = (/obj/structure/cable{icon_state = "2-8"},/turf/simulated/floor,/area/maintenance/stellardelight/substation/civilian) +"fk" = (/turf/simulated/floor/tiled/dark,/area/chapel/chapel_morgue) +"fl" = (/obj/effect/floor_decal/milspec/color/orange/half{dir = 10},/turf/simulated/floor/tiled/dark,/area/prison/cell_block/B) +"fm" = (/obj/machinery/smartfridge/secure/virology,/obj/machinery/light/floortube{dir = 4; pixel_x = 6},/obj/machinery/firealarm/angled,/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/virology) +"fn" = (/obj/structure/table/rack{dir = 8; layer = 2.6},/obj/machinery/firealarm/angled{dir = 8},/obj/item/clothing/shoes/magboots,/obj/item/clothing/shoes/magboots,/obj/item/clothing/mask/breath,/obj/item/clothing/mask/breath,/obj/item/clothing/suit/space/void/security,/obj/item/clothing/suit/space/void/security,/obj/item/clothing/head/helmet/space/void/security,/obj/item/clothing/head/helmet/space/void/security,/obj/effect/floor_decal/milspec/color/red,/turf/simulated/floor/tiled/dark,/area/security/tactical) +"fo" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/turf/simulated/floor/tiled/steel_grid,/area/assembly/robotics) +"fp" = (/obj/machinery/r_n_d/circuit_imprinter{dir = 1},/obj/item/weapon/reagent_containers/glass/beaker/sulphuric,/obj/machinery/light{dir = 4},/turf/simulated/floor/tiled/dark,/area/rnd/research) +"fq" = (/obj/structure/table/steel_reinforced,/obj/effect/floor_decal/milspec/color/black,/turf/simulated/floor/tiled/dark,/area/security/armoury) +"fr" = (/turf/simulated/wall/bay/r_wall/brown,/area/stellardelight/deck1/dorms/dorm3) +"fs" = (/obj/structure/cable/green{color = "#42038a"; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/alarm/angled,/turf/simulated/floor/tiled/steel_grid,/area/maintenance/stellardelight/deck1/starboardaft) +"ft" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden{dir = 1},/obj/effect/floor_decal/milspec/color/red/half{dir = 8},/turf/simulated/floor/tiled/dark,/area/security/tactical) +"fu" = (/obj/structure/bed/chair/sofa/corp/right,/turf/simulated/floor/carpet/purcarpet,/area/stellardelight/deck1/dorms/dorm3) +"fv" = (/obj/random/slimecore,/turf/simulated/floor/reinforced,/area/rnd/xenobiology) +"fw" = (/obj/machinery/door/firedoor/glass,/obj/structure/window/bay/reinforced,/obj/machinery/door/blast/angled/open{dir = 2; id = "brigwindowlockdown"},/obj/structure/low_wall/bay/reinforced/steel,/turf/simulated/floor,/area/prison/cell_block) +"fx" = (/obj/structure/cable/green{color = "#42038a"; icon_state = "1-2"},/obj/structure/cable/green{color = "#42038a"; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/turf/simulated/floor/tiled/eris,/area/stellardelight/deck1/researchequip) +"fy" = (/obj/item/weapon/clipboard,/obj/item/weapon/folder/red,/obj/item/weapon/paper_bin{pixel_x = -3; pixel_y = 7},/obj/item/weapon/stamp/ward,/obj/item/weapon/stamp/denied{pixel_x = 5},/obj/item/weapon/pen,/obj/structure/table/steel_reinforced,/obj/item/device/radio/intercom{pixel_y = -24},/turf/simulated/floor/tiled/dark,/area/security/warden) +"fz" = (/obj/structure/bed/chair/comfy/brown{dir = 8},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/carpet/bcarpet,/area/stellardelight/deck1/starboard) +"fB" = (/obj/structure/table/rack,/obj/random/maintenance,/obj/random/maintenance/security,/obj/random/maintenance/research,/obj/random/contraband,/obj/random/snack,/turf/simulated/floor,/area/maintenance/stellardelight/deck1/starboardfore) +"fD" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/computer/ship/navigation/telescreen{pixel_x = -64},/turf/simulated/floor/tiled/milspec,/area/stellardelight/deck1/exploration) +"fE" = (/obj/structure/cable/orange{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden{dir = 5},/turf/simulated/floor,/area/maintenance/stellardelight/deck1/exploration) +"fF" = (/obj/structure/cable/pink{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/camera/network/security{dir = 1},/turf/simulated/floor/tiled/dark,/area/security/security_cell_hallway) +"fG" = (/obj/structure/table/steel_reinforced,/obj/item/device/gps/security{pixel_y = 3},/obj/item/device/gps/security{pixel_x = -3},/obj/effect/floor_decal/milspec/color/red,/turf/simulated/floor/tiled/dark,/area/security/tactical) +"fH" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/hologram/holopad,/turf/simulated/floor/tiled/eris/white/bluecorner,/area/stellardelight/deck1/resleeving) +"fI" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/dark,/area/security/warden) +"fJ" = (/obj/machinery/door/firedoor/glass,/obj/structure/cable/green{color = "#42038a"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/door/airlock/angled_bay/standard/color{door_color = "#ffffff"; fill_color = "#ead9ff"; name = "Mech Bay"; req_access = list(29,47); stripe_color = "#5a19a8"},/turf/simulated/floor/tiled/steel_ridged,/area/assembly/robotics) +"fK" = (/obj/machinery/mineral/equipment_vendor,/turf/simulated/floor/tiled/eris/steel/cargo,/area/stellardelight/deck1/oreprocessing) +"fL" = (/obj/machinery/firealarm/angled,/turf/simulated/floor/tiled/eris/white/bluecorner,/area/stellardelight/deck1/resleeving) +"fM" = (/obj/structure/closet/l3closet/scientist,/obj/item/device/radio/intercom{dir = 8; pixel_x = -24},/obj/machinery/power/apc/angled{dir = 1},/obj/structure/cable/green{color = "#42038a"; icon_state = "0-2"},/obj/item/clothing/suit/bio_suit/scientist,/obj/item/clothing/head/bio_hood/scientist,/turf/simulated/floor/tiled/steel_grid,/area/rnd/xenobiology) +"fN" = (/obj/machinery/door/firedoor/glass/hidden/steel{dir = 2},/obj/structure/cable/green{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/newscaster{pixel_y = 28},/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/starboard) +"fO" = (/turf/simulated/wall/bay/r_wall{desc = "It has a steel stripe! A huge chunk of metal used to seperate rooms."; stripe_color = "#3d5e80"},/area/stellardelight/deck1/aft) +"fP" = (/obj/machinery/power/pointdefense{id_tag = "sd_pd"},/obj/effect/floor_decal/industrial/warning/full,/obj/structure/cable/pink{icon_state = "0-2"},/obj/structure/cable/pink{icon_state = "0-4"},/turf/simulated/floor/airless,/area/stellardelight/deck1/exterior) +"fQ" = (/obj/structure/cable/green{color = "#42038a"},/obj/structure/cable/green{color = "#42038a"; icon_state = "0-2"},/obj/machinery/power/smes/buildable{RCon_tag = "Substation - Exploration"; output_attempt = 0},/turf/simulated/floor,/area/maintenance/stellardelight/substation/exploration) +"fR" = (/obj/structure/cable/green{color = "#42038a"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/steel_grid,/area/assembly/robotics) +"fS" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals6{dir = 5},/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/aft) +"fT" = (/obj/structure/cable/pink{icon_state = "2-8"},/obj/structure/cable/pink{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 6},/turf/simulated/floor/tiled/dark,/area/security/security_cell_hallway) +"fU" = (/obj/structure/table/steel_reinforced,/obj/machinery/door/firedoor/glass,/obj/structure/window/reinforced,/obj/machinery/door/blast/angled/open{dir = 2; id = "securitylockdown"},/obj/effect/floor_decal/milspec/color/red,/obj/item/device/flashlight/lamp,/turf/simulated/floor/tiled/dark,/area/security/lobby) +"fV" = (/obj/machinery/light/small,/turf/simulated/floor/tiled/dark,/area/chapel/main) +"fW" = (/obj/structure/cable/green{icon_state = "1-2"},/turf/simulated/floor/tiled/dark,/area/chapel/main) +"fX" = (/obj/structure/table/woodentable,/obj/machinery/alarm/angled,/obj/machinery/librarypubliccomp,/turf/simulated/floor/wood,/area/library) +"fZ" = (/obj/machinery/camera/network/civilian{dir = 5},/turf/simulated/floor/tiled/dark,/area/chapel/chapel_morgue) +"ga" = (/obj/machinery/power/pointdefense{id_tag = "sd_pd"},/obj/effect/floor_decal/industrial/warning/full,/obj/structure/cable/orange,/turf/simulated/floor/airless,/area/stellardelight/deck1/exterior) +"gb" = (/obj/structure/cable/pink{icon_state = "1-2"},/turf/simulated/floor/tiled/dark,/area/security/security_equiptment_storage) +"gc" = (/obj/machinery/power/pointdefense{id_tag = "sd_pd"},/obj/effect/floor_decal/industrial/warning/full,/obj/structure/cable/pink{icon_state = "0-4"},/turf/simulated/floor/airless,/area/stellardelight/deck1/exterior) +"gd" = (/obj/structure/cable/green{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/angled_bay/double/glass{name = "glass airlock"},/turf/simulated/floor/tiled/steel_ridged,/area/stellardelight/deck1/starboard) +"ge" = (/obj/machinery/door/firedoor/glass,/obj/structure/window/bay/reinforced,/obj/structure/low_wall/bay/reinforced/steel,/turf/simulated/floor,/area/maintenance/stellardelight/deck1/starboardfore) +"gf" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/angled_bay/standard/color{door_color = "#9c9c9c"; fill_color = "#5c5c5c"; id_tag = "dorm5"; name = "Room 5"; stripe_color = "#89bd66"},/obj/structure/cable/green{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/steel_ridged,/area/stellardelight/deck1/dorms/dorm5) +"gg" = (/obj/effect/landmark/start/xenobio,/turf/simulated/floor/tiled/dark,/area/rnd/xenobiology) +"gh" = (/obj/structure/bed/chair/backed_red{dir = 4},/obj/machinery/light{dir = 8},/turf/simulated/floor/tiled/milspec,/area/stellardelight/deck1/exploration) +"gi" = (/obj/machinery/camera/network/civilian{dir = 8},/turf/simulated/floor/tiled/dark,/area/chapel/main) +"gj" = (/obj/structure/stairs/spawner/south,/obj/structure/window/reinforced{dir = 8},/turf/simulated/floor,/area/stellardelight/deck1/fore) +"gk" = (/obj/machinery/light/floortube{dir = 8; pixel_x = -6},/turf/simulated/floor/tiled/eris,/area/rnd/xenobiology/xenoflora) +"gl" = (/obj/machinery/camera/network/research/xenobio{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 6},/turf/simulated/floor/tiled/techfloor,/area/rnd/xenobiology) +"gm" = (/obj/machinery/light{dir = 1},/obj/structure/sign/painting/chapel_secure{pixel_y = 32},/obj/effect/landmark/start/chaplain,/turf/simulated/floor/carpet,/area/chapel/main) +"gn" = (/obj/structure/bed/chair/backed_red,/obj/machinery/light{dir = 1},/turf/simulated/floor/tiled/milspec,/area/stellardelight/deck1/aft) +"go" = (/obj/structure/cable/pink{icon_state = "1-2"},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 5},/turf/simulated/floor/tiled/dark,/area/security/security_cell_hallway) +"gp" = (/obj/structure/closet/crate,/obj/machinery/camera/network/mining{dir = 8},/turf/simulated/floor/tiled/eris/steel/cargo,/area/stellardelight/deck1/oreprocessing) +"gq" = (/obj/machinery/door/firedoor/glass/hidden/steel{dir = 2},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/effect/landmark{name = "lightsout"},/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/aft) +"gr" = (/obj/structure/cable/green{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/port) +"gt" = (/obj/structure/cable/green{color = "#42038a"; icon_state = "1-8"},/turf/simulated/floor,/area/maintenance/stellardelight/deck1/exploration) +"gu" = (/obj/structure/table/steel,/obj/machinery/recharger,/turf/simulated/floor/tiled/techfloor,/area/rnd/workshop) +"gw" = (/obj/structure/closet/crate,/obj/random/maintenance,/obj/random/maintenance/cargo,/obj/random/maintenance/clean,/obj/random/mre,/turf/simulated/floor,/area/maintenance/stellardelight/deck1/exploration) +"gx" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/eris/white/gray_platform,/area/gateway) +"gy" = (/obj/effect/floor_decal/steeldecal/steel_decals6{dir = 6},/turf/simulated/floor/tiled/dark,/area/security/lobby) +"gz" = (/obj/structure/cable/green{icon_state = "2-4"},/obj/structure/cable/green{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor,/area/maintenance/stellardelight/deck1/starboardcent) +"gC" = (/obj/structure/table/steel,/obj/item/device/sleevemate,/obj/item/device/camera{name = "Autopsy Camera"; pixel_x = -2; pixel_y = 7},/obj/machinery/alarm/angled,/obj/item/device/radio/intercom{dir = 4; pixel_x = 24},/turf/simulated/floor/tiled/techfloor,/area/medical/morgue) +"gD" = (/obj/structure/flora/pottedplant/decorative,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/stellardelight/deck1/resleeving) +"gE" = (/obj/structure/closet/wardrobe/chaplain_black,/obj/item/weapon/storage/fancy/crayons,/obj/item/weapon/flame/candle/candelabra,/obj/item/weapon/flame/candle/candelabra,/obj/item/weapon/flame/candle/candelabra,/obj/item/weapon/flame/candle/candelabra,/obj/item/weapon/reagent_containers/food/drinks/bottle/holywater,/obj/item/weapon/nullrod,/obj/item/weapon/deck/tarot,/obj/item/device/retail_scanner/civilian,/turf/simulated/floor/lino,/area/chapel/office) +"gF" = (/obj/machinery/alarm/angled{dir = 8},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/exam_room) +"gG" = (/obj/machinery/door/firedoor/glass,/obj/structure/cable/white{icon_state = "4-8"},/obj/machinery/door/airlock/angled_bay/hatch{dir = 4; name = "maintenance access"; stripe_color = "#454545"},/turf/simulated/floor/tiled/steel_ridged,/area/maintenance/stellardelight/deck1/portcent) +"gH" = (/obj/structure/cable/pink{icon_state = "4-8"},/turf/simulated/floor/airless,/area/stellardelight/deck1/exterior) +"gI" = (/obj/effect/floor_decal/steeldecal/steel_decals10{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals10{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/turf/simulated/floor/tiled/white,/area/stellardelight/deck1/shower) +"gK" = (/obj/structure/table/woodentable,/obj/machinery/alarm/angled{dir = 4},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/turf/simulated/floor/carpet,/area/stellardelight/deck1/dorms/dorm1) +"gL" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/blast/angled{id = "GatewayShutter"},/turf/simulated/floor/tiled/eris/white/gray_platform,/area/gateway) +"gM" = (/obj/machinery/door/firedoor/glass,/obj/structure/disposalpipe/segment,/obj/machinery/door/airlock/angled_bay/standard/color{door_color = "#ffffff"; fill_color = "#ead9ff"; name = "Research and Development"; req_access = list(7); stripe_color = "#5a19a8"},/turf/simulated/floor/tiled/steel_ridged,/area/rnd/research) +"gO" = (/obj/structure/bed/chair/bay/shuttle{dir = 4},/obj/machinery/power/apc/angled{cell_type = /obj/item/weapon/cell/super; dir = 8; req_access = list(31,5)},/obj/structure/cable/yellow,/obj/machinery/light/floortube{dir = 8; pixel_x = -6},/turf/simulated/floor/tiled/eris/steel/brown_platform,/area/stellardelight/deck1/miningshuttle) +"gP" = (/obj/structure/cable/green{color = "#42038a"; icon_state = "4-8"},/obj/structure/cable/green{color = "#42038a"; icon_state = "1-8"},/turf/simulated/wall/bay/r_wall/steel,/area/maintenance/stellardelight/deck1/starboardcent) +"gQ" = (/turf/simulated/wall/bay/brown,/area/stellardelight/deck1/oreprocessing) +"gS" = (/obj/structure/cable/green{color = "#42038a"; icon_state = "1-8"},/obj/structure/cable/green{color = "#42038a"; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 6},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 1},/turf/simulated/floor/tiled/milspec,/area/stellardelight/deck1/explobriefing) +"gT" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 6},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/virology) +"gU" = (/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/steel_grid,/area/assembly/robotics) +"gV" = (/obj/structure/cable{icon_state = "2-8"},/obj/structure/cable{icon_state = "4-8"},/turf/simulated/floor,/area/maintenance/stellardelight/substation/exploration) +"gW" = (/obj/structure/cable/pink{icon_state = "1-2"},/obj/structure/cable/pink{icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/turf/simulated/floor/tiled/dark,/area/security/security_cell_hallway) +"gX" = (/obj/structure/cable/green{color = "#42038a"; icon_state = "4-8"},/obj/machinery/light{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 10},/obj/effect/floor_decal/steeldecal/steel_decals4,/turf/simulated/floor/tiled/techfloor,/area/rnd/xenobiology) +"gY" = (/turf/simulated/floor,/area/maintenance/stellardelight/deck1/portcent) +"gZ" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/turf/simulated/floor/tiled/eris/white/cargo,/area/medical/virology) +"ha" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/angled_bay/standard/color{dir = 4; door_color = "#323d80"; fill_color = "#313866"; id_tag = "rddoor"; name = "Server Room"; req_access = list(30); stripe_color = "#5a19a8"},/obj/structure/cable/green{color = "#42038a"; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/steel_ridged,/area/stellardelight/deck1/researchserver) +"hb" = (/obj/structure/cable/pink{icon_state = "0-2"},/obj/structure/cable/pink,/obj/machinery/power/smes/buildable{RCon_tag = "Substation - Security"; output_attempt = 0},/turf/simulated/floor,/area/maintenance/stellardelight/substation/security) +"hc" = (/obj/structure/closet/firecloset,/turf/simulated/floor,/area/maintenance/security_port) +"hd" = (/obj/structure/closet/secure_closet/scientist,/turf/simulated/floor/tiled/dark,/area/stellardelight/deck1/researchequip) +"he" = (/obj/structure/cable/pink{icon_state = "1-8"},/obj/structure/cable/pink{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/dark,/area/security/lobby) +"hg" = (/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/aft) +"hh" = (/obj/effect/mouse_hole_spawner{dir = 8},/turf/simulated/floor,/area/maintenance/stellardelight/deck1/portcent) +"hi" = (/obj/effect/floor_decal/industrial/warning{dir = 4},/obj/machinery/computer/shuttle_control/explore/stellardelight/mining{dir = 1},/turf/simulated/floor/tiled/eris/steel/cargo,/area/stellardelight/deck1/oreprocessing) +"hj" = (/obj/structure/cable/pink{icon_state = "4-8"},/obj/structure/cable/green{icon_state = "1-2"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers,/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 8},/turf/simulated/floor/tiled/dark,/area/chapel/main) +"hk" = (/obj/structure/cable/green{icon_state = "4-8"},/obj/structure/cable/green{icon_state = "1-8"},/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/port) +"hl" = (/obj/structure/cable/pink{icon_state = "2-8"},/obj/structure/table/bench/standard,/obj/effect/floor_decal/milspec/color/orange/half{dir = 1},/turf/simulated/floor/tiled/dark,/area/prison/cell_block/B) +"hm" = (/obj/machinery/autolathe{hacked = 1},/obj/machinery/firealarm/angled,/turf/simulated/floor/tiled/steel_grid,/area/rnd/research) +"ho" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/turf/simulated/floor/tiled/milspec,/area/stellardelight/deck1/exploration) +"hp" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/angled_bay/double/glass{name = "glass airlock"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/steel_ridged,/area/stellardelight/deck1/port) +"hq" = (/obj/structure/cable/green{color = "#42038a"; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/machinery/light_switch{dir = 4; pixel_x = -25; pixel_y = -24},/obj/structure/cable/green{color = "#42038a"; icon_state = "4-8"},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 6},/turf/simulated/floor/tiled/steel_grid,/area/rnd/xenobiology) +"hr" = (/obj/structure/sink{dir = 8; pixel_x = -12; pixel_y = 2},/obj/machinery/firealarm/angled{dir = 8},/turf/simulated/floor/tiled/eris,/area/rnd/xenobiology/xenoflora_storage) +"hs" = (/obj/structure/bed/chair/office/light{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/eris/white/bluecorner,/area/stellardelight/deck1/resleeving) +"ht" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/aft) +"hu" = (/obj/structure/table/rack/shelf/steel,/obj/item/weapon/gun/energy/gun{pixel_y = 7},/obj/item/weapon/gun/energy/gun{pixel_y = -5},/obj/effect/floor_decal/milspec/color/black,/turf/simulated/floor/tiled/dark,/area/security/armoury) +"hv" = (/obj/structure/bed/chair{dir = 1},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/stellardelight/deck1/resleeving) +"hw" = (/obj/machinery/power/pointdefense{id_tag = "sd_pd"},/obj/effect/floor_decal/industrial/warning/full,/obj/structure/cable/green{color = "#42038a"; icon_state = "0-4"},/turf/simulated/floor/airless,/area/stellardelight/deck1/exterior) +"hx" = (/obj/machinery/access_button{command = "cycle_exterior"; dir = 8; frequency = 1379; master_tag = "xenobio_airlock_control"; name = "Xenobiology Access Button"; pixel_y = 32; req_access = null; req_one_access = list(47,55)},/obj/machinery/door/airlock/angled_bay/standard/color{autoclose = 0; dir = 4; door_color = "#ffffff"; fill_color = "#ead9ff"; frequency = 1379; id_tag = "xenobio_airlock_exterior"; locked = 1; name = "Xenobiology Lab"; req_access = list(47,55); stripe_color = "#5a19a8"},/turf/simulated/floor/tiled/techfloor,/area/rnd/xenobiology) +"hy" = (/obj/structure/bed/chair/bay/shuttle{dir = 4},/obj/machinery/light/floortube{dir = 8; pixel_x = -6},/turf/simulated/floor/tiled/eris/steel/gray_platform,/area/stellardelight/deck1/exploshuttle) +"hz" = (/obj/structure/dispenser{phorontanks = 0},/obj/machinery/camera/network/command{dir = 10},/turf/simulated/floor/tiled/eris/white/gray_platform,/area/gateway) +"hA" = (/obj/effect/floor_decal/industrial/warning,/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/turf/simulated/floor/tiled/eris/steel/cargo,/area/stellardelight/deck1/oreprocessing) +"hB" = (/obj/structure/window/reinforced{dir = 4},/obj/machinery/door/window/southleft{name = "Server Room"; req_access = list(30)},/obj/machinery/door/window/northleft{name = "Server Room"; req_access = list(30)},/obj/structure/window/reinforced{dir = 8},/obj/machinery/atmospherics/pipe/manifold/hidden,/turf/simulated/floor/tiled/techfloor/grid,/area/stellardelight/deck1/researchserver) +"hC" = (/obj/structure/table/rack/shelf/steel,/obj/item/weapon/cell/device/weapon{pixel_y = -2},/obj/item/weapon/cell/device/weapon{pixel_y = -8},/obj/item/weapon/cell/device/weapon{pixel_y = 4},/obj/item/weapon/cell/device/weapon{pixel_y = 11},/obj/machinery/atmospherics/pipe/simple/hidden/universal{dir = 8},/obj/effect/floor_decal/milspec/color/black,/turf/simulated/floor/tiled/dark,/area/security/armoury) +"hD" = (/obj/structure/cable/green{icon_state = "1-4"},/turf/simulated/floor/airless,/area/stellardelight/deck1/exterior) +"hE" = (/obj/structure/cable/green{color = "#42038a"; icon_state = "4-8"},/obj/structure/cable/green{color = "#42038a"; icon_state = "2-8"},/turf/simulated/floor/airless,/area/stellardelight/deck1/exterior) +"hF" = (/obj/machinery/door/firedoor/glass,/obj/structure/cable/pink{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/door/airlock/angled_bay/standard/glass{dir = 4; door_color = "#8c1d11"; name = "Equipment Storage"; req_access = list(1); stripe_color = "#d27428"},/turf/simulated/floor/tiled/steel_ridged,/area/security/security_lockerroom) +"hG" = (/obj/machinery/door/firedoor/glass/hidden/steel{dir = 8},/obj/structure/sign/directions/security{dir = 1; pixel_x = 32; pixel_y = 10},/obj/structure/sign/directions/chapel{dir = 8; pixel_x = 32; pixel_y = 4},/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/fore) +"hH" = (/obj/machinery/door/blast/angled{id = "GatewayShutter"},/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled/eris/white/gray_platform,/area/gateway) +"hI" = (/obj/structure/table/rack,/obj/random/maintenance/security,/obj/random/maintenance/clean,/obj/random/maintenance,/obj/random/contraband,/turf/simulated/floor,/area/maintenance/stellardelight/deck1/starboardcent) +"hJ" = (/turf/simulated/wall/bay/white,/area/medical/virology) +"hK" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/turf/simulated/floor/carpet/purcarpet,/area/stellardelight/deck1/dorms/dorm3) +"hL" = (/obj/effect/floor_decal/steeldecal/steel_decals3,/obj/effect/floor_decal/steeldecal/steel_decals3{dir = 6},/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/port) +"hM" = (/obj/structure/cable/green{color = "#42038a"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/turf/simulated/floor/tiled/steel_grid,/area/rnd/research) +"hN" = (/obj/structure/cable/green{icon_state = "4-8"},/obj/item/device/radio/intercom{dir = 1; name = "Station Intercom (General)"; pixel_y = 21},/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/starboard) +"hP" = (/obj/structure/morgue{dir = 2},/obj/machinery/atmospherics/unary/vent_scrubber/on,/turf/simulated/floor/tiled/techfloor,/area/medical/morgue) +"hQ" = (/obj/structure/bed/chair{dir = 8},/turf/simulated/floor/tiled/dark,/area/security/security_processing) +"hR" = (/obj/structure/cable/white{icon_state = "1-2"},/obj/structure/cable/green{icon_state = "0-4"},/obj/machinery/power/apc/angled{dir = 8},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/port) +"hS" = (/obj/structure/cable/green{icon_state = "2-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/structure/sign/department/biblio{pixel_x = 32; plane = -34},/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/fore) +"hT" = (/obj/structure/cable/pink{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/dark,/area/security/lobby) +"hU" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/fore) +"hV" = (/turf/simulated/floor/tiled/steel_grid,/area/assembly/robotics) +"hW" = (/obj/structure/cable/green{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/status_display{pixel_x = -32},/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/starboard) +"hX" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/eris/white/gray_platform,/area/gateway) +"hY" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/blast/angled{dir = 4; id = "GatewayShutterW"},/turf/simulated/floor/tiled/steel_ridged,/area/gateway) +"hZ" = (/obj/machinery/light,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/structure/closet/bombcloset,/turf/simulated/floor/tiled/dark,/area/rnd/xenobiology) +"ia" = (/obj/structure/cable/white{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/firealarm/angled{dir = 8},/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/port) +"ib" = (/obj/machinery/power/pointdefense{id_tag = "sd_pd"},/obj/effect/floor_decal/industrial/warning/full,/obj/structure/cable/orange{icon_state = "0-2"},/turf/simulated/floor/airless,/area/stellardelight/deck1/exterior) +"ic" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/obj/structure/bed/padded,/obj/item/weapon/bedsheet/orange,/obj/effect/floor_decal/milspec/color/orange/half{dir = 4},/turf/simulated/floor/tiled/dark,/area/prison/cell_block/B) +"id" = (/obj/machinery/camera/network/halls{dir = 8},/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/starboard) +"ie" = (/obj/structure/cable/green{icon_state = "1-4"},/obj/structure/cable/green{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals3{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals3{dir = 10},/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/starboard) +"if" = (/obj/structure/cable/green{color = "#42038a"; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor,/area/maintenance/stellardelight/deck1/exploration) +"ig" = (/obj/effect/floor_decal/industrial/loading,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/turf/simulated/floor/tiled/steel_grid,/area/assembly/robotics) +"ih" = (/obj/structure/table/reinforced,/turf/simulated/floor/tiled/eris/steel/gray_platform,/area/stellardelight/deck1/exploshuttle) +"ii" = (/obj/random/maintenance/security,/obj/random/medical,/obj/structure/table/rack,/obj/random/maintenance/security,/obj/random/maintenance,/obj/random/snack,/turf/simulated/floor,/area/maintenance/security_port) +"ik" = (/obj/structure/cable/white{icon_state = "0-4"},/obj/machinery/power/apc/angled{dir = 8; name = "night shift APC"; nightshift_setting = 2},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/stellardelight/deck1/lowermed) +"il" = (/obj/structure/cable/green{color = "#42038a"; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/table/rack,/obj/random/maintenance,/obj/random/maintenance,/obj/random/maintenance,/obj/random/maintenance/research,/obj/random/maintenance/research,/obj/random/maintenance/research,/obj/random/maintenance/clean,/obj/random/contraband,/turf/simulated/floor,/area/maintenance/stellardelight/deck1/starboardaft) +"im" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/techfloor,/area/stellardelight/deck1/starboard) +"in" = (/obj/structure/cable/green{icon_state = "0-4"},/obj/machinery/power/apc/angled{dir = 1; name = "night shift APC"; nightshift_setting = 2},/obj/structure/undies_wardrobe,/turf/simulated/floor/tiled/white,/area/stellardelight/deck1/shower) +"io" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/recharger/wallcharger{pixel_x = 4; pixel_y = 20},/obj/machinery/recharger/wallcharger{pixel_x = 4; pixel_y = 29},/obj/machinery/recharger/wallcharger{pixel_x = 4; pixel_y = 38},/turf/simulated/floor/tiled/dark,/area/security/security_cell_hallway) +"ip" = (/obj/structure/bed/chair{dir = 1},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/stellardelight/deck1/resleeving) +"iq" = (/turf/simulated/floor/wood,/area/library) +"ir" = (/obj/structure/cable/white{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/turf/simulated/floor/tiled/eris/white/bluecorner,/area/stellardelight/deck1/resleeving) +"is" = (/obj/structure/cable/pink{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/pink{icon_state = "2-8"},/turf/simulated/floor,/area/maintenance/stellardelight/deck1/portfore) +"it" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock{name = "Unisex Showers"},/obj/structure/cable/green{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/steel_ridged,/area/stellardelight/deck1/shower) +"iv" = (/obj/machinery/atmospherics/pipe/simple/visible{dir = 4},/obj/machinery/meter,/turf/simulated/floor/tiled/eris,/area/rnd/xenobiology/xenoflora_storage) +"iw" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/eris,/area/stellardelight/deck1/researchequip) +"ix" = (/obj/structure/cable/green{icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/turf/simulated/floor/tiled/dark,/area/chapel/main) +"iy" = (/obj/machinery/light/small{dir = 1},/turf/simulated/floor,/area/maintenance/stellardelight/deck1/starboardcent) +"iz" = (/obj/machinery/door/firedoor/glass,/obj/structure/cable/green{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled/steel_ridged,/area/library) +"iA" = (/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor,/area/maintenance/stellardelight/deck1/starboardcent) +"iB" = (/obj/item/device/radio/intercom{dir = 8; pixel_x = -24},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/stellardelight/deck1/lowermed) +"iC" = (/obj/structure/cable/green{color = "#42038a"; icon_state = "4-8"},/turf/simulated/wall/bay/r_wall/purple,/area/rnd/xenobiology) +"iD" = (/obj/structure/cable/pink{icon_state = "2-4"},/obj/structure/table/bench/standard,/obj/effect/floor_decal/milspec/color/orange/half{dir = 1},/turf/simulated/floor/tiled/dark,/area/prison/cell_block/C) +"iE" = (/obj/structure/sign/painting/library_private{pixel_x = -32},/obj/structure/sign/painting/library_private{pixel_y = -32},/obj/item/weapon/storage/briefcase,/obj/item/weapon/storage/briefcase,/obj/structure/table/rack,/turf/simulated/floor/wood,/area/library) +"iF" = (/obj/machinery/door/firedoor/glass,/obj/structure/cable/green{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/door/airlock/angled_bay/standard/color{dir = 4; door_color = "#9c9c9c"; fill_color = "#5c5c5c"; name = "Custodial Closet"; req_access = list(26); stripe_color = "#89bd66"},/turf/simulated/floor/tiled/steel_ridged,/area/janitor) +"iG" = (/obj/structure/closet/wardrobe/virology_white,/obj/machinery/atmospherics/unary/vent_pump/on,/obj/machinery/alarm/angled,/obj/machinery/camera/network/medbay{dir = 4},/turf/simulated/floor/tiled/eris/white/cargo,/area/medical/virology) +"iH" = (/obj/structure/cable/green{color = "#42038a"; icon_state = "2-4"},/obj/effect/shuttle_landmark/shuttle_initializer/exploration,/turf/simulated/floor/tiled/eris/steel/gray_platform,/area/stellardelight/deck1/exploshuttle) +"iI" = (/obj/structure/cable/green{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/port) +"iJ" = (/obj/structure/cable/white{icon_state = "1-2"},/obj/machinery/camera/network/halls{dir = 4},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/aft) +"iK" = (/obj/structure/table/woodentable,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/item/weapon/paper_bin{pixel_y = 7},/obj/item/weapon/pen{pixel_y = 6},/obj/random/coin/sometimes,/turf/simulated/floor/wood,/area/library) +"iL" = (/obj/structure/cable/green{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/effect/floor_decal/steeldecal/steel_decals3{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals3{dir = 5},/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/aft) +"iM" = (/obj/machinery/door/firedoor/glass,/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/door/airlock/angled_bay/hatch{dir = 4; door_color = "#ffffff"; name = "maintenance access"; req_one_access = null; stripe_color = "#5a19a8"},/turf/simulated/floor/tiled/steel_ridged,/area/maintenance/stellardelight/deck1/starboardaft) +"iN" = (/obj/machinery/door/firedoor/glass,/obj/structure/window/bay/reinforced,/obj/structure/low_wall/bay/reinforced/steel,/turf/simulated/floor,/area/chapel/main) +"iO" = (/obj/structure/table/steel,/obj/item/weapon/folder/red{pixel_x = 2; pixel_y = 4},/obj/item/weapon/folder/red,/obj/machinery/atmospherics/unary/vent_pump/on,/obj/machinery/alarm/angled,/turf/simulated/floor/tiled/dark,/area/security/security_processing) +"iQ" = (/obj/structure/cable/green{color = "#42038a"; icon_state = "4-8"},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 10},/obj/effect/floor_decal/steeldecal/steel_decals4,/turf/simulated/floor/tiled/milspec,/area/stellardelight/deck1/exploration) +"iR" = (/obj/machinery/light{dir = 4},/obj/structure/cable/green{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/white,/area/crew_quarters/toilet) +"iS" = (/obj/structure/cable/yellow{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/machinery/station_map{pixel_y = 32},/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/aft) +"iT" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/carpet,/area/stellardelight/deck1/dorms/dorm4) +"iU" = (/obj/structure/cable/green{color = "#42038a"; icon_state = "1-2"},/turf/simulated/floor,/area/maintenance/stellardelight/deck1/exploration) +"iW" = (/obj/structure/cable/green{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/flora/pottedplant/stoutbush,/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/starboard) +"iX" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/structure/cable/green{icon_state = "1-2"},/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/fore) +"iY" = (/obj/effect/floor_decal/industrial/warning{dir = 8},/obj/machinery/embedded_controller/radio/simple_docking_controller{dir = 4; frequency = 1380; id_tag = "explodocker_bay"; pixel_x = -24},/turf/simulated/floor/reinforced,/area/stellardelight/deck1/shuttlebay) +"iZ" = (/obj/effect/floor_decal/milspec/color/red,/obj/machinery/alarm/angled,/obj/structure/closet/emcloset,/turf/simulated/floor/tiled/dark,/area/security/lobby) +"ja" = (/obj/machinery/light{dir = 4},/obj/structure/flora/pottedplant/minitree,/obj/machinery/alarm/angled,/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/port) +"jb" = (/obj/machinery/door/blast/multi_tile/three_tile_ver{id = "xenospace2"},/turf/simulated/floor/reinforced,/area/rnd/workshop) +"jc" = (/obj/machinery/light_switch{dir = 4; pixel_x = -25},/obj/structure/closet/crate/bin{anchored = 1},/obj/effect/floor_decal/milspec/color/red/half,/turf/simulated/floor/tiled/dark,/area/security/security_lockerroom) +"jd" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/turf/simulated/floor/tiled/steel_ridged,/area/stellardelight/deck1/shower) +"jf" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/camera/network/halls,/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/fore) +"jg" = (/obj/structure/disposalpipe/segment,/obj/machinery/camera/network/halls{dir = 8},/obj/effect/floor_decal/milspec/color/emerald/half{dir = 4},/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/aft) +"jh" = (/obj/structure/cable{icon_state = "1-2"},/turf/simulated/floor,/area/maintenance/stellardelight/substation/civilian) +"ji" = (/obj/structure/cable/green{color = "#42038a"; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable/green{color = "#42038a"; icon_state = "2-8"},/turf/simulated/floor/tiled/milspec,/area/stellardelight/deck1/explobriefing) +"jj" = (/obj/machinery/atmospherics/unary/vent_pump{dir = 4; icon_state = "map_vent_out"; use_power = 1},/turf/simulated/floor/bluegrid{name = "Server Base"; nitrogen = 500; oxygen = 0; temperature = 80},/area/stellardelight/deck1/researchserver) +"jk" = (/obj/structure/disposalpipe/trunk{dir = 4},/obj/machinery/disposal/wall{dir = 8; pixel_x = 24; plane = -34},/turf/simulated/floor/tiled/dark,/area/rnd/xenobiology) +"jl" = (/obj/structure/table/steel,/obj/item/device/retail_scanner/security,/obj/item/device/taperecorder,/obj/item/weapon/storage/box/evidence,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/machinery/firealarm/angled{dir = 8},/turf/simulated/floor/tiled/dark,/area/security/security_processing) +"jm" = (/obj/machinery/power/terminal{dir = 8},/obj/structure/cable{icon_state = "0-2"},/obj/machinery/alarm/angled{dir = 8},/turf/simulated/floor,/area/maintenance/stellardelight/substation/atmospherics) +"jn" = (/obj/machinery/light,/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/starboard) +"jo" = (/obj/machinery/button/crematorium{id = "crematorium"; pixel_x = 25; req_access = list(); req_one_access = null},/turf/simulated/floor/tiled/dark,/area/chapel/chapel_morgue) +"jp" = (/obj/structure/cable/orange{icon_state = "2-8"},/turf/simulated/floor,/area/maintenance/stellardelight/deck1/exploration) +"jq" = (/obj/structure/table/woodentable,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/item/weapon/storage/pill_bottle/dice_nerd,/turf/simulated/floor/wood,/area/library) +"jr" = (/obj/machinery/door/firedoor/glass,/obj/structure/window/bay/reinforced,/obj/machinery/door/blast/angled/open{dir = 2; id = "brigwindowlockdown"},/obj/structure/low_wall/bay/reinforced/steel,/turf/simulated/floor,/area/prison/cell_block/B) +"js" = (/obj/structure/cable/pink{icon_state = "2-4"},/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/structure/cable/pink{icon_state = "4-8"},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 5},/turf/simulated/floor/tiled/dark,/area/chapel/main) +"jt" = (/obj/structure/table/steel_reinforced,/obj/item/device/suit_cooling_unit,/obj/item/device/suit_cooling_unit,/obj/item/weapon/cell/high{charge = 100; maxcharge = 15000},/obj/item/weapon/cell/high{charge = 100; maxcharge = 15000},/obj/effect/floor_decal/milspec/color/red,/obj/item/device/radio/intercom{dir = 4; pixel_x = 24},/turf/simulated/floor/tiled/dark,/area/security/tactical) +"ju" = (/obj/machinery/door/window/brigdoor/eastleft{name = "Slime Pen 5"; req_access = list(55)},/obj/machinery/door/window/brigdoor/westright{name = "Slime Pen 4"; req_access = list(55)},/obj/machinery/door/blast/angled/open{dir = 4; id = "xenobiopen4"; name = "Pen 4 Blast Doors"},/turf/simulated/floor/reinforced,/area/rnd/xenobiology) +"jv" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/turf/simulated/floor/tiled/dark,/area/security/security_cell_hallway) +"jw" = (/obj/structure/cable/pink{icon_state = "1-2"},/obj/effect/mouse_hole_spawner{dir = 8},/turf/simulated/floor,/area/maintenance/stellardelight/deck1/starboardfore) +"jx" = (/obj/structure/window/reinforced/full,/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 4},/obj/structure/grille,/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/window/reinforced{dir = 8},/obj/machinery/door/blast/angled/open{dir = 4; id = "xenobiopen1"; name = "Pen 1 Blast Doors"},/turf/simulated/floor/tiled/dark,/area/rnd/xenobiology) +"jy" = (/obj/structure/table/steel_reinforced,/obj/machinery/door/firedoor/glass,/obj/structure/window/reinforced,/obj/machinery/door/blast/angled/open{dir = 2; id = "securitylockdown"},/obj/effect/floor_decal/milspec/color/red,/turf/simulated/floor/tiled/dark,/area/security/lobby) +"jz" = (/obj/machinery/door/firedoor/glass,/obj/structure/window/bay/reinforced,/obj/structure/curtain/black{anchored = 1},/obj/structure/low_wall/bay/reinforced/steel,/turf/simulated/floor,/area/stellardelight/deck1/dorms/dorm3) +"jA" = (/turf/simulated/floor/carpet/purcarpet,/area/stellardelight/deck1/dorms/dorm3) +"jB" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/turf/simulated/floor/tiled/dark,/area/chapel/main) +"jC" = (/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/turf/simulated/floor/wood,/area/library) +"jD" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/carpet,/area/stellardelight/deck1/dorms/dorm8) +"jF" = (/obj/structure/cable/yellow{icon_state = "1-8"},/obj/structure/cable/yellow{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 6},/obj/machinery/hologram/holopad,/turf/simulated/floor/tiled/eris/steel/cargo,/area/stellardelight/deck1/mining) +"jG" = (/turf/simulated/floor/tiled/steel_grid,/area/rnd/research) +"jH" = (/obj/machinery/door/firedoor/glass/hidden/steel,/obj/structure/cable/green{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/aft) +"jI" = (/obj/structure/cable/green{color = "#42038a"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/item/device/radio/intercom{dir = 4; pixel_x = 24},/turf/simulated/floor/tiled/techfloor,/area/rnd/workshop) +"jJ" = (/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/obj/machinery/vending/nifsoft_shop,/turf/simulated/floor/tiled/techfloor,/area/stellardelight/deck1/port) +"jK" = (/obj/machinery/door/window/southleft{dir = 8; name = "Library Desk Door"; req_access = list(37)},/obj/machinery/button/remote/blast_door{id = "librarywindowlockdown"; name = "Window Lockdown"; pixel_y = 25; req_access = null},/turf/simulated/floor/carpet,/area/library) +"jL" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/carpet,/area/library) +"jN" = (/obj/effect/floor_decal/industrial/warning{dir = 4},/obj/structure/cable/green{color = "#42038a"; icon_state = "1-8"},/turf/simulated/floor/reinforced,/area/stellardelight/deck1/shuttlebay) +"jO" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/angled_bay/hatch{door_color = "#e6ab22"; name = "Cargo Substation"; req_one_access = list(10); stripe_color = "#e6ab22"},/turf/simulated/floor/tiled/steel_ridged,/area/maintenance/stellardelight/substation/cargo) +"jP" = (/obj/machinery/gateway{dir = 4},/turf/simulated/floor/tiled/eris/white/gray_platform,/area/gateway) +"jQ" = (/obj/structure/cable/green{color = "#42038a"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/turf/simulated/floor/tiled/steel_grid,/area/assembly/robotics) +"jR" = (/obj/machinery/atmospherics/unary/vent_pump/on,/turf/simulated/floor/tiled/milspec,/area/stellardelight/deck1/exploration) +"jT" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/obj/effect/landmark/vines,/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/aft) +"jV" = (/obj/machinery/power/terminal{dir = 4},/obj/structure/cable{icon_state = "0-2"},/obj/machinery/alarm/angled{dir = 4},/turf/simulated/floor,/area/maintenance/stellardelight/substation/security) +"jW" = (/obj/machinery/alarm/angled{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/effect/landmark/start/pilot,/turf/simulated/floor/tiled/eris/steel/panels,/area/stellardelight/deck1/pilot) +"jY" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/alarm/angled{dir = 8},/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/fore) +"jZ" = (/obj/structure/cable/green{color = "#42038a"; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/milspec,/area/stellardelight/deck1/exploration) +"ka" = (/obj/machinery/portable_atmospherics/canister/nitrogen,/obj/effect/floor_decal/industrial/warning{dir = 5},/turf/simulated/floor/tiled,/area/rnd/storage) +"kc" = (/obj/machinery/power/breakerbox/activated{RCon_tag = "Civilian Substation Bypass"},/turf/simulated/floor,/area/maintenance/stellardelight/substation/civilian) +"kd" = (/obj/structure/flora/pottedplant/stoutbush,/obj/machinery/alarm/angled,/turf/simulated/floor/tiled/techfloor,/area/rnd/workshop) +"ke" = (/obj/structure/cable/white{icon_state = "1-2"},/obj/machinery/alarm/angled{dir = 4},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/port) +"kf" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/door/firedoor/glass,/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor,/area/maintenance/stellardelight/deck1/exploration) +"kg" = (/obj/structure/bed/chair/office/dark{dir = 4},/turf/simulated/floor/tiled/milspec,/area/stellardelight/deck1/explobriefing) +"kh" = (/obj/structure/cable/pink{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/obj/structure/cable/pink{icon_state = "2-8"},/turf/simulated/floor,/area/maintenance/stellardelight/deck1/portfore) +"kj" = (/obj/structure/cable/green{icon_state = "1-2"},/obj/structure/cable/green{icon_state = "2-8"},/obj/structure/sign/directions/janitor{dir = 8; pixel_x = 32},/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/port) +"kk" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/turf/simulated/floor/lino,/area/chapel/office) +"kl" = (/obj/structure/disposalpipe/segment,/obj/effect/floor_decal/milspec/color/emerald/half{dir = 4},/obj/machinery/station_map{dir = 8; pixel_x = 32},/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/aft) +"km" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/turf/simulated/floor,/area/maintenance/stellardelight/deck1/portcent) +"kn" = (/obj/structure/bed/chair/comfy/brown{dir = 4},/turf/simulated/floor/carpet/bcarpet,/area/stellardelight/deck1/starboard) +"ko" = (/obj/machinery/alarm/angled{dir = 8},/turf/simulated/floor/tiled/dark,/area/chapel/chapel_morgue) +"kp" = (/obj/machinery/portable_atmospherics/canister/oxygen,/turf/simulated/floor/tiled,/area/rnd/storage) +"kq" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/obj/structure/closet/emcloset,/turf/simulated/floor,/area/maintenance/stellardelight/deck1/starboardaft) +"kr" = (/obj/machinery/power/breakerbox/activated{RCon_tag = "Research Substation Bypass"},/turf/simulated/floor,/area/maintenance/stellardelight/substation/research) +"ks" = (/obj/machinery/atmospherics/pipe/manifold/hidden/purple{dir = 4},/obj/effect/floor_decal/milspec/color/black,/turf/simulated/floor/tiled/dark,/area/security/armoury) +"kt" = (/obj/effect/floor_decal/chapel{dir = 4},/obj/structure/bed/chair/sofa/pew/right{dir = 1},/turf/simulated/floor/tiled/dark,/area/chapel/main) +"ku" = (/obj/structure/disposaloutlet{dir = 1},/obj/structure/disposalpipe/trunk{dir = 4},/obj/machinery/light,/turf/simulated/floor/reinforced,/area/rnd/xenobiology) +"kv" = (/obj/structure/sign/deck1{pixel_x = 32},/obj/structure/disposalpipe/segment,/obj/effect/floor_decal/milspec/color/emerald/half{dir = 4},/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/aft) +"kw" = (/obj/structure/bed/chair/comfy/brown{dir = 8},/obj/effect/landmark/start/visitor,/turf/simulated/floor/wood,/area/library) +"kx" = (/obj/structure/table/rack,/obj/random/maintenance,/obj/random/maintenance/clean,/obj/random/contraband,/turf/simulated/floor,/area/maintenance/stellardelight/deck1/portfore) +"ky" = (/obj/machinery/firealarm/angled{dir = 4},/obj/structure/cable/green{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/white,/area/crew_quarters/toilet) +"kz" = (/obj/machinery/computer/message_monitor{dir = 4},/obj/item/device/radio/intercom{dir = 8; pixel_x = -24},/turf/simulated/floor/tiled/techfloor,/area/stellardelight/deck1/researchserver) +"kA" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/angled_bay/double{name = "maintenance access"; stripe_color = "#454545"},/turf/simulated/floor,/area/maintenance/stellardelight/deck1/exploration) +"kB" = (/turf/simulated/wall/bay/r_wall/black,/area/maintenance/security_port) +"kC" = (/obj/structure/cable/green{color = "#42038a"; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/eris,/area/rnd/xenobiology/xenoflora) +"kE" = (/obj/machinery/gateway{dir = 8},/turf/simulated/floor/tiled/eris/white/gray_platform,/area/gateway) +"kG" = (/obj/machinery/computer/security{dir = 8},/obj/effect/floor_decal/milspec/color/red/half{dir = 6},/turf/simulated/floor/tiled/dark,/area/security/lobby) +"kH" = (/obj/structure/dispenser/oxygen,/turf/simulated/floor/tiled/eris/steel/cargo,/area/stellardelight/deck1/miningequipment) +"kI" = (/obj/machinery/door/window/brigdoor/eastleft{name = "Slime Pen 3"; req_access = list(55)},/obj/machinery/door/window/brigdoor/westright{name = "Slime Pen 3"; req_access = list(55)},/obj/machinery/door/blast/angled/open{dir = 4; id = "xenobiopen3"; name = "Pen 3 Blast Doors"},/turf/simulated/floor/reinforced,/area/rnd/xenobiology) +"kJ" = (/obj/structure/cable/orange{icon_state = "1-2"},/turf/simulated/floor/airless,/area/stellardelight/deck1/exterior) +"kK" = (/obj/effect/floor_decal/steeldecal/steel_decals10{dir = 9},/obj/effect/floor_decal/steeldecal/steel_decals10{dir = 10},/turf/simulated/floor/tiled/white,/area/stellardelight/deck1/shower) +"kL" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/turf/simulated/floor/carpet,/area/stellardelight/deck1/dorms/dorm1) +"kM" = (/obj/machinery/atmospherics/unary/vent_scrubber/on,/obj/structure/closet/emcloset,/obj/item/device/radio/intercom{dir = 1; name = "Station Intercom (General)"; pixel_y = 21},/turf/simulated/floor/tiled/techfloor,/area/stellardelight/deck1/starboard) +"kN" = (/obj/machinery/door/blast/multi_tile/three_tile_ver{id = "xenospace4"},/turf/simulated/floor/reinforced,/area/rnd/workshop) +"kO" = (/obj/structure/cable/green{color = "#42038a"; icon_state = "1-2"},/turf/simulated/floor/tiled/milspec,/area/stellardelight/deck1/explobriefing) +"kP" = (/turf/simulated/wall/bay/r_wall/steel,/area/rnd/storage) +"kQ" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/white,/area/crew_quarters/toilet) +"kS" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/turf/simulated/floor/tiled/dark,/area/security/security_cell_hallway) +"kT" = (/obj/machinery/power/apc/angled{dir = 4},/obj/structure/cable/pink{icon_state = "0-8"},/obj/machinery/camera/network/security,/obj/machinery/computer/arcade,/obj/effect/floor_decal/milspec/color/orange/half{dir = 5},/turf/simulated/floor/tiled/dark,/area/prison/cell_block/C) +"kU" = (/obj/structure/cable/green{icon_state = "4-8"},/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/port) +"kV" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/blast/angled/open{dir = 4; id = "researchwindowlockdown"},/obj/structure/window/bay/reinforced,/obj/structure/low_wall/bay/reinforced/steel,/turf/simulated/floor,/area/rnd/xenobiology/xenoflora_storage) +"kY" = (/obj/structure/cable/pink{icon_state = "1-2"},/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/structure/cable/pink{icon_state = "2-8"},/turf/simulated/floor,/area/maintenance/stellardelight/deck1/portcent) +"la" = (/obj/machinery/smartfridge/secure/extract,/turf/simulated/floor/tiled/steel_grid,/area/rnd/xenobiology) +"lb" = (/obj/machinery/door/blast/angled{id = "xenobiodiv3"; name = "Divider 3 Blast Door"},/turf/simulated/floor/reinforced,/area/rnd/xenobiology) +"lc" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 10},/obj/effect/floor_decal/steeldecal/steel_decals4,/turf/simulated/floor/tiled/techfloor,/area/stellardelight/deck1/starboard) +"ld" = (/obj/structure/table/steel,/obj/random/maintenance/research,/obj/random/maintenance/research,/obj/random/maintenance,/obj/random/contraband,/turf/simulated/floor,/area/maintenance/stellardelight/deck1/portaft) +"le" = (/obj/structure/cable/yellow{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/turf/simulated/floor/tiled/eris/steel/cargo,/area/stellardelight/deck1/mining) +"lf" = (/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/obj/structure/cable/green{icon_state = "1-2"},/obj/effect/floor_decal/steeldecal/steel_decals3{dir = 6},/obj/effect/floor_decal/steeldecal/steel_decals3,/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/aft) +"lg" = (/obj/effect/shuttle_landmark/premade/sd/deck1/starboard,/turf/space,/area/space) +"lh" = (/obj/effect/floor_decal/chapel{dir = 1},/obj/structure/bed/chair/sofa/pew/left{dir = 1},/turf/simulated/floor/tiled/dark,/area/chapel/main) +"li" = (/obj/structure/closet/secure_closet/personal,/obj/machinery/firealarm/angled{dir = 8},/turf/simulated/floor/carpet/purcarpet,/area/stellardelight/deck1/dorms/dorm6) +"ll" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/turf/simulated/floor/tiled/eris/white/gray_platform,/area/gateway) +"lm" = (/obj/structure/cable{icon_state = "1-2"},/turf/simulated/floor,/area/maintenance/stellardelight/substation/medical) +"ln" = (/obj/machinery/door/window/brigdoor/eastleft{name = "Slime Pen 1"; req_access = list(55)},/obj/machinery/door/window/brigdoor/westright{name = "Slime Pen 1"; req_access = list(55)},/obj/machinery/door/blast/angled/open{dir = 4; id = "xenobiopen1"; name = "Pen 1 Blast Doors"},/turf/simulated/floor/reinforced,/area/rnd/xenobiology) +"lo" = (/obj/structure/table/woodentable,/obj/item/device/camera_film,/obj/item/device/camera_film,/obj/item/device/taperecorder,/turf/simulated/floor/carpet,/area/library) +"lp" = (/obj/effect/floor_decal/borderfloorblack/full,/obj/effect/floor_decal/industrial/hatch/yellow,/obj/machinery/flasher/portable,/obj/machinery/atmospherics/pipe/simple/hidden/cyan,/turf/simulated/floor/tiled/dark,/area/security/armoury) +"lq" = (/obj/machinery/door/firedoor/glass,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/door/airlock/angled_bay/hatch{door_color = "#e6ab22"; name = "Security Substation"; req_one_access = list(10); stripe_color = "#e6ab22"},/turf/simulated/floor/tiled/steel_ridged,/area/maintenance/stellardelight/substation/security) +"lr" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/closet/crate/trashcart,/turf/simulated/floor,/area/maintenance/stellardelight/deck1/portcent) +"ls" = (/obj/structure/cable/green{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/structure/sign/directions/dorms{dir = 6; pixel_x = -32; pixel_y = 6},/obj/structure/sign/directions/science{dir = 4; pixel_x = -32},/obj/structure/sign/directions{desc = "A direction sign, pointing out the way to the shuttle bay."; name = "\improper Shuttle Bay"; pixel_x = -32; pixel_y = -6},/obj/structure/sign/directions/janitor{pixel_x = -32; pixel_y = -12},/obj/machinery/camera/network/halls{dir = 4},/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/port) +"lt" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/newscaster{pixel_y = 28},/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/aft) +"lv" = (/obj/structure/bed/chair/comfy/brown{dir = 8},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/effect/landmark/start/visitor,/turf/simulated/floor/carpet/bcarpet,/area/stellardelight/deck1/port) +"lw" = (/obj/structure/bed/chair/backed_red{dir = 8},/obj/item/device/radio/intercom{dir = 4; pixel_x = 24},/turf/simulated/floor/tiled/milspec,/area/stellardelight/deck1/exploration) +"lx" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/cable{icon_state = "1-4"},/turf/simulated/floor,/area/maintenance/stellardelight/substation/civilian) +"ly" = (/obj/structure/cable{icon_state = "4-8"},/obj/effect/floor_decal/steeldecal/steel_decals3{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals3{dir = 5},/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/starboard) +"lz" = (/obj/machinery/door/firedoor/glass,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable/green{icon_state = "4-8"},/obj/machinery/door/airlock/angled_bay/standard/color{dir = 4; door_color = "#9fccc7"; fill_color = "#333333"; name = "Pilot Equipment"; req_access = list(67); stripe_color = "#ffffff"},/turf/simulated/floor/tiled/steel_ridged,/area/stellardelight/deck1/pilot) +"lA" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/firealarm/angled,/obj/structure/ore_box,/turf/simulated/floor/tiled/eris/steel/cargo,/area/stellardelight/deck1/shuttlebay) +"lB" = (/obj/structure/table/steel_reinforced,/obj/machinery/firealarm/angled,/obj/machinery/atmospherics/unary/vent_pump/on,/obj/effect/floor_decal/milspec/color/red,/obj/item/weapon/storage/box/donut,/turf/simulated/floor/tiled/dark,/area/security/lobby) +"lC" = (/obj/item/weapon/bedsheet/bluedouble,/obj/structure/bed/double/padded,/obj/structure/curtain/black,/turf/simulated/floor/carpet,/area/stellardelight/deck1/dorms/dorm8) +"lD" = (/obj/machinery/hologram/holopad,/turf/simulated/floor/tiled/techfloor,/area/stellardelight/deck1/starboard) +"lF" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/effect/floor_decal/steeldecal/steel_decals6,/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/fore) +"lG" = (/obj/structure/cable/green{color = "#42038a"; icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/mob/living/simple_mob/animal/passive/mimepet/gregory,/turf/simulated/floor/tiled/steel_grid,/area/rnd/research) +"lH" = (/obj/structure/cable/green{color = "#42038a"; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/eris,/area/stellardelight/deck1/researchequip) +"lI" = (/obj/structure/cable/orange{icon_state = "2-4"},/obj/machinery/power/sensor{name = "Powernet Sensor - Atmospherics Subgrid"; name_tag = "Atmospherics Subgrid"},/obj/structure/cable/orange{icon_state = "0-2"},/obj/machinery/power/apc/angled{dir = 8; name = "night shift APC"; nightshift_setting = 2},/turf/simulated/floor,/area/maintenance/stellardelight/substation/atmospherics) +"lJ" = (/obj/effect/floor_decal/borderfloorblack/full,/obj/effect/floor_decal/industrial/hatch/yellow,/obj/machinery/flasher/portable,/obj/machinery/atmospherics/pipe/simple/hidden/cyan{dir = 5},/turf/simulated/floor/tiled/dark,/area/security/armoury) +"lK" = (/obj/structure/disposalpipe/trunk{dir = 4},/obj/machinery/disposal/wall{dir = 8; pixel_x = 24; plane = -34},/obj/machinery/button/remote/blast_door{id = "xenospace2"; name = "2 Space Door"; pixel_x = 10; pixel_y = 21; req_access = list(55)},/obj/machinery/alarm/angled,/turf/simulated/floor/tiled/dark,/area/rnd/xenobiology) +"lM" = (/obj/machinery/door/firedoor/glass/hidden/steel{dir = 8},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/sign/department/biblio{pixel_x = 32; plane = -34},/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/fore) +"lN" = (/obj/machinery/portable_atmospherics/canister/nitrous_oxide,/obj/effect/floor_decal/industrial/warning{dir = 4},/turf/simulated/floor/tiled,/area/rnd/storage) +"lO" = (/obj/machinery/door/firedoor/glass,/obj/structure/cable/green{color = "#42038a"; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/door/airlock/angled_bay/standard/glass{dir = 4; door_color = "#333333"; name = "Auxiliary EVA Equipment Room"; req_one_access = list(18,19,43); stripe_color = "#5a19a8"},/turf/simulated/floor/tiled/steel_ridged,/area/stellardelight/deck1/exploequipment) +"lP" = (/obj/structure/cable/yellow{icon_state = "1-4"},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/turf/simulated/floor/tiled/eris/steel/cargo,/area/stellardelight/deck1/shuttlebay) +"lQ" = (/obj/structure/table/steel,/obj/item/weapon/reagent_containers/spray/cleaner,/obj/item/weapon/reagent_containers/spray/cleaner,/turf/simulated/floor/tiled/monotile,/area/janitor) +"lR" = (/obj/structure/stairs/spawner/north,/obj/structure/railing/grey{dir = 8},/turf/simulated/floor,/area/stellardelight/deck1/aft) +"lS" = (/obj/structure/cable/pink{icon_state = "1-8"},/obj/structure/cable/pink{icon_state = "4-8"},/turf/simulated/floor/tiled/dark,/area/security/tactical) +"lT" = (/obj/structure/cable/green{color = "#42038a"; icon_state = "1-2"},/obj/machinery/light/small{dir = 8},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor,/area/maintenance/stellardelight/deck1/starboardaft) +"lU" = (/obj/machinery/atmospherics/unary/vent_pump/on,/turf/simulated/floor/tiled/dark,/area/security/security_cell_hallway) +"lV" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/obj/structure/closet/emcloset,/obj/machinery/alarm/angled,/turf/simulated/floor/tiled/eris/steel/cargo,/area/stellardelight/deck1/shuttlebay) +"lW" = (/obj/machinery/camera/network/research{dir = 1},/obj/structure/table/glass,/obj/machinery/chemical_dispenser/xenoflora/full,/turf/simulated/floor/tiled/eris,/area/rnd/xenobiology/xenoflora) +"lX" = (/obj/structure/closet/secure_closet/paramedic,/obj/machinery/firealarm/angled{dir = 8},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/stellardelight/deck1/paramedic) +"lY" = (/obj/machinery/alarm/angled{dir = 4},/obj/structure/table/rack,/obj/random/maintenance/research,/obj/random/maintenance/research,/obj/random/maintenance/security,/obj/random/maintenance/clean,/obj/random/maintenance,/obj/random/contraband,/turf/simulated/floor,/area/maintenance/stellardelight/deck1/starboardcent) +"lZ" = (/obj/structure/table/glass,/obj/machinery/computer/med_data/laptop{dir = 4},/obj/item/device/radio{anchored = 1; canhear_range = 7; frequency = 1487; icon = 'icons/obj/items.dmi'; icon_state = "red_phone"; name = "Virology Emergency Phone"; pixel_x = 7; pixel_y = 9},/obj/machinery/button/remote/blast_door{desc = "A remote control-switch for shutters."; dir = 4; id = "virologyquar"; name = "Virology Emergency Lockdown Control"; pixel_x = -28; pixel_y = 5; req_access = list(5)},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/virology) +"ma" = (/obj/structure/table/steel,/obj/random/contraband,/obj/random/maintenance/research,/obj/random/maintenance,/turf/simulated/floor,/area/maintenance/stellardelight/deck1/exploration) +"mb" = (/obj/effect/floor_decal/industrial/warning{dir = 9},/obj/structure/cable/yellow{icon_state = "1-2"},/turf/simulated/floor/reinforced,/area/stellardelight/deck1/shuttlebay) +"mc" = (/obj/item/weapon/grenade/chem_grenade/cleaner,/obj/item/weapon/grenade/chem_grenade/cleaner,/obj/item/weapon/grenade/chem_grenade/cleaner,/obj/structure/table/steel,/obj/structure/disposalpipe/trunk{dir = 1},/obj/machinery/disposal/wall{dir = 1},/turf/simulated/floor/tiled/monotile,/area/janitor) +"md" = (/obj/machinery/light{dir = 4},/obj/structure/bed/chair/backed_red{dir = 8},/turf/simulated/floor/tiled/milspec,/area/stellardelight/deck1/exploration) +"me" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/carpet,/area/library) +"mf" = (/obj/structure/closet/secure_closet/pilot,/obj/machinery/status_display{pixel_y = 32},/turf/simulated/floor/tiled/eris/steel/panels,/area/stellardelight/deck1/pilot) +"mg" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/structure/bed/chair/office/dark,/obj/effect/landmark/start/detective,/turf/simulated/floor/tiled/white,/area/security/detectives_office) +"mh" = (/obj/structure/cable/white{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/turf/simulated/floor/tiled/white,/area/medical/patient_wing) +"mi" = (/obj/machinery/light{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/eris,/area/stellardelight/deck1/researchhall) +"mj" = (/obj/structure/cable/pink{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/machinery/light_switch{dir = 1; pixel_x = -24; pixel_y = -25},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 8},/turf/simulated/floor/tiled/dark,/area/security/security_processing) +"mk" = (/obj/effect/floor_decal/chapel{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/dark,/area/chapel/main) +"ml" = (/obj/structure/cable/green{icon_state = "0-2"},/obj/machinery/portable_atmospherics/canister/oxygen,/obj/machinery/power/apc/angled{dir = 1; name = "night shift APC"; nightshift_setting = 2},/turf/simulated/floor/tiled/eris/steel/panels,/area/stellardelight/deck1/pilot) +"mm" = (/obj/structure/cable/green{icon_state = "1-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/starboard) +"mn" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/effect/floor_decal/milspec/color/orange/corner{dir = 4},/turf/simulated/floor/tiled/dark,/area/prison/cell_block/C) +"mo" = (/obj/structure/bookcase{name = "bookcase (Fiction)"},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/obj/structure/sign/painting/library_secure{pixel_x = -30},/obj/item/weapon/book/bundle/custom_library/fiction/apurrrrfectman,/obj/item/weapon/book/bundle/custom_library/fiction/beyondthedoor,/obj/item/weapon/book/bundle/custom_library/fiction/chroniclesofmargatavol1,/obj/item/weapon/book/bundle/custom_library/fiction/coldmountain,/obj/item/weapon/book/bundle/custom_library/fiction/ghostship,/obj/item/weapon/book/bundle/custom_library/fiction/manfromsnowyriver,/obj/item/weapon/book/bundle/custom_library/fiction/metalglen,/obj/item/weapon/book/bundle/custom_library/fiction/poemsforarainyday,/obj/item/weapon/book/bundle/custom_library/fiction/raissue142,/obj/item/weapon/book/bundle/custom_library/fiction/raissue147,/obj/item/weapon/book/bundle/custom_library/fiction/silence,/obj/item/weapon/book/bundle/custom_library/fiction/taleoftherainbowcat,/obj/item/weapon/book/custom_library/fiction/blacksmithandkinglybloke,/obj/item/weapon/book/custom_library/fiction/irishairmanforseesdeath,/obj/item/weapon/book/custom_library/fiction/myrock,/obj/item/weapon/book/custom_library/fiction/starsandsometimesfallingones,/obj/item/weapon/book/custom_library/fiction/truelovehathmyheart,/turf/simulated/floor/wood,/area/library) +"mr" = (/obj/structure/cable/yellow{icon_state = "2-8"},/obj/machinery/light{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/aft) +"ms" = (/obj/structure/cable/green{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/port) +"mt" = (/obj/structure/cable/green{color = "#42038a"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 8},/turf/simulated/floor/tiled/eris,/area/stellardelight/deck1/researchequip) +"mu" = (/turf/simulated/floor/tiled/dark,/area/security/lobby) +"mv" = (/obj/structure/janitorialcart,/obj/machinery/light{dir = 1},/obj/item/clothing/suit/caution,/obj/item/clothing/suit/caution,/obj/item/clothing/suit/caution,/obj/item/clothing/suit/caution,/obj/item/device/lightreplacer,/obj/structure/mopbucket,/obj/item/weapon/reagent_containers/glass/bucket,/obj/item/weapon/mop,/obj/item/weapon/storage/bag/trash,/obj/item/weapon/soap/nanotrasen,/turf/simulated/floor/tiled/monotile,/area/janitor) +"mw" = (/obj/machinery/light_switch{dir = 4; pixel_x = -25},/obj/effect/floor_decal/milspec/color/red/half{dir = 9},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/turf/simulated/floor/tiled/white,/area/security/detectives_office) +"my" = (/obj/machinery/atmospherics/unary/freezer{dir = 8},/obj/machinery/light{dir = 4},/turf/simulated/floor/tiled/eris,/area/rnd/xenobiology/xenoflora_storage) +"mz" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/turf/simulated/floor/carpet/purcarpet,/area/stellardelight/deck1/dorms/dorm7) +"mA" = (/obj/structure/sign/deck1{pixel_y = 32},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/fore) +"mB" = (/obj/structure/railing/grey{dir = 8},/turf/simulated/floor,/area/maintenance/stellardelight/deck1/starboardaft) +"mC" = (/obj/machinery/power/pointdefense{id_tag = "sd_pd"},/obj/effect/floor_decal/industrial/warning/full,/obj/structure/cable/pink,/obj/structure/cable/pink{icon_state = "0-4"},/turf/simulated/floor/airless,/area/stellardelight/deck1/exterior) +"mD" = (/obj/structure/cable/yellow{icon_state = "4-8"},/obj/machinery/atmospherics/unary/vent_scrubber/on,/obj/effect/mouse_hole_spawner{dir = 1},/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/aft) +"mE" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/machinery/station_map{pixel_y = 32},/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/starboard) +"mF" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/obj/effect/floor_decal/milspec/color/red/half{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 8},/obj/effect/landmark/start/security,/turf/simulated/floor/tiled/dark,/area/security/security_lockerroom) +"mG" = (/obj/effect/floor_decal/industrial/warning{dir = 1},/obj/structure/cable/green{color = "#42038a"; icon_state = "4-8"},/turf/simulated/floor/reinforced,/area/stellardelight/deck1/shuttlebay) +"mH" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/obj/structure/bed/chair/backed_red{dir = 4},/obj/machinery/firealarm/angled{dir = 8},/turf/simulated/floor/tiled/milspec,/area/stellardelight/deck1/exploration) +"mI" = (/obj/machinery/door/firedoor/glass/hidden/steel{dir = 1},/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/aft) +"mJ" = (/obj/structure/cable/white{icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/stellardelight/deck1/lowermed) +"mK" = (/obj/structure/table/sifwooden_reinforced,/obj/item/weapon/storage/box/nifsofts_pilot,/turf/simulated/floor/tiled/eris/steel/panels,/area/stellardelight/deck1/pilot) +"mL" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/cable{icon_state = "1-4"},/turf/simulated/floor,/area/maintenance/stellardelight/substation/research) +"mM" = (/turf/simulated/wall/bay/steel,/area/janitor) +"mN" = (/obj/machinery/requests_console{department = "Robotics"; departmentType = 2; name = "Robotics RC"; pixel_y = 30},/obj/machinery/r_n_d/circuit_imprinter,/obj/item/weapon/reagent_containers/glass/beaker/sulphuric,/turf/simulated/floor/tiled/steel,/area/assembly/robotics) +"mO" = (/obj/effect/floor_decal/milspec/color/red/half{dir = 1},/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/fore) +"mP" = (/obj/machinery/computer/ship/navigation/telescreen{pixel_x = -32},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/milspec,/area/stellardelight/deck1/explobriefing) +"mQ" = (/obj/machinery/door/firedoor/glass/hidden/steel{dir = 8},/obj/effect/floor_decal/milspec/color/emerald/half{dir = 4},/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/starboard) +"mR" = (/obj/machinery/door/firedoor/glass,/obj/structure/cable/white{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/black{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/door/airlock/angled_bay/standard/color{dir = 8; door_color = "#ffffff"; name = "Recovery Room"; req_access = list(5); stripe_color = "#5a96bb"},/turf/simulated/floor/tiled/steel_ridged,/area/medical/patient_wing) +"mS" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/angled_bay/double/glass{name = "glass airlock"},/turf/simulated/floor/tiled/steel_ridged,/area/stellardelight/deck1/starboard) +"mT" = (/obj/structure/cable/green{icon_state = "4-8"},/obj/structure/cable/green{icon_state = "1-8"},/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/fore) +"mU" = (/obj/structure/closet/emcloset,/turf/simulated/floor/tiled/dark,/area/chapel/main) +"mV" = (/obj/machinery/hologram/holopad,/obj/effect/floor_decal/industrial/outline,/turf/simulated/floor/tiled/eris/steel/cargo,/area/stellardelight/deck1/oreprocessing) +"mW" = (/obj/machinery/door/firedoor/glass,/obj/structure/cable/green{color = "#42038a"; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/door/airlock/angled_bay/double/glass{dir = 8; door_color = "#333333"; name = "Away Mission Meeting Room"; req_one_access = null; stripe_color = "#5a19a8"},/turf/simulated/floor/tiled/steel_ridged,/area/stellardelight/deck1/explobriefing) +"mX" = (/obj/machinery/portable_atmospherics/hydroponics,/obj/machinery/atmospherics/portables_connector{dir = 8},/obj/machinery/camera/network/research{dir = 8},/turf/simulated/floor/tiled/eris,/area/rnd/xenobiology/xenoflora_storage) +"mY" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/structure/cable/green{color = "#42038a"; icon_state = "2-8"},/turf/simulated/floor/tiled/eris/steel/cargo,/area/stellardelight/deck1/shuttlebay) +"mZ" = (/obj/structure/table/rack/steel,/obj/item/clothing/gloves/arm_guard/bulletproof,/obj/item/clothing/shoes/leg_guard/bulletproof,/obj/item/clothing/suit/armor/bulletproof/alt,/obj/item/clothing/head/helmet/bulletproof,/obj/item/clothing/gloves/arm_guard/bulletproof,/obj/item/clothing/shoes/leg_guard/bulletproof,/obj/item/clothing/suit/armor/bulletproof/alt,/obj/item/clothing/head/helmet/bulletproof,/obj/machinery/atmospherics/pipe/simple/hidden/purple,/obj/effect/floor_decal/milspec/color/black,/turf/simulated/floor/tiled/dark,/area/security/armoury) +"nb" = (/obj/structure/disposaloutlet,/obj/structure/disposalpipe/trunk{dir = 8},/obj/machinery/light{dir = 1},/turf/simulated/floor/reinforced,/area/rnd/xenobiology) +"nc" = (/obj/structure/cable/green{icon_state = "1-2"},/turf/simulated/floor/airless,/area/stellardelight/deck1/exterior) +"nd" = (/obj/structure/table/rack/shelf,/obj/item/weapon/tank/oxygen,/obj/item/device/suit_cooling_unit,/obj/item/clothing/shoes/magboots,/obj/item/clothing/mask/breath,/obj/item/clothing/suit/space/void/expedition_medical,/obj/item/clothing/head/helmet/space/void/expedition_medical,/obj/machinery/door/window/brigdoor/eastright{req_access = list(5)},/turf/simulated/floor/tiled/milspec,/area/stellardelight/deck1/exploequipment) +"ne" = (/obj/machinery/power/breakerbox/activated{RCon_tag = "Exploration Substation Bypass"},/turf/simulated/floor,/area/maintenance/stellardelight/substation/exploration) +"nf" = (/turf/simulated/wall/bay/r_wall/brown,/area/stellardelight/deck1/dorms/dorm2) +"ng" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/light/small{dir = 4},/turf/simulated/floor,/area/maintenance/stellardelight/substation/atmospherics) +"nh" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/turf/simulated/floor/tiled/white,/area/security/detectives_office) +"ni" = (/turf/simulated/wall/bay/r_wall/steel,/area/security/tactical) +"nj" = (/obj/structure/table/sifwooden_reinforced,/mob/living/simple_mob/animal/passive/bird/azure_tit/iceman,/turf/simulated/floor/tiled/eris/steel/panels,/area/stellardelight/deck1/pilot) +"nk" = (/turf/simulated/wall/bay/r_wall/steel,/area/stellardelight/deck1/explobriefing) +"nl" = (/obj/structure/cable/green{color = "#42038a"; icon_state = "1-2"},/obj/structure/cable/green{color = "#42038a"},/obj/machinery/power/sensor{name = "Powernet Sensor - Exploration Subgrid"; name_tag = "Exploration Subgrid"},/obj/machinery/power/apc/angled{dir = 4; name = "night shift APC"; nightshift_setting = 2},/turf/simulated/floor,/area/maintenance/stellardelight/substation/exploration) +"nm" = (/turf/simulated/floor,/area/maintenance/stellardelight/deck1/portaft) +"nn" = (/obj/structure/cable/pink{icon_state = "2-4"},/turf/simulated/floor/airless,/area/stellardelight/deck1/exterior) +"no" = (/turf/simulated/floor/tiled/monotile,/area/janitor) +"nq" = (/obj/machinery/door/firedoor/glass,/obj/structure/cable/pink{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/door/airlock/angled_bay/standard/glass{door_color = "#8c1d11"; name = "Security Processing"; req_access = list(63); stripe_color = "#d27428"},/turf/simulated/floor/tiled/steel_ridged,/area/security/security_processing) +"nt" = (/obj/machinery/atmospherics/portables_connector{dir = 4},/obj/machinery/portable_atmospherics/canister/nitrogen,/obj/effect/floor_decal/industrial/outline/blue,/obj/structure/window/reinforced{dir = 1},/turf/simulated/floor/tiled/techfloor,/area/stellardelight/deck1/researchserver) +"nu" = (/obj/machinery/transhuman/synthprinter,/obj/item/device/radio/intercom{dir = 4; pixel_x = 24},/turf/simulated/floor/tiled/dark,/area/assembly/robotics) +"nv" = (/obj/structure/table/rack{dir = 8; layer = 2.6},/obj/machinery/light{dir = 8},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/obj/item/clothing/shoes/magboots,/obj/item/clothing/shoes/magboots,/obj/item/clothing/mask/breath,/obj/item/clothing/mask/breath,/obj/item/clothing/suit/space/void/security,/obj/item/clothing/suit/space/void/security,/obj/item/clothing/head/helmet/space/void/security,/obj/item/clothing/head/helmet/space/void/security,/obj/effect/floor_decal/milspec/color/red,/turf/simulated/floor/tiled/dark,/area/security/tactical) +"nw" = (/obj/structure/table/glass,/obj/machinery/computer/med_data/laptop{dir = 1; pixel_y = 4},/turf/simulated/floor/tiled/white,/area/medical/patient_wing) +"nx" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/angled_bay/standard/color{dir = 4; door_color = "#ffffff"; name = "Morgue"; req_access = list(6); stripe_color = "#5a96bb"},/turf/simulated/floor/tiled/steel_ridged,/area/medical/morgue) +"ny" = (/obj/machinery/door/firedoor/glass,/obj/structure/window/bay/reinforced,/obj/machinery/door/blast/angled/open{dir = 2; id = "explowindowlockdown"},/obj/structure/low_wall/bay/reinforced/steel,/turf/simulated/floor,/area/stellardelight/deck1/explobriefing) +"nz" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/turf/simulated/floor,/area/maintenance/stellardelight/deck1/portcent) +"nA" = (/obj/effect/floor_decal/industrial/warning{dir = 10},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/turf/simulated/floor/reinforced,/area/stellardelight/deck1/shuttlebay) +"nB" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/structure/reagent_dispensers/watertank,/turf/simulated/floor,/area/maintenance/stellardelight/deck1/exploration) +"nC" = (/obj/structure/cable/green{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/closet/emergsuit_wall{dir = 4; pixel_x = 27},/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/port) +"nD" = (/turf/simulated/floor/tiled/eris/white/gray_platform,/area/gateway) +"nE" = (/obj/machinery/computer/rdconsole/core{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/dark,/area/rnd/research) +"nF" = (/obj/structure/closet/secure_closet/pilot,/obj/machinery/atmospherics/unary/vent_pump/on,/turf/simulated/floor/tiled/eris/steel/panels,/area/stellardelight/deck1/pilot) +"nG" = (/obj/structure/cable/green{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/sign/department/medbay{pixel_x = -32},/obj/machinery/light{dir = 8},/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/aft) +"nH" = (/obj/machinery/light{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/turf/simulated/floor/tiled/steel_grid,/area/maintenance/stellardelight/deck1/starboardaft) +"nI" = (/obj/effect/floor_decal/milspec/color/emerald,/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/aft) +"nJ" = (/obj/structure/cable/white{icon_state = "1-2"},/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/angled_bay/double/glass{name = "glass airlock"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/steel_ridged,/area/stellardelight/deck1/port) +"nK" = (/turf/simulated/wall/rshull,/area/stellardelight/deck1/miningshuttle) +"nL" = (/obj/machinery/door/firedoor/glass,/turf/simulated/floor,/area/maintenance/stellardelight/deck1/starboardaft) +"nM" = (/obj/machinery/door/firedoor/glass,/obj/structure/window/bay/reinforced,/obj/structure/low_wall/bay/reinforced/steel,/turf/simulated/floor,/area/chapel/chapel_morgue) +"nN" = (/obj/machinery/light{dir = 8},/turf/simulated/floor/tiled/eris,/area/stellardelight/deck1/researchhall) +"nO" = (/obj/structure/cable/white{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/light_switch{dir = 1; pixel_x = 32; pixel_y = -24},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 5},/turf/simulated/floor/tiled/techfloor,/area/medical/morgue) +"nP" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/cable{icon_state = "1-8"},/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/turf/simulated/floor,/area/maintenance/stellardelight/deck1/exploration) +"nQ" = (/obj/structure/cable/green{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/firealarm/angled,/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/starboard) +"nS" = (/obj/structure/cable/green{icon_state = "2-4"},/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/port) +"nT" = (/obj/structure/cable/yellow{icon_state = "4-8"},/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/aft) +"nV" = (/obj/structure/table/reinforced,/obj/item/weapon/forensics/sample_kit/powder,/turf/simulated/floor/tiled/white,/area/security/detectives_office) +"nW" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/fore) +"nX" = (/obj/structure/cable/green{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/starboard) +"nY" = (/obj/structure/cable/yellow{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/sign/directions/evac{dir = 1; pixel_x = 32; pixel_y = 32},/obj/effect/catwalk_plated/dark,/turf/simulated/floor,/area/stellardelight/deck1/aft) +"nZ" = (/obj/structure/cable/pink{icon_state = "1-2"},/obj/machinery/door/firedoor/glass,/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor,/area/maintenance/stellardelight/deck1/portfore) +"oa" = (/obj/structure/table/steel_reinforced,/obj/item/weapon/tool/wrench,/obj/item/weapon/tool/crowbar,/obj/item/weapon/hand_labeler,/turf/simulated/floor/tiled/dark,/area/security/warden) +"ob" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/port) +"oc" = (/obj/machinery/light{dir = 4},/turf/simulated/floor/tiled/steel_grid,/area/stellardelight/deck1/aft) +"od" = (/obj/structure/cable/green{icon_state = "1-2"},/obj/structure/cable/green,/obj/machinery/power/sensor{name = "Powernet Sensor - Civilian Subgrid"; name_tag = "Civilian Subgrid"},/obj/machinery/power/apc/angled{dir = 8; name = "night shift APC"; nightshift_setting = 2},/turf/simulated/floor,/area/maintenance/stellardelight/substation/civilian) +"oe" = (/turf/simulated/floor,/area/maintenance/stellardelight/deck1/starboardaft) +"of" = (/obj/structure/cable/green{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/structure/flora/pottedplant/stoutbush,/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/port) +"og" = (/obj/effect/mouse_hole_spawner{dir = 1},/turf/simulated/floor,/area/maintenance/security_port) +"oh" = (/obj/structure/cable/white{icon_state = "4-8"},/obj/machinery/button/remote/airlock{desc = "A remote control switch for the cleaning room exit."; dir = 4; id = "resleeveexit"; name = "Door Control"; pixel_x = -27; pixel_y = 25},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 6},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/universal,/turf/simulated/floor/tiled/dark,/area/stellardelight/deck1/resleeving) +"oi" = (/obj/structure/cable/green{color = "#42038a"; icon_state = "1-8"},/turf/simulated/wall/bay/r_wall/steel,/area/rnd/xenobiology) +"ok" = (/obj/structure/cable/green{icon_state = "4-8"},/obj/structure/disposalpipe/sortjunction{dir = 4; name = "Exploration"; sortType = "Exploration"},/turf/simulated/floor,/area/maintenance/stellardelight/deck1/portcent) +"ol" = (/obj/machinery/newscaster/security_unit{pixel_x = 32},/obj/structure/closet/crate/bin{anchored = 1},/turf/simulated/floor/tiled/dark,/area/security/warden) +"om" = (/obj/machinery/computer/shuttle_control/explore/stellardelight/exploration,/turf/simulated/floor/tiled/eris/steel/gray_platform,/area/stellardelight/deck1/exploshuttle) +"on" = (/obj/structure/cable/yellow{icon_state = "4-8"},/obj/structure/cable/yellow{icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/turf/simulated/floor/tiled/eris/steel/cargo,/area/stellardelight/deck1/mining) +"oo" = (/obj/effect/floor_decal/industrial/warning/corner,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/effect/floor_decal/industrial/loading,/turf/simulated/floor/tiled/steel_grid,/area/assembly/robotics) +"op" = (/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 5},/turf/simulated/floor/tiled/white,/area/medical/patient_wing) +"oq" = (/obj/structure/cable/green{color = "#42038a"; icon_state = "4-8"},/obj/structure/cable/green{color = "#42038a"; icon_state = "1-8"},/obj/structure/cable/green{color = "#42038a"; icon_state = "1-4"},/turf/simulated/floor/airless,/area/stellardelight/deck1/exterior) +"or" = (/obj/structure/window/reinforced/full,/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 4},/obj/structure/grille,/obj/structure/window/reinforced{dir = 8},/obj/machinery/door/blast/angled/open{dir = 4; id = "xenobiopen6"; name = "Pen 6 Blast Doors"},/turf/simulated/floor/tiled/dark,/area/rnd/xenobiology) +"os" = (/obj/structure/sign/department/miner_dock{pixel_y = -32},/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/aft) +"ou" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/starboard) +"ov" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/eris/white/gray_platform,/area/gateway) +"ox" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/turf/simulated/floor/tiled/eris,/area/rnd/xenobiology/xenoflora) +"oy" = (/obj/structure/cable/white{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/effect/floor_decal/steeldecal/steel_decals3,/obj/effect/floor_decal/steeldecal/steel_decals3{dir = 6},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/aft) +"oz" = (/obj/structure/cable/green{color = "#42038a"; icon_state = "1-2"},/turf/simulated/wall/bay/r_wall/steel,/area/maintenance/stellardelight/substation/research) +"oA" = (/obj/machinery/button/remote/airlock{dir = 1; id = "dorm4"; name = "Room 4 Lock"; pixel_y = -22; specialfunctions = 4},/obj/machinery/power/apc/angled{dir = 4; name = "night shift APC"; nightshift_setting = 2},/obj/structure/cable/green{icon_state = "0-8"},/obj/structure/closet/crate/bin{anchored = 1},/turf/simulated/floor/carpet,/area/stellardelight/deck1/dorms/dorm4) +"oB" = (/obj/machinery/light,/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/obj/effect/landmark/vermin,/turf/simulated/floor/tiled/dark,/area/security/security_cell_hallway) +"oC" = (/obj/structure/cable/green{icon_state = "2-8"},/obj/structure/cable/green{icon_state = "2-4"},/obj/structure/cable/green{icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable/green{icon_state = "1-8"},/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor/tiled/white,/area/crew_quarters/toilet) +"oD" = (/obj/structure/cable/green{icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/techfloor,/area/stellardelight/deck1/starboard) +"oE" = (/turf/simulated/wall/bay/white,/area/medical/morgue) +"oF" = (/obj/machinery/light,/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/port) +"oG" = (/obj/effect/floor_decal/industrial/warning{dir = 4},/turf/simulated/floor/reinforced,/area/stellardelight/deck1/shuttlebay) +"oH" = (/obj/structure/disposalpipe/tagger{dir = 2; name = "package tagger - Void"; sort_tag = "Void"},/obj/structure/cable/white{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/sign/department/virology{pixel_x = 32},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/stellardelight/deck1/lowermed) +"oI" = (/obj/structure/cable/pink{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/turf/simulated/floor/tiled/dark,/area/security/security_lockerroom) +"oJ" = (/obj/structure/table/rack,/obj/item/clothing/suit/space/void/mining,/obj/item/clothing/mask/breath,/obj/item/clothing/shoes/magboots,/obj/item/clothing/head/helmet/space/void/mining,/obj/item/weapon/mining_scanner,/obj/item/device/radio/intercom{dir = 1; pixel_y = 24},/turf/simulated/floor/tiled/eris/steel/cargo,/area/stellardelight/deck1/miningequipment) +"oK" = (/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/machinery/hologram/holopad,/turf/simulated/floor/wood,/area/library) +"oL" = (/obj/structure/table/steel,/obj/item/device/integrated_circuit_printer,/turf/simulated/floor/tiled/techfloor,/area/rnd/workshop) +"oM" = (/obj/machinery/transhuman/resleever,/obj/structure/sign/painting/library_secure{pixel_x = 30},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/stellardelight/deck1/resleeving) +"oO" = (/obj/structure/cable/pink{icon_state = "0-2"},/obj/machinery/power/apc/angled{dir = 1; name = "night shift APC"; nightshift_setting = 2},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/effect/floor_decal/milspec/color/red/half{dir = 8},/turf/simulated/floor/tiled/dark,/area/security/security_lockerroom) +"oQ" = (/obj/machinery/vending/wardrobe/secdrobe,/obj/machinery/light{dir = 4},/obj/effect/floor_decal/milspec/color/red,/turf/simulated/floor/tiled/dark,/area/security/security_lockerroom) +"oR" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/effect/landmark/start/pilot,/turf/simulated/floor/tiled/eris/steel/panels,/area/stellardelight/deck1/pilot) +"oS" = (/obj/structure/table/steel,/obj/item/device/electronic_assembly/large/default,/obj/machinery/light{dir = 8},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/obj/machinery/firealarm/angled,/turf/simulated/floor/tiled/techfloor,/area/rnd/workshop) +"oT" = (/obj/structure/closet/l3closet/janitor,/turf/simulated/floor/tiled/monotile,/area/janitor) +"oU" = (/obj/structure/cable/green{icon_state = "1-8"},/obj/structure/cable/green{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/port) +"oW" = (/obj/machinery/light{dir = 8},/obj/structure/cable/white{icon_state = "1-2"},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/stellardelight/deck1/resleeving) +"oX" = (/turf/simulated/wall/bay/r_wall/purple,/area/rnd/storage) +"oY" = (/obj/machinery/organ_printer/flesh,/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/stellardelight/deck1/resleeving) +"oZ" = (/obj/structure/table/woodentable,/obj/item/weapon/pen,/turf/simulated/floor/tiled/milspec,/area/stellardelight/deck1/explobriefing) +"pa" = (/turf/simulated/floor/tiled/steel_grid,/area/stellardelight/deck1/aft) +"pb" = (/obj/structure/cable{icon_state = "2-4"},/turf/simulated/floor,/area/maintenance/stellardelight/substation/cargo) +"pc" = (/obj/machinery/atmospherics/portables_connector{dir = 4},/obj/effect/floor_decal/borderfloorblack/full,/obj/effect/floor_decal/industrial/outline,/obj/machinery/portable_atmospherics/canister/air,/obj/structure/cable/pink{icon_state = "4-8"},/turf/simulated/floor/tiled/dark,/area/security/armoury) +"pd" = (/obj/machinery/computer/ship/navigation/telescreen{pixel_x = -64},/turf/simulated/floor/tiled/milspec,/area/stellardelight/deck1/exploration) +"pe" = (/turf/simulated/floor/tiled/eris/steel/brown_platform,/area/stellardelight/deck1/miningshuttle) +"pf" = (/obj/machinery/atmospherics/unary/vent_pump/on,/turf/simulated/floor,/area/maintenance/stellardelight/deck1/exploration) +"pg" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/obj/effect/catwalk_plated/dark,/obj/effect/landmark/vines,/turf/simulated/floor,/area/stellardelight/deck1/starboard) +"ph" = (/obj/random/trash_pile,/turf/simulated/floor,/area/maintenance/security_port) +"pi" = (/obj/structure/cable/green{icon_state = "1-2"},/turf/simulated/floor,/area/maintenance/stellardelight/deck1/starboardcent) +"pj" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/eris,/area/rnd/xenobiology/xenoflora) +"pk" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/turf/simulated/floor/tiled/dark,/area/rnd/xenobiology) +"pl" = (/obj/structure/cable/pink{icon_state = "4-8"},/turf/simulated/wall/bay/r_wall/red,/area/security/tactical) +"pm" = (/obj/machinery/button/remote/airlock{dir = 1; id = "dorm6"; name = "Room 6 Lock"; pixel_y = -22; specialfunctions = 4},/obj/machinery/power/apc/angled{dir = 8; name = "night shift APC"; nightshift_setting = 2},/obj/structure/cable/green{icon_state = "0-4"},/obj/structure/closet/crate/bin{anchored = 1},/turf/simulated/floor/carpet/purcarpet,/area/stellardelight/deck1/dorms/dorm6) +"pn" = (/obj/structure/cable/pink{icon_state = "1-4"},/obj/structure/cable/pink{icon_state = "4-8"},/turf/simulated/floor/airless,/area/stellardelight/deck1/exterior) +"pp" = (/obj/machinery/door/firedoor/glass,/obj/structure/window/bay/reinforced,/obj/machinery/door/blast/angled/open{dir = 4; id = "chapelwindowlockdown"},/obj/structure/low_wall/bay/reinforced/black,/turf/simulated/floor,/area/chapel/main) +"pq" = (/obj/machinery/portable_atmospherics/canister/phoron,/obj/effect/floor_decal/industrial/warning{dir = 4},/turf/simulated/floor/tiled,/area/rnd/storage) +"pr" = (/obj/structure/cable/pink{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/effect/floor_decal/milspec/color/orange/half,/turf/simulated/floor/tiled/dark,/area/prison/cell_block) +"ps" = (/obj/machinery/door/firedoor/glass,/obj/structure/cable/green{color = "#42038a"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/door/airlock/angled_bay/standard/color{door_color = "#ffffff"; fill_color = "#ead9ff"; name = "Equipment Room"; req_access = list(7); stripe_color = "#5a19a8"},/turf/simulated/floor/tiled/steel_ridged,/area/rnd/research) +"pt" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/angled_bay/standard/color{dir = 4; door_color = "#ffffff"; fill_color = "#ead9ff"; name = "Toxins Storage"; req_access = list(8); stripe_color = "#5a19a8"},/obj/structure/cable/green{color = "#42038a"; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/turf/simulated/floor/tiled/steel_ridged,/area/rnd/storage) +"pu" = (/obj/machinery/portable_atmospherics/canister/phoron,/turf/simulated/floor/tiled,/area/rnd/storage) +"pv" = (/obj/structure/disposalpipe/segment,/obj/structure/cable/white{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/light_switch{dir = 8; pixel_x = 32; pixel_y = 7},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 5},/turf/simulated/floor/tiled/eris/white/cargo,/area/medical/virology) +"pw" = (/obj/effect/floor_decal/industrial/warning/corner{dir = 4},/obj/structure/cable/yellow{icon_state = "1-2"},/turf/simulated/floor/tiled/eris/steel/cargo,/area/stellardelight/deck1/oreprocessing) +"px" = (/obj/machinery/atmospherics/unary/vent_pump/on,/obj/machinery/alarm/angled{dir = 8},/obj/machinery/computer/guestpass{pixel_y = 24},/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/fore) +"py" = (/obj/machinery/door/firedoor/glass/hidden/steel,/obj/structure/cable/green{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/fore) +"pz" = (/obj/machinery/power/pointdefense{id_tag = "sd_pd"},/obj/effect/floor_decal/industrial/warning/full,/obj/structure/cable/green{color = "#42038a"; icon_state = "0-2"},/turf/simulated/floor/airless,/area/stellardelight/deck1/exterior) +"pA" = (/obj/structure/cable/white{icon_state = "1-4"},/obj/structure/cable/white{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 6},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 1},/obj/machinery/button/remote/airlock{desc = "A remote control switch for the cleaning room."; dir = 4; id = "resleeveclean"; name = "Door Control"; pixel_x = -27; pixel_y = -27},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/stellardelight/deck1/resleeving) +"pC" = (/turf/simulated/wall/bay/r_wall/purple,/area/stellardelight/deck1/exploequipment) +"pD" = (/obj/structure/table/woodentable,/obj/item/device/tvcamera,/obj/structure/sign/painting/library_private{pixel_y = -32},/obj/item/device/radio/intercom{dir = 4; pixel_x = 24},/turf/simulated/floor/wood,/area/library) +"pE" = (/obj/machinery/atmospherics/pipe/simple/hidden/purple{dir = 4},/obj/effect/floor_decal/borderfloorblack/full,/turf/simulated/floor/tiled/dark,/area/security/armoury) +"pF" = (/turf/simulated/wall/bay/purple,/area/stellardelight/deck1/researchequip) +"pH" = (/obj/machinery/door/firedoor/glass,/obj/structure/cable/yellow{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/door/airlock/angled_bay/standard/glass{door_color = "#a6753d"; name = "Mining"; req_access = list(31); stripe_color = "#3b2b1a"},/turf/simulated/floor/tiled/steel_ridged,/area/stellardelight/deck1/mining) +"pI" = (/obj/machinery/atmospherics/unary/vent_pump/high_volume{frequency = 1379; id_tag = "ex_airpump"},/obj/machinery/embedded_controller/radio/airlock/airlock_controller{id_tag = "ex_airlock"; pixel_y = 24; req_one_access = list(13); tag_airpump = "ex_airpump"; tag_chamber_sensor = "ex_sensor"; tag_exterior_door = "ex_exterior"; tag_interior_door = "ex_interior"},/turf/simulated/floor,/area/maintenance/stellardelight/deck1/exploration) +"pJ" = (/obj/structure/bed/chair/sofa/corp/left{dir = 1},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/turf/simulated/floor/carpet/purcarpet,/area/stellardelight/deck1/dorms/dorm2) +"pK" = (/obj/structure/cable/pink{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/purple,/obj/machinery/atmospherics/pipe/simple/hidden/cyan{dir = 4},/obj/effect/floor_decal/milspec/color/black,/turf/simulated/floor/tiled/dark,/area/security/armoury) +"pL" = (/obj/machinery/door/window/brigdoor/southright{req_access = list(77); req_one_access = newlist()},/obj/structure/cable/green{color = "#42038a"; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/turf/simulated/floor/tiled/eris,/area/rnd/xenobiology/xenoflora_storage) +"pM" = (/obj/structure/cable/green{color = "#42038a"; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/turf/simulated/floor/tiled/techfloor,/area/stellardelight/deck1/researchserver) +"pN" = (/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/effect/landmark/start/janitor,/turf/simulated/floor/tiled/monotile,/area/janitor) +"pO" = (/obj/structure/cable/yellow{icon_state = "1-2"},/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/angled_bay/hatch{door_color = "#e6ab22"; name = "Cargo Substation"; req_one_access = list(10); stripe_color = "#e6ab22"},/turf/simulated/floor/tiled/steel_ridged,/area/maintenance/stellardelight/substation/cargo) +"pP" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/turf/simulated/floor,/area/maintenance/stellardelight/deck1/exploration) +"pQ" = (/turf/simulated/wall/bay/r_wall/steel,/area/rnd/xenobiology/xenoflora_storage) +"pR" = (/turf/simulated/wall/bay/brown,/area/stellardelight/deck1/miningequipment) +"pS" = (/obj/effect/floor_decal/steeldecal/steel_decals10{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals10{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/turf/simulated/floor/tiled/white,/area/stellardelight/deck1/shower) +"pT" = (/obj/structure/cable/pink{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/light/small,/turf/simulated/floor/tiled/dark,/area/chapel/main) +"pU" = (/obj/structure/railing/grey{dir = 8},/obj/structure/sign/directions/evac{dir = 1; pixel_x = -32},/obj/structure/sign/directions/medical{dir = 1; pixel_x = -32; pixel_y = 6},/obj/structure/sign/directions/stairs_up{dir = 1; pixel_x = -32; pixel_y = 12},/turf/simulated/floor,/area/stellardelight/deck1/aft) +"pV" = (/obj/structure/cable/yellow{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/turf/simulated/floor/tiled/eris/steel/cargo,/area/stellardelight/deck1/mining) +"pX" = (/obj/machinery/shower{dir = 1; pixel_y = -2},/obj/structure/window/reinforced{dir = 4},/obj/structure/curtain/open/shower/medical,/obj/effect/floor_decal/industrial/warning{dir = 1},/turf/simulated/floor/tiled/steel,/area/medical/virology) +"pY" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/bed/chair/office/dark,/obj/effect/landmark/start/detective,/turf/simulated/floor/tiled/white,/area/security/detectives_office) +"pZ" = (/obj/machinery/light{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/turf/simulated/floor/tiled/dark,/area/security/security_equiptment_storage) +"qa" = (/obj/machinery/suit_cycler/medical,/turf/simulated/floor/tiled/eris/white/bluecorner,/area/stellardelight/deck1/paramedic) +"qb" = (/obj/machinery/conveyor{dir = 8; id = "miningops"},/obj/machinery/light,/turf/simulated/floor/tiled/eris/steel/cargo,/area/stellardelight/deck1/oreprocessing) +"qd" = (/obj/machinery/atmospherics/pipe/simple/hidden{dir = 5},/turf/simulated/floor,/area/maintenance/stellardelight/deck1/exploration) +"qe" = (/obj/machinery/alarm/angled{dir = 8},/obj/effect/floor_decal/milspec/color/red/half{dir = 6},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 8},/turf/simulated/floor/tiled/dark,/area/security/security_cell_hallway) +"qg" = (/obj/effect/floor_decal/industrial/warning{dir = 4},/obj/machinery/embedded_controller/radio/simple_docking_controller{dir = 8; frequency = 1380; id_tag = "miningdocker_bay"; pixel_x = 24},/turf/simulated/floor/reinforced,/area/stellardelight/deck1/shuttlebay) +"qh" = (/turf/simulated/wall/bay/white,/area/medical/exam_room) +"qj" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable{icon_state = "1-4"},/obj/structure/disposalpipe/sortjunction/flipped{dir = 4; name = "Library"; sortType = "Library"},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/effect/catwalk_plated/dark,/turf/simulated/floor,/area/stellardelight/deck1/starboard) +"qk" = (/obj/machinery/newscaster{pixel_x = 30},/obj/structure/cable/green{color = "#42038a"; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/milspec,/area/stellardelight/deck1/explobriefing) +"ql" = (/obj/structure/table/woodentable,/obj/machinery/light{dir = 1},/obj/machinery/atmospherics/unary/vent_scrubber/on,/turf/simulated/floor/tiled/milspec,/area/stellardelight/deck1/explobriefing) +"qm" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/turf/simulated/floor/tiled/techfloor,/area/stellardelight/deck1/port) +"qn" = (/obj/structure/cable/white{icon_state = "1-4"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/light/small,/turf/simulated/floor/tiled/white,/area/medical/patient_wing) +"qo" = (/obj/machinery/atmospherics/unary/vent_scrubber/on,/obj/structure/closet/emcloset,/turf/simulated/floor/tiled/techfloor,/area/stellardelight/deck1/port) +"qp" = (/obj/effect/floor_decal/milspec/color/red/half{dir = 8},/obj/item/device/radio/intercom{dir = 8; pixel_x = -24},/turf/simulated/floor/tiled/dark,/area/security/lobby) +"qq" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor,/area/maintenance/stellardelight/deck1/exploration) +"qs" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/effect/floor_decal/milspec/color/orange/corner{dir = 1},/turf/simulated/floor/tiled/dark,/area/prison/cell_block) +"qu" = (/obj/structure/cable/green{icon_state = "4-8"},/obj/effect/landmark{name = "lightsout"},/obj/machinery/hologram/holopad,/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/starboard) +"qv" = (/obj/structure/cable/white{icon_state = "1-2"},/obj/structure/sign/deck1{pixel_x = -32},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/aft) +"qw" = (/obj/machinery/door/firedoor/glass,/obj/structure/cable/green{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/door/airlock/angled_bay/standard/color{door_color = "#9c9c9c"; fill_color = "#5c5c5c"; id_tag = "dorm4"; name = "Room 4"; stripe_color = "#89bd66"},/turf/simulated/floor/tiled/steel_ridged,/area/stellardelight/deck1/dorms/dorm4) +"qx" = (/obj/machinery/atmospherics/unary/heater{dir = 4},/obj/machinery/alarm/angled{dir = 4},/turf/simulated/floor/tiled/eris,/area/rnd/xenobiology/xenoflora_storage) +"qy" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/green{icon_state = "1-2"},/obj/structure/sign/directions/evac{pixel_x = 32},/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/port) +"qA" = (/turf/simulated/wall/bay/r_wall/purple,/area/stellardelight/deck1/researchserver) +"qB" = (/obj/structure/table/bench/steel,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden{dir = 1},/turf/simulated/floor/tiled/dark,/area/security/tactical) +"qD" = (/turf/simulated/wall/bay/white,/area/stellardelight/deck1/paramedic) +"qE" = (/turf/simulated/wall/bay/r_wall/steel,/area/stellardelight/deck1/shower) +"qF" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/firealarm/angled{dir = 4},/obj/structure/cable/green{icon_state = "2-8"},/turf/simulated/floor/tiled/dark,/area/chapel/chapel_morgue) +"qG" = (/obj/machinery/door_timer/cell_3{id = "Cell C"; name = "Cell C"; pixel_x = 32; pixel_y = 32},/turf/simulated/floor/tiled/dark,/area/security/security_cell_hallway) +"qH" = (/obj/item/modular_computer/console/preset/civilian,/turf/simulated/floor/tiled/eris/steel/brown_platform,/area/stellardelight/deck1/miningshuttle) +"qI" = (/obj/structure/table/steel,/obj/item/weapon/storage/box/flashbangs{pixel_x = -2; pixel_y = -2},/obj/item/weapon/storage/box/handcuffs{pixel_x = 6; pixel_y = -2},/obj/item/weapon/storage/box/evidence,/obj/machinery/alarm/angled{dir = 4},/turf/simulated/floor/tiled/dark,/area/security/security_equiptment_storage) +"qJ" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/angled_bay/hatch{door_color = "#8c1d11"; name = "maintenance access"; req_one_access = list(38,63); stripe_color = "#8c1d11"},/turf/simulated/floor/tiled/steel_ridged,/area/security/tactical) +"qK" = (/obj/structure/bed/chair/sofa/corp/left,/turf/simulated/floor/carpet/purcarpet,/area/stellardelight/deck1/dorms/dorm6) +"qL" = (/obj/structure/cable/green{icon_state = "1-2"},/obj/machinery/camera/network/halls{dir = 4},/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/starboard) +"qM" = (/obj/structure/cable/yellow{icon_state = "4-8"},/obj/machinery/light{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/eris/steel/cargo,/area/stellardelight/deck1/shuttlebay) +"qN" = (/obj/structure/sign/painting/chapel_secure{pixel_x = -32},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/dark,/area/chapel/main) +"qO" = (/obj/structure/table/reinforced,/obj/effect/floor_decal/milspec/color/orange/half{dir = 10},/turf/simulated/floor/tiled/dark,/area/prison/cell_block/C) +"qP" = (/obj/structure/cable/pink{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/turf/simulated/floor/tiled/dark,/area/prison/cell_block) +"qQ" = (/obj/machinery/light_switch{pixel_y = 25},/obj/machinery/button/remote/blast_door{id = "chapelwindowlockdown"; name = "Window Lockdown"; pixel_x = -9; pixel_y = 25},/turf/simulated/floor/carpet,/area/chapel/main) +"qR" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/turf/simulated/floor/tiled/dark,/area/stellardelight/deck1/resleeving) +"qS" = (/obj/machinery/button/remote/blast_door{id = "brigwindowlockdown"; name = "Window Lockdown"; pixel_y = 25; req_access = list(1)},/turf/simulated/floor/tiled/dark,/area/security/security_cell_hallway) +"qT" = (/obj/structure/cable/green{icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/sign/directions/evac{dir = 1; pixel_x = -32; pixel_y = 32},/obj/effect/catwalk_plated/dark,/obj/item/device/radio/beacon,/turf/simulated/floor,/area/stellardelight/deck1/aft) +"qU" = (/obj/machinery/mineral/stacking_machine,/turf/simulated/floor/tiled/eris/steel/cargo,/area/stellardelight/deck1/oreprocessing) +"qV" = (/obj/machinery/suit_cycler/mining,/turf/simulated/floor/tiled/eris/steel/cargo,/area/stellardelight/deck1/miningequipment) +"qW" = (/obj/machinery/door/firedoor/glass,/obj/structure/cable/white{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/door/airlock/angled_bay/standard/color{dir = 8; door_color = "#ffffff"; name = "Resleeving Lab"; req_access = list(5); stripe_color = "#5a96bb"},/turf/simulated/floor/tiled/steel_ridged,/area/stellardelight/deck1/resleeving) +"qX" = (/turf/space/internal_edge/right,/area/stellardelight/deck1/starboard) +"qY" = (/obj/effect/floor_decal/milspec/color/orange/half,/turf/simulated/floor/tiled/dark,/area/prison/cell_block) +"qZ" = (/obj/structure/table/steel,/obj/item/device/retail_scanner/security,/obj/item/device/retail_scanner/security,/obj/item/weapon/tool/crowbar,/obj/item/weapon/tool/crowbar,/obj/item/weapon/tool/crowbar,/obj/item/weapon/tool/crowbar,/obj/item/weapon/tool/crowbar,/obj/item/weapon/tool/crowbar,/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/obj/effect/floor_decal/milspec/color/red,/obj/item/device/radio/intercom{dir = 1; pixel_y = 24},/turf/simulated/floor/tiled/dark,/area/security/security_lockerroom) +"ra" = (/turf/simulated/wall/bay/r_wall/steel,/area/maintenance/stellardelight/deck1/exploration) +"rb" = (/obj/machinery/button/remote/blast_door{dir = 8; id = "GatewayShutterW"; name = "EVA Shutter"; pixel_x = 23; req_one_access = list(18,19,43,67)},/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/port) +"rc" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/turf/simulated/floor/carpet/purcarpet,/area/stellardelight/deck1/dorms/dorm2) +"rd" = (/obj/machinery/atmospherics/pipe/simple/visible{dir = 4},/obj/machinery/meter,/obj/machinery/light{dir = 1},/turf/simulated/floor/tiled/eris,/area/rnd/xenobiology/xenoflora_storage) +"re" = (/obj/structure/cable/white{icon_state = "1-2"},/obj/structure/sign/painting/public{pixel_x = -30},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/port) +"rf" = (/obj/machinery/light/small,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/turf/simulated/floor,/area/maintenance/stellardelight/deck1/exploration) +"rg" = (/obj/structure/cable/white{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/port) +"rh" = (/obj/structure/table/steel,/obj/item/weapon/cell/device/weapon{pixel_x = 3},/obj/item/weapon/cell/device/weapon{pixel_x = -6; pixel_y = -3},/obj/item/weapon/storage/box/donut,/turf/simulated/floor/tiled/dark,/area/security/security_equiptment_storage) +"ri" = (/obj/structure/cable/green{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/turf/simulated/floor/tiled/eris/steel/panels,/area/stellardelight/deck1/pilot) +"rj" = (/obj/machinery/camera/network/research,/obj/machinery/vending/hydronutrients,/turf/simulated/floor/tiled/eris,/area/rnd/xenobiology/xenoflora) +"rk" = (/obj/structure/bed/chair/backed_red,/obj/machinery/status_display{pixel_y = 32},/turf/simulated/floor/tiled/milspec,/area/stellardelight/deck1/aft) +"rl" = (/obj/structure/cable/orange{icon_state = "2-8"},/obj/structure/cable/orange{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden{dir = 10},/turf/simulated/floor,/area/maintenance/stellardelight/deck1/exploration) +"rm" = (/obj/machinery/portable_atmospherics/canister/oxygen,/turf/simulated/floor/tiled/eris/white/bluecorner,/area/stellardelight/deck1/paramedic) +"rn" = (/obj/structure/table/rack,/obj/item/clothing/suit/space/void/mining,/obj/item/clothing/mask/breath,/obj/item/clothing/shoes/magboots,/obj/item/clothing/head/helmet/space/void/mining,/obj/item/weapon/mining_scanner,/obj/machinery/light{dir = 1},/obj/machinery/atmospherics/unary/vent_pump/on,/obj/machinery/camera/network/mining{dir = 4},/turf/simulated/floor/tiled/eris/steel/cargo,/area/stellardelight/deck1/miningequipment) +"ro" = (/obj/machinery/power/pointdefense{id_tag = "sd_pd"},/obj/effect/floor_decal/industrial/warning/full,/obj/structure/cable/pink{icon_state = "0-8"},/obj/structure/cable/pink{icon_state = "0-2"},/turf/simulated/floor/airless,/area/stellardelight/deck1/exterior) +"rp" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/morgue{dir = 2; name = "Private Study"; req_access = list(37)},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/steel_ridged,/area/library) +"rr" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/wood,/area/library) +"rs" = (/obj/structure/cable/pink{icon_state = "1-2"},/obj/machinery/power/sensor{name = "Powernet Sensor - Security Subgrid"; name_tag = "Security Subgrid"},/obj/structure/cable/pink{icon_state = "0-2"},/obj/machinery/power/apc/angled{dir = 4; name = "night shift APC"; nightshift_setting = 2},/turf/simulated/floor,/area/maintenance/stellardelight/substation/security) +"rt" = (/obj/structure/table/woodentable,/obj/item/weapon/folder/blue,/turf/simulated/floor/tiled/milspec,/area/stellardelight/deck1/explobriefing) +"ru" = (/obj/machinery/light_switch{dir = 4; pixel_x = -25; pixel_y = 32},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 6},/turf/simulated/floor/tiled/steel_dirty,/area/assembly/robotics) +"rw" = (/obj/structure/cable/green{icon_state = "2-4"},/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/port) +"ry" = (/obj/machinery/door/firedoor/glass,/obj/structure/table/reinforced,/obj/item/weapon/paper_bin{pixel_x = -1; pixel_y = 4},/obj/item/weapon/pen,/obj/machinery/door/blast/angled_shutter/open{dir = 4; id = "dontlooktmyrobotpenis"; name = "Privacy Shutters"},/obj/structure/window/reinforced{dir = 4},/turf/simulated/floor/tiled/monotile,/area/assembly/robotics) +"rA" = (/obj/machinery/door/firedoor/glass,/obj/structure/cable/green{icon_state = "1-2"},/obj/machinery/door/airlock/angled_bay/hatch{door_color = "#e6ab22"; name = "Civilian Substation"; req_one_access = list(10); stripe_color = "#e6ab22"},/turf/simulated/floor/tiled/steel_ridged,/area/maintenance/stellardelight/substation/civilian) +"rB" = (/obj/structure/cable/green{color = "#42038a"; icon_state = "1-2"},/obj/machinery/light/small{dir = 4},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor,/area/maintenance/stellardelight/deck1/exploration) +"rC" = (/obj/machinery/power/terminal{dir = 8},/obj/structure/cable,/obj/machinery/alarm/angled{dir = 8},/turf/simulated/floor,/area/maintenance/stellardelight/substation/civilian) +"rD" = (/obj/structure/extinguisher_cabinet{dir = 8; pixel_x = 30},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/turf/simulated/floor/tiled/steel_grid,/area/rnd/research) +"rF" = (/obj/structure/cable/pink{icon_state = "1-2"},/turf/simulated/wall/bay/r_wall/red,/area/security/armoury) +"rG" = (/obj/machinery/light,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/aft) +"rH" = (/obj/structure/closet/l3closet/security,/obj/machinery/atmospherics/unary/vent_scrubber/on,/obj/machinery/firealarm/angled,/obj/effect/floor_decal/milspec/color/black,/turf/simulated/floor/tiled/dark,/area/security/armoury) +"rI" = (/obj/structure/table/rack,/obj/item/clothing/suit/space/void/mining,/obj/item/clothing/mask/breath,/obj/item/clothing/shoes/magboots,/obj/item/clothing/head/helmet/space/void/mining,/obj/item/weapon/mining_scanner,/obj/structure/cable/yellow{icon_state = "0-2"},/obj/machinery/power/apc/angled{dir = 1; name = "night shift APC"; nightshift_setting = 2},/turf/simulated/floor/tiled/eris/steel/cargo,/area/stellardelight/deck1/miningequipment) +"rJ" = (/turf/simulated/floor,/area/maintenance/stellardelight/substation/security) +"rK" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/door/firedoor/glass,/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor,/area/maintenance/stellardelight/deck1/portaft) +"rL" = (/obj/machinery/door/firedoor/glass,/obj/structure/cable/white{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/door/airlock/angled_bay/standard/color{door_color = "#ffffff"; name = "Morgue"; req_access = list(5,6); stripe_color = "#5a96bb"},/turf/simulated/floor/tiled/steel_ridged,/area/medical/morgue) +"rM" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/milspec,/area/stellardelight/deck1/exploration) +"rN" = (/obj/structure/cable/green{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/dark,/area/chapel/main) +"rO" = (/obj/effect/floor_decal/borderfloorblack/full,/obj/effect/floor_decal/industrial/hatch/yellow,/obj/machinery/deployable/barrier,/turf/simulated/floor/tiled/dark,/area/security/armoury) +"rP" = (/obj/structure/cable/green{icon_state = "1-4"},/obj/structure/cable/green{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/effect/floor_decal/steeldecal/steel_decals3{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals3{dir = 10},/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/port) +"rQ" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/blast/angled{dir = 4; id = "GatewayShutterE"},/obj/structure/cable{icon_state = "4-8"},/turf/simulated/floor/tiled/steel_ridged,/area/gateway) +"rT" = (/turf/simulated/floor/tiled/dark,/area/rnd/xenobiology) +"rV" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/machinery/alarm/angled{dir = 8},/turf/simulated/floor/tiled/steel_grid,/area/assembly/robotics) +"rW" = (/obj/machinery/button/remote/airlock{id = "dorm8"; name = "Room 8 Lock"; pixel_y = 24; specialfunctions = 4},/obj/machinery/power/apc/angled{dir = 8; name = "night shift APC"; nightshift_setting = 2},/obj/structure/cable/green{icon_state = "0-4"},/obj/structure/closet/crate/bin{anchored = 1},/turf/simulated/floor/carpet,/area/stellardelight/deck1/dorms/dorm8) +"rX" = (/obj/machinery/light{dir = 8},/obj/structure/cable/pink{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/dark,/area/security/security_cell_hallway) +"rY" = (/obj/structure/table/woodentable,/obj/item/device/flashlight/lamp{pixel_x = -14; pixel_y = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/machinery/button/remote/blast_door{dir = 1; id = "chapelofficelockdown"; name = "Window Lockdown"; pixel_x = -5; pixel_y = 5},/turf/simulated/floor/lino,/area/chapel/office) +"rZ" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/obj/structure/closet/l3closet/janitor,/turf/simulated/floor/tiled/monotile,/area/janitor) +"sa" = (/obj/structure/cable/green{color = "#42038a"; icon_state = "1-4"},/turf/simulated/floor/airless,/area/stellardelight/deck1/exterior) +"sb" = (/obj/structure/cable{icon_state = "2-8"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/sign/directions/dorms{dir = 10; pixel_x = 32; pixel_y = 6},/obj/structure/sign/directions/science{pixel_x = 32},/obj/structure/sign/directions/janitor{dir = 8; pixel_x = 32; pixel_y = -6},/obj/machinery/camera/network/halls{dir = 8},/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/starboard) +"sc" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/turf/simulated/floor/tiled/steel_grid,/area/assembly/robotics) +"sd" = (/obj/structure/bed/chair{dir = 1},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/turf/simulated/floor/tiled/dark,/area/chapel/chapel_morgue) +"se" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/starboard) +"sf" = (/obj/machinery/disease2/isolator,/obj/machinery/light/floortube{dir = 8; pixel_x = -6},/obj/machinery/alarm/angled,/obj/item/device/radio/intercom{dir = 8; pixel_x = -24},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/virology) +"sg" = (/obj/structure/cable/green{icon_state = "2-8"},/obj/structure/cable/green{icon_state = "4-8"},/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/starboard) +"sh" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/sign/department/medbay{name = "RESLEEVING"; pixel_x = 32},/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/aft) +"si" = (/obj/effect/floor_decal/industrial/warning{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/reinforced,/area/stellardelight/deck1/shuttlebay) +"sj" = (/turf/simulated/floor/tiled/eris,/area/rnd/xenobiology/xenoflora) +"sl" = (/obj/structure/bed/padded,/obj/item/weapon/bedsheet/medical,/obj/structure/curtain/open/privacy,/obj/machinery/alarm/angled,/obj/machinery/light/small{dir = 4},/turf/simulated/floor/tiled/white,/area/medical/patient_wing) +"sm" = (/obj/structure/bed/chair/comfy/black{dir = 1},/turf/simulated/floor/carpet/bcarpet,/area/stellardelight/deck1/starboard) +"sn" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/carpet,/area/stellardelight/deck1/dorms/dorm1) +"so" = (/obj/machinery/gateway{dir = 5},/turf/simulated/floor/tiled/eris/white/gray_platform,/area/gateway) +"sp" = (/obj/machinery/power/apc/angled{dir = 1; name = "night shift APC"; nightshift_setting = 2},/obj/structure/cable/pink{icon_state = "0-2"},/turf/simulated/floor,/area/maintenance/security_port) +"sq" = (/obj/structure/table/standard,/obj/machinery/cell_charger,/obj/structure/cable/green{color = "#42038a"; icon_state = "4-8"},/obj/machinery/light,/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/turf/simulated/floor/tiled/steel,/area/assembly/robotics) +"sr" = (/obj/structure/closet/secure_closet/warden,/obj/item/weapon/book/manual/security_space_law,/obj/item/gunbox/warden,/obj/machinery/power/apc/angled{dir = 8},/obj/structure/cable/pink{icon_state = "0-4"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/item/weapon/gun/energy/sizegun,/obj/item/weapon/storage/box/donut,/obj/item/device/ticket_printer,/turf/simulated/floor/tiled/dark,/area/security/warden) +"ss" = (/obj/machinery/optable{name = "Robotics Operating Table"},/obj/effect/floor_decal/industrial/outline/yellow,/obj/structure/closet/secure_closet/medical_wall/anesthetics{pixel_x = 32; req_access = list(); req_one_access = list(29,45)},/obj/machinery/camera/network/research{dir = 1},/turf/simulated/floor/tiled/dark,/area/assembly/robotics) +"st" = (/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled/steel_ridged,/area/stellardelight/deck1/mining) +"su" = (/obj/structure/cable/pink{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/camera/network/security{dir = 1},/obj/effect/floor_decal/milspec/color/black,/turf/simulated/floor/tiled/dark,/area/security/security_cell_hallway) +"sv" = (/obj/structure/cable/pink{icon_state = "1-2"},/turf/simulated/wall/bay/r_wall/steel,/area/security/armoury) +"sw" = (/obj/structure/cable/green{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/port) +"sx" = (/obj/structure/cable/pink{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/turf/simulated/floor/tiled/dark,/area/prison/cell_block/B) +"sy" = (/obj/effect/floor_decal/industrial/warning/full,/obj/structure/cable/green{icon_state = "0-2"},/obj/structure/cable/green{icon_state = "0-4"},/obj/machinery/power/pointdefense{id_tag = "sd_pd"},/turf/simulated/floor/airless,/area/stellardelight/deck1/exterior) +"sz" = (/obj/structure/sign/deck1{pixel_y = 32},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/fore) +"sA" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/obj/structure/table/reinforced,/obj/machinery/light{dir = 8},/obj/effect/floor_decal/milspec/color/orange/half{dir = 8},/turf/simulated/floor/tiled/dark,/area/prison/cell_block/C) +"sB" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/obj/effect/landmark/vermin,/turf/simulated/floor/tiled/dark,/area/chapel/main) +"sC" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/angled_bay/double/glass{door_color = "#333333"; name = "Shuttle Bay"; stripe_color = "#5a19a8"},/turf/simulated/floor/tiled/steel_ridged,/area/stellardelight/deck1/exploration) +"sD" = (/obj/machinery/light/small{dir = 1},/turf/simulated/floor,/area/maintenance/stellardelight/deck1/starboardfore) +"sF" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/alarm/angled{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor,/area/maintenance/stellardelight/deck1/exploration) +"sG" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/green{icon_state = "1-2"},/obj/effect/floor_decal/steeldecal/steel_decals3{dir = 6},/obj/effect/floor_decal/steeldecal/steel_decals3,/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/port) +"sH" = (/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor/reinforced,/area/rnd/xenobiology) +"sI" = (/obj/machinery/door/window/eastright{dir = 8; name = "Virology Isolation Room One"; req_one_access = list(39)},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/turf/simulated/floor/tiled/steel_ridged,/area/medical/virology) +"sJ" = (/obj/random/trash_pile,/turf/simulated/floor,/area/maintenance/stellardelight/deck1/starboardfore) +"sK" = (/obj/structure/closet/secure_closet/personal/patient,/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/obj/machinery/camera/network/medbay{dir = 1},/turf/simulated/floor/tiled/eris/white/cargo,/area/medical/virology) +"sL" = (/obj/structure/closet/secure_closet/security,/obj/item/device/holowarrant,/obj/item/clothing/accessory/badge/holo/cord,/obj/item/clothing/accessory/badge/holo/cord,/obj/machinery/light{dir = 8},/obj/effect/floor_decal/milspec/color/red,/obj/item/device/ticket_printer,/turf/simulated/floor/tiled/dark,/area/security/security_lockerroom) +"sM" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atm{pixel_y = 30},/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/aft) +"sN" = (/obj/structure/cable/green{color = "#42038a"; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/milspec,/area/stellardelight/deck1/explobriefing) +"sO" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/turf/simulated/floor/tiled/milspec,/area/stellardelight/deck1/exploequipment) +"sP" = (/obj/machinery/power/breakerbox/activated{RCon_tag = "Security Substation Bypass"},/turf/simulated/floor,/area/maintenance/stellardelight/substation/security) +"sQ" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor,/area/maintenance/stellardelight/deck1/portcent) +"sR" = (/obj/machinery/status_display{pixel_y = 32},/turf/simulated/floor/tiled/steel_grid,/area/stellardelight/deck1/mining) +"sS" = (/obj/machinery/recharge_station,/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/turf/simulated/floor/tiled/eris/steel/cargo,/area/stellardelight/deck1/mining) +"sT" = (/obj/structure/cable/green{color = "#42038a"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/firealarm/angled{dir = 8},/turf/simulated/floor/tiled/milspec,/area/stellardelight/deck1/explobriefing) +"sU" = (/obj/structure/closet/coffin,/obj/structure/cable/green{icon_state = "0-2"},/obj/machinery/power/apc/angled{dir = 1; name = "night shift APC"; nightshift_setting = 2},/turf/simulated/floor/tiled/dark,/area/chapel/main) +"sV" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor,/area/maintenance/stellardelight/deck1/starboardfore) +"sW" = (/obj/machinery/door/airlock/angled_bay/external/glass{dir = 4; frequency = 1379; id_tag = "ex_exterior"; locked = 1; name = "Exterior Airlock"},/obj/machinery/door/firedoor/glass,/obj/machinery/access_button{command = "cycle_exterior"; frequency = 1379; master_tag = "ex_airlock"; name = "exterior access button"; pixel_y = 32; req_one_access = list(13)},/turf/simulated/floor/tiled/steel_ridged,/area/maintenance/stellardelight/deck1/exploration) +"sX" = (/obj/machinery/camera/network/research/xenobio{dir = 1},/obj/structure/closet/crate/bin{anchored = 1},/turf/simulated/floor/tiled/steel_grid,/area/rnd/xenobiology) +"sY" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/light_switch{pixel_y = 24},/turf/simulated/floor/tiled/steel_grid,/area/rnd/research) +"sZ" = (/obj/effect/floor_decal/industrial/warning{dir = 1},/obj/machinery/atmospherics/unary/vent_pump/on,/obj/machinery/alarm/angled{dir = 8},/turf/simulated/floor/tiled/eris/steel/cargo,/area/stellardelight/deck1/oreprocessing) +"ta" = (/turf/simulated/wall/bay/white,/area/stellardelight/deck1/lowermed) +"tb" = (/obj/structure/cable{icon_state = "4-8"},/turf/simulated/floor/tiled/eris/white/gray_platform,/area/gateway) +"tc" = (/obj/structure/reagent_dispensers/fueltank,/turf/simulated/floor,/area/maintenance/stellardelight/deck1/exploration) +"td" = (/obj/structure/cable/pink{icon_state = "4-8"},/obj/structure/cable/pink{icon_state = "2-4"},/turf/simulated/wall/bay/r_wall/steel,/area/maintenance/stellardelight/deck1/portcent) +"te" = (/obj/machinery/firealarm/angled,/obj/machinery/chemical_analyzer,/turf/simulated/floor/tiled/milspec,/area/stellardelight/deck1/exploequipment) +"tf" = (/obj/structure/closet/wardrobe/robotics_black,/turf/simulated/floor/tiled/dark,/area/stellardelight/deck1/researchequip) +"tg" = (/obj/effect/floor_decal/milspec/color/black,/turf/simulated/floor/tiled/dark,/area/security/armoury) +"th" = (/obj/structure/table/rack/steel,/obj/item/clothing/gloves/arm_guard/riot,/obj/item/clothing/shoes/leg_guard/riot,/obj/item/clothing/suit/armor/riot/alt,/obj/item/clothing/head/helmet/riot,/obj/item/weapon/shield/riot,/obj/item/clothing/gloves/arm_guard/riot,/obj/item/clothing/shoes/leg_guard/riot,/obj/item/clothing/suit/armor/riot/alt,/obj/item/clothing/head/helmet/riot,/obj/item/weapon/shield/riot,/obj/effect/floor_decal/milspec/color/black,/obj/item/device/radio/intercom{dir = 8; pixel_x = -24},/turf/simulated/floor/tiled/dark,/area/security/armoury) +"ti" = (/obj/machinery/computer/secure_data,/turf/simulated/floor/tiled/dark,/area/security/security_processing) +"tj" = (/obj/structure/cable/green{color = "#42038a"; icon_state = "2-4"},/obj/structure/cable/green{color = "#42038a"; icon_state = "1-2"},/turf/simulated/floor/airless,/area/stellardelight/deck1/exterior) +"tm" = (/obj/structure/dogbed,/mob/living/simple_mob/animal/passive/tindalos/twigs,/turf/simulated/floor/tiled/milspec,/area/stellardelight/deck1/exploration) +"tn" = (/obj/machinery/light{dir = 4},/obj/effect/floor_decal/milspec/color/black,/turf/simulated/floor/tiled/dark,/area/security/armoury) +"to" = (/obj/structure/table/bench/standard,/obj/effect/floor_decal/milspec/color/orange/half{dir = 1},/turf/simulated/floor/tiled/dark,/area/prison/cell_block) +"tp" = (/obj/machinery/door/firedoor/glass,/obj/machinery/access_button{command = "cycle_interior"; frequency = 1379; master_tag = "security_airlock"; name = "interior access button"; pixel_x = -32; req_access = list(1)},/obj/machinery/door/airlock/angled_bay/external/glass{frequency = 1379; id_tag = "security_interior"; locked = 1; name = "Security Airlock"},/obj/machinery/atmospherics/pipe/simple/hidden,/turf/simulated/floor/tiled/steel_ridged,/area/security/tactical) +"tq" = (/obj/machinery/door/firedoor/glass,/obj/structure/cable/green{color = "#42038a"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/door/airlock/angled_bay/standard/color{door_color = "#ffffff"; fill_color = "#ead9ff"; name = "Circuitry Workshop"; req_access = list(7); stripe_color = "#5a19a8"},/turf/simulated/floor/tiled/steel_ridged,/area/rnd/workshop) +"tr" = (/obj/machinery/portable_atmospherics/canister/nitrous_oxide,/obj/machinery/light{dir = 8},/turf/simulated/floor/tiled,/area/rnd/storage) +"ts" = (/obj/machinery/mech_recharger,/obj/effect/floor_decal/milspec/color/black,/turf/simulated/floor/tiled/dark,/area/security/armoury) +"tt" = (/obj/structure/table/rack/steel,/obj/item/clothing/gloves/arm_guard/laserproof,/obj/item/clothing/shoes/leg_guard/laserproof,/obj/item/clothing/suit/armor/laserproof,/obj/item/clothing/head/helmet/laserproof,/obj/item/clothing/gloves/arm_guard/laserproof,/obj/item/clothing/shoes/leg_guard/laserproof,/obj/item/clothing/suit/armor/laserproof,/obj/item/clothing/head/helmet/laserproof,/obj/machinery/atmospherics/pipe/simple/hidden/cyan,/obj/effect/floor_decal/milspec/color/black,/turf/simulated/floor/tiled/dark,/area/security/armoury) +"tu" = (/obj/machinery/door/firedoor/glass,/obj/structure/window/bay/reinforced,/obj/structure/low_wall/bay/reinforced/purple,/turf/simulated/floor,/area/stellardelight/deck1/exploequipment) +"tv" = (/obj/structure/cable/white{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/stellardelight/deck1/paramedic) +"tw" = (/obj/structure/sign/department/sci{pixel_x = 32},/obj/effect/floor_decal/milspec/color/emerald/half{dir = 4},/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/starboard) +"tx" = (/obj/machinery/atmospherics/pipe/manifold/hidden,/turf/simulated/floor,/area/maintenance/stellardelight/deck1/exploration) +"tz" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/eris/steel/cargo,/area/stellardelight/deck1/oreprocessing) +"tA" = (/obj/machinery/camera/network/research/xenobio{dir = 5; network = list("Xenobiology")},/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor/reinforced,/area/rnd/xenobiology) +"tB" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/turf/simulated/floor,/area/maintenance/stellardelight/deck1/portaft) +"tC" = (/turf/simulated/wall/bay/r_wall/black,/area/security/armoury) +"tD" = (/obj/structure/cable/green{color = "#42038a"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/item/device/radio/intercom{dir = 4; pixel_x = 24},/turf/simulated/floor/tiled/eris,/area/stellardelight/deck1/researchhall) +"tE" = (/obj/structure/cable/green{color = "#42038a"; icon_state = "4-8"},/obj/structure/bed/chair,/turf/simulated/floor,/area/maintenance/stellardelight/deck1/exploration) +"tF" = (/obj/structure/bed/chair{dir = 8},/obj/machinery/power/apc/angled{dir = 1},/obj/structure/cable/pink{icon_state = "0-2"},/turf/simulated/floor/tiled/dark,/area/security/security_processing) +"tG" = (/turf/simulated/floor/carpet/purcarpet,/area/stellardelight/deck1/dorms/dorm6) +"tH" = (/obj/structure/table/reinforced,/obj/effect/floor_decal/milspec/color/orange/half{dir = 9},/turf/simulated/floor/tiled/dark,/area/prison/cell_block/C) +"tI" = (/obj/machinery/door/firedoor/glass,/obj/structure/table/reinforced,/obj/structure/window/reinforced{dir = 4},/obj/machinery/light{dir = 1},/obj/structure/sign/department/rnd{pixel_y = 32},/obj/machinery/door/blast/angled_shutter/open{dir = 4; id = "rndshutters"; name = "Privacy Shutters"},/turf/simulated/floor/tiled/monotile,/area/rnd/research) +"tJ" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable/green{icon_state = "1-2"},/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/aft) +"tK" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/conveyor_switch/oneway{id = "bodieshitthefloor"; pixel_x = -12; pixel_y = 20},/turf/simulated/floor/tiled/dark,/area/chapel/chapel_morgue) +"tL" = (/turf/simulated/wall/bay/r_wall{desc = "It has a steel stripe! A huge chunk of metal used to seperate rooms."; stripe_color = "#3d5e80"},/area/chapel/chapel_morgue) +"tM" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/dark,/area/prison/cell_block) +"tN" = (/obj/structure/table/steel,/obj/random/maintenance/security,/obj/random/contraband,/turf/simulated/floor,/area/maintenance/stellardelight/deck1/starboardfore) +"tO" = (/obj/structure/table/standard,/obj/item/weapon/hand_labeler,/obj/item/weapon/pen,/obj/item/weapon/packageWrap,/obj/item/weapon/packageWrap,/turf/simulated/floor/tiled/steel_grid,/area/rnd/research) +"tP" = (/obj/machinery/alarm/angled{dir = 8},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/turf/simulated/floor,/area/maintenance/stellardelight/deck1/starboardfore) +"tR" = (/obj/machinery/door/firedoor/glass/hidden/steel{dir = 8},/obj/structure/cable/green{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/fore) +"tS" = (/obj/machinery/papershredder,/obj/machinery/camera/network/security,/obj/effect/floor_decal/milspec/color/red,/turf/simulated/floor/tiled/dark,/area/security/lobby) +"tT" = (/obj/structure/cable/green{color = "#42038a"; icon_state = "1-2"},/obj/structure/cable/green{color = "#42038a"; icon_state = "1-8"},/obj/structure/cable/green{color = "#42038a"; icon_state = "2-8"},/turf/simulated/floor/airless,/area/stellardelight/deck1/exterior) +"tU" = (/obj/structure/table/bench/steel,/obj/machinery/atmospherics/pipe/manifold/hidden{dir = 4},/turf/simulated/floor/tiled/dark,/area/security/tactical) +"tW" = (/obj/structure/cable/green{color = "#42038a"; icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/turf/simulated/floor/tiled/milspec,/area/stellardelight/deck1/exploequipment) +"tX" = (/obj/structure/cable/green{icon_state = "2-4"},/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/light_switch{dir = 1; pixel_x = -24; pixel_y = -25},/turf/simulated/floor/lino,/area/chapel/office) +"tY" = (/turf/simulated/floor/tiled/milspec,/area/stellardelight/deck1/exploequipment) +"tZ" = (/turf/simulated/floor/tiled/techfloor,/area/medical/morgue) +"ua" = (/obj/machinery/atmospherics/portables_connector{dir = 4},/obj/effect/floor_decal/borderfloorblack/full,/obj/effect/floor_decal/industrial/outline/yellow,/obj/machinery/portable_atmospherics/canister/empty,/turf/simulated/floor/tiled/dark,/area/security/armoury) +"ub" = (/obj/structure/table/steel_reinforced,/obj/item/ammo_magazine/m45/rubber{pixel_y = 9},/obj/item/ammo_magazine/m45/rubber{pixel_x = 3; pixel_y = 3},/obj/item/ammo_magazine/m45/rubber{pixel_y = -3},/obj/machinery/light_switch{dir = 8; pixel_x = 24},/obj/effect/floor_decal/milspec/color/black,/turf/simulated/floor/tiled/dark,/area/security/armoury) +"uc" = (/obj/structure/table/rack/shelf,/obj/item/weapon/tank/oxygen,/obj/item/device/suit_cooling_unit,/obj/item/clothing/shoes/magboots,/obj/item/clothing/mask/breath,/obj/item/clothing/suit/space/void/exploration,/obj/item/clothing/head/helmet/space/void/exploration,/obj/machinery/door/window/brigdoor/eastright{req_access = list(43)},/obj/item/device/bluespaceradio/sd_prelinked,/obj/item/device/cataloguer/compact,/obj/item/device/cataloguer/compact,/turf/simulated/floor/tiled/milspec,/area/stellardelight/deck1/exploequipment) +"ue" = (/obj/structure/cable/green{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/port) +"uf" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/milspec,/area/stellardelight/deck1/exploration) +"ug" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/turf/simulated/floor/tiled/techfloor,/area/stellardelight/deck1/port) +"uh" = (/obj/structure/grille,/obj/structure/window/reinforced/full,/obj/machinery/door/firedoor/glass/talon,/obj/machinery/door/blast/regular/open{id = "talon_boat_cockpit"},/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced,/turf/simulated/floor/plating,/area/stellardelight/deck1/exploshuttle) +"ui" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/turf/simulated/floor/tiled/eris/white/cargo,/area/medical/virology) +"uj" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/turf/simulated/floor/tiled/dark,/area/chapel/main) +"uk" = (/obj/structure/cable/green{icon_state = "4-8"},/obj/item/device/radio/intercom{dir = 1; name = "Station Intercom (General)"; pixel_y = 21},/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/port) +"ul" = (/obj/structure/cable/green{color = "#42038a"; icon_state = "1-2"},/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/turf/simulated/floor,/area/maintenance/stellardelight/deck1/starboardcent) +"um" = (/turf/simulated/wall/bay/steel,/area/maintenance/stellardelight/substation/atmospherics) +"un" = (/obj/machinery/gateway{dir = 9},/turf/simulated/floor/tiled/eris/white/gray_platform,/area/gateway) +"uo" = (/obj/structure/cable/orange{icon_state = "2-4"},/turf/simulated/floor/airless,/area/stellardelight/deck1/exterior) +"uq" = (/turf/space,/area/space) +"ur" = (/obj/machinery/door/firedoor/glass,/obj/structure/cable/pink{icon_state = "1-2"},/obj/machinery/door/airlock/angled_bay/standard/glass{door_color = "#8c1d11"; name = "Brig"; req_access = null; req_one_access = list(38,63); stripe_color = "#d27428"},/turf/simulated/floor/tiled/steel_ridged,/area/security/lobby) +"us" = (/turf/simulated/wall/bay/r_wall/steel,/area/maintenance/stellardelight/substation/medical) +"ut" = (/obj/machinery/door/firedoor/glass/hidden/steel{dir = 8},/obj/structure/cable/green{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/port) +"uu" = (/obj/structure/closet/emcloset,/turf/simulated/floor/tiled/milspec,/area/stellardelight/deck1/aft) +"uv" = (/obj/structure/table/woodentable,/obj/machinery/microwave,/obj/machinery/firealarm/angled{dir = 8},/turf/simulated/floor/carpet/purcarpet,/area/stellardelight/deck1/dorms/dorm2) +"uw" = (/turf/space/internal_edge/left,/area/stellardelight/deck1/starboard) +"ux" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/milspec,/area/stellardelight/deck1/exploration) +"uy" = (/obj/structure/table/rack/shelf/steel,/obj/item/weapon/gun/energy/ionrifle/pistol,/obj/machinery/camera/network/security,/obj/effect/floor_decal/milspec/color/black,/turf/simulated/floor/tiled/dark,/area/security/armoury) +"uz" = (/obj/structure/table/reinforced,/obj/item/device/slime_scanner,/obj/item/device/slime_scanner,/obj/item/weapon/reagent_containers/spray/cleaner,/obj/machinery/light,/obj/item/weapon/storage/box/syringes,/turf/simulated/floor/tiled/steel_grid,/area/rnd/xenobiology) +"uA" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 6},/turf/simulated/floor/tiled/techfloor,/area/stellardelight/deck1/port) +"uB" = (/obj/machinery/door/firedoor/glass,/obj/structure/window/bay/reinforced,/obj/machinery/door/blast/angled/open{dir = 2; id = "explowindowlockdown"},/obj/structure/low_wall/bay/reinforced/steel,/turf/simulated/floor,/area/stellardelight/deck1/exploration) +"uC" = (/obj/structure/cable/green{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/starboard) +"uD" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/status_display{pixel_y = 32},/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/port) +"uF" = (/obj/structure/cable/green{color = "#42038a"; icon_state = "4-8"},/turf/simulated/wall/bay/r_wall/steel,/area/maintenance/stellardelight/deck1/exploration) +"uG" = (/obj/structure/cable/white{icon_state = "1-2"},/obj/effect/floor_decal/steeldecal/steel_decals6{dir = 9},/obj/structure/closet/emergsuit_wall{dir = 8; pixel_x = -27},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/port) +"uH" = (/obj/machinery/power/pointdefense{id_tag = "sd_pd"},/obj/effect/floor_decal/industrial/warning/full,/obj/structure/cable/pink{icon_state = "0-2"},/obj/structure/cable/pink{icon_state = "0-8"},/turf/simulated/floor/airless,/area/stellardelight/deck1/exterior) +"uI" = (/obj/structure/cable/yellow{icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/light_switch{dir = 4; pixel_x = -25; pixel_y = -32},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 6},/turf/simulated/floor/tiled/eris/steel/cargo,/area/stellardelight/deck1/oreprocessing) +"uJ" = (/obj/effect/floor_decal/industrial/loading{dir = 8},/turf/simulated/floor/tiled/eris/steel/cargo,/area/stellardelight/deck1/oreprocessing) +"uL" = (/obj/effect/floor_decal/chapel,/obj/structure/bed/chair/sofa/pew/right{dir = 1},/obj/effect/landmark/start/visitor,/turf/simulated/floor/tiled/dark,/area/chapel/main) +"uM" = (/obj/structure/closet/excavation,/turf/simulated/floor/tiled/eris/white/gray_platform,/area/gateway) +"uN" = (/obj/effect/floor_decal/industrial/warning{dir = 8},/turf/simulated/floor/reinforced,/area/stellardelight/deck1/shuttlebay) +"uP" = (/obj/structure/cable/yellow{icon_state = "1-2"},/obj/machinery/firealarm/angled{dir = 8},/turf/simulated/floor/tiled/eris/steel/cargo,/area/stellardelight/deck1/oreprocessing) +"uQ" = (/obj/machinery/door/firedoor/glass,/obj/structure/window/bay/reinforced,/obj/structure/low_wall/bay/reinforced/steel,/turf/simulated/floor,/area/maintenance/stellardelight/deck1/starboardaft) +"uR" = (/obj/machinery/door/firedoor/glass,/obj/structure/table/reinforced,/obj/structure/window/reinforced{dir = 4},/obj/machinery/door/blast/angled_shutter/open{dir = 4; id = "rndshutters"; name = "Privacy Shutters"},/turf/simulated/floor/tiled/monotile,/area/rnd/research) +"uS" = (/obj/structure/cable/green{icon_state = "4-8"},/obj/structure/flora/pottedplant/stoutbush,/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/port) +"uT" = (/obj/structure/table/glass,/obj/machinery/reagentgrinder,/turf/simulated/floor/tiled/eris,/area/rnd/xenobiology/xenoflora) +"uU" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/angled_bay/standard/glass{door_color = "#ffffff"; name = "Research and Development"; req_access = list(7); stripe_color = "#5a19a8"},/obj/structure/cable/green{color = "#42038a"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/steel_ridged,/area/rnd/workshop) +"uV" = (/obj/machinery/access_button{command = "cycle_exterior"; frequency = 1379; master_tag = "virology_airlock_control"; name = "Virology Access Button"; pixel_x = -32; req_access = list(39)},/obj/machinery/door/blast/angled/open{id = "virologyquar"; name = "Virology Emergency Quarantine Blast Doors"},/obj/structure/disposalpipe/segment,/obj/structure/cable/white{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/angled_bay/standard/color{autoclose = 0; door_color = "#ffffff"; frequency = 1379; id_tag = "virology_airlock_exterior"; locked = 1; name = "Virology Exterior Airlock"; req_access = list(39); stripe_color = "#5a96bb"},/turf/simulated/floor/tiled/steel_ridged,/area/medical/virology) +"uW" = (/turf/simulated/wall/bay/purple,/area/stellardelight/deck1/exploration) +"uX" = (/obj/structure/cable/green{color = "#42038a"; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4,/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 10},/turf/simulated/floor/tiled/steel_grid,/area/maintenance/stellardelight/deck1/starboardaft) +"uY" = (/obj/structure/closet/radiation,/obj/structure/cable/green{color = "#42038a"; icon_state = "1-2"},/turf/simulated/floor/tiled/steel_grid,/area/rnd/xenobiology) +"uZ" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/virology) +"va" = (/obj/structure/closet/secure_closet/miner,/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/obj/machinery/alarm/angled{dir = 8},/turf/simulated/floor/tiled/eris/steel/cargo,/area/stellardelight/deck1/miningequipment) +"vb" = (/obj/structure/cable/white{icon_state = "1-2"},/obj/machinery/camera/network/medbay{dir = 4},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/stellardelight/deck1/resleeving) +"vc" = (/obj/machinery/vending/security,/obj/machinery/camera/network/security,/turf/simulated/floor/tiled/dark,/area/security/security_equiptment_storage) +"vd" = (/obj/structure/toilet{dir = 4},/obj/machinery/alarm/angled{dir = 4},/obj/effect/landmark/start/visitor,/turf/simulated/floor/tiled/white,/area/crew_quarters/toilet) +"ve" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled/milspec,/area/stellardelight/deck1/exploration) +"vf" = (/obj/machinery/door/firedoor/glass,/obj/structure/cable/yellow{icon_state = "4-8"},/obj/machinery/door/airlock/angled_bay/hatch{dir = 4; name = "maintenance access"; stripe_color = "#454545"},/turf/simulated/floor/tiled/steel_ridged,/area/stellardelight/deck1/aft) +"vg" = (/obj/structure/cable/pink{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/light_switch{dir = 8; pixel_x = 24; pixel_y = 32},/obj/effect/floor_decal/steeldecal/steel_decals4,/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 10},/turf/simulated/floor/tiled/dark,/area/security/warden) +"vh" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/disposalpipe/junction{dir = 2; icon_state = "pipe-j2"},/turf/simulated/floor/tiled/techfloor,/area/stellardelight/deck1/starboard) +"vi" = (/obj/machinery/portable_atmospherics/canister/oxygen,/turf/simulated/floor/tiled/eris/steel/cargo,/area/stellardelight/deck1/miningequipment) +"vj" = (/obj/machinery/recharge_station,/obj/machinery/camera/network/exploration,/turf/simulated/floor/tiled/milspec,/area/stellardelight/deck1/aft) +"vk" = (/obj/structure/closet/secure_closet/pilot,/obj/machinery/atmospherics/unary/vent_scrubber/on,/turf/simulated/floor/tiled/eris/steel/panels,/area/stellardelight/deck1/pilot) +"vm" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/angled_bay/hatch{dir = 4; name = "maintenance access"; stripe_color = "#454545"},/obj/structure/cable/green{icon_state = "4-8"},/turf/simulated/floor/tiled/steel_ridged,/area/crew_quarters/toilet) +"vn" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/turf/simulated/floor,/area/maintenance/stellardelight/deck1/exploration) +"vo" = (/obj/effect/floor_decal/milspec/color/red/half{dir = 8},/obj/effect/landmark/start/security,/turf/simulated/floor/tiled/dark,/area/security/security_lockerroom) +"vp" = (/obj/structure/cable/green{icon_state = "1-2"},/obj/machinery/alarm/angled{dir = 8},/turf/simulated/floor/lino,/area/chapel/office) +"vq" = (/obj/structure/closet/secure_closet/miner,/obj/machinery/firealarm/angled{dir = 8},/turf/simulated/floor/tiled/eris/steel/cargo,/area/stellardelight/deck1/miningequipment) +"vr" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/turf/simulated/floor/tiled/techfloor,/area/stellardelight/deck1/starboard) +"vs" = (/obj/structure/table/steel,/obj/item/weapon/paper_bin{pixel_x = -3; pixel_y = 7},/obj/item/weapon/pen,/turf/simulated/floor/tiled/dark,/area/security/security_processing) +"vt" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/item_bank{dir = 4; pixel_x = -29},/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/starboard) +"vu" = (/turf/simulated/wall/bay/r_wall/brown,/area/stellardelight/deck1/dorms/dorm5) +"vv" = (/obj/effect/landmark/start/scientist,/turf/simulated/floor/tiled/eris,/area/stellardelight/deck1/researchequip) +"vw" = (/obj/machinery/hologram/holopad,/obj/structure/cable/green{color = "#42038a"; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/milspec,/area/stellardelight/deck1/exploequipment) +"vx" = (/turf/simulated/wall/bay/r_wall/red,/area/security/armoury) +"vy" = (/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled/steel_ridged,/area/stellardelight/deck1/explobriefing) +"vz" = (/obj/structure/bed/chair/backed_red{dir = 4},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/turf/simulated/floor/tiled/milspec,/area/stellardelight/deck1/exploration) +"vA" = (/obj/machinery/computer/secure_data,/obj/effect/floor_decal/milspec/color/red,/turf/simulated/floor/tiled/dark,/area/security/lobby) +"vB" = (/obj/structure/cable/green{icon_state = "1-4"},/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals6{dir = 4},/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/fore) +"vC" = (/turf/simulated/floor/tiled/eris/steel/cargo,/area/stellardelight/deck1/miningequipment) +"vD" = (/obj/structure/cable/green{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled/dark,/area/chapel/main) +"vE" = (/obj/structure/cable/green{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/turf/simulated/floor/lino,/area/chapel/office) +"vF" = (/obj/structure/cable/green{color = "#42038a"; icon_state = "4-8"},/turf/simulated/floor/airless,/area/stellardelight/deck1/exterior) +"vG" = (/obj/effect/floor_decal/industrial/outline/yellow,/obj/structure/cable/green{icon_state = "0-4"},/obj/structure/cable/green{icon_state = "16-0"},/obj/structure/disposalpipe/up{dir = 4},/obj/machinery/atmospherics/pipe/zpipe/up/supply,/obj/machinery/atmospherics/pipe/zpipe/up/scrubbers,/obj/machinery/door/firedoor/glass,/turf/simulated/floor,/area/maintenance/stellardelight/deck1/portcent) +"vH" = (/obj/machinery/button/remote/blast_door{id = "GatewayShutterE"; name = "EVA Shutter"; pixel_x = 5; pixel_y = 24; req_one_access = list(18,19,43,67)},/obj/machinery/button/remote/blast_door{id = "GatewayShutterW"; name = "EVA Shutter"; pixel_x = -5; pixel_y = 24; req_access = null; req_one_access = list(18,19,43,67)},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/eris/white/gray_platform,/area/gateway) +"vI" = (/obj/structure/cable/green{color = "#42038a"; icon_state = "1-2"},/obj/machinery/atmospherics/unary/vent_pump/on,/obj/machinery/firealarm/angled{dir = 4},/turf/simulated/floor/tiled/eris,/area/rnd/storage) +"vJ" = (/obj/machinery/mineral/stacking_unit_console{density = 0},/turf/simulated/wall/bay/brown,/area/stellardelight/deck1/oreprocessing) +"vK" = (/obj/machinery/requests_console{department = "Exploration"; name = "Exploration Requests Console"; pixel_x = -30},/turf/simulated/floor/tiled/eris/steel/panels,/area/stellardelight/deck1/pilot) +"vL" = (/obj/structure/cable/green{icon_state = "0-8"},/obj/machinery/power/apc/angled{dir = 4},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/turf/simulated/floor/tiled/techfloor,/area/stellardelight/deck1/starboard) +"vM" = (/obj/machinery/button/remote/airlock{id = "bathroomstall1"; name = "Toilet 1 Lock"; pixel_x = -10; pixel_y = 22; specialfunctions = 4},/obj/machinery/light/small,/turf/simulated/floor/tiled/white,/area/crew_quarters/toilet) +"vN" = (/obj/machinery/hologram/holopad,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/structure/cable/green{color = "#42038a"; icon_state = "4-8"},/turf/simulated/floor/tiled/steel_grid,/area/rnd/xenobiology) +"vP" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor,/area/maintenance/stellardelight/deck1/starboardcent) +"vQ" = (/obj/item/device/radio/intercom{dir = 8; pixel_x = -24},/turf/simulated/floor/tiled/eris/white/gray_platform,/area/gateway) +"vT" = (/turf/simulated/floor,/area/maintenance/stellardelight/deck1/exploration) +"vU" = (/obj/structure/cable/yellow{icon_state = "4-8"},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 6},/turf/simulated/floor/tiled/milspec,/area/stellardelight/deck1/aft) +"vV" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/structure/cable/green{color = "#42038a"; icon_state = "4-8"},/turf/simulated/floor/tiled/steel_grid,/area/rnd/xenobiology) +"vW" = (/obj/structure/bed/chair/office/light{dir = 1},/obj/effect/landmark/start/medical,/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/exam_room) +"vX" = (/obj/structure/cable/green{color = "#42038a"; icon_state = "2-8"},/turf/simulated/floor/airless,/area/stellardelight/deck1/exterior) +"vY" = (/obj/machinery/mech_recharger,/turf/simulated/floor/bluegrid,/area/assembly/robotics) +"vZ" = (/obj/structure/cable/pink{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/turf/simulated/floor/tiled/dark,/area/prison/cell_block/C) +"wa" = (/obj/structure/cable/pink{icon_state = "4-8"},/obj/structure/cable/pink{icon_state = "1-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor,/area/maintenance/security_port) +"wb" = (/obj/structure/sign/painting/chapel_secure{pixel_x = -32},/turf/simulated/floor/tiled/dark,/area/chapel/main) +"wc" = (/obj/machinery/firealarm/angled,/obj/machinery/mecha_part_fabricator/pros,/turf/simulated/floor/tiled/steel,/area/assembly/robotics) +"we" = (/obj/structure/table/steel,/obj/item/weapon/storage/box/nifsofts_security,/obj/item/weapon/hand_labeler,/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/obj/machinery/vending/wallmed1/public{pixel_x = -29},/obj/effect/floor_decal/milspec/color/red,/turf/simulated/floor/tiled/dark,/area/security/security_lockerroom) +"wf" = (/turf/simulated/floor,/area/maintenance/security_port) +"wg" = (/obj/structure/closet/emcloset,/turf/simulated/floor/tiled/steel_grid,/area/maintenance/stellardelight/deck1/starboardaft) +"wh" = (/obj/machinery/light{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/cyan{dir = 5},/obj/effect/floor_decal/milspec/color/black,/turf/simulated/floor/tiled/dark,/area/security/armoury) +"wi" = (/obj/machinery/door/firedoor/glass/hidden/steel{dir = 1},/obj/structure/cable/green{icon_state = "4-8"},/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/port) +"wj" = (/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor/reinforced,/area/rnd/xenobiology) +"wk" = (/obj/structure/cable/green{color = "#42038a"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/milspec,/area/stellardelight/deck1/explobriefing) +"wm" = (/obj/structure/cable/green{color = "#42038a"; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor,/area/maintenance/stellardelight/deck1/exploration) +"wn" = (/obj/structure/table/woodentable,/obj/machinery/light/small,/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/obj/effect/landmark/vermin,/turf/simulated/floor/carpet/bcarpet,/area/stellardelight/deck1/starboard) +"wo" = (/obj/structure/table/bench/marble,/obj/machinery/camera/network/medbay{dir = 1},/obj/effect/landmark/start/paramedic,/turf/simulated/floor/tiled/eris/white/bluecorner,/area/stellardelight/deck1/paramedic) +"wp" = (/turf/simulated/floor/tiled/eris/steel/cargo,/area/stellardelight/deck1/mining) +"wq" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/alarm/angled{dir = 4},/turf/simulated/floor/tiled/milspec,/area/stellardelight/deck1/explobriefing) +"ws" = (/obj/structure/cable/pink{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/dark,/area/security/security_lockerroom) +"wt" = (/obj/structure/table/rack,/obj/item/clothing/shoes/magboots,/obj/item/clothing/shoes/magboots,/obj/item/clothing/mask/breath,/obj/item/clothing/mask/breath,/obj/item/device/suit_cooling_unit{pixel_y = -5},/obj/item/device/suit_cooling_unit{pixel_y = -5},/obj/item/weapon/tank/oxygen,/obj/item/weapon/tank/oxygen,/obj/item/clothing/suit/space/void/pilot,/obj/item/clothing/suit/space/void/pilot,/obj/item/clothing/head/helmet/space/void/pilot,/obj/item/clothing/head/helmet/space/void/pilot,/turf/simulated/floor/tiled/eris/steel/panels,/area/stellardelight/deck1/pilot) +"wu" = (/obj/machinery/door/firedoor/glass/hidden/steel,/obj/structure/cable/white{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/port) +"wv" = (/obj/structure/window/reinforced/full,/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 4},/obj/structure/grille,/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/window/reinforced{dir = 8},/obj/machinery/door/blast/angled/open{dir = 4; id = "xenobiopen2"; name = "Pen 2 Blast Doors"},/turf/simulated/floor/tiled/dark,/area/rnd/xenobiology) +"ww" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/structure/cable/green{color = "#42038a"; icon_state = "4-8"},/turf/simulated/floor/tiled/eris/steel/cargo,/area/stellardelight/deck1/shuttlebay) +"wx" = (/obj/structure/cable/pink{icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/structure/cable/pink{icon_state = "1-2"},/obj/machinery/hologram/holopad,/turf/simulated/floor/tiled/dark,/area/security/security_equiptment_storage) +"wy" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/port) +"wz" = (/obj/machinery/door/firedoor/glass,/obj/structure/window/bay/reinforced,/obj/structure/low_wall/bay/reinforced/steel,/turf/simulated/floor,/area/library) +"wA" = (/obj/machinery/firealarm/angled,/turf/simulated/floor/tiled/dark,/area/chapel/main) +"wB" = (/obj/structure/cable/green{color = "#42038a"; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/turf/simulated/floor/tiled/eris,/area/rnd/xenobiology/xenoflora) +"wC" = (/obj/structure/bed/chair/bay/shuttle{dir = 8},/obj/machinery/light/floortube{dir = 4; pixel_x = 6},/turf/simulated/floor/tiled/eris/steel/brown_platform,/area/stellardelight/deck1/miningshuttle) +"wE" = (/obj/machinery/door/firedoor/glass,/obj/structure/window/bay/reinforced,/obj/structure/curtain/black{anchored = 1},/obj/structure/low_wall/bay/reinforced/steel,/turf/simulated/floor,/area/stellardelight/deck1/dorms/dorm1) +"wF" = (/turf/simulated/wall/bay/steel,/area/maintenance/stellardelight/substation/cargo) +"wG" = (/turf/simulated/wall/bay/r_wall/steel,/area/maintenance/stellardelight/deck1/starboardfore) +"wI" = (/obj/machinery/atmospherics/unary/vent_scrubber/on,/obj/machinery/seed_storage/xenobotany,/turf/simulated/floor/tiled/eris,/area/rnd/xenobiology/xenoflora) +"wJ" = (/obj/machinery/atmospherics/unary/vent_pump/on,/turf/simulated/floor/tiled/white,/area/crew_quarters/toilet) +"wK" = (/obj/machinery/computer/rdconsole/robotics,/obj/machinery/atmospherics/unary/vent_scrubber/on,/obj/machinery/camera/network/research,/turf/simulated/floor/tiled/steel,/area/assembly/robotics) +"wM" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/obj/structure/bed/padded,/obj/item/weapon/bedsheet/orange,/obj/machinery/light{dir = 1},/obj/effect/floor_decal/milspec/color/orange/half{dir = 5},/turf/simulated/floor/tiled/dark,/area/prison/cell_block/C) +"wN" = (/obj/structure/cable/yellow{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/effect/landmark{name = "lightsout"},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/turf/simulated/floor/tiled/eris/steel/cargo,/area/stellardelight/deck1/shuttlebay) +"wO" = (/obj/structure/cable/yellow{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/mining/brace,/turf/simulated/floor/tiled/eris/steel/cargo,/area/stellardelight/deck1/shuttlebay) +"wP" = (/obj/structure/reagent_dispensers/watertank,/turf/simulated/floor,/area/maintenance/stellardelight/deck1/starboardcent) +"wQ" = (/obj/structure/table/rack,/obj/random/maintenance/research,/obj/random/maintenance,/obj/random/maintenance,/turf/simulated/floor,/area/maintenance/stellardelight/deck1/portaft) +"wR" = (/obj/machinery/computer/diseasesplicer{dir = 1},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/virology) +"wS" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/angled_bay/standard/color{door_color = "#9c9c9c"; fill_color = "#5c5c5c"; id_tag = "dorm8"; name = "Room 8"; stripe_color = "#89bd66"},/obj/structure/cable/green{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/steel_ridged,/area/stellardelight/deck1/dorms/dorm8) +"wT" = (/turf/simulated/floor/tiled/dark,/area/security/security_cell_hallway) +"wU" = (/obj/structure/cable/orange{icon_state = "2-4"},/obj/structure/table/rack,/obj/random/maintenance,/obj/random/maintenance/clean,/obj/random/maintenance/research,/turf/simulated/floor,/area/maintenance/stellardelight/deck1/exploration) +"wV" = (/obj/item/device/radio/intercom{dir = 4; pixel_x = 24},/turf/simulated/floor/tiled/dark,/area/chapel/main) +"wW" = (/obj/structure/cable/green{icon_state = "1-4"},/obj/structure/cable/green{icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/port) +"wX" = (/obj/structure/cable/pink{icon_state = "1-8"},/turf/simulated/wall/bay/r_wall/steel,/area/security/tactical) +"wY" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/obj/machinery/alarm/angled{dir = 4},/obj/effect/floor_decal/milspec/color/orange/half{dir = 8},/turf/simulated/floor/tiled/dark,/area/prison/cell_block/B) +"wZ" = (/obj/machinery/atmospherics/unary/vent_pump/on,/obj/structure/sign/directions/security{dir = 1; pixel_y = 32},/obj/effect/floor_decal/milspec/color/red/half{dir = 1},/obj/effect/landmark/vines,/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/fore) +"xa" = (/obj/structure/cable/pink{icon_state = "4-8"},/obj/structure/cable/pink{icon_state = "1-8"},/obj/machinery/light,/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/dark,/area/security/lobby) +"xb" = (/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled/steel_ridged,/area/stellardelight/deck1/exploration) +"xc" = (/obj/machinery/door/firedoor/glass/hidden/steel{dir = 1},/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/starboard) +"xd" = (/obj/structure/filingcabinet/chestdrawer,/turf/simulated/floor/tiled/dark,/area/security/security_processing) +"xe" = (/turf/simulated/wall/bay/r_wall/brown,/area/stellardelight/deck1/starboard) +"xf" = (/obj/machinery/door/firedoor/glass,/obj/structure/window/bay/reinforced,/obj/structure/low_wall/bay/reinforced/brown,/turf/simulated/floor,/area/stellardelight/deck1/miningequipment) +"xg" = (/obj/structure/table/glass,/obj/item/weapon/reagent_containers/glass/bottle/biomass{pixel_x = -4; pixel_y = 8},/obj/item/weapon/reagent_containers/glass/bottle/biomass{pixel_x = -7; pixel_y = 4},/obj/item/weapon/reagent_containers/glass/bottle/biomass{pixel_x = 6; pixel_y = 8},/obj/item/weapon/reagent_containers/glass/bottle/biomass{pixel_x = 4; pixel_y = 6},/obj/item/device/flashlight/pen{pixel_x = -3; pixel_y = -3},/obj/machinery/computer/guestpass{dir = 8; pixel_x = 25},/obj/machinery/status_display{pixel_y = 32},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/stellardelight/deck1/resleeving) +"xh" = (/obj/structure/table/woodentable,/obj/item/weapon/paper_bin{pixel_x = -2; pixel_y = 8},/obj/item/weapon/pen/blue{pixel_x = 2; pixel_y = 1},/obj/machinery/atmospherics/unary/vent_pump/on,/turf/simulated/floor/lino,/area/chapel/office) +"xi" = (/obj/structure/morgue{dir = 2},/obj/machinery/light/small{dir = 1},/turf/simulated/floor/tiled/techfloor,/area/medical/morgue) +"xj" = (/obj/machinery/portable_atmospherics/hydroponics,/obj/machinery/power/apc/angled{dir = 1},/obj/structure/cable/green{color = "#42038a"; icon_state = "0-2"},/turf/simulated/floor/tiled/eris,/area/rnd/xenobiology/xenoflora) +"xk" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/obj/structure/dispenser/oxygen,/turf/simulated/floor/tiled/milspec,/area/stellardelight/deck1/exploequipment) +"xl" = (/obj/machinery/atmospherics/unary/vent_scrubber/on,/obj/structure/table/steel,/obj/random/maintenance,/obj/random/maintenance/research,/obj/random/maintenance,/obj/random/maintenance/clean,/obj/random/maintenance/cargo,/obj/random/maintenance/cargo,/obj/random/contraband,/obj/random/action_figure,/turf/simulated/floor,/area/maintenance/stellardelight/deck1/exploration) +"xm" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/effect/floor_decal/milspec/color/red/half{dir = 1},/turf/simulated/floor/tiled/dark,/area/security/security_cell_hallway) +"xn" = (/obj/machinery/firealarm/angled,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/turf/simulated/floor/tiled/eris/white/gray_platform,/area/gateway) +"xo" = (/turf/simulated/floor/reinforced,/area/rnd/workshop) +"xq" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/turf/simulated/floor,/area/maintenance/stellardelight/deck1/starboardfore) +"xs" = (/obj/structure/bed/chair/office/dark{dir = 8},/obj/effect/landmark/start/roboticist,/turf/simulated/floor/tiled/steel,/area/assembly/robotics) +"xt" = (/obj/structure/bed/chair/office/dark{dir = 1},/obj/effect/landmark/start/xenobio,/turf/simulated/floor/tiled/steel_grid,/area/rnd/xenobiology) +"xu" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/turf/simulated/floor/tiled/eris/steel/cargo,/area/stellardelight/deck1/oreprocessing) +"xv" = (/obj/structure/cable/green{icon_state = "1-8"},/obj/structure/disposalpipe/trunk{dir = 8},/obj/machinery/disposal/wall{dir = 8},/turf/simulated/floor/lino,/area/chapel/office) +"xw" = (/obj/structure/closet/crate,/obj/random/maintenance,/obj/random/maintenance,/obj/random/maintenance,/obj/random/maintenance/cargo,/obj/random/maintenance/clean,/obj/item/weapon/disk/nifsoft/compliance,/turf/simulated/floor,/area/maintenance/stellardelight/deck1/exploration) +"xx" = (/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled/steel_ridged,/area/stellardelight/deck1/starboard) +"xy" = (/turf/simulated/wall/bay/r_wall/steel,/area/maintenance/stellardelight/deck1/portfore) +"xz" = (/obj/machinery/requests_console/preset/research{pixel_y = 30},/obj/machinery/button/remote/blast_door{id = "rndshutters"; name = "Privacy Shutter Control"; pixel_x = -15; pixel_y = 30},/turf/simulated/floor/tiled/steel_grid,/area/rnd/research) +"xA" = (/obj/structure/cable/pink{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/turf/simulated/floor/tiled/dark,/area/security/warden) +"xB" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/closet/crate/bin{anchored = 1},/turf/simulated/floor/wood,/area/library) +"xC" = (/obj/structure/cable/white{icon_state = "1-2"},/obj/structure/disposalpipe/junction{dir = 2; icon_state = "pipe-j2"},/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/port) +"xD" = (/obj/effect/floor_decal/industrial/warning{dir = 4},/obj/machinery/power/apc/angled{dir = 1},/obj/structure/cable/yellow{icon_state = "0-2"},/turf/simulated/floor/tiled/eris/steel/cargo,/area/stellardelight/deck1/oreprocessing) +"xE" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/station_map{pixel_y = 32},/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/fore) +"xF" = (/obj/structure/disposalpipe/sortjunction{dir = 4; name = "Research"; sortType = "Research"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/effect/floor_decal/milspec/color/emerald/half{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals6{dir = 10},/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/aft) +"xG" = (/obj/machinery/chem_master,/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/obj/machinery/camera/network/security{dir = 8},/turf/simulated/floor/tiled/white,/area/security/detectives_office) +"xH" = (/obj/structure/table/woodentable,/obj/machinery/microwave,/turf/simulated/floor/carpet/purcarpet,/area/stellardelight/deck1/dorms/dorm6) +"xI" = (/obj/machinery/door/window/eastright{dir = 1},/turf/simulated/floor/tiled/white,/area/security/detectives_office) +"xJ" = (/obj/structure/grille,/obj/structure/window/reinforced/full,/obj/machinery/door/firedoor/glass/talon,/obj/machinery/door/blast/regular/open{id = "talon_boat_cockpit"},/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced,/turf/simulated/floor/plating,/area/stellardelight/deck1/miningshuttle) +"xK" = (/obj/machinery/power/apc/angled{dir = 1; name = "night shift APC"; nightshift_setting = 2},/obj/structure/cable/green{icon_state = "0-8"},/obj/structure/closet/firecloset,/turf/simulated/floor,/area/maintenance/stellardelight/deck1/portcent) +"xL" = (/obj/structure/cable/pink{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/turf/simulated/floor/tiled/dark,/area/security/security_cell_hallway) +"xM" = (/obj/machinery/atmospherics/unary/vent_pump/high_volume{frequency = 1379; id_tag = "ex_airpump"},/obj/machinery/light/small{dir = 1},/turf/simulated/floor,/area/maintenance/stellardelight/deck1/exploration) +"xN" = (/obj/effect/floor_decal/milspec/color/red/half{dir = 8},/turf/simulated/floor/tiled/dark,/area/security/tactical) +"xO" = (/obj/machinery/computer/shuttle_control/explore/stellardelight/mining,/turf/simulated/floor/tiled/eris/steel/brown_platform,/area/stellardelight/deck1/miningshuttle) +"xP" = (/obj/structure/sign/department/morgue{pixel_y = 32},/turf/simulated/floor/tiled/dark,/area/chapel/main) +"xQ" = (/obj/structure/window/reinforced,/obj/machinery/power/apc/angled{dir = 4},/obj/structure/cable/green{color = "#42038a"; icon_state = "0-8"},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/turf/simulated/floor/tiled/eris,/area/rnd/xenobiology/xenoflora_storage) +"xR" = (/obj/effect/floor_decal/milspec/color/red/half{dir = 4},/turf/simulated/floor/tiled/dark,/area/security/tactical) +"xS" = (/obj/effect/floor_decal/steeldecal/steel_decals10{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals10{dir = 6},/obj/machinery/light/small{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/turf/simulated/floor/tiled/white,/area/stellardelight/deck1/shower) +"xT" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/turf/simulated/floor,/area/maintenance/stellardelight/deck1/starboardcent) +"xU" = (/obj/structure/cable/pink{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/dark,/area/security/security_cell_hallway) +"xV" = (/turf/simulated/floor/carpet,/area/library) +"xW" = (/obj/structure/cable/pink{icon_state = "1-2"},/turf/simulated/wall/bay/r_wall/steel,/area/maintenance/stellardelight/substation/security) +"xX" = (/obj/structure/table/reinforced,/obj/item/device/uv_light,/obj/item/weapon/reagent_containers/spray/luminol,/turf/simulated/floor/tiled/white,/area/security/detectives_office) +"xZ" = (/obj/machinery/door/firedoor/glass/hidden/steel{dir = 1},/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/fore) +"ya" = (/obj/structure/cable/pink{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/hologram/holopad,/turf/simulated/floor/tiled/dark,/area/security/lobby) +"yb" = (/obj/structure/grille,/obj/structure/window/reinforced/full,/obj/machinery/door/firedoor/glass/talon,/obj/machinery/door/blast/regular/open{id = "talon_boat_cockpit"},/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced{dir = 4},/turf/simulated/floor/plating,/area/stellardelight/deck1/exploshuttle) +"yc" = (/obj/structure/bed/chair/bay/shuttle{dir = 8},/obj/machinery/power/apc/angled{cell_type = /obj/item/weapon/cell/super; dir = 4; req_access = list(19,43,67,66,5)},/obj/structure/cable/green{color = "#42038a"},/obj/machinery/light/floortube{dir = 4; pixel_x = 6},/turf/simulated/floor/tiled/eris/steel/gray_platform,/area/stellardelight/deck1/exploshuttle) +"yd" = (/obj/structure/table/reinforced,/obj/machinery/cell_charger,/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/turf/simulated/floor/tiled/eris/white/gray_platform,/area/gateway) +"ye" = (/obj/machinery/door/firedoor/glass,/obj/structure/window/bay/reinforced,/obj/structure/low_wall/bay/reinforced/red,/turf/simulated/floor,/area/prison/cell_block) +"yf" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/obj/item/device/radio/intercom{dir = 4; pixel_x = 24},/turf/simulated/floor/tiled/dark,/area/rnd/xenobiology) +"yg" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/turf/simulated/floor/wood,/area/library) +"yi" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/starboard) +"yj" = (/obj/effect/floor_decal/steeldecal/steel_decals6{dir = 9},/turf/simulated/floor/tiled/milspec,/area/stellardelight/deck1/exploration) +"yk" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/blast/multi_tile/two_tile_ver{id = "armorydoor"; name = "Armory"},/obj/structure/cable/pink{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/dark,/area/security/armoury) +"yl" = (/obj/effect/floor_decal/steeldecal/steel_decals10{dir = 10},/obj/effect/floor_decal/steeldecal/steel_decals10{dir = 9},/obj/machinery/alarm/angled{dir = 4},/turf/simulated/floor/tiled/white,/area/stellardelight/deck1/shower) +"ym" = (/turf/simulated/wall/bay/r_wall/steel,/area/rnd/xenobiology) +"yn" = (/obj/structure/cable{icon_state = "2-4"},/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/turf/simulated/floor,/area/maintenance/stellardelight/deck1/exploration) +"yo" = (/obj/structure/cable/green{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 5},/turf/simulated/floor/tiled/dark,/area/chapel/main) +"yp" = (/obj/machinery/door/firedoor/glass,/obj/structure/cable/green{color = "#42038a"; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/door/airlock/angled_bay/hatch{dir = 4; door_color = "#ffffff"; name = "maintenance access"; req_one_access = null; stripe_color = "#5a19a8"},/turf/simulated/floor/tiled/steel_ridged,/area/maintenance/stellardelight/deck1/starboardaft) +"yq" = (/obj/structure/table/standard,/obj/machinery/recharger,/obj/item/device/retail_scanner/science,/obj/item/device/multitool/scioutpost,/turf/simulated/floor/tiled/steel_grid,/area/rnd/research) +"yr" = (/obj/machinery/power/apc/angled{dir = 4; name = "night shift APC"; nightshift_setting = 2},/obj/structure/cable{icon_state = "0-8"},/obj/structure/table/rack,/obj/random/maintenance/research,/obj/random/maintenance/security,/obj/random/maintenance/security,/obj/random/maintenance/clean,/obj/random/maintenance,/turf/simulated/floor,/area/maintenance/stellardelight/deck1/starboardcent) +"yt" = (/obj/structure/cable/green{icon_state = "4-8"},/obj/machinery/atmospherics/unary/vent_scrubber/on,/obj/machinery/computer/guestpass{pixel_y = 24},/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/aft) +"yu" = (/obj/structure/cable/white{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/hologram/holopad,/turf/simulated/floor/tiled/eris/white/bluecorner,/area/stellardelight/deck1/paramedic) +"yv" = (/obj/structure/disposalpipe/trunk{dir = 1},/obj/machinery/disposal/wall{dir = 1},/turf/simulated/floor/tiled/steel_grid,/area/rnd/research) +"yw" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/turf/simulated/floor,/area/maintenance/stellardelight/deck1/portcent) +"yx" = (/obj/machinery/firealarm/angled{dir = 4},/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/starboard) +"yy" = (/turf/simulated/floor,/area/maintenance/stellardelight/deck1/starboardfore) +"yz" = (/obj/structure/cable/green{icon_state = "4-8"},/turf/simulated/floor/airless,/area/stellardelight/deck1/exterior) +"yB" = (/obj/machinery/alarm/angled{dir = 8},/obj/structure/closet/secure_closet/brig{id = "Cell C"},/obj/effect/floor_decal/milspec/color/orange/half{dir = 6},/turf/simulated/floor/tiled/dark,/area/prison/cell_block/C) +"yC" = (/obj/effect/floor_decal/industrial/outline/yellow,/obj/structure/cable{icon_state = "0-2"},/obj/structure/cable{icon_state = "16-0"},/obj/machinery/door/firedoor/glass,/turf/simulated/floor,/area/maintenance/stellardelight/deck1/starboardcent) +"yD" = (/obj/structure/cable/green{color = "#42038a"; icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 10},/obj/effect/floor_decal/steeldecal/steel_decals4,/turf/simulated/floor/tiled/eris,/area/rnd/storage) +"yE" = (/obj/structure/cable/pink{icon_state = "1-8"},/turf/simulated/floor/airless,/area/stellardelight/deck1/exterior) +"yF" = (/obj/machinery/door/firedoor/glass,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/door/airlock/angled_bay/double{name = "maintenance access"; stripe_color = "#454545"},/turf/simulated/floor,/area/maintenance/stellardelight/deck1/starboardfore) +"yG" = (/obj/structure/cable/pink{icon_state = "1-4"},/obj/structure/cable/pink{icon_state = "1-2"},/turf/simulated/floor/airless,/area/stellardelight/deck1/exterior) +"yH" = (/obj/structure/bed/chair/bay/shuttle{dir = 1},/turf/simulated/floor/tiled/eris/steel/brown_platform,/area/stellardelight/deck1/miningshuttle) +"yI" = (/obj/machinery/transhuman/resleever,/obj/machinery/alarm/angled{dir = 8},/turf/simulated/floor/tiled/dark,/area/assembly/robotics) +"yK" = (/obj/effect/floor_decal/industrial/warning,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/reinforced,/area/stellardelight/deck1/shuttlebay) +"yL" = (/obj/effect/floor_decal/industrial/warning{dir = 5},/obj/machinery/light{dir = 4},/turf/simulated/floor/reinforced,/area/stellardelight/deck1/shuttlebay) +"yM" = (/obj/machinery/mech_recharger,/obj/structure/cable/pink{icon_state = "1-2"},/obj/effect/floor_decal/milspec/color/black,/turf/simulated/floor/tiled/dark,/area/security/armoury) +"yN" = (/obj/structure/bed/chair,/turf/simulated/floor,/area/maintenance/stellardelight/deck1/portaft) +"yO" = (/obj/structure/cable/yellow{icon_state = "4-8"},/obj/machinery/camera/network/halls,/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/aft) +"yP" = (/obj/structure/table/woodentable,/obj/item/weapon/pen,/obj/item/weapon/paper_bin{pixel_x = 1; pixel_y = 9},/turf/simulated/floor/tiled/milspec,/area/stellardelight/deck1/explobriefing) +"yQ" = (/obj/machinery/atmospherics/unary/freezer{dir = 8; icon_state = "freezer_1"; power_setting = 20; set_temperature = 73; use_power = 1},/obj/effect/floor_decal/industrial/outline/blue,/obj/structure/window/reinforced{dir = 1},/turf/simulated/floor/tiled/techfloor,/area/stellardelight/deck1/researchserver) +"yR" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/effect/floor_decal/milspec/color/red/corner{dir = 4},/turf/simulated/floor/tiled/dark,/area/security/security_cell_hallway) +"yS" = (/obj/structure/table/rack,/obj/random/maintenance,/obj/random/maintenance,/obj/random/maintenance/clean,/obj/random/maintenance/research,/turf/simulated/floor,/area/maintenance/stellardelight/deck1/exploration) +"yT" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor,/area/maintenance/stellardelight/deck1/starboardcent) +"yU" = (/obj/structure/table/standard,/obj/item/weapon/storage/toolbox/mechanical{pixel_x = 2; pixel_y = 3},/obj/item/weapon/storage/toolbox/mechanical{pixel_x = -2; pixel_y = -1},/obj/item/clothing/glasses/welding,/obj/item/weapon/storage/belt/utility,/obj/machinery/power/apc/angled{dir = 4},/obj/structure/cable/green{color = "#42038a"; icon_state = "0-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/turf/simulated/floor/tiled/steel_grid,/area/rnd/research) +"yV" = (/obj/machinery/firealarm/angled{dir = 8},/turf/simulated/floor/lino,/area/chapel/office) +"yW" = (/obj/structure/disposalpipe/segment,/obj/effect/floor_decal/milspec/color/emerald/half{dir = 4},/obj/effect/mouse_hole_spawner{dir = 4},/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/aft) +"yX" = (/obj/effect/shuttle_landmark/premade/sd/deck1/aft,/turf/space,/area/space) +"yY" = (/obj/machinery/atmospherics/unary/vent_pump{dir = 8; external_pressure_bound = 0; external_pressure_bound_default = 0; icon_state = "map_vent_in"; initialize_directions = 1; internal_pressure_bound = 4000; internal_pressure_bound_default = 4000; pressure_checks = 2; pressure_checks_default = 2; pump_direction = 0; use_power = 1},/turf/simulated/floor/bluegrid{name = "Server Base"; nitrogen = 500; oxygen = 0; temperature = 80},/area/stellardelight/deck1/researchserver) +"yZ" = (/obj/effect/floor_decal/chapel{dir = 4},/obj/structure/cable/green{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/turf/simulated/floor/tiled/dark,/area/chapel/main) +"za" = (/obj/machinery/light/small{dir = 4},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/starboard) +"zb" = (/obj/effect/floor_decal/milspec/color/red/half{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals6{dir = 10},/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/fore) +"zc" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/fore) +"zd" = (/obj/machinery/door/airlock/angled_bay/external/glass{dir = 4; frequency = 1379; id_tag = "ex_interior"; locked = 1; name = "Exterior Airlock"},/obj/machinery/door/firedoor/glass,/obj/machinery/access_button{command = "cycle_interior"; frequency = 1379; master_tag = "ex_airlock"; name = "interior access button"; pixel_y = 32; req_one_access = list(13)},/turf/simulated/floor/tiled/steel_ridged,/area/maintenance/stellardelight/deck1/exploration) +"ze" = (/obj/structure/cable/pink{icon_state = "1-2"},/obj/machinery/status_display{pixel_x = 32},/turf/simulated/floor/tiled/dark,/area/security/security_cell_hallway) +"zf" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/virology) +"zg" = (/obj/structure/bed/chair/comfy/black,/obj/machinery/firealarm/angled{dir = 4},/turf/simulated/floor/carpet,/area/stellardelight/deck1/dorms/dorm8) +"zi" = (/obj/machinery/space_heater,/turf/simulated/floor,/area/maintenance/stellardelight/deck1/portcent) +"zj" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/turf/simulated/floor/wood,/area/library) +"zk" = (/obj/structure/closet/l3closet/virology,/obj/machinery/power/apc/angled{dir = 1},/obj/structure/cable/white{icon_state = "0-2"},/obj/machinery/atmospherics/unary/vent_scrubber/on,/turf/simulated/floor/tiled/eris/white/cargo,/area/medical/virology) +"zl" = (/obj/structure/cable/green{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/starboard) +"zn" = (/obj/structure/closet/secure_closet/paramedic,/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/stellardelight/deck1/paramedic) +"zo" = (/obj/item/weapon/stool/padded,/obj/machinery/light_switch{pixel_y = 25},/obj/effect/landmark/start/librarian,/turf/simulated/floor/carpet,/area/library) +"zp" = (/obj/structure/table/rack/shelf/steel,/obj/item/weapon/gun/energy/ionrifle,/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/obj/effect/floor_decal/milspec/color/black,/obj/effect/landmark/vermin,/turf/simulated/floor/tiled/dark,/area/security/armoury) +"zq" = (/obj/machinery/power/apc/angled{dir = 1},/obj/structure/cable/pink{icon_state = "0-2"},/obj/effect/floor_decal/milspec/color/red/half{dir = 5},/turf/simulated/floor/tiled/dark,/area/security/lobby) +"zr" = (/turf/simulated/floor/carpet/purcarpet,/area/stellardelight/deck1/dorms/dorm2) +"zs" = (/obj/machinery/light{dir = 4},/turf/simulated/floor/tiled/milspec,/area/stellardelight/deck1/exploration) +"zt" = (/turf/simulated/floor,/area/maintenance/stellardelight/substation/research) +"zv" = (/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled/dark,/area/rnd/xenobiology) +"zw" = (/obj/machinery/door/firedoor/glass,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/door/airlock/angled_bay/hatch{door_color = "#e6ab22"; name = "Medical Substation"; req_one_access = list(10); stripe_color = "#e6ab22"},/turf/simulated/floor/tiled/steel_ridged,/area/maintenance/stellardelight/substation/medical) +"zx" = (/obj/structure/cable/pink{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/dark,/area/security/security_equiptment_storage) +"zy" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/eris/white/gray_platform,/area/gateway) +"zz" = (/obj/structure/window/reinforced{dir = 1; pixel_y = 4},/obj/structure/cable/yellow{icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/turf/simulated/floor/tiled/eris/steel/cargo,/area/stellardelight/deck1/mining) +"zB" = (/obj/machinery/door/firedoor/glass,/obj/structure/cable/pink{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/door/airlock/angled_bay/hatch{dir = 4; name = "maintenance access"; stripe_color = "#454545"},/turf/simulated/floor/tiled/steel_ridged,/area/maintenance/security_port) +"zC" = (/obj/machinery/atmospherics/unary/vent_scrubber/on,/turf/simulated/floor/tiled/dark,/area/security/security_cell_hallway) +"zD" = (/turf/simulated/wall/bay/r_wall/red,/area/security/warden) +"zE" = (/obj/structure/table/rack/shelf/steel,/obj/machinery/atmospherics/pipe/simple/hidden/purple{dir = 6},/obj/effect/floor_decal/milspec/color/black,/obj/item/ammo_magazine/ammo_box/b12g/stunshell{pixel_x = 3; pixel_y = -3},/obj/item/ammo_magazine/ammo_box/b12g/flash{pixel_x = -1; pixel_y = 2},/obj/item/ammo_magazine/ammo_box/b12g/beanbag{pixel_x = -5; pixel_y = 7},/turf/simulated/floor/tiled/dark,/area/security/armoury) +"zG" = (/obj/machinery/autolathe{dir = 1; hacked = 1},/obj/structure/reagent_dispensers/acid{pixel_x = -32},/turf/simulated/floor/tiled/steel_dirty,/area/assembly/robotics) +"zH" = (/obj/structure/cable{icon_state = "1-2"},/turf/simulated/floor,/area/maintenance/stellardelight/substation/security) +"zI" = (/obj/structure/window/reinforced/full,/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 4},/obj/structure/grille,/obj/machinery/door/blast/angled/open{dir = 4; id = "xenobiopen5"; name = "Pen 5 Blast Doors"},/turf/simulated/floor/tiled/dark,/area/rnd/xenobiology) +"zK" = (/obj/machinery/light,/turf/simulated/floor/tiled/milspec,/area/stellardelight/deck1/exploequipment) +"zL" = (/obj/machinery/firealarm/angled,/obj/effect/landmark{name = "lightsout"},/turf/simulated/floor/tiled/milspec,/area/stellardelight/deck1/exploration) +"zM" = (/obj/structure/cable/green{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled/steel_ridged,/area/stellardelight/deck1/port) +"zN" = (/obj/structure/table/rack/shelf/steel,/obj/item/clothing/suit/storage/vest/heavy/officer{pixel_x = -4; pixel_y = 4},/obj/item/clothing/suit/storage/vest/heavy/officer{pixel_x = -4; pixel_y = -6},/obj/item/clothing/suit/storage/vest/heavy/officer{pixel_x = 5; pixel_y = -6},/obj/item/clothing/suit/storage/vest/heavy/officer{pixel_x = 5; pixel_y = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/machinery/light{dir = 4},/obj/effect/floor_decal/milspec/color/black,/turf/simulated/floor/tiled/dark,/area/security/armoury) +"zO" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/structure/cable/green{color = "#42038a"; icon_state = "4-8"},/obj/machinery/camera/network/command,/turf/simulated/floor/tiled/eris/steel/cargo,/area/stellardelight/deck1/shuttlebay) +"zP" = (/obj/structure/cable/green{icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/white,/area/stellardelight/deck1/shower) +"zQ" = (/obj/structure/cable/green{icon_state = "1-2"},/obj/machinery/alarm/angled{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/aft) +"zR" = (/obj/structure/bed/chair/comfy/black{dir = 1},/turf/simulated/floor/carpet,/area/stellardelight/deck1/dorms/dorm4) +"zS" = (/obj/structure/cable/green{color = "#42038a"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable/green{color = "#42038a"; icon_state = "1-8"},/obj/machinery/firealarm/angled{dir = 4},/turf/simulated/floor/tiled/eris,/area/stellardelight/deck1/researchhall) +"zT" = (/obj/machinery/recharger/wallcharger{pixel_x = 4; pixel_y = 28},/obj/machinery/recharger/wallcharger{pixel_x = 4; pixel_y = 20},/turf/simulated/floor/tiled/steel_grid,/area/rnd/xenobiology) +"zU" = (/obj/structure/cable/green{color = "#42038a"; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/obj/machinery/hologram/holopad,/turf/simulated/floor/tiled/steel_grid,/area/rnd/research) +"zV" = (/obj/machinery/embedded_controller/radio/simple_docking_controller{dir = 4; frequency = 1380; id_tag = "miningdocker"; pixel_x = -24},/turf/simulated/floor/tiled/eris/steel/brown_platform,/area/stellardelight/deck1/miningshuttle) +"zW" = (/obj/structure/cable/green{icon_state = "4-8"},/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/fore) +"zX" = (/obj/machinery/r_n_d/server/robotics,/turf/simulated/floor/bluegrid{name = "Server Base"; nitrogen = 500; oxygen = 0; temperature = 80},/area/stellardelight/deck1/researchserver) +"zY" = (/obj/structure/bed/chair/sofa/pew/right{dir = 1},/turf/simulated/floor/tiled/dark,/area/chapel/main) +"zZ" = (/obj/structure/table/woodentable,/turf/simulated/floor/tiled/milspec,/area/stellardelight/deck1/explobriefing) +"Aa" = (/obj/item/weapon/storage/backpack/parachute{pixel_x = 4; pixel_y = 4},/obj/item/weapon/storage/backpack/parachute{pixel_x = -4; pixel_y = 4},/obj/item/weapon/storage/backpack/parachute{pixel_x = 4; pixel_y = -6},/obj/item/weapon/storage/backpack/parachute{pixel_x = -4; pixel_y = -6},/obj/structure/table/rack/shelf,/obj/item/weapon/storage/backpack/parachute{pixel_x = -4; pixel_y = 4},/obj/item/weapon/storage/backpack/parachute{pixel_x = 4; pixel_y = 4},/obj/item/weapon/storage/backpack/parachute{pixel_x = 4; pixel_y = -6},/obj/item/weapon/storage/backpack/parachute{pixel_x = -4; pixel_y = -6},/obj/machinery/alarm/angled{dir = 4},/turf/simulated/floor/tiled/milspec,/area/stellardelight/deck1/exploequipment) +"Ab" = (/obj/structure/reagent_dispensers/fueltank,/turf/simulated/floor/tiled/steel_grid,/area/maintenance/stellardelight/deck1/starboardaft) +"Ac" = (/obj/machinery/atmospherics/pipe/simple/hidden{dir = 5},/obj/effect/floor_decal/milspec/color/red/half{dir = 8},/turf/simulated/floor/tiled/dark,/area/security/tactical) +"Ad" = (/obj/machinery/camera/network/research/xenobio{dir = 9; network = list("Xenobiology")},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/reinforced,/area/rnd/xenobiology) +"Ae" = (/obj/structure/bed/chair/sofa/corp/right,/obj/machinery/atmospherics/unary/vent_scrubber/on,/turf/simulated/floor/carpet/purcarpet,/area/stellardelight/deck1/dorms/dorm6) +"Af" = (/obj/structure/table/steel_reinforced,/obj/machinery/button/remote/blast_door{dir = 4; id = "xenospace4"; name = "4 Space Door"; pixel_x = 5; pixel_y = 2; req_access = list(55)},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/dark,/area/rnd/xenobiology) +"Ag" = (/obj/structure/cable/green{color = "#42038a"; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/green{color = "#42038a"; icon_state = "1-8"},/obj/effect/mouse_hole_spawner{dir = 4},/turf/simulated/floor,/area/maintenance/stellardelight/deck1/exploration) +"Ah" = (/obj/machinery/power/pointdefense{id_tag = "sd_pd"},/obj/effect/floor_decal/industrial/warning/full,/obj/structure/cable/pink{icon_state = "0-2"},/turf/simulated/floor/airless,/area/stellardelight/deck1/exterior) +"Ai" = (/obj/structure/window/reinforced/full,/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 4},/obj/structure/grille,/obj/machinery/door/blast/angled/open{dir = 4; id = "xenobiopen3"; name = "Pen 3 Blast Doors"},/turf/simulated/floor/tiled/dark,/area/rnd/xenobiology) +"Aj" = (/turf/simulated/wall/bay/steel,/area/stellardelight/deck1/pilot) +"Ak" = (/turf/simulated/wall/bay/r_wall/black,/area/chapel/chapel_morgue) +"Am" = (/obj/structure/cable/green{icon_state = "1-2"},/obj/structure/cable/green{icon_state = "2-8"},/turf/simulated/floor/tiled/dark,/area/chapel/main) +"An" = (/obj/structure/bed/chair/office/dark{dir = 8},/turf/simulated/floor/tiled/milspec,/area/stellardelight/deck1/explobriefing) +"Ao" = (/obj/machinery/door/firedoor/glass,/obj/structure/cable/pink{icon_state = "4-8"},/obj/machinery/door/airlock/angled_bay/standard/glass{dir = 4; door_color = "#8c1d11"; name = "Equipment Storage"; req_access = list(1); stripe_color = "#d27428"},/turf/simulated/floor/tiled/steel_ridged,/area/security/security_lockerroom) +"Ap" = (/obj/structure/table/bench/sifwooden/padded,/obj/effect/landmark/start/pilot,/turf/simulated/floor/tiled/eris/steel/panels,/area/stellardelight/deck1/pilot) +"Aq" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/turf/simulated/floor/carpet,/area/stellardelight/deck1/dorms/dorm5) +"Ar" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/turf/simulated/floor/carpet/purcarpet,/area/stellardelight/deck1/dorms/dorm6) +"As" = (/obj/structure/cable/green{color = "#42038a"; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals4,/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 10},/turf/simulated/floor/tiled/eris,/area/rnd/xenobiology/xenoflora) +"At" = (/obj/effect/landmark{name = "lightsout"},/turf/simulated/floor/tiled/milspec,/area/stellardelight/deck1/exploequipment) +"Au" = (/obj/machinery/power/apc/angled{dir = 4},/obj/structure/cable/white{icon_state = "0-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/exam_room) +"Av" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/eris/white/gray_platform,/area/gateway) +"Aw" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/structure/bed/chair/office/dark{dir = 4},/obj/effect/landmark/start/security,/turf/simulated/floor/tiled/dark,/area/security/security_processing) +"Ax" = (/obj/effect/floor_decal/industrial/warning{dir = 8},/obj/machinery/light{dir = 8},/turf/simulated/floor/reinforced,/area/stellardelight/deck1/shuttlebay) +"Ay" = (/obj/machinery/light/small,/turf/simulated/floor/carpet/purcarpet,/area/stellardelight/deck1/dorms/dorm2) +"AB" = (/obj/structure/cable/green{icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/light_switch{dir = 1; pixel_x = -24; pixel_y = -24},/turf/simulated/floor/carpet,/area/stellardelight/deck1/dorms/dorm5) +"AC" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/alarm/angled,/turf/simulated/floor,/area/maintenance/stellardelight/deck1/starboardcent) +"AD" = (/obj/structure/disposalpipe/trunk{dir = 1},/obj/machinery/disposal/wall{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/computer/shuttle_control/explore/stellardelight/exploration{dir = 8},/turf/simulated/floor/tiled/milspec,/area/stellardelight/deck1/exploequipment) +"AF" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals3{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals3{dir = 5},/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/starboard) +"AG" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable/green{icon_state = "1-2"},/obj/structure/disposalpipe/sortjunction{dir = 4; name = "Janitor"; sortType = "Janitor"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/effect/catwalk_plated/dark,/turf/simulated/floor,/area/stellardelight/deck1/port) +"AH" = (/obj/structure/bookcase{name = "bookcase (Non-Fiction)"},/obj/item/weapon/book/bundle/custom_library/nonfiction/riseandfallofpersianempire,/obj/item/weapon/book/bundle/custom_library/nonfiction/skrelliancastesystem,/obj/item/weapon/book/bundle/custom_library/nonfiction/viabilityofcorporategov,/obj/item/weapon/book/custom_library/nonfiction/freesirisailightbulbs,/obj/item/weapon/book/manual/synthetic_life,/turf/simulated/floor/wood,/area/library) +"AI" = (/obj/structure/cable/pink{icon_state = "4-8"},/obj/structure/table/steel,/obj/random/maintenance,/obj/random/maintenance,/obj/random/contraband,/turf/simulated/floor,/area/maintenance/stellardelight/deck1/starboardfore) +"AJ" = (/obj/machinery/door/firedoor/glass,/obj/structure/cable/green{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/door/airlock/angled_bay/standard/glass{dir = 4; door_color = "#2e2e2e"; name = "Chapel"},/turf/simulated/floor/tiled/steel_ridged,/area/chapel/main) +"AK" = (/obj/structure/table/rack{dir = 8; layer = 2.9},/obj/structure/window/reinforced,/obj/item/clothing/mask/breath,/obj/item/weapon/rig/eva/equipped,/obj/machinery/door/window/brigdoor/eastright{req_access = list(11,24)},/turf/simulated/floor/tiled/eris/white/gray_platform,/area/gateway) +"AL" = (/obj/structure/cable/green{color = "#42038a"; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/structure/cable/green{color = "#42038a"; icon_state = "2-4"},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 6},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 1},/turf/simulated/floor/tiled/eris,/area/stellardelight/deck1/researchhall) +"AM" = (/obj/structure/cable/green{color = "#42038a"; icon_state = "1-2"},/obj/structure/cable/green{color = "#42038a"; icon_state = "2-4"},/turf/simulated/floor/airless,/area/stellardelight/deck1/exterior) +"AN" = (/obj/structure/table/woodentable,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/item/weapon/paper_bin{pixel_y = 7},/obj/item/weapon/pen,/turf/simulated/floor/carpet,/area/library) +"AO" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/steel_grid,/area/assembly/robotics) +"AP" = (/obj/item/weapon/bedsheet/bluedouble,/obj/structure/bed/double/padded,/obj/structure/curtain/black,/turf/simulated/floor/carpet,/area/stellardelight/deck1/dorms/dorm5) +"AQ" = (/obj/structure/cable/green{icon_state = "4-8"},/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/starboard) +"AR" = (/obj/machinery/atmospherics/portables_connector{dir = 4},/obj/machinery/alarm/angled{dir = 4},/turf/simulated/floor/tiled/eris,/area/rnd/xenobiology/xenoflora_storage) +"AS" = (/obj/structure/bed/padded,/obj/item/weapon/bedsheet/medical,/obj/structure/curtain/open/privacy,/obj/machinery/atmospherics/unary/vent_pump/on,/obj/item/device/radio/intercom{dir = 1; pixel_y = 24},/turf/simulated/floor/tiled/white,/area/medical/patient_wing) +"AT" = (/obj/machinery/door/firedoor/glass,/obj/structure/window/bay/reinforced,/obj/structure/curtain/black{anchored = 1},/obj/structure/low_wall/bay/reinforced/steel,/turf/simulated/floor,/area/stellardelight/deck1/dorms/dorm5) +"AV" = (/obj/structure/cable/green{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/machinery/light_switch{dir = 8; pixel_x = 24},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 8},/turf/simulated/floor/tiled/dark,/area/chapel/chapel_morgue) +"AW" = (/obj/machinery/door/firedoor/glass,/turf/simulated/floor,/area/maintenance/stellardelight/deck1/starboardfore) +"AX" = (/obj/machinery/atmospherics/pipe/simple/hidden/cyan,/obj/effect/floor_decal/milspec/color/black,/obj/machinery/hologram/holopad,/turf/simulated/floor/tiled/dark,/area/security/armoury) +"AY" = (/turf/simulated/wall/bay/r_wall/black,/area/chapel/main) +"AZ" = (/obj/machinery/door/firedoor/glass/hidden/steel,/obj/structure/cable/green{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/starboard) +"Ba" = (/obj/machinery/status_display{pixel_x = 32},/obj/effect/floor_decal/milspec/color/red/half{dir = 4},/turf/simulated/floor/tiled/dark,/area/security/security_cell_hallway) +"Bb" = (/obj/structure/table/steel,/turf/simulated/floor,/area/maintenance/stellardelight/deck1/portfore) +"Bd" = (/obj/machinery/firealarm/angled,/turf/simulated/floor/tiled/white,/area/security/detectives_office) +"Be" = (/obj/structure/cable/yellow{icon_state = "1-2"},/obj/structure/cable/yellow{icon_state = "1-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/eris/steel/cargo,/area/stellardelight/deck1/mining) +"Bf" = (/obj/structure/cable/pink{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor,/area/maintenance/security_port) +"Bi" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/turf/simulated/floor/tiled/dark,/area/security/security_lockerroom) +"Bj" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/turf/simulated/floor/tiled/eris/white/cargo,/area/medical/virology) +"Bk" = (/obj/structure/closet{name = "Evidence Closet"},/obj/machinery/power/apc/angled{dir = 1},/obj/structure/cable/pink{icon_state = "0-2"},/turf/simulated/floor/tiled/white,/area/security/detectives_office) +"Bl" = (/obj/structure/bed/chair/backed_red{dir = 1},/turf/simulated/floor/tiled/milspec,/area/stellardelight/deck1/aft) +"Bm" = (/obj/structure/window/reinforced/full,/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 4},/obj/structure/grille,/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/window/reinforced{dir = 8},/obj/machinery/door/blast/angled/open{dir = 4; id = "xenobiopen3"; name = "Pen 3 Blast Doors"},/turf/simulated/floor/tiled/dark,/area/rnd/xenobiology) +"Bn" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/structure/bed/chair/office/dark{dir = 8},/obj/effect/landmark/start/roboticist,/turf/simulated/floor/tiled/steel,/area/assembly/robotics) +"Bo" = (/obj/structure/table/standard,/obj/item/weapon/storage/firstaid/surgery,/obj/item/weapon/paper{desc = ""; info = "Stop installing NIFs in here you clods! Unless it's on a synth. Otherwise, STOP DOING IT! You're killing people! -Management"; name = "note to science staff"},/obj/item/device/robotanalyzer,/obj/effect/floor_decal/industrial/warning{dir = 4},/obj/item/device/mmi/digital/posibrain,/obj/item/device/mmi,/turf/simulated/floor/tiled/steel_dirty,/area/assembly/robotics) +"Br" = (/obj/structure/closet/secure_closet/personal,/obj/machinery/firealarm/angled{dir = 8},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/turf/simulated/floor/carpet,/area/stellardelight/deck1/dorms/dorm5) +"Bs" = (/obj/machinery/door/firedoor/glass,/obj/structure/cable/pink{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/door/airlock/angled_bay/standard/glass{door_color = "#8c1d11"; name = "Equipment Storage"; req_access = list(1); stripe_color = "#d27428"},/turf/simulated/floor/tiled/steel_ridged,/area/security/security_lockerroom) +"Bt" = (/obj/effect/floor_decal/milspec/color/red/half{dir = 4},/obj/item/device/radio/intercom{dir = 4; pixel_x = 24},/turf/simulated/floor/tiled/dark,/area/security/lobby) +"Bu" = (/obj/structure/cable/green{color = "#42038a"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/steel_grid,/area/rnd/research) +"Bv" = (/obj/structure/table/reinforced,/obj/item/device/reagent_scanner,/obj/item/device/mass_spectrometer/adv,/obj/effect/floor_decal/milspec/color/red/half{dir = 6},/obj/item/device/radio/intercom{dir = 4; pixel_x = 24},/turf/simulated/floor/tiled/white,/area/security/detectives_office) +"Bw" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/turf/simulated/floor,/area/maintenance/stellardelight/deck1/starboardfore) +"Bx" = (/obj/structure/bed/chair/comfy/brown{dir = 4},/obj/effect/landmark/start/visitor,/turf/simulated/floor/wood,/area/library) +"By" = (/obj/machinery/light{dir = 1},/turf/simulated/floor/tiled/milspec,/area/stellardelight/deck1/exploration) +"Bz" = (/obj/structure/cable/green{icon_state = "1-4"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/effect/landmark/start/janitor,/turf/simulated/floor/tiled/monotile,/area/janitor) +"BA" = (/obj/machinery/atmospherics/unary/vent_scrubber/on,/obj/structure/sign/directions/security{dir = 1; pixel_y = 32},/obj/effect/floor_decal/milspec/color/red/half{dir = 1},/obj/effect/landmark/vermin,/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/fore) +"BB" = (/obj/structure/cable/green{color = "#42038a"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 5},/turf/simulated/floor/tiled/steel_grid,/area/rnd/research) +"BC" = (/obj/structure/cable/green{color = "#42038a"; icon_state = "2-8"},/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 6},/turf/simulated/floor/tiled/milspec,/area/stellardelight/deck1/exploration) +"BD" = (/obj/machinery/door/firedoor/glass,/obj/structure/cable/green{color = "#42038a"; icon_state = "4-8"},/obj/machinery/door/airlock/angled_bay/standard/glass{dir = 4; door_color = "#333333"; name = "Shuttle Bay"; req_one_access = null; stripe_color = "#5a19a8"},/turf/simulated/floor/tiled/steel_ridged,/area/stellardelight/deck1/exploration) +"BE" = (/obj/machinery/light/floortube{dir = 8; pixel_x = -6},/obj/item/device/radio/intercom{dir = 4; pixel_x = 24},/turf/simulated/floor/tiled/eris,/area/rnd/xenobiology/xenoflora) +"BF" = (/obj/machinery/door/firedoor/glass,/obj/structure/cable/white{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/door/airlock/angled_bay/standard/color{dir = 8; door_color = "#ffffff"; id_tag = "m-ex-room"; name = "Exam Room"; req_access = list(5); stripe_color = "#5a96bb"},/turf/simulated/floor/tiled/steel_ridged,/area/medical/exam_room) +"BG" = (/obj/structure/cable/pink{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/turf/simulated/floor/tiled/dark,/area/security/tactical) +"BH" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/obj/effect/landmark/vermin,/turf/simulated/floor/tiled/milspec,/area/stellardelight/deck1/exploration) +"BI" = (/obj/machinery/hologram/holopad,/turf/simulated/floor/tiled/techfloor,/area/stellardelight/deck1/port) +"BJ" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/turf/simulated/floor/tiled/dark,/area/security/security_lockerroom) +"BK" = (/obj/effect/floor_decal/industrial/outline/yellow,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/dark,/area/assembly/robotics) +"BL" = (/obj/structure/cable/green{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/starboard) +"BM" = (/obj/structure/table/steel_reinforced,/obj/machinery/recharger,/obj/item/device/ticket_printer,/turf/simulated/floor/tiled/dark,/area/security/security_equiptment_storage) +"BN" = (/obj/structure/cable/yellow{icon_state = "1-2"},/obj/structure/cable/yellow,/obj/machinery/power/sensor{name = "Powernet Sensor - Cargo Subgrid"; name_tag = "Cargo Subgrid"},/obj/machinery/power/apc/angled{dir = 4; name = "night shift APC"; nightshift_setting = 2},/turf/simulated/floor,/area/maintenance/stellardelight/substation/cargo) +"BO" = (/obj/machinery/computer/secure_data{dir = 1},/obj/machinery/light,/turf/simulated/floor/tiled/white,/area/security/detectives_office) +"BP" = (/obj/structure/table/steel,/obj/random/maintenance/clean,/obj/random/maintenance,/obj/random/contraband,/turf/simulated/floor,/area/maintenance/stellardelight/deck1/exploration) +"BQ" = (/obj/structure/cable{icon_state = "1-2"},/turf/simulated/floor,/area/maintenance/stellardelight/substation/research) +"BR" = (/obj/structure/cable{icon_state = "2-8"},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/turf/simulated/floor,/area/maintenance/stellardelight/deck1/starboardcent) +"BS" = (/obj/structure/window/reinforced{dir = 1},/obj/structure/filingcabinet,/turf/simulated/floor/tiled/white,/area/security/detectives_office) +"BT" = (/obj/machinery/power/apc/angled{dir = 4},/obj/structure/cable/pink{icon_state = "0-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/turf/simulated/floor/tiled/dark,/area/security/security_equiptment_storage) +"BU" = (/turf/simulated/wall/bay/black,/area/chapel/main) +"BV" = (/obj/machinery/disease2/incubator,/obj/structure/reagent_dispensers/virusfood{pixel_y = 27},/obj/machinery/atmospherics/unary/vent_pump/on,/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/virology) +"BW" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/light/small{dir = 8},/turf/simulated/floor,/area/maintenance/stellardelight/substation/exploration) +"BX" = (/obj/machinery/portable_atmospherics/hydroponics,/obj/machinery/atmospherics/portables_connector{dir = 8},/turf/simulated/floor/tiled/eris,/area/rnd/xenobiology/xenoflora_storage) +"BY" = (/obj/structure/table/reinforced,/obj/effect/floor_decal/milspec/color/orange/half{dir = 6},/turf/simulated/floor/tiled/dark,/area/prison/cell_block) +"BZ" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/effect/landmark{name = "lightsout"},/turf/simulated/floor/tiled/steel_grid,/area/rnd/research) +"Ca" = (/obj/machinery/camera/network/command{dir = 4},/turf/simulated/floor/tiled/eris/white/gray_platform,/area/gateway) +"Cb" = (/obj/structure/cable/green{icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/machinery/light_switch{dir = 1; pixel_x = 25; pixel_y = -24},/turf/simulated/floor/carpet/purcarpet,/area/stellardelight/deck1/dorms/dorm3) +"Cc" = (/obj/structure/bed/chair{dir = 1},/turf/simulated/floor,/area/maintenance/stellardelight/deck1/exploration) +"Cf" = (/obj/structure/cable/pink{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/effect/floor_decal/steeldecal/steel_decals4,/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 10},/turf/simulated/floor/tiled/dark,/area/chapel/main) +"Cg" = (/turf/simulated/floor,/area/maintenance/stellardelight/deck1/starboardcent) +"Ch" = (/obj/structure/cable/green{icon_state = "1-4"},/obj/structure/cable/green{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/effect/floor_decal/steeldecal/steel_decals3{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals3{dir = 10},/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/starboard) +"Ci" = (/obj/machinery/power/pointdefense{id_tag = "sd_pd"},/obj/effect/floor_decal/industrial/warning/full,/obj/structure/cable/green{color = "#42038a"; icon_state = "0-2"},/obj/structure/cable/green{color = "#42038a"; icon_state = "0-8"},/turf/simulated/floor/airless,/area/stellardelight/deck1/exterior) +"Cj" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/wood,/area/library) +"Ck" = (/obj/machinery/firealarm/angled{dir = 8},/obj/machinery/photocopier,/turf/simulated/floor/wood,/area/library) +"Cl" = (/obj/machinery/light{dir = 1},/obj/machinery/atmospherics/unary/vent_pump/on,/obj/machinery/camera/network/command{dir = 4},/turf/simulated/floor/tiled/milspec,/area/stellardelight/deck1/explobriefing) +"Cm" = (/obj/effect/floor_decal/industrial/outline/yellow,/obj/structure/disposalpipe/up{dir = 8},/obj/machinery/atmospherics/pipe/zpipe/up/scrubbers,/obj/machinery/atmospherics/pipe/zpipe/up/supply,/obj/machinery/door/firedoor/glass,/turf/simulated/floor,/area/maintenance/stellardelight/deck1/starboardcent) +"Cn" = (/obj/machinery/light{dir = 1},/turf/simulated/floor/reinforced,/area/rnd/xenobiology) +"Co" = (/obj/structure/bed/chair/sofa/corp/left{dir = 1},/turf/simulated/floor/carpet/purcarpet,/area/stellardelight/deck1/dorms/dorm7) +"Cp" = (/obj/machinery/power/apc/angled{dir = 8; name = "night shift APC"; nightshift_setting = 2},/obj/structure/cable/green{color = "#42038a"; icon_state = "0-4"},/turf/simulated/floor/tiled/eris,/area/stellardelight/deck1/researchhall) +"Cr" = (/obj/structure/closet/emcloset,/turf/simulated/floor,/area/maintenance/stellardelight/deck1/starboardfore) +"Cs" = (/obj/machinery/door/firedoor/glass,/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/door/airlock/angled_bay/hatch{dir = 4; name = "maintenance access"; stripe_color = "#454545"},/turf/simulated/floor/tiled/steel_ridged,/area/maintenance/stellardelight/deck1/starboardcent) +"Ct" = (/turf/simulated/wall/bay/r_wall/purple,/area/assembly/robotics) +"Cu" = (/obj/effect/floor_decal/steeldecal/steel_decals10{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals10{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/white,/area/stellardelight/deck1/shower) +"Cv" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/turf/simulated/floor/tiled/eris/white/gray_platform,/area/gateway) +"Cw" = (/obj/effect/floor_decal/borderfloorblack/full,/obj/effect/floor_decal/industrial/hatch/yellow,/obj/machinery/deployable/barrier,/obj/machinery/atmospherics/pipe/simple/hidden/cyan{dir = 4},/turf/simulated/floor/tiled/dark,/area/security/armoury) +"Cx" = (/obj/structure/cable/green{color = "#42038a"; icon_state = "2-8"},/obj/structure/cable/green{color = "#42038a"; icon_state = "4-8"},/turf/simulated/floor/airless,/area/stellardelight/deck1/exterior) +"Cz" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/turf/simulated/floor/tiled/white,/area/security/detectives_office) +"CA" = (/obj/machinery/door/airlock/angled_bay/standard/color/common{dir = 4; id_tag = "bathroomstall1"; name = "Toilet 1"},/turf/simulated/floor/tiled/steel_ridged,/area/crew_quarters/toilet) +"CB" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor,/area/maintenance/stellardelight/deck1/portaft) +"CC" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/turf/simulated/floor,/area/maintenance/stellardelight/deck1/starboardcent) +"CD" = (/obj/machinery/door/firedoor/glass,/obj/structure/window/bay/reinforced,/obj/machinery/door/blast/angled/open{dir = 2; id = "brigwindowlockdown"},/obj/structure/cable/pink{icon_state = "1-2"},/obj/structure/low_wall/bay/reinforced/steel,/turf/simulated/floor,/area/security/security_equiptment_storage) +"CE" = (/obj/structure/filingcabinet/chestdrawer,/obj/machinery/button/remote/blast_door{dir = 8; id = "securitylockdown"; name = "Brig Lockdown"; pixel_x = 26; pixel_y = -7},/obj/machinery/button/remote/blast_door{dir = 8; id = "armorydoor"; name = "Armory"; pixel_x = 26; pixel_y = 9},/obj/machinery/button/remote/blast_door{dir = 8; id = "wardenoffice"; name = "Privacy Shutters"; pixel_x = 37; pixel_y = 1},/turf/simulated/floor/tiled/dark,/area/security/warden) +"CG" = (/turf/simulated/wall/bay/white,/area/stellardelight/deck1/resleeving) +"CI" = (/obj/machinery/computer/secure_data,/obj/machinery/atmospherics/unary/vent_pump/on,/turf/simulated/floor/tiled/dark,/area/security/warden) +"CJ" = (/obj/structure/table/glass,/obj/item/weapon/book/manual/virology,/obj/item/device/antibody_scanner,/obj/item/weapon/reagent_containers/glass/beaker,/obj/item/weapon/paper_bin,/obj/item/weapon/folder/white,/obj/item/weapon/pen,/obj/machinery/light/floortube{dir = 4; pixel_x = 6},/obj/structure/disposalpipe/trunk{dir = 1},/obj/machinery/disposal/wall{dir = 1},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/virology) +"CK" = (/obj/machinery/button/remote/blast_door{id = "explowindowlockdown"; name = "Window Lockdown"; pixel_y = 25},/turf/simulated/floor/tiled/milspec,/area/stellardelight/deck1/exploration) +"CL" = (/obj/structure/stairs/spawner/north,/obj/structure/window/reinforced{dir = 4},/turf/simulated/floor,/area/stellardelight/deck1/aft) +"CM" = (/obj/machinery/door/firedoor/glass,/obj/structure/window/bay/reinforced,/obj/structure/low_wall/bay/reinforced/red,/turf/simulated/floor,/area/prison/cell_block/C) +"CO" = (/obj/structure/table/woodentable,/obj/machinery/librarycomp,/turf/simulated/floor/carpet,/area/library) +"CP" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/eris/steel/cargo,/area/stellardelight/deck1/shuttlebay) +"CQ" = (/obj/structure/table/steel_reinforced,/obj/machinery/requests_console/preset/security{pixel_y = 30},/obj/machinery/atmospherics/unary/vent_scrubber/on,/obj/effect/floor_decal/milspec/color/red,/obj/item/weapon/paper_bin{pixel_y = 7},/obj/item/weapon/pen,/obj/item/device/ticket_printer,/turf/simulated/floor/tiled/dark,/area/security/lobby) +"CR" = (/obj/machinery/light/small{dir = 1},/turf/simulated/floor/tiled/eris/white/cargo,/area/medical/virology) +"CS" = (/obj/structure/cable/green{color = "#42038a"; icon_state = "2-4"},/turf/simulated/wall/bay/r_wall/purple,/area/rnd/xenobiology) +"CT" = (/obj/machinery/atmospherics/unary/vent_scrubber/on,/obj/machinery/status_display{pixel_y = 32},/obj/structure/table/standard,/turf/simulated/floor/tiled/milspec,/area/stellardelight/deck1/exploequipment) +"CU" = (/obj/machinery/atmospherics/unary/vent_scrubber/on,/obj/machinery/alarm/angled,/obj/structure/undies_wardrobe,/turf/simulated/floor/tiled/dark,/area/stellardelight/deck1/resleeving) +"CV" = (/obj/structure/sign/directions/dorms{dir = 1; pixel_x = 32},/obj/structure/disposalpipe/segment,/obj/structure/sign/directions/security{dir = 1; pixel_x = 32; pixel_y = 6},/obj/effect/floor_decal/milspec/color/emerald/half{dir = 4},/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/aft) +"CW" = (/obj/structure/cable/green{color = "#42038a"; icon_state = "2-4"},/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals6,/turf/simulated/floor/tiled/milspec,/area/stellardelight/deck1/explobriefing) +"CX" = (/obj/effect/floor_decal/chapel{dir = 1},/obj/structure/bed/chair/sofa/pew/left{dir = 1},/obj/effect/landmark/start/visitor,/turf/simulated/floor/tiled/dark,/area/chapel/main) +"CY" = (/obj/structure/cable/green{color = "#42038a"; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/table/rack,/obj/random/drinkbottle,/obj/random/maintenance,/obj/random/maintenance,/obj/random/maintenance,/obj/random/maintenance/research,/obj/random/maintenance/research,/obj/random/maintenance/clean,/obj/random/maintenance/clean,/obj/random/contraband,/turf/simulated/floor,/area/maintenance/stellardelight/deck1/starboardaft) +"CZ" = (/obj/structure/cable/green{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/port) +"Da" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/angled_bay/standard/color{dir = 8; door_color = "#ffffff"; name = "EMT Bay"; req_access = list(5); stripe_color = "#5a96bb"},/turf/simulated/floor/tiled/steel_ridged,/area/stellardelight/deck1/paramedic) +"Db" = (/obj/machinery/door/firedoor/glass,/obj/structure/window/bay/reinforced,/obj/machinery/door/blast/angled/open{dir = 2; id = "researchwindowlockdown"},/obj/structure/low_wall/bay/reinforced/steel,/turf/simulated/floor,/area/rnd/storage) +"Dc" = (/obj/item/weapon/bedsheet/orangedouble,/obj/structure/bed/double/padded,/obj/structure/curtain/black,/turf/simulated/floor/carpet/purcarpet,/area/stellardelight/deck1/dorms/dorm3) +"Dd" = (/obj/structure/disposalpipe/segment,/obj/effect/floor_decal/milspec/color/emerald/half{dir = 6},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 8},/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/aft) +"De" = (/obj/item/weapon/bedsheet/bluedouble,/obj/structure/bed/double/padded,/obj/structure/curtain/black,/turf/simulated/floor/carpet,/area/stellardelight/deck1/dorms/dorm4) +"Df" = (/obj/structure/cable/white{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/light_switch{dir = 4; pixel_x = -32; pixel_y = -32},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 6},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 1},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/stellardelight/deck1/paramedic) +"Dg" = (/obj/structure/plasticflaps/mining,/obj/machinery/conveyor{dir = 8; id = "bodieshitthefloor"},/turf/simulated/floor/tiled/steel_ridged,/area/chapel/chapel_morgue) +"Di" = (/obj/machinery/light{dir = 8},/turf/simulated/floor/tiled/steel_grid,/area/stellardelight/deck1/fore) +"Dj" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/angled_bay/double{name = "maintenance access"; stripe_color = "#454545"},/turf/simulated/floor,/area/maintenance/stellardelight/deck1/portfore) +"Dk" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/green{icon_state = "1-2"},/obj/machinery/light{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals6{dir = 10},/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/port) +"Dl" = (/obj/structure/cable/pink{icon_state = "2-4"},/obj/structure/cable/pink{icon_state = "2-8"},/turf/simulated/floor/airless,/area/stellardelight/deck1/exterior) +"Dm" = (/obj/structure/bed/chair/backed_red,/obj/item/device/radio/intercom{dir = 1; name = "Station Intercom (General)"; pixel_y = 21},/turf/simulated/floor/tiled/milspec,/area/stellardelight/deck1/aft) +"Dn" = (/obj/machinery/light{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/eris/steel/cargo,/area/stellardelight/deck1/miningequipment) +"Do" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/effect/landmark{name = "lightsout"},/turf/simulated/floor/tiled/eris/steel/cargo,/area/stellardelight/deck1/oreprocessing) +"Dp" = (/obj/machinery/door/firedoor/glass/hidden/steel,/obj/structure/sign/directions/security{dir = 1; pixel_x = -32; pixel_y = 10},/obj/structure/sign/directions/library{dir = 4; pixel_x = -32; pixel_y = 4},/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/fore) +"Dq" = (/obj/machinery/newscaster{pixel_x = -29},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/port) +"Dr" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/effect/mouse_hole_spawner{dir = 4},/turf/simulated/floor,/area/maintenance/stellardelight/deck1/portaft) +"Ds" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/angled_bay/standard/color{dir = 4; door_color = "#ffffff"; fill_color = "#ead9ff"; name = "Robotics Lab"; req_access = list(29,47); stripe_color = "#5a19a8"},/turf/simulated/floor/tiled/steel_ridged,/area/assembly/robotics) +"Dt" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/milspec,/area/stellardelight/deck1/exploration) +"Dv" = (/obj/structure/cable/green{color = "#42038a"; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor,/area/maintenance/stellardelight/deck1/starboardaft) +"Dw" = (/obj/structure/cable/green{icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/dark,/area/chapel/main) +"Dx" = (/turf/simulated/wall/bay/r_wall/purple,/area/rnd/xenobiology) +"Dy" = (/obj/machinery/shower{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals10{dir = 6},/obj/effect/floor_decal/steeldecal/steel_decals10{dir = 5},/obj/machinery/light/small{dir = 8},/turf/simulated/floor/tiled/white,/area/stellardelight/deck1/shower) +"Dz" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/starboard) +"DA" = (/obj/structure/cable/white{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/light_switch{dir = 8; pixel_x = 24; pixel_y = -32},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 10},/obj/effect/floor_decal/steeldecal/steel_decals4,/turf/simulated/floor/tiled/eris/white/bluecorner,/area/stellardelight/deck1/resleeving) +"DC" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/starboard) +"DD" = (/obj/structure/cable/orange{icon_state = "2-8"},/turf/simulated/floor/airless,/area/stellardelight/deck1/exterior) +"DE" = (/obj/structure/cable/pink{icon_state = "1-2"},/turf/simulated/floor/tiled/dark,/area/security/security_cell_hallway) +"DF" = (/obj/machinery/door/firedoor/glass,/obj/structure/window/bay/reinforced,/obj/machinery/door/blast/angled/open{dir = 2; id = "brigwindowlockdown"},/obj/structure/low_wall/bay/reinforced/steel,/turf/simulated/floor,/area/prison/cell_block/C) +"DG" = (/obj/structure/bed/chair/office/light,/obj/effect/landmark/start/xenobot,/turf/simulated/floor/tiled/eris,/area/rnd/xenobiology/xenoflora) +"DH" = (/turf/simulated/wall/bay/r_wall/purple,/area/rnd/xenobiology/xenoflora_storage) +"DI" = (/obj/structure/cable/green{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/hologram/holopad,/turf/simulated/floor/tiled/dark,/area/chapel/main) +"DJ" = (/obj/structure/cable/green{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/camera/network/halls{dir = 4},/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/starboard) +"DK" = (/obj/machinery/door/firedoor/glass/hidden/steel{dir = 8},/obj/structure/disposalpipe/segment,/obj/effect/floor_decal/milspec/color/emerald/half{dir = 4},/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/aft) +"DL" = (/obj/structure/closet/secure_closet/xenoarchaeologist,/turf/simulated/floor/tiled/eris/white/gray_platform,/area/gateway) +"DN" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/status_display{pixel_y = 32},/turf/simulated/floor/tiled/eris/steel/cargo,/area/stellardelight/deck1/shuttlebay) +"DO" = (/turf/simulated/floor/tiled/milspec,/area/stellardelight/deck1/exploration) +"DP" = (/obj/structure/cable/green{color = "#42038a"; icon_state = "1-2"},/obj/structure/cable/green{color = "#42038a"; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/turf/simulated/floor/tiled/techfloor,/area/rnd/workshop) +"DQ" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor,/area/maintenance/stellardelight/deck1/exploration) +"DS" = (/turf/simulated/wall/bay/red,/area/prison/cell_block) +"DV" = (/obj/machinery/suit_cycler/pilot,/obj/machinery/light,/turf/simulated/floor/tiled/eris/steel/panels,/area/stellardelight/deck1/pilot) +"DW" = (/obj/structure/cable/green{color = "#42038a"; icon_state = "1-4"},/obj/structure/cable/green{color = "#42038a"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/turf/simulated/floor/tiled/techfloor,/area/rnd/workshop) +"DY" = (/obj/structure/railing/grey{dir = 4},/obj/structure/sign/directions/command{pixel_x = 32},/obj/structure/sign/directions/bar{pixel_x = 32; pixel_y = 6},/obj/structure/sign/directions/evac{pixel_x = 32; pixel_y = -12},/obj/structure/sign/directions/medical{pixel_x = 32; pixel_y = -6},/obj/structure/sign/directions/stairs_up{pixel_x = 32; pixel_y = 12},/turf/simulated/floor,/area/stellardelight/deck1/fore) +"Eb" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/wood,/area/library) +"Ec" = (/obj/structure/cable/green{color = "#42038a"; icon_state = "4-8"},/turf/simulated/floor,/area/maintenance/stellardelight/deck1/exploration) +"Ee" = (/obj/effect/floor_decal/milspec/color/red/half{dir = 9},/turf/simulated/floor/tiled/dark,/area/security/security_cell_hallway) +"Ef" = (/turf/space/internal_edge/top,/area/stellardelight/deck1/starboard) +"Eg" = (/obj/structure/cable/green{icon_state = "1-2"},/turf/simulated/floor/wood,/area/library) +"Eh" = (/turf/simulated/wall/bay/r_wall/steel,/area/security/armoury) +"Ei" = (/obj/structure/cable/pink{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/light_switch{dir = 1; pixel_x = -32; pixel_y = -25},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 5},/turf/simulated/floor/tiled/dark,/area/security/security_equiptment_storage) +"Ek" = (/obj/machinery/portable_atmospherics/canister/carbon_dioxide,/obj/effect/floor_decal/industrial/warning{dir = 4},/turf/simulated/floor/tiled,/area/rnd/storage) +"Em" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor,/area/maintenance/stellardelight/deck1/starboardcent) +"En" = (/obj/machinery/hologram/holopad,/turf/simulated/floor/tiled/eris/white/gray_platform,/area/gateway) +"Eo" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/monotile,/area/janitor) +"Ep" = (/obj/structure/cable/green{icon_state = "1-2"},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/obj/effect/landmark/vines,/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/port) +"Eq" = (/obj/structure/disposaloutlet{dir = 1},/obj/structure/disposalpipe/trunk{dir = 8},/obj/machinery/light,/turf/simulated/floor/reinforced,/area/rnd/xenobiology) +"Er" = (/obj/machinery/button/remote/blast_door{dir = 1; id = "xenospace6"; name = "6 Space Door"; pixel_x = 10; pixel_y = -21; req_access = list(55)},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/turf/simulated/floor/tiled/dark,/area/rnd/xenobiology) +"Es" = (/obj/machinery/mecha_part_fabricator,/obj/machinery/light{dir = 1},/turf/simulated/floor/tiled/steel,/area/assembly/robotics) +"Et" = (/obj/machinery/door/firedoor/glass,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/door/airlock/angled_bay/hatch{door_color = "#e6ab22"; name = "Civilian Substation"; req_one_access = list(10); stripe_color = "#e6ab22"},/turf/simulated/floor/tiled/steel_ridged,/area/maintenance/stellardelight/substation/civilian) +"Eu" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/stellardelight/deck1/lowermed) +"Ev" = (/obj/structure/cable/pink{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/turf/simulated/floor,/area/maintenance/stellardelight/deck1/portfore) +"Ew" = (/obj/structure/closet/secure_closet/personal,/obj/item/clothing/under/bathrobe,/obj/item/clothing/under/bathrobe,/obj/item/weapon/towel/random,/obj/item/weapon/towel/random,/turf/simulated/floor/tiled/white,/area/stellardelight/deck1/shower) +"Ex" = (/obj/structure/window/reinforced/full,/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 4},/obj/structure/grille,/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/window/reinforced{dir = 8},/obj/machinery/door/blast/angled/open{dir = 4; id = "xenobiopen4"; name = "Pen 4 Blast Doors"},/turf/simulated/floor/tiled/dark,/area/rnd/xenobiology) +"Ey" = (/obj/structure/bed/chair{dir = 1},/obj/machinery/power/apc/angled{dir = 8},/obj/structure/cable/green{icon_state = "0-4"},/turf/simulated/floor/tiled/dark,/area/chapel/chapel_morgue) +"Ez" = (/obj/structure/table/reinforced,/obj/item/stack/material/phoron{amount = 6},/obj/machinery/reagentgrinder{pixel_y = 11},/turf/simulated/floor/tiled/steel_grid,/area/rnd/xenobiology) +"EA" = (/obj/effect/floor_decal/milspec/color/red/half{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals6{dir = 10},/obj/machinery/firealarm/angled{dir = 4},/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/fore) +"EB" = (/obj/machinery/door/window/eastright{dir = 8; name = "Virology Isolation Room Two"; req_one_access = list(39)},/obj/machinery/atmospherics/pipe/simple/hidden/black{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/turf/simulated/floor/tiled/steel_ridged,/area/medical/virology) +"EC" = (/obj/effect/landmark{name = "lightsout"},/obj/structure/ore_box,/turf/simulated/floor/tiled/eris/steel/cargo,/area/stellardelight/deck1/mining) +"ED" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/turf/simulated/floor/tiled/dark,/area/security/security_equiptment_storage) +"EG" = (/obj/structure/cable/green{color = "#42038a"; icon_state = "1-8"},/turf/simulated/floor/airless,/area/stellardelight/deck1/exterior) +"EH" = (/obj/machinery/door/firedoor/glass,/obj/structure/window/bay/reinforced,/obj/structure/low_wall/bay/reinforced/steel,/turf/simulated/floor,/area/maintenance/stellardelight/deck1/portaft) +"EI" = (/obj/structure/cable{icon_state = "1-2"},/obj/item/device/radio/intercom{dir = 4; pixel_x = 24},/turf/simulated/floor/tiled/eris/white/gray_platform,/area/gateway) +"EJ" = (/turf/simulated/wall/bay/r_wall/steel,/area/stellardelight/deck1/shuttlebay) +"EK" = (/obj/structure/cable/green{icon_state = "1-8"},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/obj/machinery/recharge_station,/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/port) +"EM" = (/obj/structure/table/rack,/obj/item/device/defib_kit/compact/loaded,/turf/simulated/floor/tiled/eris/white/bluecorner,/area/stellardelight/deck1/paramedic) +"EN" = (/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/port) +"EO" = (/obj/machinery/door/firedoor/glass/hidden/steel{dir = 8},/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/fore) +"EP" = (/obj/machinery/atmospherics/portables_connector{dir = 4},/obj/machinery/light{dir = 8},/turf/simulated/floor/tiled/eris,/area/rnd/xenobiology/xenoflora_storage) +"EQ" = (/obj/structure/cable/green{icon_state = "2-8"},/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/starboard) +"ER" = (/turf/simulated/wall/bay/r_wall/brown,/area/stellardelight/deck1/dorms/dorm8) +"ES" = (/obj/machinery/mass_driver{dir = 8; id = "torpedolauncher"},/obj/structure/sign/vacuum{pixel_y = 32},/turf/simulated/floor/airless,/area/chapel/chapel_morgue) +"ET" = (/obj/structure/cable/white{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable/green{icon_state = "4-8"},/obj/effect/floor_decal/steeldecal/steel_decals3{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals3{dir = 5},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/aft) +"EU" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/structure/table/woodentable,/obj/item/weapon/paper_bin{pixel_y = 7},/obj/item/weapon/pen,/obj/machinery/light/small{dir = 4},/turf/simulated/floor/wood,/area/library) +"EV" = (/obj/structure/stairs/spawner/south,/obj/structure/railing/grey{dir = 8},/turf/simulated/floor,/area/stellardelight/deck1/fore) +"EW" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/turf/simulated/floor/bluegrid,/area/assembly/robotics) +"EX" = (/obj/structure/cable/orange{icon_state = "1-8"},/turf/simulated/floor,/area/maintenance/stellardelight/substation/atmospherics) +"EY" = (/obj/effect/floor_decal/chapel{dir = 1},/obj/structure/cable/green{icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/turf/simulated/floor/tiled/dark,/area/chapel/main) +"EZ" = (/turf/space/internal_edge/bottomright,/area/stellardelight/deck1/starboard) +"Fa" = (/obj/machinery/atmospherics/pipe/simple/hidden/cyan{dir = 10},/obj/effect/floor_decal/milspec/color/black,/turf/simulated/floor/tiled/dark,/area/security/armoury) +"Fb" = (/obj/structure/bed/chair/comfy/brown{dir = 4},/turf/simulated/floor/wood,/area/library) +"Fc" = (/obj/machinery/vending/wardrobe/scidrobe,/obj/effect/floor_decal/industrial/outline,/turf/simulated/floor/tiled/dark,/area/stellardelight/deck1/researchequip) +"Fd" = (/obj/structure/bed/padded,/obj/item/weapon/bedsheet/medical,/obj/structure/curtain/open/privacy,/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/turf/simulated/floor/tiled/white,/area/medical/patient_wing) +"Fe" = (/turf/simulated/wall/bay/red,/area/security/detectives_office) +"Ff" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/obj/machinery/firealarm/angled{dir = 8},/turf/simulated/floor/tiled/dark,/area/rnd/xenobiology) +"Fh" = (/obj/structure/window/reinforced{dir = 1},/obj/structure/closet/secure_closet/detective,/obj/item/weapon/reagent_containers/spray/pepper,/obj/item/device/camera{desc = "A one use - polaroid camera. 30 photos left."; name = "detectives camera"; pictures_left = 30},/turf/simulated/floor/tiled/white,/area/security/detectives_office) +"Fi" = (/obj/structure/closet{name = "Evidence Closet"},/obj/machinery/light{dir = 1},/turf/simulated/floor/tiled/white,/area/security/detectives_office) +"Fj" = (/obj/machinery/firealarm/angled,/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 6},/turf/simulated/floor/tiled/dark,/area/security/warden) +"Fk" = (/obj/structure/bed/chair/comfy/brown{dir = 4},/turf/simulated/floor/carpet/bcarpet,/area/stellardelight/deck1/port) +"Fl" = (/obj/structure/cable/green{color = "#42038a"; icon_state = "4-8"},/obj/structure/table/rack,/obj/random/maintenance/research,/obj/random/maintenance/research,/obj/random/maintenance/security,/obj/random/maintenance/clean,/obj/random/maintenance,/obj/random/contraband,/turf/simulated/floor,/area/maintenance/stellardelight/deck1/starboardcent) +"Fm" = (/obj/structure/morgue{dir = 2},/obj/machinery/atmospherics/unary/vent_pump/on,/turf/simulated/floor/tiled/dark,/area/chapel/chapel_morgue) +"Fn" = (/obj/machinery/door/firedoor/glass,/obj/structure/window/bay/reinforced,/obj/machinery/door/blast/angled/open{dir = 2; id = "researchwindowlockdown"},/obj/structure/cable/green{color = "#42038a"; icon_state = "1-2"},/obj/structure/low_wall/bay/reinforced/steel,/turf/simulated/floor,/area/stellardelight/deck1/researchhall) +"Fo" = (/obj/machinery/door/firedoor/glass,/obj/structure/cable/pink{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/door/airlock/angled_bay/hatch{name = "maintenance access"; stripe_color = "#454545"},/turf/simulated/floor/tiled/steel_ridged,/area/maintenance/stellardelight/deck1/portfore) +"Fp" = (/obj/machinery/door/firedoor/glass,/obj/structure/cable/pink{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/door/airlock/angled_bay/hatch{dir = 4; door_color = "#8c1d11"; name = "maintenance access"; req_one_access = list(1); stripe_color = "#8c1d11"},/turf/simulated/floor/tiled/steel_ridged,/area/maintenance/security_port) +"Fq" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/effect/landmark{name = "lightsout"},/turf/simulated/floor/tiled/dark,/area/rnd/xenobiology) +"Fr" = (/obj/structure/cable/white{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/white,/area/medical/patient_wing) +"Fs" = (/turf/simulated/floor/tiled/dark,/area/security/tactical) +"Ft" = (/obj/structure/cable{icon_state = "1-4"},/obj/structure/closet/crate/bin{anchored = 1},/turf/simulated/floor/tiled/eris/white/gray_platform,/area/gateway) +"Fu" = (/obj/machinery/door/firedoor/glass,/obj/structure/cable/green{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/door/airlock/angled_bay/standard/color{dir = 4; door_color = "#9c9c9c"; fill_color = "#5c5c5c"; name = "Unisex Restrooms"; stripe_color = "#89bd66"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/steel_ridged,/area/crew_quarters/toilet) +"Fv" = (/obj/structure/cable/green{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/camera/network/halls{dir = 8},/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/port) +"Fw" = (/obj/machinery/power/apc/angled{dir = 1},/obj/structure/cable/green{icon_state = "0-2"},/turf/simulated/floor/lino,/area/chapel/office) +"Fx" = (/obj/structure/cable/green{color = "#42038a"; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/light_switch{dir = 8; pixel_x = 24},/turf/simulated/floor/tiled/milspec,/area/stellardelight/deck1/explobriefing) +"Fy" = (/obj/structure/flora/pottedplant/orientaltree,/obj/machinery/light,/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/obj/machinery/camera/network/command{dir = 9},/turf/simulated/floor/tiled/milspec,/area/stellardelight/deck1/explobriefing) +"Fz" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/monotile,/area/janitor) +"FA" = (/obj/structure/cable/green{color = "#42038a"; icon_state = "1-2"},/obj/machinery/hologram/holopad,/turf/simulated/floor/tiled/eris,/area/rnd/xenobiology/xenoflora) +"FB" = (/obj/structure/cable/white{icon_state = "0-2"},/obj/machinery/power/apc/angled{dir = 1; name = "night shift APC"; nightshift_setting = 2},/obj/structure/closet/crate/bin{anchored = 1},/turf/simulated/floor/tiled/techfloor,/area/medical/morgue) +"FC" = (/obj/machinery/computer/prisoner,/turf/simulated/floor/tiled/dark,/area/security/warden) +"FD" = (/obj/machinery/light{dir = 1},/obj/effect/floor_decal/milspec/color/black,/obj/structure/sign/department/armory{pixel_y = 32},/turf/simulated/floor/tiled/dark,/area/security/security_cell_hallway) +"FE" = (/turf/simulated/wall/bay/r_wall/steel,/area/maintenance/stellardelight/deck1/starboardcent) +"FF" = (/obj/structure/cable/orange{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/hidden{dir = 4},/turf/simulated/floor,/area/maintenance/stellardelight/deck1/exploration) +"FG" = (/turf/simulated/wall/bay/white,/area/medical/patient_wing) +"FH" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/hologram/holopad,/turf/simulated/floor/tiled/dark,/area/security/security_processing) +"FI" = (/obj/structure/stairs/spawner/north,/obj/structure/railing/grey{dir = 4},/turf/simulated/floor,/area/maintenance/stellardelight/deck1/portaft) +"FK" = (/obj/structure/table/woodentable,/obj/machinery/microwave,/turf/simulated/floor/carpet/purcarpet,/area/stellardelight/deck1/dorms/dorm3) +"FL" = (/obj/structure/cable/green{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/turf/simulated/floor/wood,/area/library) +"FM" = (/obj/structure/table/steel,/obj/item/device/integrated_electronics/debugger{pixel_x = -5},/obj/item/device/integrated_electronics/wirer{pixel_x = 5},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/camera/network/research{dir = 1},/turf/simulated/floor/tiled/techfloor,/area/rnd/workshop) +"FN" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/angled_bay/standard/color{door_color = "#ffffff"; name = "Recovery Room"; req_access = list(5); stripe_color = "#5a96bb"},/turf/simulated/floor/tiled/steel_ridged,/area/medical/patient_wing) +"FO" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/firealarm/angled{dir = 8},/turf/simulated/floor/tiled/eris,/area/rnd/xenobiology/xenoflora) +"FP" = (/obj/machinery/power/pointdefense{id_tag = "sd_pd"},/obj/effect/floor_decal/industrial/warning/full,/obj/structure/cable/green{color = "#42038a"},/turf/simulated/floor/airless,/area/stellardelight/deck1/exterior) +"FQ" = (/obj/structure/morgue{dir = 2},/turf/simulated/floor/tiled/techfloor,/area/medical/morgue) +"FR" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/alarm/angled{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor,/area/maintenance/stellardelight/deck1/portcent) +"FT" = (/turf/simulated/wall/bay/brown,/area/library) +"FU" = (/obj/structure/cable/green{color = "#42038a"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/light_switch{dir = 8; pixel_x = 25; pixel_y = 6},/turf/simulated/floor/tiled/techfloor,/area/rnd/workshop) +"FV" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/obj/structure/closet/crate,/obj/random/maintenance,/obj/random/maintenance,/obj/random/maintenance/security,/obj/random/contraband,/obj/machinery/power/apc/angled{dir = 8; name = "night shift APC"; nightshift_setting = 2},/obj/structure/cable/pink{icon_state = "0-4"},/turf/simulated/floor,/area/maintenance/stellardelight/deck1/portfore) +"FW" = (/obj/machinery/power/apc/angled{dir = 8},/obj/structure/cable/green{color = "#42038a"; icon_state = "0-4"},/turf/simulated/floor/tiled/techfloor,/area/stellardelight/deck1/researchserver) +"FX" = (/obj/structure/window/reinforced,/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/turf/simulated/floor/tiled/eris,/area/rnd/xenobiology/xenoflora_storage) +"FY" = (/obj/machinery/light{dir = 1},/turf/simulated/floor/bluegrid{name = "Server Base"; nitrogen = 500; oxygen = 0; temperature = 80},/area/stellardelight/deck1/researchserver) +"FZ" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/white,/area/security/detectives_office) +"Ga" = (/obj/effect/shuttle_landmark/premade/sd/deck1/portairlock,/turf/space,/area/space) +"Gb" = (/obj/machinery/hologram/holopad,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/dark,/area/rnd/xenobiology) +"Gc" = (/obj/machinery/requests_console/preset/research{pixel_y = 30},/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/turf/simulated/floor/tiled/steel_grid,/area/rnd/research) +"Gd" = (/obj/machinery/power/breakerbox/activated{RCon_tag = "Cargo Substation Bypass"},/turf/simulated/floor,/area/maintenance/stellardelight/substation/cargo) +"Ge" = (/obj/structure/bed/chair{dir = 1},/obj/structure/cable/green{icon_state = "4-8"},/turf/simulated/floor/tiled/dark,/area/chapel/chapel_morgue) +"Gh" = (/obj/machinery/hologram/holopad,/obj/structure/cable/yellow{icon_state = "4-8"},/turf/simulated/floor/tiled/milspec,/area/stellardelight/deck1/aft) +"Gi" = (/obj/structure/closet{name = "Forensics Gear"},/obj/item/weapon/storage/box/gloves,/obj/item/weapon/storage/box/evidence,/obj/item/weapon/storage/box/bodybags,/obj/item/weapon/storage/briefcase/crimekit,/obj/item/weapon/storage/briefcase/crimekit,/obj/effect/floor_decal/milspec/color/red/half{dir = 5},/obj/item/device/radio/intercom{dir = 1; pixel_y = 24},/turf/simulated/floor/tiled/white,/area/security/detectives_office) +"Gj" = (/obj/machinery/door/firedoor/glass,/obj/structure/window/bay/reinforced,/obj/structure/cable/green{color = "#42038a"; icon_state = "4-8"},/obj/structure/low_wall/bay/reinforced/steel,/turf/simulated/floor,/area/maintenance/stellardelight/deck1/exploration) +"Gl" = (/obj/machinery/portable_atmospherics/hydroponics,/obj/machinery/light{dir = 1},/obj/structure/cable/green{color = "#42038a"; icon_state = "1-2"},/turf/simulated/floor/tiled/eris,/area/rnd/xenobiology/xenoflora) +"Gm" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/window/brigdoor/southleft{id = "Cell A"; name = "Cell A"; req_access = list(2)},/obj/structure/cable/pink{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/steel_ridged,/area/prison/cell_block) +"Gn" = (/obj/machinery/disease2/diseaseanalyser,/obj/machinery/light/floortube{dir = 8; pixel_x = -6},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/virology) +"Go" = (/obj/structure/reagent_dispensers/watertank,/turf/simulated/floor/tiled/steel_grid,/area/maintenance/stellardelight/deck1/starboardaft) +"Gp" = (/obj/structure/table/bench/steel,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/camera/network/security{dir = 1},/obj/effect/landmark/start/security,/turf/simulated/floor/tiled/dark,/area/security/security_lockerroom) +"Gq" = (/obj/machinery/atmospherics/portables_connector{dir = 8},/obj/machinery/portable_atmospherics/hydroponics,/turf/simulated/floor/tiled/eris,/area/rnd/xenobiology/xenoflora_storage) +"Gr" = (/turf/simulated/wall/bay/r_wall/red,/area/security/tactical) +"Gu" = (/obj/item/weapon/bedsheet/bluedouble,/obj/structure/bed/double/padded,/obj/structure/curtain/black,/turf/simulated/floor/carpet,/area/stellardelight/deck1/dorms/dorm1) +"Gv" = (/obj/structure/cable/pink{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor,/area/maintenance/stellardelight/deck1/portcent) +"Gy" = (/obj/structure/closet/firecloset,/turf/simulated/floor,/area/maintenance/stellardelight/deck1/exploration) +"GA" = (/obj/machinery/light,/obj/structure/cable/green{icon_state = "4-8"},/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/fore) +"GB" = (/obj/structure/cable/green{color = "#42038a"; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/milspec,/area/stellardelight/deck1/exploequipment) +"GC" = (/obj/structure/stairs/spawner/north,/obj/structure/railing/grey{dir = 4},/turf/simulated/floor,/area/stellardelight/deck1/aft) +"GD" = (/obj/structure/cable/pink{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/turf/simulated/floor/tiled/dark,/area/security/lobby) +"GE" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/techfloor,/area/stellardelight/deck1/researchserver) +"GF" = (/obj/structure/cable/green{color = "#42038a"; icon_state = "0-2"},/obj/structure/cable/green{color = "#42038a"},/obj/machinery/power/smes/buildable{RCon_tag = "Substation - Research"; output_attempt = 0},/turf/simulated/floor,/area/maintenance/stellardelight/substation/research) +"GG" = (/obj/structure/table/steel,/obj/item/weapon/storage/box/bodybags{pixel_x = 4; pixel_y = 4},/obj/item/weapon/storage/box/bodybags,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/techfloor,/area/medical/morgue) +"GI" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/blast/angled/open{dir = 2; id = "researchwindowlockdown"},/obj/structure/window/bay/reinforced,/obj/structure/low_wall/bay/reinforced/steel,/turf/simulated/floor,/area/stellardelight/deck1/researchhall) +"GK" = (/obj/structure/cable/green{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/alarm/angled{dir = 4},/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/starboard) +"GL" = (/obj/structure/cable/green{color = "#42038a"; icon_state = "1-4"},/obj/structure/cable/green{color = "#42038a"; icon_state = "4-8"},/turf/simulated/floor/airless,/area/stellardelight/deck1/exterior) +"GM" = (/obj/structure/cable/pink{icon_state = "1-2"},/turf/simulated/wall/bay/r_wall{desc = "It has a brown stripe! A huge chunk of metal used to seperate rooms."; stripe_color = "#785134"},/area/security/armoury) +"GN" = (/obj/structure/cable/white{icon_state = "4-8"},/turf/simulated/floor,/area/maintenance/stellardelight/deck1/portcent) +"GP" = (/obj/structure/cable/pink{icon_state = "2-4"},/obj/machinery/atmospherics/valve/digital{dir = 4; name = "supply isolation valve"},/obj/structure/cable/pink{icon_state = "4-8"},/obj/effect/catwalk_plated/dark,/turf/simulated/floor,/area/security/armoury) +"GQ" = (/obj/structure/cable{icon_state = "2-4"},/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor,/area/maintenance/stellardelight/deck1/portcent) +"GR" = (/obj/structure/cable/pink{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/universal{dir = 8},/obj/effect/floor_decal/milspec/color/black,/turf/simulated/floor/tiled/dark,/area/security/armoury) +"GS" = (/obj/structure/grille,/obj/structure/window/reinforced/full,/obj/machinery/door/firedoor/glass/talon,/obj/machinery/door/blast/regular/open{id = "talon_boat_cockpit"},/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced{dir = 4},/turf/simulated/floor/plating,/area/stellardelight/deck1/miningshuttle) +"GT" = (/obj/structure/table/steel_reinforced,/obj/machinery/photocopier/faxmachine{department = "Security"},/obj/machinery/status_display{pixel_y = 32},/obj/effect/floor_decal/milspec/color/red,/turf/simulated/floor/tiled/dark,/area/security/lobby) +"GU" = (/obj/machinery/vending/wardrobe/robodrobe,/obj/effect/floor_decal/industrial/outline,/obj/machinery/atmospherics/unary/vent_pump/on,/obj/machinery/alarm/angled,/turf/simulated/floor/tiled/dark,/area/stellardelight/deck1/researchequip) +"GV" = (/obj/structure/cable/white{icon_state = "1-4"},/turf/simulated/floor,/area/maintenance/stellardelight/deck1/portcent) +"GW" = (/obj/machinery/power/apc/angled{dir = 4},/obj/structure/cable/pink{icon_state = "0-2"},/turf/simulated/floor/tiled/dark,/area/security/security_cell_hallway) +"GX" = (/obj/structure/cable/green{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/computer/guestpass{dir = 8; pixel_x = 25},/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/port) +"GZ" = (/obj/machinery/vending/loadout/uniform,/obj/structure/sign/painting/library_secure{pixel_y = 30},/obj/machinery/atmospherics/unary/vent_pump/on,/turf/simulated/floor/tiled/dark,/area/stellardelight/deck1/resleeving) +"Ha" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/item/device/radio/beacon,/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/fore) +"Hb" = (/obj/machinery/door/firedoor/glass,/obj/structure/cable/yellow{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/door/airlock/angled_bay/double/glass{door_color = "#a6753d"; name = "Shuttle Bay"; req_access = list(31); req_one_access = null; stripe_color = "#3b2b1a"},/turf/simulated/floor/tiled/steel_ridged,/area/stellardelight/deck1/mining) +"Hc" = (/obj/machinery/power/pointdefense{id_tag = "sd_pd"},/obj/effect/floor_decal/industrial/warning/full,/obj/structure/cable/pink{icon_state = "0-8"},/turf/simulated/floor/airless,/area/stellardelight/deck1/exterior) +"Hd" = (/obj/effect/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled/eris/steel/brown_platform,/area/stellardelight/deck1/miningshuttle) +"He" = (/obj/machinery/door/firedoor/glass,/obj/structure/window/bay/reinforced,/obj/machinery/door/blast/angled/open{dir = 2; id = "explowindowlockdown"},/obj/structure/cable/green{color = "#42038a"; icon_state = "1-2"},/obj/structure/low_wall/bay/reinforced/steel,/turf/simulated/floor,/area/stellardelight/deck1/explobriefing) +"Hf" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/obj/structure/bed/chair/backed_red{dir = 4},/obj/item/device/radio/intercom{dir = 8; pixel_x = -24},/turf/simulated/floor/tiled/milspec,/area/stellardelight/deck1/exploration) +"Hg" = (/obj/structure/cable/green{icon_state = "4-8"},/obj/structure/disposalpipe/sortjunction{dir = 4; name = "Security"; sortType = "Security"},/turf/simulated/floor,/area/maintenance/stellardelight/deck1/portcent) +"Hi" = (/obj/machinery/computer/timeclock/premade/west,/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/port) +"Hj" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/angled_bay/hatch{name = "maintenance access"; stripe_color = "#454545"},/turf/simulated/floor/tiled/steel_ridged,/area/library) +"Hk" = (/obj/structure/table/bench/standard,/obj/effect/floor_decal/milspec/color/orange/half{dir = 5},/turf/simulated/floor/tiled/dark,/area/prison/cell_block/B) +"Hl" = (/obj/structure/cable/green{icon_state = "1-4"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/port) +"Hn" = (/obj/machinery/mineral/processing_unit_console{density = 0; pixel_x = 32},/turf/simulated/floor/tiled/eris/steel/cargo,/area/stellardelight/deck1/oreprocessing) +"Hp" = (/obj/structure/disposalpipe/segment,/obj/structure/sign/department/sci{pixel_x = 32; pixel_y = 32},/obj/effect/floor_decal/milspec/color/emerald/half{dir = 4},/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/aft) +"Hq" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 5},/turf/simulated/floor/tiled/steel_grid,/area/rnd/xenobiology) +"Hr" = (/obj/machinery/light,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/steel_grid,/area/rnd/xenobiology) +"Hs" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/blast/angled/open{dir = 2; id = "securitylockdown"},/turf/simulated/floor/tiled/steel_ridged,/area/security/lobby) +"Ht" = (/obj/structure/table/woodentable,/obj/machinery/alarm/angled,/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/turf/simulated/floor/carpet/purcarpet,/area/stellardelight/deck1/dorms/dorm7) +"Hu" = (/obj/machinery/atmospherics/pipe/simple/hidden/purple,/obj/machinery/atmospherics/pipe/simple/hidden/cyan{dir = 4},/obj/effect/floor_decal/milspec/color/black,/turf/simulated/floor/tiled/dark,/area/security/armoury) +"Hv" = (/obj/structure/cable/green{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/turf/simulated/floor/tiled/dark,/area/chapel/main) +"Hw" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/turf/simulated/floor/lino,/area/chapel/office) +"Hx" = (/obj/machinery/door/firedoor/glass/hidden/steel,/obj/structure/cable/green{icon_state = "1-2"},/obj/effect/mouse_hole_spawner{dir = 8},/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/fore) +"Hy" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/stellardelight/deck1/resleeving) +"Hz" = (/obj/structure/table/rack/shelf/steel,/obj/item/weapon/gun/projectile/shotgun/pump{ammo_type = /obj/item/ammo_casing/a12g/pellet; pixel_x = 1; pixel_y = 4},/obj/item/weapon/gun/projectile/shotgun/pump{ammo_type = /obj/item/ammo_casing/a12g/pellet; pixel_x = 2; pixel_y = -6},/obj/machinery/camera/network/security{dir = 4},/obj/effect/floor_decal/milspec/color/black,/turf/simulated/floor/tiled/dark,/area/security/armoury) +"HA" = (/obj/structure/cable/pink{icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable/pink{icon_state = "4-8"},/turf/simulated/floor/tiled/white,/area/security/detectives_office) +"HB" = (/obj/machinery/conveyor{dir = 4; id = "miningops"},/obj/structure/plasticflaps/mining,/turf/simulated/floor/tiled/eris/steel/cargo,/area/stellardelight/deck1/oreprocessing) +"HC" = (/obj/structure/railing/grey{dir = 4},/obj/structure/sign/directions/medical{dir = 1; pixel_x = 32; pixel_y = 6},/obj/structure/sign/directions/evac{dir = 1; pixel_x = 32},/obj/structure/sign/directions/stairs_up{dir = 1; pixel_x = 32; pixel_y = 12},/turf/simulated/floor,/area/stellardelight/deck1/aft) +"HD" = (/obj/structure/table/reinforced,/obj/item/weapon/gun/energy/taser/xeno,/obj/item/weapon/gun/energy/taser/xeno,/obj/item/weapon/melee/baton/slime/loaded,/obj/item/weapon/melee/baton/slime/loaded,/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/turf/simulated/floor/tiled/steel_grid,/area/rnd/xenobiology) +"HE" = (/obj/machinery/conveyor{id = "miningops"},/obj/machinery/mineral/input,/turf/simulated/floor/tiled/eris/steel/cargo,/area/stellardelight/deck1/oreprocessing) +"HF" = (/obj/structure/table/steel_reinforced,/obj/machinery/door/firedoor/glass,/obj/machinery/door/blast/angled/open{dir = 2; id = "securitylockdown"},/obj/machinery/door/window/brigdoor/eastleft{dir = 2},/obj/effect/floor_decal/milspec/color/red,/turf/simulated/floor/tiled/dark,/area/security/lobby) +"HG" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/turf/simulated/floor/tiled/milspec,/area/stellardelight/deck1/exploration) +"HH" = (/obj/machinery/door/firedoor/glass,/obj/structure/window/bay/reinforced,/obj/structure/curtain/black{anchored = 1},/obj/structure/low_wall/bay/reinforced/steel,/turf/simulated/floor,/area/stellardelight/deck1/dorms/dorm2) +"HI" = (/turf/simulated/floor,/area/maintenance/stellardelight/substation/medical) +"HK" = (/obj/effect/floor_decal/chapel{dir = 8},/obj/structure/bed/chair/sofa/pew/left{dir = 1},/turf/simulated/floor/tiled/dark,/area/chapel/main) +"HL" = (/obj/machinery/vending/nifsoft_shop,/turf/simulated/floor/tiled/techfloor,/area/stellardelight/deck1/starboard) +"HN" = (/obj/structure/cable/pink{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4,/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 10},/turf/simulated/floor/tiled/dark,/area/security/lobby) +"HO" = (/obj/structure/bed/chair/comfy/black,/obj/structure/sign/painting/public{pixel_y = 30},/turf/simulated/floor/carpet/bcarpet,/area/stellardelight/deck1/starboard) +"HP" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/green{icon_state = "1-2"},/obj/structure/sign/department/morgue{pixel_x = 32},/obj/effect/floor_decal/steeldecal/steel_decals6{dir = 5},/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/port) +"HR" = (/obj/structure/bed/padded,/obj/item/weapon/bedsheet/medical,/obj/structure/sign/painting/library_secure{pixel_y = 30},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/exam_room) +"HS" = (/obj/structure/table/woodentable,/obj/machinery/microwave{pixel_y = 7},/obj/item/device/radio/intercom{dir = 1; pixel_y = 24},/turf/simulated/floor/tiled/milspec,/area/stellardelight/deck1/explobriefing) +"HV" = (/obj/machinery/alarm/angled{dir = 8},/turf/simulated/floor,/area/maintenance/stellardelight/deck1/starboardaft) +"HW" = (/turf/simulated/floor/tiled/techfloor,/area/stellardelight/deck1/port) +"HX" = (/obj/machinery/button/remote/airlock{id = "dorm1"; name = "Room 1 Lock"; pixel_y = 24; specialfunctions = 4},/obj/machinery/power/apc/angled{dir = 4; name = "night shift APC"; nightshift_setting = 2},/obj/structure/cable/green{icon_state = "0-8"},/obj/structure/closet/crate/bin{anchored = 1},/turf/simulated/floor/carpet,/area/stellardelight/deck1/dorms/dorm1) +"HY" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor,/area/maintenance/stellardelight/deck1/portcent) +"HZ" = (/obj/machinery/portable_atmospherics/canister/carbon_dioxide,/obj/effect/floor_decal/milspec/color/red/half,/turf/simulated/floor/tiled/dark,/area/security/tactical) +"Ib" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable/green{icon_state = "4-8"},/turf/simulated/floor,/area/maintenance/stellardelight/deck1/portaft) +"Ic" = (/obj/structure/table/standard,/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/obj/machinery/alarm/angled{dir = 8},/turf/simulated/floor/tiled/eris/white/cargo,/area/medical/virology) +"Ie" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/status_display{pixel_y = 32},/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/aft) +"If" = (/obj/structure/closet/secure_closet/brig{id = "Cell B"},/obj/effect/floor_decal/milspec/color/orange/half{dir = 6},/turf/simulated/floor/tiled/dark,/area/prison/cell_block/B) +"Ig" = (/obj/structure/cable/green{icon_state = "1-4"},/turf/simulated/wall/bay/r_wall/steel,/area/crew_quarters/toilet) +"Ih" = (/obj/structure/closet{name = "robotics equipment"},/obj/item/weapon/cell/high{charge = 100; maxcharge = 15000; pixel_x = 5; pixel_y = -5},/obj/item/weapon/cell/high{charge = 100; maxcharge = 15000; pixel_x = 5; pixel_y = -5},/obj/item/weapon/cell/high{charge = 100; maxcharge = 15000; pixel_x = 5; pixel_y = -5},/obj/item/weapon/cell/high{charge = 100; maxcharge = 15000; pixel_x = 5; pixel_y = -5},/obj/item/weapon/storage/firstaid/regular{empty = 1; name = "First-Aid (empty)"},/obj/item/weapon/storage/firstaid/regular{empty = 1; name = "First-Aid (empty)"},/obj/item/weapon/storage/firstaid/regular{empty = 1; name = "First-Aid (empty)"},/obj/item/device/healthanalyzer,/obj/item/device/healthanalyzer,/obj/item/device/healthanalyzer,/obj/item/device/flash/synthetic,/obj/item/device/flash/synthetic,/obj/item/device/flash/synthetic,/obj/item/device/flash/synthetic,/obj/item/device/flash/synthetic,/obj/item/device/flash/synthetic,/obj/item/stack/cable_coil,/obj/item/stack/cable_coil,/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/clothing/glasses/omnihud/rnd,/obj/item/weapon/storage/toolbox/electrical{pixel_x = 1; pixel_y = 6},/obj/item/weapon/storage/belt/utility,/obj/item/device/multitool{pixel_x = 3},/obj/item/weapon/storage/toolbox/mechanical,/obj/item/weapon/tool/crowbar,/obj/item/weapon/storage/toolbox/mechanical,/obj/item/clothing/glasses/welding,/obj/item/clothing/glasses/welding,/obj/item/clothing/head/welding{pixel_x = -3; pixel_y = 5},/obj/item/clothing/head/welding{pixel_x = -3; pixel_y = 5},/turf/simulated/floor/tiled/steel_grid,/area/assembly/robotics) +"Ii" = (/obj/structure/cable/pink{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/purple,/obj/effect/floor_decal/milspec/color/black,/turf/simulated/floor/tiled/dark,/area/security/armoury) +"Ik" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor,/area/maintenance/stellardelight/deck1/starboardcent) +"Il" = (/obj/structure/table/steel_reinforced,/obj/machinery/alarm/angled{dir = 8},/obj/structure/cable/pink{icon_state = "4-8"},/obj/item/device/radio{pixel_x = -4; pixel_y = -4},/obj/item/device/radio{pixel_x = 4; pixel_y = -4},/obj/item/device/radio{pixel_x = -4; pixel_y = 5},/obj/item/device/radio{pixel_x = 4; pixel_y = 5},/turf/simulated/floor/tiled/dark,/area/security/tactical) +"Im" = (/obj/structure/cable/green{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/starboard) +"In" = (/obj/structure/cable/green{color = "#42038a"; icon_state = "2-4"},/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/structure/cable/green{color = "#42038a"; icon_state = "2-8"},/turf/simulated/floor,/area/maintenance/stellardelight/deck1/exploration) +"Io" = (/obj/machinery/light{dir = 4},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/obj/machinery/suit_cycler/security,/obj/effect/floor_decal/milspec/color/red,/turf/simulated/floor/tiled/dark,/area/security/tactical) +"Ip" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/turf/simulated/floor,/area/maintenance/stellardelight/deck1/starboardcent) +"Iq" = (/obj/effect/floor_decal/milspec/color/red,/obj/structure/disposalpipe/trunk,/obj/machinery/disposal/wall{dir = 8},/turf/simulated/floor/tiled/dark,/area/security/lobby) +"Ir" = (/obj/structure/cable/green{icon_state = "2-8"},/obj/structure/cable/green{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/effect/floor_decal/steeldecal/steel_decals3{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals3{dir = 9},/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/starboard) +"Is" = (/obj/structure/closet/secure_closet/security,/obj/item/device/holowarrant,/obj/item/clothing/accessory/badge/holo/cord,/obj/item/clothing/accessory/badge/holo/cord,/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/obj/effect/floor_decal/milspec/color/red,/obj/item/device/ticket_printer,/turf/simulated/floor/tiled/dark,/area/security/security_lockerroom) +"Iu" = (/obj/machinery/door/airlock/angled_bay/external/glass{dir = 4; door_color = "#525252"; name = "EVA Shuttle"; req_one_access = list(18,19,43); stripe_color = "#408f3b"},/obj/structure/cable/green{color = "#42038a"; icon_state = "4-8"},/obj/machinery/atmospheric_field_generator/perma/underdoors,/obj/machinery/door/firedoor/glass/talon,/turf/simulated/floor/tiled/steel_ridged,/area/stellardelight/deck1/exploshuttle) +"Iw" = (/obj/random/vendorfood,/obj/machinery/status_display{pixel_y = 32},/turf/simulated/floor/tiled/steel_ridged,/area/stellardelight/deck1/starboard) +"Ix" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/turf/simulated/floor,/area/maintenance/stellardelight/deck1/portcent) +"Iy" = (/obj/structure/cable/pink{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/cyan,/obj/effect/floor_decal/milspec/color/black,/turf/simulated/floor/tiled/dark,/area/security/armoury) +"Iz" = (/obj/structure/closet/secure_closet/personal,/obj/machinery/firealarm/angled{dir = 4},/turf/simulated/floor/carpet/purcarpet,/area/stellardelight/deck1/dorms/dorm3) +"IA" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/obj/item/device/radio/intercom{dir = 8; pixel_x = -24},/turf/simulated/floor/tiled/techfloor,/area/stellardelight/deck1/port) +"IB" = (/obj/effect/floor_decal/industrial/warning{dir = 4},/obj/structure/cable/green{color = "#42038a"; icon_state = "1-2"},/turf/simulated/floor/reinforced,/area/stellardelight/deck1/shuttlebay) +"IC" = (/turf/simulated/wall/bay/r_wall/brown,/area/stellardelight/deck1/dorms/dorm4) +"ID" = (/obj/structure/cable/pink{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/cyan{dir = 1},/obj/effect/floor_decal/borderfloorblack/full,/turf/simulated/floor/tiled/dark,/area/security/armoury) +"IE" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/turf/simulated/floor/tiled/eris,/area/rnd/storage) +"IF" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/fore) +"IG" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/mouse_hole_spawner{dir = 1},/turf/simulated/floor,/area/maintenance/stellardelight/deck1/starboardcent) +"IH" = (/obj/structure/cable/pink{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/turf/simulated/floor/tiled/dark,/area/security/lobby) +"IJ" = (/obj/structure/cable/pink{icon_state = "1-2"},/obj/machinery/atmospherics/valve/digital{dir = 4; name = "scrubber isolation valve"},/obj/effect/catwalk_plated/dark,/turf/simulated/floor,/area/security/armoury) +"IK" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/effect/floor_decal/milspec/color/red/half{dir = 4},/obj/effect/landmark/start/security,/turf/simulated/floor/tiled/dark,/area/security/security_lockerroom) +"IL" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor,/area/maintenance/stellardelight/deck1/exploration) +"IM" = (/obj/structure/table/reinforced,/obj/effect/floor_decal/milspec/color/orange/half{dir = 5},/turf/simulated/floor/tiled/dark,/area/prison/cell_block) +"IN" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/effect/floor_decal/milspec/color/red/half{dir = 8},/obj/effect/landmark/start/security,/turf/simulated/floor/tiled/dark,/area/security/security_lockerroom) +"IO" = (/obj/structure/window/reinforced/full,/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 4},/obj/structure/grille,/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/window/reinforced{dir = 8},/obj/machinery/door/blast/angled/open{dir = 4; id = "xenobiopen6"; name = "Pen 6 Blast Doors"},/turf/simulated/floor/tiled/dark,/area/rnd/xenobiology) +"IP" = (/obj/machinery/r_n_d/protolathe{dir = 1},/obj/item/device/radio/intercom{dir = 4; pixel_x = 24},/turf/simulated/floor/tiled/dark,/area/rnd/research) +"IQ" = (/obj/structure/closet/crate/bin{anchored = 1},/turf/simulated/floor/tiled/steel_grid,/area/assembly/robotics) +"IR" = (/obj/structure/cable/green{color = "#42038a"; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable/green{color = "#42038a"; icon_state = "1-8"},/turf/simulated/floor/tiled/eris,/area/rnd/xenobiology/xenoflora) +"IS" = (/obj/structure/cable{icon_state = "2-4"},/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/turf/simulated/floor,/area/maintenance/stellardelight/deck1/portcent) +"IT" = (/turf/space/internal_edge/bottom,/area/stellardelight/deck1/starboard) +"IU" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/white,/area/crew_quarters/toilet) +"IV" = (/obj/machinery/power/pointdefense{id_tag = "sd_pd"},/obj/effect/floor_decal/industrial/warning/full,/obj/structure/cable/green{color = "#42038a"; icon_state = "0-8"},/turf/simulated/floor/airless,/area/stellardelight/deck1/exterior) +"IW" = (/obj/structure/cable/white{icon_state = "1-2"},/obj/structure/sign/directions/dorms{dir = 1; pixel_x = -32},/obj/structure/sign/directions/security{dir = 1; pixel_x = -32; pixel_y = 6},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/aft) +"IX" = (/obj/structure/cable/pink{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/effect/floor_decal/milspec/color/orange/half,/turf/simulated/floor/tiled/dark,/area/prison/cell_block/B) +"IY" = (/turf/simulated/wall/bay/steel,/area/crew_quarters/toilet) +"IZ" = (/obj/machinery/door/firedoor/glass,/obj/structure/window/bay/reinforced,/obj/structure/curtain/black{anchored = 1},/obj/structure/low_wall/bay/reinforced/steel,/turf/simulated/floor,/area/stellardelight/deck1/dorms/dorm8) +"Jb" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/starboard) +"Jc" = (/obj/structure/table/standard,/obj/item/weapon/stock_parts/scanning_module{pixel_x = 2; pixel_y = 3},/obj/item/weapon/stock_parts/scanning_module,/obj/item/weapon/stock_parts/capacitor,/obj/item/weapon/stock_parts/capacitor,/obj/machinery/light,/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/obj/effect/landmark/vermin,/turf/simulated/floor/tiled/steel_grid,/area/rnd/research) +"Jd" = (/obj/structure/cable{icon_state = "2-4"},/turf/simulated/floor,/area/maintenance/stellardelight/substation/medical) +"Je" = (/obj/structure/cable/green{icon_state = "4-8"},/obj/machinery/light,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/port) +"Jg" = (/obj/structure/cable{icon_state = "2-8"},/turf/simulated/floor,/area/maintenance/stellardelight/substation/exploration) +"Jh" = (/obj/structure/cable/green{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/closet/emergsuit_wall{dir = 8; pixel_x = -27},/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/starboard) +"Jj" = (/obj/machinery/power/breakerbox/activated{RCon_tag = "Medical Substation Bypass"},/turf/simulated/floor,/area/maintenance/stellardelight/substation/medical) +"Jk" = (/obj/structure/sink{dir = 8; pixel_x = -12; pixel_y = 2},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/turf/simulated/floor/tiled/eris/white/cargo,/area/medical/virology) +"Jl" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/light/small{dir = 8},/turf/simulated/floor,/area/maintenance/stellardelight/substation/cargo) +"Jn" = (/obj/structure/cable/green{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/alarm/angled{dir = 4},/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/fore) +"Jo" = (/obj/structure/table/steel,/obj/random/maintenance/research,/obj/random/medical,/turf/simulated/floor,/area/maintenance/stellardelight/deck1/exploration) +"Jp" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/angled_bay/hatch{dir = 4; door_color = "#e6ab22"; name = "Atmospherics Substation"; req_one_access = list(10); stripe_color = "#e6ab22"},/turf/simulated/floor/tiled/steel_ridged,/area/maintenance/stellardelight/substation/atmospherics) +"Jq" = (/obj/structure/table/glass,/obj/machinery/computer/med_data/laptop,/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/obj/machinery/button/remote/airlock{dir = 4; id = "m-ex-room"; name = "Exam Room Lock"; pixel_x = -30; pixel_y = -8; specialfunctions = 4},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/exam_room) +"Js" = (/turf/simulated/floor,/area/stellardelight/deck1/dorms/dorm7) +"Jt" = (/obj/structure/table/woodentable,/obj/machinery/light/small,/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/turf/simulated/floor/carpet/bcarpet,/area/stellardelight/deck1/port) +"Jv" = (/obj/structure/cable/green{icon_state = "1-8"},/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/obj/structure/cable/green{icon_state = "1-2"},/obj/effect/catwalk_plated/dark,/turf/simulated/floor,/area/stellardelight/deck1/port) +"Jw" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/reagent_dispensers/watertank,/turf/simulated/floor/tiled/eris,/area/rnd/xenobiology/xenoflora) +"Jx" = (/obj/structure/cable/white{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/eris/white/bluecorner,/area/stellardelight/deck1/lowermed) +"Jz" = (/obj/machinery/newscaster{pixel_y = 28},/turf/simulated/floor/tiled/milspec,/area/stellardelight/deck1/exploration) +"JA" = (/obj/structure/cable/white{icon_state = "1-2"},/obj/machinery/light{dir = 8},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/port) +"JC" = (/obj/structure/table/rack{dir = 8; layer = 2.9},/obj/structure/window/reinforced{dir = 1},/obj/item/clothing/mask/breath,/obj/item/clothing/mask/breath,/obj/item/clothing/shoes/magboots,/obj/item/clothing/suit/space/void/atmos,/obj/item/clothing/head/helmet/space/void/atmos,/obj/machinery/door/window/brigdoor{req_access = list(11,24)},/obj/machinery/light{dir = 8},/turf/simulated/floor/tiled/eris/white/gray_platform,/area/gateway) +"JD" = (/obj/structure/bed/chair/bay/shuttle{dir = 4},/turf/simulated/floor/tiled/eris/steel/brown_platform,/area/stellardelight/deck1/miningshuttle) +"JE" = (/obj/structure/cable/green{color = "#42038a"; icon_state = "1-2"},/turf/simulated/floor/airless,/area/stellardelight/deck1/exterior) +"JF" = (/turf/simulated/wall/bay/r_wall/steel,/area/stellardelight/deck1/starboard) +"JH" = (/obj/structure/bed/chair/sofa/corp/left,/obj/machinery/atmospherics/unary/vent_scrubber/on,/turf/simulated/floor/carpet/purcarpet,/area/stellardelight/deck1/dorms/dorm3) +"JI" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/turf/simulated/floor/tiled/eris/steel/cargo,/area/stellardelight/deck1/shuttlebay) +"JJ" = (/turf/simulated/wall/bay/r_wall{desc = "It has a purple stripe! A huge chunk of metal used to seperate rooms."; stripe_color = "#5a19a8"},/area/gateway) +"JK" = (/obj/machinery/door/firedoor,/obj/item/weapon/folder/white,/obj/structure/table/reinforced,/obj/machinery/door/window/brigdoor/westright{dir = 4; name = "Research Desk"; req_access = list(7); req_one_access = list(47)},/obj/item/weapon/paper_bin{pixel_x = -1; pixel_y = 4},/obj/item/weapon/pen,/obj/machinery/door/blast/angled_shutter/open{dir = 4; id = "rndshutters"; name = "Privacy Shutters"},/turf/simulated/floor/tiled/monotile,/area/rnd/research) +"JM" = (/obj/structure/cable/pink{icon_state = "4-8"},/obj/effect/floor_decal/steeldecal/steel_decals4,/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 10},/turf/simulated/floor/tiled/white,/area/security/detectives_office) +"JN" = (/obj/structure/cable/pink{icon_state = "4-8"},/obj/structure/cable/pink{icon_state = "1-8"},/obj/machinery/light,/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/turf/simulated/floor/tiled/dark,/area/security/lobby) +"JO" = (/obj/structure/cable/green{color = "#42038a"; icon_state = "0-2"},/obj/structure/cable/green{color = "#42038a"; icon_state = "0-8"},/obj/machinery/power/pointdefense{id_tag = "sd_pd"},/obj/effect/floor_decal/industrial/warning/full,/turf/simulated/floor/airless,/area/stellardelight/deck1/exterior) +"JP" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor,/area/maintenance/stellardelight/deck1/exploration) +"JQ" = (/turf/simulated/wall/bay/r_wall/purple,/area/rnd/xenobiology/xenoflora) +"JR" = (/obj/structure/cable/pink{icon_state = "0-4"},/obj/machinery/power/apc/angled{dir = 8; name = "night shift APC"; nightshift_setting = 2},/obj/effect/floor_decal/milspec/color/black,/turf/simulated/floor/tiled/dark,/area/security/armoury) +"JS" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/bookbinder,/turf/simulated/floor/wood,/area/library) +"JT" = (/obj/structure/cable/green{color = "#42038a"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 10},/obj/effect/floor_decal/steeldecal/steel_decals4,/turf/simulated/floor/tiled/techfloor,/area/rnd/workshop) +"JU" = (/obj/machinery/vending/loadout/uniform,/obj/machinery/atmospherics/unary/vent_pump/on,/turf/simulated/floor/tiled/steel,/area/assembly/robotics) +"JV" = (/obj/item/slime_extract/grey,/turf/simulated/floor/reinforced,/area/rnd/xenobiology) +"JW" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/cable{icon_state = "1-8"},/turf/simulated/floor,/area/maintenance/stellardelight/substation/cargo) +"JX" = (/obj/structure/cable/pink{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/effect/floor_decal/milspec/color/orange/half,/turf/simulated/floor/tiled/dark,/area/prison/cell_block/C) +"JY" = (/obj/effect/floor_decal/borderfloorblack/full,/obj/effect/floor_decal/industrial/hatch/yellow,/obj/machinery/flasher/portable,/turf/simulated/floor/tiled/dark,/area/security/armoury) +"Ka" = (/obj/structure/cable/green{color = "#42038a"; icon_state = "2-4"},/turf/simulated/wall/bay/r_wall/steel,/area/maintenance/stellardelight/deck1/starboardcent) +"Kb" = (/obj/machinery/conveyor{id = "miningops"},/turf/simulated/floor/tiled/eris/steel/cargo,/area/stellardelight/deck1/oreprocessing) +"Kc" = (/obj/item/device/radio/intercom{dir = 1; pixel_y = 24},/obj/machinery/transhuman/autoresleever,/obj/machinery/atmospherics/unary/vent_pump/siphon/on/atmos{external_pressure_bound = 101.3; external_pressure_bound_default = 101.3; pressure_checks = 1; pressure_checks_default = 1},/turf/simulated/floor/tiled/dark,/area/stellardelight/deck1/resleeving) +"Kd" = (/obj/structure/cable/white{icon_state = "1-2"},/obj/machinery/status_display{pixel_x = -32},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/port) +"Ke" = (/obj/structure/table/rack/shelf,/obj/item/weapon/tank/oxygen,/obj/item/device/suit_cooling_unit,/obj/item/clothing/shoes/magboots,/obj/item/clothing/mask/breath,/obj/item/clothing/suit/space/void/exploration,/obj/item/clothing/head/helmet/space/void/exploration,/obj/machinery/door/window/brigdoor/eastleft{req_access = list(43)},/obj/item/device/mapping_unit,/obj/item/device/cataloguer,/obj/item/device/cataloguer,/turf/simulated/floor/tiled/milspec,/area/stellardelight/deck1/exploequipment) +"Kf" = (/obj/machinery/atmospherics/unary/vent_pump/on,/obj/machinery/alarm/angled,/turf/simulated/floor/tiled/dark,/area/chapel/main) +"Kg" = (/obj/machinery/door/firedoor/glass,/obj/structure/cable/green{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/door/airlock/angled_bay/standard/color{door_color = "#9c9c9c"; fill_color = "#5c5c5c"; id_tag = "dorm6"; name = "Room 6"; stripe_color = "#89bd66"},/turf/simulated/floor/tiled/steel_ridged,/area/stellardelight/deck1/dorms/dorm6) +"Ki" = (/obj/structure/toilet{dir = 4},/obj/machinery/alarm/angled{dir = 4},/obj/structure/cable/green{icon_state = "4-8"},/obj/effect/landmark/start/visitor,/turf/simulated/floor/tiled/white,/area/crew_quarters/toilet) +"Kj" = (/obj/machinery/portable_atmospherics/canister/oxygen,/turf/simulated/floor/tiled/eris/white/gray_platform,/area/gateway) +"Kk" = (/obj/machinery/door/airlock/angled_bay/external/glass{dir = 4; frequency = 1379; id_tag = "ex_exterior"; locked = 1; name = "Exterior Airlock"},/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled/steel_ridged,/area/maintenance/stellardelight/deck1/exploration) +"Kl" = (/obj/machinery/door/firedoor/glass,/obj/structure/cable/green{icon_state = "1-2"},/obj/machinery/door/airlock/angled_bay/hatch{name = "maintenance access"; stripe_color = "#454545"},/turf/simulated/floor/tiled/steel_ridged,/area/maintenance/stellardelight/deck1/starboardaft) +"Km" = (/obj/structure/cable/orange{icon_state = "4-8"},/obj/machinery/atmospherics/portables_connector,/obj/machinery/portable_atmospherics/canister/air/airlock,/turf/simulated/floor,/area/maintenance/stellardelight/deck1/exploration) +"Ko" = (/obj/structure/cable/green{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/turf/simulated/floor/tiled/white,/area/crew_quarters/toilet) +"Kp" = (/obj/structure/bed/chair/comfy/brown{dir = 8},/obj/effect/landmark/start/librarian,/turf/simulated/floor/wood,/area/library) +"Kq" = (/obj/machinery/atmospherics/unary/vent_pump/on,/obj/structure/table/woodentable,/obj/item/device/taperecorder,/obj/item/device/tape/random,/obj/item/device/camera,/obj/item/device/retail_scanner/civilian,/obj/structure/sign/painting/library_private{pixel_y = 32},/obj/machinery/newscaster{pixel_x = 29},/turf/simulated/floor/wood,/area/library) +"Kr" = (/obj/effect/floor_decal/industrial/warning{dir = 8},/obj/structure/cable/yellow{icon_state = "1-2"},/turf/simulated/floor/reinforced,/area/stellardelight/deck1/shuttlebay) +"Ks" = (/obj/structure/cable/orange{icon_state = "1-2"},/obj/structure/cable/orange{icon_state = "2-8"},/turf/simulated/floor/airless,/area/stellardelight/deck1/exterior) +"Kt" = (/obj/structure/table/reinforced,/obj/item/device/suit_cooling_unit,/obj/item/device/suit_cooling_unit,/obj/item/device/suit_cooling_unit,/obj/item/device/suit_cooling_unit,/turf/simulated/floor/tiled/eris/white/gray_platform,/area/gateway) +"Ku" = (/turf/simulated/wall/bay{desc = "It has a purple stripe! A huge chunk of metal used to seperate rooms."; stripe_color = "#5a19a8"},/area/gateway) +"Kv" = (/obj/effect/floor_decal/chapel,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/dark,/area/chapel/main) +"Kw" = (/obj/machinery/embedded_controller/radio/simple_docking_controller{dir = 8; frequency = 1380; id_tag = "explodocker"; pixel_x = 24},/turf/simulated/floor/tiled/eris/steel/gray_platform,/area/stellardelight/deck1/exploshuttle) +"Ky" = (/obj/machinery/door/firedoor/glass/hidden/steel,/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/fore) +"Kz" = (/obj/machinery/button/remote/airlock{id = "bathroomstall2"; name = "Toilet 2 Lock"; pixel_x = -10; pixel_y = 22; specialfunctions = 4},/obj/machinery/light/small,/obj/structure/cable/green{icon_state = "4-8"},/turf/simulated/floor/tiled/white,/area/crew_quarters/toilet) +"KA" = (/obj/machinery/vending/wardrobe/janidrobe,/obj/machinery/atmospherics/unary/vent_pump/on,/turf/simulated/floor/tiled/monotile,/area/janitor) +"KB" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/turf/simulated/floor/tiled/dark,/area/rnd/xenobiology) +"KC" = (/obj/structure/cable/yellow{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/alarm/angled{dir = 4},/turf/simulated/floor/tiled/eris/steel/cargo,/area/stellardelight/deck1/mining) +"KD" = (/obj/machinery/power/breakerbox/activated{RCon_tag = "Atmospherics Substation Bypass"},/turf/simulated/floor,/area/maintenance/stellardelight/substation/atmospherics) +"KE" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/camera/network/halls,/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/fore) +"KF" = (/turf/simulated/wall/bay/r_wall/brown,/area/stellardelight/deck1/dorms/dorm6) +"KG" = (/obj/structure/cable/green{icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/light_switch{pixel_x = 25; pixel_y = 25},/turf/simulated/floor/carpet,/area/stellardelight/deck1/dorms/dorm1) +"KH" = (/obj/structure/cable/green{icon_state = "1-2"},/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/obj/machinery/light{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals6{dir = 9},/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/aft) +"KI" = (/obj/machinery/button/remote/driver{id = "torpedolauncher"; pixel_y = 27},/obj/machinery/hologram/holopad,/turf/simulated/floor/tiled/dark,/area/chapel/chapel_morgue) +"KJ" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/turf/simulated/floor/carpet/purcarpet,/area/stellardelight/deck1/dorms/dorm2) +"KK" = (/obj/machinery/disposal/wall{dir = 4; pixel_x = -24; plane = -34},/obj/structure/disposalpipe/trunk{dir = 8},/obj/structure/sink/kitchen{pixel_y = 22},/turf/simulated/floor/tiled/dark,/area/rnd/xenobiology) +"KL" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/port) +"KM" = (/obj/structure/cable/green{icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/machinery/light_switch{dir = 1; pixel_x = -24; pixel_y = -24},/turf/simulated/floor/carpet/purcarpet,/area/stellardelight/deck1/dorms/dorm6) +"KN" = (/obj/structure/cable/green{color = "#42038a"; icon_state = "1-2"},/turf/simulated/floor/tiled/eris,/area/rnd/xenobiology/xenoflora) +"KO" = (/turf/simulated/floor/carpet/purcarpet,/area/stellardelight/deck1/dorms/dorm7) +"KP" = (/obj/structure/cable{icon_state = "1-4"},/turf/simulated/floor,/area/maintenance/stellardelight/substation/atmospherics) +"KQ" = (/obj/structure/bed/chair/bay/shuttle{dir = 8},/turf/simulated/floor/tiled/eris/steel/gray_platform,/area/stellardelight/deck1/exploshuttle) +"KR" = (/obj/structure/cable/white{icon_state = "4-8"},/obj/structure/cable/white{icon_state = "1-4"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/turf/simulated/floor/tiled/white,/area/medical/patient_wing) +"KS" = (/obj/machinery/light,/turf/simulated/floor/reinforced,/area/rnd/xenobiology) +"KT" = (/obj/effect/floor_decal/industrial/warning{dir = 4},/obj/machinery/light{dir = 4},/turf/simulated/floor/reinforced,/area/stellardelight/deck1/shuttlebay) +"KU" = (/obj/machinery/camera/network/command{dir = 9},/turf/simulated/floor/tiled/milspec,/area/stellardelight/deck1/exploration) +"KV" = (/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/fore) +"KW" = (/obj/structure/bed/chair,/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/exam_room) +"KX" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/aft) +"KY" = (/obj/machinery/power/apc/angled{dir = 4; name = "night shift APC"; nightshift_setting = 2},/obj/structure/cable/green{color = "#42038a"; icon_state = "0-8"},/turf/simulated/floor,/area/maintenance/stellardelight/deck1/starboardaft) +"KZ" = (/obj/structure/cable/green{color = "#42038a"; icon_state = "1-4"},/turf/simulated/floor,/area/maintenance/stellardelight/deck1/exploration) +"La" = (/obj/structure/cable/pink{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/effect/floor_decal/milspec/color/black,/turf/simulated/floor/tiled/dark,/area/security/security_cell_hallway) +"Lc" = (/obj/machinery/door_timer/cell_3{id = "Cell B"; name = "Cell B"; pixel_x = 32; pixel_y = 32},/turf/simulated/floor/tiled/dark,/area/security/security_cell_hallway) +"Le" = (/obj/machinery/door/firedoor/glass,/obj/structure/cable/pink{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/door/airlock/angled_bay/standard/glass{door_color = "#8c1d11"; name = "Brig"; req_access = null; req_one_access = list(38,63); stripe_color = "#d27428"},/turf/simulated/floor/tiled/steel_ridged,/area/security/lobby) +"Lf" = (/obj/structure/cable/green{color = "#42038a"; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/space_heater,/turf/simulated/floor,/area/maintenance/stellardelight/deck1/starboardaft) +"Lg" = (/turf/simulated/wall/bay/r_wall/steel,/area/chapel/chapel_morgue) +"Lh" = (/obj/effect/floor_decal/chapel,/obj/structure/bed/chair/sofa/pew/right{dir = 1},/turf/simulated/floor/tiled/dark,/area/chapel/main) +"Li" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/turf/simulated/floor/carpet/purcarpet,/area/stellardelight/deck1/dorms/dorm6) +"Lj" = (/obj/structure/sink/kitchen{dir = 8; pixel_x = -11},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/machinery/firealarm/angled{dir = 8},/turf/simulated/floor/tiled/monotile,/area/janitor) +"Lk" = (/obj/structure/cable/green{color = "#42038a"; icon_state = "1-8"},/obj/structure/cable/green{color = "#42038a"; icon_state = "1-4"},/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/effect/floor_decal/steeldecal/steel_decals4,/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 10},/turf/simulated/floor/tiled/eris,/area/stellardelight/deck1/researchhall) +"Ll" = (/obj/structure/bed/chair/bay/shuttle{dir = 1},/turf/simulated/floor/tiled/eris/steel/gray_platform,/area/stellardelight/deck1/exploshuttle) +"Lm" = (/obj/structure/cable/green{color = "#42038a"; icon_state = "1-2"},/obj/structure/cable/green{color = "#42038a"; icon_state = "1-4"},/turf/simulated/floor,/area/maintenance/stellardelight/deck1/starboardcent) +"Ln" = (/obj/structure/cable/orange{icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/turf/simulated/floor,/area/maintenance/stellardelight/deck1/exploration) +"Lo" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/alarm/angled,/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/starboard) +"Lp" = (/obj/machinery/power/apc/angled{dir = 8},/obj/structure/cable/green{color = "#42038a"; icon_state = "0-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/milspec,/area/stellardelight/deck1/explobriefing) +"Lq" = (/obj/structure/cable/green{color = "#42038a"; icon_state = "1-2"},/obj/structure/cable/green{color = "#42038a"},/obj/machinery/power/sensor{name = "Powernet Sensor - Research Subgrid"; name_tag = "Research Subgrid"},/obj/machinery/power/apc/angled{dir = 8; name = "night shift APC"; nightshift_setting = 2},/turf/simulated/floor,/area/maintenance/stellardelight/substation/research) +"Lr" = (/obj/structure/bed/chair/wheelchair{dir = 8},/obj/machinery/firealarm/angled{dir = 8},/obj/machinery/light{dir = 1},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/exam_room) +"Ls" = (/obj/machinery/power/apc/angled{dir = 1},/obj/structure/cable/green{icon_state = "0-2"},/obj/structure/closet/crate/bin{anchored = 1},/turf/simulated/floor/tiled/white,/area/crew_quarters/toilet) +"Lt" = (/obj/structure/window/reinforced/full,/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 4},/obj/structure/grille,/obj/structure/window/reinforced{dir = 8},/obj/machinery/door/blast/angled/open{dir = 4; id = "xenobiopen4"; name = "Pen 4 Blast Doors"},/turf/simulated/floor/tiled/dark,/area/rnd/xenobiology) +"Lu" = (/obj/structure/cable/green{color = "#42038a"; icon_state = "4-8"},/turf/simulated/floor,/area/maintenance/stellardelight/deck1/starboardaft) +"Lv" = (/obj/machinery/conveyor{id = "miningops"},/obj/machinery/mineral/output,/turf/simulated/floor/tiled/eris/steel/cargo,/area/stellardelight/deck1/oreprocessing) +"Lw" = (/obj/structure/table/bench/standard,/obj/effect/floor_decal/milspec/color/orange/half{dir = 1},/turf/simulated/floor/tiled/dark,/area/prison/cell_block/C) +"Lx" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/hologram/holopad,/turf/simulated/floor/tiled/eris/steel/cargo,/area/stellardelight/deck1/shuttlebay) +"Ly" = (/obj/structure/cable/green{color = "#42038a"; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/power/apc/angled{dir = 4; name = "night shift APC"; nightshift_setting = 2},/obj/structure/cable/green{color = "#42038a"},/turf/simulated/floor,/area/maintenance/stellardelight/deck1/exploration) +"LA" = (/obj/structure/cable/pink{icon_state = "1-8"},/obj/structure/cable/pink{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/obj/machinery/hologram/holopad,/turf/simulated/floor/tiled/dark,/area/security/security_lockerroom) +"LC" = (/obj/structure/cable/green{icon_state = "4-8"},/obj/structure/cable/white{icon_state = "1-2"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals3{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals3{dir = 4},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/port) +"LD" = (/obj/structure/table/reinforced,/obj/item/clothing/shoes/magboots,/obj/item/clothing/shoes/magboots,/obj/item/clothing/shoes/magboots,/obj/item/clothing/shoes/magboots,/turf/simulated/floor/tiled/eris/white/gray_platform,/area/gateway) +"LE" = (/obj/structure/sign/directions/evac{pixel_x = 32},/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/starboard) +"LF" = (/turf/simulated/wall/bay/purple,/area/maintenance/stellardelight/deck1/starboardaft) +"LG" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/blast/angled/open{dir = 2; id = "researchwindowlockdown"},/obj/structure/window/bay/reinforced,/obj/structure/low_wall/bay/reinforced/steel,/turf/simulated/floor,/area/rnd/xenobiology/xenoflora) +"LH" = (/turf/simulated/floor/tiled/dark,/area/security/security_lockerroom) +"LI" = (/obj/machinery/door/firedoor/glass,/obj/structure/cable/green{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/door/airlock/angled_bay/standard/color{door_color = "#2e2e2e"; fill_color = "#2e2e2e"; name = "Chapel Morgue"; req_access = list(6,27); stripe_color = "#deaf43"},/turf/simulated/floor/tiled/steel_ridged,/area/chapel/chapel_morgue) +"LJ" = (/obj/machinery/button/remote/blast_door{id = "GatewayShutter"; name = "Gateway Shutter"; pixel_y = 24; req_access = list(62)},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/eris/white/gray_platform,/area/gateway) +"LK" = (/obj/structure/reagent_dispensers/fueltank,/turf/simulated/floor/tiled/steel_grid,/area/assembly/robotics) +"LL" = (/obj/structure/cable/pink{icon_state = "4-8"},/obj/effect/floor_decal/milspec/color/red/half{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 6},/turf/simulated/floor/tiled/dark,/area/security/security_lockerroom) +"LM" = (/obj/structure/bed/chair/comfy/brown{dir = 4},/obj/effect/landmark/start/librarian,/turf/simulated/floor/wood,/area/library) +"LN" = (/obj/structure/cable/pink{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/turf/simulated/floor/tiled/dark,/area/security/security_cell_hallway) +"LO" = (/obj/structure/cable/green{color = "#42038a"; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable/green{color = "#42038a"; icon_state = "2-8"},/turf/simulated/floor/tiled/milspec,/area/stellardelight/deck1/exploration) +"LP" = (/obj/structure/table/standard,/obj/machinery/cell_charger,/obj/item/weapon/cell/high{charge = 100; maxcharge = 15000},/obj/item/weapon/cell/high{charge = 100; maxcharge = 15000},/turf/simulated/floor/tiled/steel_grid,/area/rnd/research) +"LQ" = (/obj/machinery/door/blast/angled{id = "xenobiodiv4"; name = "Divider 4 Blast Door"},/turf/simulated/floor/reinforced,/area/rnd/xenobiology) +"LR" = (/obj/machinery/light{dir = 4},/obj/structure/cable/green{icon_state = "1-2"},/turf/simulated/floor/tiled/white,/area/crew_quarters/toilet) +"LT" = (/obj/machinery/door/firedoor/glass,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/door/airlock/angled_bay/hatch{door_color = "#e6ab22"; name = "Research Substation"; req_one_access = list(10); stripe_color = "#e6ab22"},/turf/simulated/floor/tiled/steel_ridged,/area/maintenance/stellardelight/substation/research) +"LU" = (/obj/structure/cable/white{icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/stellardelight/deck1/paramedic) +"LV" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/alarm/angled,/obj/structure/disposalpipe/sortjunction{dir = 4; name = "Resleeving"; sortType = "Resleeving"},/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/port) +"LW" = (/obj/structure/stairs/spawner/north,/obj/structure/window/reinforced{dir = 8},/turf/simulated/floor,/area/stellardelight/deck1/aft) +"LX" = (/obj/structure/bed/chair/comfy/black{dir = 1},/obj/machinery/light/small{dir = 8},/turf/simulated/floor/carpet,/area/stellardelight/deck1/dorms/dorm1) +"LY" = (/turf/simulated/wall/bay/r_wall{desc = "It has a brown stripe! A huge chunk of metal used to seperate rooms."; stripe_color = "#785134"},/area/library) +"LZ" = (/turf/simulated/wall/bay/r_wall/steel,/area/stellardelight/deck1/exploration) +"Ma" = (/obj/machinery/door/airlock/angled_bay/external/glass{dir = 4; door_color = "#a88860"; name = "Mining Shuttle"; req_access = null; req_one_access = list(31,5); stripe_color = "#69461a"},/obj/structure/cable/yellow{icon_state = "4-8"},/obj/machinery/atmospheric_field_generator/perma/underdoors,/obj/machinery/door/firedoor/glass/talon,/turf/simulated/floor/tiled/steel_ridged,/area/stellardelight/deck1/miningshuttle) +"Mb" = (/turf/simulated/floor/tiled/dark,/area/security/warden) +"Mc" = (/turf/simulated/wall/bay/r_wall{desc = "It has a brown stripe! A huge chunk of metal used to seperate rooms."; stripe_color = "#785134"},/area/security/armoury) +"Md" = (/obj/machinery/hologram/holopad,/obj/structure/cable/green{color = "#42038a"; icon_state = "1-8"},/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled/milspec,/area/stellardelight/deck1/exploration) +"Me" = (/obj/machinery/door/firedoor/glass,/obj/structure/cable/pink{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/door/airlock/angled_bay/standard/glass{dir = 4; door_color = "#8c1d11"; name = "Forensics Lab"; req_access = list(4); stripe_color = "#d27428"},/turf/simulated/floor/tiled/steel_ridged,/area/security/detectives_office) +"Mf" = (/obj/structure/bed/padded,/obj/item/weapon/bedsheet/medical,/obj/structure/curtain/open/privacy,/obj/structure/cable/white{icon_state = "0-2"},/obj/machinery/power/apc/angled{dir = 1; name = "night shift APC"; nightshift_setting = 2},/turf/simulated/floor/tiled/white,/area/medical/patient_wing) +"Mg" = (/obj/machinery/door/firedoor/glass,/obj/structure/window/bay/reinforced,/obj/structure/low_wall/bay/reinforced/purple,/turf/simulated/floor,/area/rnd/workshop) +"Mh" = (/turf/space/internal_edge/topleft,/area/stellardelight/deck1/starboard) +"Mi" = (/obj/structure/table/standard,/obj/item/weapon/stock_parts/matter_bin,/obj/item/weapon/stock_parts/matter_bin,/obj/item/weapon/stock_parts/console_screen,/obj/item/weapon/stock_parts/console_screen,/obj/item/weapon/stock_parts/console_screen,/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/turf/simulated/floor/tiled/steel_grid,/area/rnd/research) +"Mj" = (/obj/machinery/door/firedoor/glass,/obj/structure/cable/green{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/door/airlock/angled_bay/standard/color{door_color = "#2e2e2e"; fill_color = "#2e2e2e"; name = "Chapel Morgue"; req_access = null; stripe_color = "#deaf43"},/turf/simulated/floor/tiled/steel_ridged,/area/chapel/main) +"Mk" = (/obj/machinery/light{dir = 8},/obj/machinery/button/remote/blast_door{id = "chapelmassdriver"; name = "Window Lockdown"; pixel_y = 27; req_one_access = list(6,27)},/turf/simulated/floor/tiled/dark,/area/chapel/chapel_morgue) +"Ml" = (/obj/structure/cable/green{icon_state = "4-8"},/obj/structure/cable/green{icon_state = "2-4"},/turf/simulated/floor,/area/maintenance/stellardelight/deck1/portaft) +"Mm" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/obj/machinery/atm{pixel_y = 30},/obj/structure/closet/emergsuit_wall{dir = 8; pixel_x = -27},/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/fore) +"Mn" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/effect/mouse_hole_spawner{dir = 4},/turf/simulated/floor,/area/maintenance/stellardelight/deck1/exploration) +"Mq" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/port) +"Mr" = (/obj/machinery/atmospherics/unary/vent_pump/on,/turf/simulated/floor/bluegrid,/area/assembly/robotics) +"Ms" = (/obj/effect/floor_decal/steeldecal/steel_decals10{dir = 9},/obj/effect/floor_decal/steeldecal/steel_decals10{dir = 10},/obj/structure/curtain/open/privacy{name = "shower curtain"},/turf/simulated/floor/tiled/white,/area/stellardelight/deck1/shower) +"Mt" = (/obj/structure/cable/green{icon_state = "1-2"},/obj/machinery/camera/network/halls{dir = 8},/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/port) +"Mu" = (/obj/structure/bed/chair/sofa/pew/left{dir = 1},/turf/simulated/floor/tiled/dark,/area/chapel/main) +"Mv" = (/obj/structure/cable/green{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/starboard) +"My" = (/obj/structure/table/standard,/obj/item/weapon/stock_parts/micro_laser,/obj/item/weapon/stock_parts/micro_laser,/obj/item/weapon/stock_parts/manipulator,/obj/item/weapon/stock_parts/manipulator,/obj/machinery/camera/network/research{dir = 4},/turf/simulated/floor/tiled/steel_grid,/area/rnd/research) +"MA" = (/turf/simulated/floor/tiled/steel_grid,/area/stellardelight/deck1/fore) +"MB" = (/obj/structure/cable/pink{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/camera/network/security{dir = 4},/turf/simulated/floor/tiled/dark,/area/security/security_cell_hallway) +"MC" = (/obj/effect/mouse_hole_spawner{dir = 4},/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/starboard) +"MD" = (/obj/structure/cable/green{icon_state = "2-4"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/starboard) +"ME" = (/obj/machinery/gateway/centerstation,/turf/simulated/floor/tiled/eris/white/gray_platform,/area/gateway) +"MF" = (/obj/structure/table/rack,/obj/item/clothing/suit/space/void/mining,/obj/item/clothing/mask/breath,/obj/item/clothing/shoes/magboots,/obj/item/clothing/head/helmet/space/void/mining,/obj/item/weapon/mining_scanner,/turf/simulated/floor/tiled/eris/steel/cargo,/area/stellardelight/deck1/miningequipment) +"MG" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/effect/landmark/start/miner,/turf/simulated/floor/tiled/eris/steel/cargo,/area/stellardelight/deck1/miningequipment) +"MH" = (/obj/effect/floor_decal/milspec/color/emerald/half{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals6{dir = 5},/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/starboard) +"MI" = (/obj/structure/cable/white{icon_state = "1-2"},/obj/effect/floor_decal/steeldecal/steel_decals6{dir = 6},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/port) +"MJ" = (/obj/structure/bed/chair/office/dark{dir = 4},/obj/effect/floor_decal/industrial/warning/corner{dir = 4},/obj/effect/landmark/start/roboticist,/turf/simulated/floor/tiled/steel_grid,/area/assembly/robotics) +"MK" = (/obj/structure/cable/white{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 10},/obj/effect/floor_decal/steeldecal/steel_decals4,/turf/simulated/floor/tiled/dark,/area/stellardelight/deck1/resleeving) +"ML" = (/obj/structure/bed/chair/sofa/corp/right{dir = 1},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/turf/simulated/floor/carpet/purcarpet,/area/stellardelight/deck1/dorms/dorm7) +"MM" = (/obj/structure/cable/white{icon_state = "1-4"},/obj/structure/cable/white{icon_state = "1-8"},/obj/structure/cable/white{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers,/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 10},/obj/effect/floor_decal/steeldecal/steel_decals4,/turf/simulated/floor/tiled/eris/white/bluecorner,/area/stellardelight/deck1/lowermed) +"MN" = (/obj/machinery/door/firedoor/glass,/obj/structure/window/bay/reinforced,/obj/structure/curtain/black{anchored = 1},/obj/structure/low_wall/bay/reinforced/steel,/turf/simulated/floor,/area/stellardelight/deck1/dorms/dorm6) +"MO" = (/obj/machinery/door/airlock/angled_bay/standard/color/common{dir = 4; id_tag = "bathroomstall2"; name = "Toilet 2"},/obj/structure/cable/green{icon_state = "4-8"},/turf/simulated/floor/tiled/steel_ridged,/area/crew_quarters/toilet) +"MP" = (/obj/machinery/power/pointdefense{id_tag = "sd_pd"},/obj/effect/floor_decal/industrial/warning/full,/obj/structure/cable/pink{icon_state = "0-4"},/obj/structure/cable/pink{icon_state = "0-2"},/turf/simulated/floor/airless,/area/stellardelight/deck1/exterior) +"MQ" = (/obj/structure/cable/green{icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/light_switch{dir = 1; pixel_x = 25; pixel_y = -24},/turf/simulated/floor/carpet,/area/stellardelight/deck1/dorms/dorm4) +"MR" = (/obj/machinery/door/firedoor/glass,/obj/structure/cable/green{color = "#42038a"; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/door/airlock/angled_bay/standard/glass{dir = 4; door_color = "#ffffff"; name = "Xenoflora Research"; req_access = list(77); stripe_color = "#5a19a8"},/turf/simulated/floor/tiled/steel_ridged,/area/rnd/xenobiology/xenoflora_storage) +"MS" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/angled_bay/hatch{dir = 4; door_color = "#8c1d11"; name = "maintenance access"; req_access = list(4); req_one_access = null; stripe_color = "#8c1d11"},/obj/structure/cable/pink{icon_state = "4-8"},/turf/simulated/floor/tiled/steel_ridged,/area/security/detectives_office) +"MT" = (/obj/machinery/suit_cycler/engineering{req_access = null},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/turf/simulated/floor/tiled/eris/white/gray_platform,/area/gateway) +"MV" = (/obj/structure/cable/green{color = "#42038a"; icon_state = "1-2"},/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/angled_bay/hatch{door_color = "#e6ab22"; name = "Exploration Substation"; req_one_access = list(10); stripe_color = "#e6ab22"},/turf/simulated/floor/tiled/steel_ridged,/area/maintenance/stellardelight/substation/exploration) +"MX" = (/obj/machinery/alarm/angled{dir = 4},/obj/structure/closet/crate/bin{anchored = 1},/obj/machinery/light{dir = 1},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/stellardelight/deck1/resleeving) +"MZ" = (/obj/effect/floor_decal/steeldecal/steel_decals10{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals10{dir = 6},/obj/machinery/light/small{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/turf/simulated/floor/tiled/white,/area/stellardelight/deck1/shower) +"Nb" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/blast/angled{dir = 4; id = "mechbay"; name = "Mech Bay"},/turf/simulated/floor/tiled/steel_ridged,/area/assembly/robotics) +"Nc" = (/turf/simulated/wall/bay/r_wall/red,/area/maintenance/security_port) +"Nd" = (/obj/structure/table/steel_reinforced,/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/obj/machinery/firealarm/angled{dir = 8},/turf/simulated/floor/tiled/eris,/area/stellardelight/deck1/researchequip) +"Ne" = (/obj/machinery/door/firedoor/glass,/obj/structure/window/bay/reinforced,/obj/machinery/door/blast/angled/open{dir = 4; id = "processinglockdown"},/obj/structure/low_wall/bay/reinforced/red,/turf/simulated/floor,/area/security/security_processing) +"Nf" = (/obj/structure/cable/green{icon_state = "2-8"},/obj/structure/cable/green{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/effect/floor_decal/steeldecal/steel_decals3{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals3{dir = 9},/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/port) +"Ng" = (/obj/structure/railing/grey{dir = 8},/turf/simulated/floor,/area/stellardelight/deck1/lowermed) +"Nh" = (/obj/machinery/light/small,/obj/machinery/alarm/angled{dir = 8},/turf/simulated/floor/tiled/dark,/area/chapel/main) +"Ni" = (/obj/structure/table/steel_reinforced,/obj/machinery/photocopier/faxmachine{department = "Warden's Office"},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/turf/simulated/floor/tiled/dark,/area/security/warden) +"Nj" = (/obj/structure/cable/pink{icon_state = "4-8"},/obj/effect/floor_decal/milspec/color/red/corner{dir = 1},/turf/simulated/floor/tiled/dark,/area/security/security_cell_hallway) +"Nk" = (/obj/structure/table/reinforced,/obj/machinery/microscope,/turf/simulated/floor/tiled/white,/area/security/detectives_office) +"Nl" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/aft) +"Nm" = (/obj/structure/cable/yellow{icon_state = "0-2"},/obj/machinery/power/apc/angled{dir = 1; name = "night shift APC"; nightshift_setting = 2},/turf/simulated/floor/tiled/eris/steel/cargo,/area/stellardelight/deck1/mining) +"No" = (/obj/structure/cable/green{icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/light_switch{pixel_x = 25; pixel_y = 25},/turf/simulated/floor/carpet/purcarpet,/area/stellardelight/deck1/dorms/dorm2) +"Np" = (/obj/structure/cable/green{color = "#42038a"; icon_state = "1-4"},/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/turf/simulated/floor,/area/maintenance/stellardelight/deck1/exploration) +"Nq" = (/obj/structure/cable/green{color = "#42038a"; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/obj/structure/cable/green{color = "#42038a"; icon_state = "2-8"},/turf/simulated/floor/tiled/eris,/area/rnd/xenobiology/xenoflora_storage) +"Nr" = (/obj/structure/cable/green{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/machinery/light_switch{dir = 8; pixel_x = 25; pixel_y = 32},/obj/effect/landmark/start/janitor,/turf/simulated/floor/tiled/monotile,/area/janitor) +"Ns" = (/obj/machinery/door/firedoor/glass,/obj/structure/cable/yellow{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/door/airlock/angled_bay/standard/glass{dir = 4; door_color = "#a6753d"; name = "Mining Equipment"; req_access = list(31); stripe_color = "#3b2b1a"},/turf/simulated/floor/tiled/steel_ridged,/area/stellardelight/deck1/miningequipment) +"Nt" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/table/rack,/obj/random/maintenance/security,/obj/random/maintenance/research,/obj/random/contraband,/obj/random/drinkbottle,/turf/simulated/floor,/area/maintenance/stellardelight/deck1/portcent) +"Nu" = (/obj/structure/table/standard,/obj/item/stack/cable_coil,/obj/item/stack/cable_coil{pixel_x = 3; pixel_y = 3},/obj/fiftyspawner/steel,/obj/fiftyspawner/glass,/obj/machinery/atmospherics/unary/vent_scrubber/on,/obj/machinery/camera/network/research,/turf/simulated/floor/tiled/steel_grid,/area/rnd/research) +"Nv" = (/obj/machinery/light{dir = 4},/obj/structure/cable/white{icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/machinery/firealarm/angled,/turf/simulated/floor/tiled/eris/white/bluecorner,/area/stellardelight/deck1/lowermed) +"Nw" = (/obj/structure/closet/walllocker_double/medical/north,/obj/item/weapon/folder/white,/obj/item/device/healthanalyzer,/obj/item/weapon/cane,/obj/item/clothing/accessory/stethoscope,/turf/simulated/floor/tiled/white,/area/medical/patient_wing) +"Nx" = (/obj/structure/table/rack/shelf,/obj/item/weapon/tank/oxygen,/obj/item/device/suit_cooling_unit,/obj/item/clothing/shoes/magboots,/obj/item/clothing/mask/breath,/obj/item/clothing/suit/space/void/expedition_medical,/obj/item/clothing/head/helmet/space/void/expedition_medical,/obj/machinery/door/window/brigdoor/eastleft{req_access = list(5)},/turf/simulated/floor/tiled/milspec,/area/stellardelight/deck1/exploequipment) +"Nz" = (/obj/effect/floor_decal/chapel{dir = 8},/obj/structure/bed/chair/sofa/pew/left{dir = 1},/obj/effect/landmark/start/visitor,/turf/simulated/floor/tiled/dark,/area/chapel/main) +"NA" = (/obj/machinery/hologram/holopad,/turf/simulated/floor/tiled/milspec,/area/stellardelight/deck1/explobriefing) +"NB" = (/obj/structure/closet/coffin,/turf/simulated/floor/tiled/dark,/area/chapel/main) +"NC" = (/obj/item/device/radio/intercom{dir = 8; pixel_x = -24},/turf/simulated/floor/tiled/monotile,/area/janitor) +"ND" = (/obj/machinery/power/pointdefense{id_tag = "sd_pd"},/obj/effect/floor_decal/industrial/warning/full,/obj/structure/cable/pink{icon_state = "0-2"},/obj/structure/cable/pink,/turf/simulated/floor/airless,/area/stellardelight/deck1/exterior) +"NF" = (/obj/structure/table/woodentable,/obj/item/device/flashlight/lamp/green{pixel_x = 1; pixel_y = 5},/turf/simulated/floor/carpet,/area/library) +"NG" = (/obj/machinery/atmospherics/pipe/manifold/hidden/purple,/obj/effect/floor_decal/milspec/color/black,/turf/simulated/floor/tiled/dark,/area/security/armoury) +"NH" = (/turf/simulated/wall/bay/steel,/area/stellardelight/deck1/shower) +"NI" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor,/area/maintenance/stellardelight/deck1/exploration) +"NJ" = (/obj/effect/shuttle_landmark/premade/sd/deck1/fore,/turf/space,/area/space) +"NK" = (/obj/effect/floor_decal/milspec/color/red/half{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 5},/turf/simulated/floor/tiled/dark,/area/security/tactical) +"NL" = (/obj/machinery/power/apc/angled{dir = 8; name = "night shift APC"; nightshift_setting = 2},/obj/structure/cable/green,/turf/simulated/floor,/area/maintenance/stellardelight/deck1/portaft) +"NM" = (/obj/effect/floor_decal/industrial/outline/yellow,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/effect/landmark{name = "lightsout"},/turf/simulated/floor/tiled/dark,/area/assembly/robotics) +"NN" = (/obj/structure/table/steel_reinforced,/obj/machinery/recharger{pixel_y = 5},/turf/simulated/floor/tiled/dark,/area/security/lobby) +"NP" = (/turf/simulated/wall/bay/r_wall/steel,/area/maintenance/stellardelight/deck1/portaft) +"NQ" = (/obj/machinery/light{dir = 8},/obj/structure/flora/pottedplant/minitree,/obj/machinery/alarm/angled,/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/starboard) +"NR" = (/obj/machinery/mech_recharger,/obj/machinery/light,/turf/simulated/floor/bluegrid,/area/gateway) +"NS" = (/obj/structure/stairs/spawner/west,/obj/structure/railing/grey{dir = 1},/obj/structure/cable/yellow{icon_state = "0-2"},/obj/structure/cable/yellow{icon_state = "16-0"},/turf/simulated/floor,/area/stellardelight/deck1/mining) +"NT" = (/turf/space/internal_edge/topright,/area/stellardelight/deck1/starboard) +"NV" = (/obj/structure/cable/green{color = "#42038a"; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/eris,/area/rnd/xenobiology/xenoflora) +"NW" = (/obj/structure/cable/pink{icon_state = "4-8"},/turf/simulated/floor,/area/maintenance/stellardelight/deck1/portfore) +"NX" = (/obj/machinery/button/remote/blast_door{dir = 1; id = "xenobiopen4"; name = "Pen 4 Containment"; pixel_x = 31; pixel_y = 8; req_access = list(55)},/obj/machinery/button/remote/blast_door{id = "xenobiopen6"; name = "Pen 6 Containment"; pixel_x = 30; pixel_y = -8; req_access = list(55)},/obj/machinery/button/remote/blast_door{dir = 4; id = "xenobiodiv4"; name = "Divider 4 Blast Doors"; pixel_x = 39; req_access = list(55)},/obj/machinery/light/floortube{dir = 4; pixel_x = 6},/turf/simulated/floor/tiled/dark,/area/rnd/xenobiology) +"NY" = (/obj/structure/cable/green{color = "#42038a"; icon_state = "1-2"},/turf/simulated/wall/bay/r_wall/steel,/area/stellardelight/deck1/exploration) +"NZ" = (/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 5},/turf/simulated/floor/tiled/eris/steel/cargo,/area/stellardelight/deck1/mining) +"Oa" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/effect/floor_decal/milspec/color/emerald/half,/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/aft) +"Ob" = (/obj/machinery/portable_atmospherics/canister/nitrogen,/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/turf/simulated/floor/tiled/eris,/area/rnd/xenobiology/xenoflora_storage) +"Oc" = (/obj/structure/cable/white{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/status_display{pixel_x = 32},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/stellardelight/deck1/lowermed) +"Od" = (/obj/machinery/light,/obj/structure/sign/department/medbay{name = "RESLEEVING"; pixel_x = -32},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/stellardelight/deck1/lowermed) +"Oe" = (/obj/structure/table/woodentable,/obj/machinery/alarm/angled,/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/turf/simulated/floor/carpet/purcarpet,/area/stellardelight/deck1/dorms/dorm2) +"Og" = (/obj/machinery/optable,/obj/machinery/light/small{dir = 4},/turf/simulated/floor/tiled/techfloor,/area/medical/morgue) +"Oh" = (/obj/structure/cable/green{color = "#42038a"; icon_state = "1-2"},/obj/machinery/door/firedoor/glass,/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/door/airlock/angled_bay/double{name = "maintenance access"; stripe_color = "#454545"},/turf/simulated/floor,/area/maintenance/stellardelight/deck1/starboardaft) +"Oj" = (/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/virology) +"Ok" = (/obj/machinery/light,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/aft) +"Ol" = (/obj/structure/table/rack,/obj/item/weapon/storage/toolbox/mechanical,/obj/item/device/multitool,/obj/item/device/gps/medical{pixel_y = 3},/obj/item/device/gps/medical{pixel_x = -3},/obj/item/device/radio{pixel_x = 2},/obj/item/device/radio{pixel_x = -1; pixel_y = -3},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/stellardelight/deck1/paramedic) +"Om" = (/obj/structure/cable/yellow,/obj/structure/cable/yellow{icon_state = "0-2"},/obj/machinery/power/smes/buildable{RCon_tag = "Substation - Cargo"; output_attempt = 0},/turf/simulated/floor,/area/maintenance/stellardelight/substation/cargo) +"On" = (/obj/structure/cable/pink{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/effect/floor_decal/milspec/color/red/half,/turf/simulated/floor/tiled/dark,/area/security/security_cell_hallway) +"Oo" = (/obj/machinery/botany/extractor,/turf/simulated/floor/tiled/eris,/area/rnd/xenobiology/xenoflora) +"Op" = (/obj/item/clothing/mask/breath,/obj/item/clothing/mask/breath,/obj/item/clothing/shoes/magboots,/obj/item/clothing/shoes/magboots,/obj/item/clothing/suit/space/void/medical,/obj/item/clothing/suit/space/void/medical,/obj/item/clothing/head/helmet/space/void/medical,/obj/item/clothing/head/helmet/space/void/medical,/obj/machinery/door/window/brigdoor/westleft{dir = 2; req_access = list(5)},/obj/structure/table/rack{dir = 8; layer = 2.9},/obj/structure/window/reinforced{dir = 4},/turf/simulated/floor/tiled/eris/white/gray_platform,/area/gateway) +"Oq" = (/obj/machinery/door/blast/angled{id = "xenobiodiv1"; name = "Divider 1 Blast Door"},/turf/simulated/floor/reinforced,/area/rnd/xenobiology) +"Or" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/item/device/radio/intercom{dir = 4; pixel_x = 24},/turf/simulated/floor/tiled/dark,/area/chapel/chapel_morgue) +"Ot" = (/obj/structure/cable/green{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/obj/effect/catwalk_plated/dark,/obj/structure/disposalpipe/junction,/turf/simulated/floor,/area/stellardelight/deck1/starboard) +"Ou" = (/obj/structure/cable/green{icon_state = "1-2"},/obj/machinery/light/small{dir = 8},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/port) +"Ov" = (/obj/structure/cable/green{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/port) +"Ow" = (/obj/machinery/gateway{dir = 6},/obj/machinery/light{dir = 4},/turf/simulated/floor/tiled/eris/white/gray_platform,/area/gateway) +"Ox" = (/obj/structure/closet,/turf/simulated/floor,/area/maintenance/stellardelight/deck1/portfore) +"Oy" = (/obj/structure/morgue/crematorium{dir = 2; id = "crematorium"},/turf/simulated/floor/tiled/dark,/area/chapel/chapel_morgue) +"Oz" = (/obj/random/trash_pile,/turf/simulated/floor,/area/maintenance/stellardelight/deck1/exploration) +"OA" = (/turf/simulated/floor,/area/stellardelight/deck1/dorms/dorm2) +"OB" = (/obj/structure/bed/chair/office/dark{dir = 1},/obj/structure/cable/green{color = "#42038a"; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/milspec,/area/stellardelight/deck1/explobriefing) +"OC" = (/obj/effect/floor_decal/chapel{dir = 4},/obj/structure/cable/green{icon_state = "1-4"},/obj/structure/cable/green{icon_state = "4-8"},/obj/structure/disposalpipe/sortjunction/flipped{dir = 4; name = "Bar"; sortType = "Bar"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/turf/simulated/floor/tiled/dark,/area/chapel/main) +"OD" = (/obj/structure/closet/emergsuit_wall{dir = 8; pixel_x = -27},/turf/simulated/floor/tiled/dark,/area/security/lobby) +"OE" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/turf/simulated/floor/tiled/white,/area/security/detectives_office) +"OF" = (/turf/simulated/floor/tiled/eris/steel/panels,/area/stellardelight/deck1/pilot) +"OG" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/obj/structure/cable/pink{icon_state = "4-8"},/turf/simulated/floor/tiled/dark,/area/chapel/main) +"OH" = (/obj/machinery/light{dir = 8},/turf/simulated/floor/tiled/steel_grid,/area/stellardelight/deck1/aft) +"OI" = (/obj/machinery/door/firedoor/glass,/obj/structure/cable/green{color = "#42038a"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/door/airlock/angled_bay/standard/color{door_color = "#ffffff"; fill_color = "#ead9ff"; name = "Equipment Room"; req_access = list(7); stripe_color = "#5a19a8"},/turf/simulated/floor/tiled/steel_ridged,/area/stellardelight/deck1/researchequip) +"OJ" = (/obj/structure/cable/pink{icon_state = "1-8"},/obj/effect/floor_decal/milspec/color/black,/turf/simulated/floor/tiled/dark,/area/security/armoury) +"OL" = (/obj/machinery/alarm/angled{dir = 4},/turf/simulated/floor/tiled/eris/steel/gray_platform,/area/stellardelight/deck1/exploshuttle) +"OM" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/turf/simulated/floor/tiled/steel_ridged,/area/stellardelight/deck1/shower) +"ON" = (/obj/structure/cable/green{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/sign/directions/evac{pixel_x = -32},/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/starboard) +"OO" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/starboard) +"OQ" = (/turf/simulated/wall/bay/brown,/area/security/detectives_office) +"OR" = (/obj/structure/cable/green{color = "#42038a"; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/green{color = "#42038a"; icon_state = "1-4"},/obj/structure/closet/crate,/obj/random/maintenance/security,/obj/random/maintenance/clean,/obj/random/maintenance/clean,/obj/random/maintenance/engineering,/obj/random/maintenance,/obj/random/maintenance,/obj/random/snack,/obj/random/mre,/turf/simulated/floor,/area/maintenance/stellardelight/deck1/starboardaft) +"OT" = (/turf/simulated/wall/rshull,/area/stellardelight/deck1/exploshuttle) +"OU" = (/obj/structure/dispenser{phorontanks = 0},/obj/machinery/atmospherics/unary/vent_pump/on,/obj/item/device/radio/intercom{dir = 4; pixel_x = 24},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/stellardelight/deck1/paramedic) +"OV" = (/obj/machinery/computer/rdservercontrol{dir = 4},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/turf/simulated/floor/tiled/techfloor,/area/stellardelight/deck1/researchserver) +"OX" = (/obj/machinery/light{dir = 8},/turf/simulated/floor/tiled/steel_grid,/area/rnd/research) +"OY" = (/obj/structure/window/reinforced/full,/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 4},/obj/structure/grille,/obj/structure/window/reinforced{dir = 8},/obj/machinery/door/blast/angled/open{dir = 4; id = "xenobiopen1"; name = "Pen 1 Blast Doors"},/turf/simulated/floor/tiled/dark,/area/rnd/xenobiology) +"OZ" = (/obj/structure/cable/yellow{icon_state = "4-8"},/turf/simulated/floor/tiled/milspec,/area/stellardelight/deck1/aft) +"Pa" = (/obj/machinery/atmospherics/portables_connector{dir = 1},/obj/machinery/portable_atmospherics/canister/air/airlock,/obj/machinery/camera/network/security{dir = 1},/turf/simulated/floor/tiled/dark,/area/security/tactical) +"Pb" = (/obj/machinery/door/firedoor/glass,/obj/structure/window/bay/reinforced,/obj/structure/low_wall/bay/reinforced/black,/turf/simulated/floor,/area/chapel/main) +"Pd" = (/obj/machinery/light/small{dir = 1},/obj/random/trash_pile,/turf/simulated/floor,/area/maintenance/stellardelight/deck1/exploration) +"Pg" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/item/device/radio/intercom{pixel_y = -24},/turf/simulated/floor/lino,/area/chapel/office) +"Ph" = (/obj/structure/cable/pink{icon_state = "1-4"},/obj/structure/cable/pink{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/effect/floor_decal/milspec/color/black,/turf/simulated/floor/tiled/dark,/area/security/security_cell_hallway) +"Pj" = (/obj/machinery/door_timer/cell_3{id = "Cell A"; name = "Cell A"; pixel_x = 32; pixel_y = 32},/obj/effect/floor_decal/milspec/color/black,/turf/simulated/floor/tiled/dark,/area/security/security_cell_hallway) +"Pk" = (/obj/machinery/light{dir = 8},/obj/random/slimecore,/turf/simulated/floor/reinforced,/area/rnd/xenobiology) +"Pl" = (/obj/structure/bed/chair/office/dark{dir = 8},/obj/effect/landmark/start/scientist,/turf/simulated/floor/tiled/techfloor,/area/rnd/workshop) +"Pm" = (/obj/effect/floor_decal/chapel,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/turf/simulated/floor/tiled/dark,/area/chapel/main) +"Pn" = (/obj/machinery/mineral/output,/obj/machinery/conveyor{dir = 8; id = "miningops"},/turf/simulated/floor/tiled/eris/steel/cargo,/area/stellardelight/deck1/oreprocessing) +"Po" = (/obj/structure/cable/pink{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/light_switch{dir = 4; pixel_x = -25; pixel_y = 32},/turf/simulated/floor/tiled/dark,/area/security/tactical) +"Pp" = (/obj/structure/cable/white{icon_state = "2-8"},/obj/structure/cable/white{icon_state = "1-2"},/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/obj/machinery/camera/network/medbay{dir = 8},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/stellardelight/deck1/lowermed) +"Pr" = (/obj/structure/cable/green{color = "#42038a"; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/milspec,/area/stellardelight/deck1/exploration) +"Ps" = (/obj/machinery/door/firedoor/glass,/obj/structure/window/bay/reinforced,/obj/structure/low_wall/bay/reinforced/brown,/turf/simulated/floor,/area/stellardelight/deck1/oreprocessing) +"Pt" = (/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/port) +"Pu" = (/turf/simulated/floor,/area/maintenance/stellardelight/substation/exploration) +"Pv" = (/obj/machinery/atmospherics/pipe/simple/hidden/cyan,/obj/effect/floor_decal/milspec/color/black,/turf/simulated/floor/tiled/dark,/area/security/armoury) +"Pw" = (/obj/structure/cable/green{color = "#42038a"; icon_state = "0-8"},/obj/machinery/power/apc/angled{dir = 4; name = "night shift APC"; nightshift_setting = 2},/turf/simulated/floor/tiled/milspec,/area/stellardelight/deck1/exploration) +"Py" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/structure/cable/pink{icon_state = "4-8"},/turf/simulated/floor/tiled/white,/area/security/detectives_office) +"Pz" = (/obj/structure/table/bench/marble,/obj/effect/landmark/start/paramedic,/turf/simulated/floor/tiled/eris/white/bluecorner,/area/stellardelight/deck1/paramedic) +"PA" = (/obj/machinery/door/firedoor/glass,/obj/structure/window/bay/reinforced,/obj/structure/curtain/black{anchored = 1},/obj/structure/low_wall/bay/reinforced/steel,/turf/simulated/floor,/area/stellardelight/deck1/dorms/dorm4) +"PB" = (/obj/machinery/chem_master,/turf/simulated/floor/tiled/eris,/area/rnd/xenobiology/xenoflora) +"PC" = (/obj/structure/bed/chair/backed_red{dir = 8},/turf/simulated/floor/tiled/milspec,/area/stellardelight/deck1/exploration) +"PE" = (/obj/machinery/alarm/angled,/turf/simulated/floor/tiled/milspec,/area/stellardelight/deck1/exploration) +"PF" = (/obj/structure/cable/green{icon_state = "4-8"},/obj/random/soap,/obj/random/soap,/obj/item/weapon/towel/random,/obj/item/weapon/towel/random,/obj/item/clothing/under/bathrobe,/obj/item/clothing/under/bathrobe,/obj/structure/table/standard,/turf/simulated/floor/tiled/white,/area/stellardelight/deck1/shower) +"PG" = (/obj/structure/cable/orange{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/turf/simulated/floor,/area/maintenance/stellardelight/deck1/exploration) +"PH" = (/obj/structure/janitorialcart,/obj/machinery/power/apc/angled{dir = 1},/obj/structure/cable/green{icon_state = "0-2"},/obj/item/clothing/suit/caution,/obj/item/clothing/suit/caution,/obj/item/clothing/suit/caution,/obj/item/clothing/suit/caution,/obj/item/device/lightreplacer,/obj/structure/mopbucket,/obj/item/weapon/reagent_containers/glass/bucket,/obj/item/weapon/mop,/obj/item/weapon/storage/bag/trash,/obj/item/weapon/soap/nanotrasen,/turf/simulated/floor/tiled/monotile,/area/janitor) +"PI" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/turf/simulated/floor/carpet,/area/stellardelight/deck1/dorms/dorm8) +"PJ" = (/obj/machinery/alarm/angled{dir = 8},/obj/structure/closet/crate/bin{anchored = 1},/turf/simulated/floor/tiled/eris,/area/rnd/xenobiology/xenoflora) +"PL" = (/obj/structure/cable{icon_state = "1-8"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor,/area/maintenance/stellardelight/deck1/exploration) +"PM" = (/turf/simulated/wall/bay/r_wall/steel,/area/janitor) +"PN" = (/obj/effect/floor_decal/steeldecal/steel_decals6{dir = 10},/turf/simulated/floor/tiled/milspec,/area/stellardelight/deck1/exploration) +"PO" = (/obj/effect/floor_decal/milspec/color/red/corner{dir = 8},/turf/simulated/floor/tiled/dark,/area/security/security_cell_hallway) +"PP" = (/obj/structure/closet/crate,/obj/item/device/radio/intercom{dir = 1; pixel_y = 24},/turf/simulated/floor/tiled/eris/steel/cargo,/area/stellardelight/deck1/oreprocessing) +"PQ" = (/obj/item/weapon/storage/fancy/vials,/obj/item/weapon/reagent_containers/syringe/antiviral,/obj/item/weapon/reagent_containers/syringe/antiviral,/obj/item/weapon/storage/lockbox/vials,/obj/item/weapon/reagent_containers/dropper,/obj/item/weapon/storage/box/syringes{pixel_x = 4; pixel_y = 4},/obj/item/weapon/storage/box/beakers,/obj/item/weapon/storage/box/masks,/obj/item/weapon/storage/box/gloves{pixel_x = 4; pixel_y = 4},/obj/item/weapon/soap/nanotrasen,/obj/structure/closet/walllocker_double/medical/east,/obj/item/weapon/hand_labeler,/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/item/weapon/storage/box/monkeycubes/wolpincubes,/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/virology) +"PR" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/obj/structure/closet/firecloset,/turf/simulated/floor,/area/maintenance/stellardelight/deck1/starboardaft) +"PS" = (/obj/structure/cable/pink{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/effect/floor_decal/milspec/color/red/half{dir = 10},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 5},/turf/simulated/floor/tiled/dark,/area/security/security_cell_hallway) +"PU" = (/obj/machinery/button/remote/airlock{id = "bathroomstall3"; name = "Toilet 3 Lock"; pixel_x = -10; pixel_y = 22; specialfunctions = 4},/obj/machinery/light/small,/turf/simulated/floor/tiled/white,/area/crew_quarters/toilet) +"PV" = (/obj/machinery/light/small,/obj/structure/disposaloutlet{dir = 4},/obj/structure/disposalpipe/trunk{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/turf/simulated/floor/tiled/dark,/area/stellardelight/deck1/resleeving) +"PW" = (/obj/structure/cable/pink{icon_state = "4-8"},/obj/structure/cable/pink{icon_state = "2-8"},/turf/simulated/floor,/area/maintenance/stellardelight/deck1/starboardfore) +"PX" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/dark,/area/chapel/main) +"PY" = (/obj/effect/floor_decal/industrial/warning,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/turf/simulated/floor/reinforced,/area/stellardelight/deck1/shuttlebay) +"PZ" = (/obj/structure/cable/green,/obj/structure/cable/green{icon_state = "0-2"},/obj/machinery/power/smes/buildable{RCon_tag = "Substation - Civilian"; output_attempt = 0},/turf/simulated/floor,/area/maintenance/stellardelight/substation/civilian) +"Qa" = (/obj/structure/bed/chair/comfy/black{dir = 1},/turf/simulated/floor/carpet,/area/stellardelight/deck1/dorms/dorm5) +"Qb" = (/obj/machinery/atmospherics/unary/vent_pump/high_volume{frequency = 1379; id_tag = "ex_airpump"},/obj/machinery/airlock_sensor{id_tag = "ex_sensor"; pixel_y = 24},/turf/simulated/floor,/area/maintenance/stellardelight/deck1/exploration) +"Qc" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/status_display{pixel_y = 32},/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/starboard) +"Qd" = (/obj/structure/bed/chair/comfy/black,/obj/machinery/light/small{dir = 4},/turf/simulated/floor/carpet,/area/stellardelight/deck1/dorms/dorm5) +"Qe" = (/obj/machinery/alarm/angled,/turf/simulated/floor/carpet/purcarpet,/area/stellardelight/deck1/dorms/dorm3) +"Qf" = (/obj/machinery/light{dir = 8},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/port) +"Qg" = (/obj/structure/table/steel,/obj/item/device/flashlight/lamp,/obj/machinery/button/remote/blast_door{id = "processinglockdown"; name = "Window Lockdown"; pixel_x = -5; req_access = list(1)},/obj/item/device/radio/intercom{dir = 1; pixel_y = 24},/turf/simulated/floor/tiled/dark,/area/security/security_processing) +"Qh" = (/obj/structure/cable/white{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/exam_room) +"Qi" = (/turf/simulated/wall/bay/r_wall{desc = "It has a red stripe! A huge chunk of metal used to seperate rooms."; stripe_color = "#8c1d11"},/area/security/tactical) +"Qj" = (/obj/structure/cable/green{icon_state = "1-4"},/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/starboard) +"Qk" = (/turf/simulated/wall/bay/red,/area/prison/cell_block/C) +"Ql" = (/obj/structure/cable/orange{icon_state = "0-2"},/obj/structure/cable/orange,/obj/machinery/power/smes/buildable{RCon_tag = "Substation - Atmospherics"; output_attempt = 0},/turf/simulated/floor,/area/maintenance/stellardelight/substation/atmospherics) +"Qm" = (/obj/structure/window/reinforced/full,/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 4},/obj/structure/grille,/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/window/reinforced{dir = 8},/obj/machinery/door/blast/angled/open{dir = 4; id = "xenobiopen5"; name = "Pen 5 Blast Doors"},/turf/simulated/floor/tiled/dark,/area/rnd/xenobiology) +"Qn" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/station_map{pixel_y = 32},/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/fore) +"Qp" = (/obj/structure/table/glass,/obj/item/device/healthanalyzer,/obj/item/clothing/accessory/stethoscope,/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/exam_room) +"Qq" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/turf/simulated/floor/tiled/steel,/area/assembly/robotics) +"Qr" = (/obj/machinery/door/firedoor/glass,/obj/structure/cable/white{icon_state = "1-2"},/obj/machinery/door/airlock/angled_bay/hatch{door_color = "#e6ab22"; name = "Medical Substation"; req_one_access = list(10); stripe_color = "#e6ab22"},/turf/simulated/floor/tiled/steel_ridged,/area/maintenance/stellardelight/substation/medical) +"Qt" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/milspec,/area/stellardelight/deck1/exploration) +"Qu" = (/turf/simulated/wall/bay{desc = "It has a red stripe! A huge chunk of metal used to seperate rooms."; stripe_color = "#8c1d11"},/area/security/security_processing) +"Qv" = (/obj/machinery/door/firedoor/glass/hidden/steel,/obj/structure/cable/white{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/aft) +"Qw" = (/obj/machinery/door/firedoor/glass,/obj/machinery/access_button{command = "cycle_exterior"; frequency = 1379; master_tag = "security_airlock"; name = "exterior access button"; pixel_x = -32; req_access = list(1)},/obj/machinery/door/airlock/angled_bay/external/glass{frequency = 1379; id_tag = "security_exterior"; locked = 1; name = "Security Airlock"},/turf/simulated/floor/tiled/steel_ridged,/area/security/tactical) +"Qx" = (/obj/machinery/gateway,/turf/simulated/floor/tiled/eris/white/gray_platform,/area/gateway) +"Qy" = (/obj/machinery/light/floortube{dir = 4; pixel_x = 6},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/eris,/area/rnd/xenobiology/xenoflora) +"Qz" = (/obj/structure/cable/green{color = "#42038a"; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/green{color = "#42038a"; icon_state = "1-4"},/turf/simulated/floor,/area/maintenance/stellardelight/deck1/starboardaft) +"QA" = (/obj/structure/cable/white{icon_state = "1-2"},/obj/structure/cable/white{icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/alarm/angled{dir = 8},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/stellardelight/deck1/lowermed) +"QB" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/turf/simulated/floor,/area/maintenance/stellardelight/deck1/portcent) +"QC" = (/turf/simulated/wall/bay/red,/area/security/lobby) +"QD" = (/obj/machinery/atmospherics/portables_connector{dir = 4},/turf/simulated/floor/tiled/eris,/area/rnd/xenobiology/xenoflora_storage) +"QE" = (/obj/effect/landmark/start/scientist,/turf/simulated/floor/tiled/steel_grid,/area/rnd/research) +"QF" = (/obj/structure/cable/green{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/port) +"QG" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/angled_bay/double/glass{door_color = "#8c1d11"; id_tag = "BrigFoyer"; name = "Security"; req_one_access = list(38,63); stripe_color = "#d27428"},/obj/machinery/door/blast/angled/open{dir = 2; id = "securitylockdown"},/turf/simulated/floor/tiled/steel_ridged,/area/security/lobby) +"QH" = (/obj/machinery/hologram/holopad,/obj/structure/cable/green{color = "#42038a"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/eris,/area/stellardelight/deck1/researchequip) +"QI" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/obj/machinery/hologram/holopad,/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/virology) +"QJ" = (/obj/structure/cable/white{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 6},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 1},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/stellardelight/deck1/lowermed) +"QK" = (/obj/structure/railing/grey{dir = 1},/turf/simulated/floor,/area/stellardelight/deck1/mining) +"QM" = (/obj/item/weapon/bedsheet/orangedouble,/obj/structure/bed/double/padded,/obj/structure/curtain/black,/turf/simulated/floor/carpet/purcarpet,/area/stellardelight/deck1/dorms/dorm2) +"QO" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/obj/structure/flora/pottedplant/decorative,/turf/simulated/floor/tiled/eris/white/bluecorner,/area/stellardelight/deck1/lowermed) +"QP" = (/obj/structure/table/rack/shelf/steel,/obj/item/weapon/storage/box/trackimp{pixel_y = -4},/obj/item/weapon/storage/box/trackimp{pixel_x = 5; pixel_y = 1},/obj/machinery/atmospherics/unary/vent_pump/on,/obj/machinery/alarm/angled,/obj/effect/floor_decal/milspec/color/black,/obj/effect/landmark/vermin,/turf/simulated/floor/tiled/dark,/area/security/armoury) +"QQ" = (/obj/effect/floor_decal/milspec/color/red/half{dir = 8},/turf/simulated/floor/tiled/dark,/area/security/security_cell_hallway) +"QR" = (/turf/simulated/floor/tiled/steel_grid,/area/maintenance/stellardelight/deck1/starboardaft) +"QS" = (/obj/structure/cable/green{icon_state = "1-2"},/obj/machinery/light_switch{dir = 8; pixel_x = 24},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/white,/area/crew_quarters/toilet) +"QU" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/turf/simulated/floor,/area/maintenance/stellardelight/deck1/starboardaft) +"QV" = (/obj/structure/table/reinforced,/obj/machinery/computer/med_data/laptop{dir = 4},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/obj/machinery/alarm/angled{dir = 4},/turf/simulated/floor/tiled/white,/area/security/detectives_office) +"QX" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable/pink{icon_state = "4-8"},/turf/simulated/floor/tiled/white,/area/security/detectives_office) +"QY" = (/obj/machinery/door/firedoor/glass,/obj/structure/window/bay/reinforced,/obj/machinery/door/blast/angled/open{dir = 2; id = "brigwindowlockdown"},/obj/structure/low_wall/bay/reinforced/steel,/turf/simulated/floor,/area/security/security_equiptment_storage) +"QZ" = (/obj/effect/floor_decal/industrial/warning/corner,/turf/simulated/floor/tiled/steel,/area/assembly/robotics) +"Ra" = (/obj/structure/railing/grey{dir = 4},/turf/simulated/floor,/area/maintenance/stellardelight/deck1/portaft) +"Rb" = (/obj/structure/bed/padded,/turf/simulated/floor/tiled/eris/white/cargo,/area/medical/virology) +"Rc" = (/obj/structure/cable/green{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/angled_bay/standard/color{door_color = "#2e2e2e"; fill_color = "#2e2e2e"; name = "Chapel Office"; req_access = list(22); stripe_color = "#deaf43"},/turf/simulated/floor/tiled/steel_ridged,/area/chapel/office) +"Rd" = (/obj/structure/bed/chair/wood/wings,/obj/effect/landmark/start/chaplain,/turf/simulated/floor/lino,/area/chapel/office) +"Re" = (/obj/structure/cable/pink{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/effect/floor_decal/milspec/color/red/half{dir = 1},/turf/simulated/floor/tiled/dark,/area/security/security_lockerroom) +"Rf" = (/obj/effect/floor_decal/industrial/outline/yellow,/obj/machinery/door/firedoor/glass,/turf/simulated/floor,/area/maintenance/stellardelight/deck1/portcent) +"Rg" = (/obj/structure/cable/green{icon_state = "4-8"},/turf/simulated/floor,/area/maintenance/stellardelight/deck1/portaft) +"Rh" = (/obj/structure/cable/white{icon_state = "1-2"},/obj/machinery/power/sensor{name = "Powernet Sensor - Medical Subgrid"; name_tag = "Medical Subgrid"},/obj/structure/cable/white,/obj/machinery/power/apc/angled{dir = 4; name = "night shift APC"; nightshift_setting = 2},/turf/simulated/floor,/area/maintenance/stellardelight/substation/medical) +"Ri" = (/obj/machinery/door/airlock/angled_bay/standard/color/common{dir = 4; id_tag = "bathroomstall3"; name = "Toilet 3"},/turf/simulated/floor/tiled/steel_ridged,/area/crew_quarters/toilet) +"Rj" = (/obj/structure/cable/green{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/camera/network/civilian{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/turf/simulated/floor/tiled/dark,/area/chapel/main) +"Rk" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/port) +"Rl" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 6},/turf/simulated/floor/tiled/steel_grid,/area/maintenance/stellardelight/deck1/starboardaft) +"Rm" = (/obj/structure/cable/green{color = "#42038a"; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 6},/obj/machinery/button/remote/blast_door{dir = 4; id = "researchwindowlockdown"; name = "Window Lockdown"; pixel_x = -24; pixel_y = 23},/turf/simulated/floor/tiled/eris,/area/rnd/xenobiology/xenoflora) +"Rn" = (/obj/machinery/door/firedoor/glass,/obj/structure/cable/white{icon_state = "4-8"},/obj/machinery/door/airlock/angled_bay/standard/color{dir = 8; door_color = "#ffffff"; id_tag = "resleeveexit"; name = "Resleeving Lab"; req_access = list(5); stripe_color = "#5a96bb"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/steel_ridged,/area/stellardelight/deck1/resleeving) +"Ro" = (/obj/structure/cable/green{color = "#42038a"; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 6},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 1},/turf/simulated/floor/tiled/eris,/area/rnd/xenobiology/xenoflora_storage) +"Rp" = (/obj/machinery/door/firedoor/glass,/obj/structure/window/bay/reinforced,/obj/machinery/door/blast/angled/open{dir = 4; id = "librarywindowlockdown"},/obj/structure/low_wall/bay/reinforced/steel,/turf/simulated/floor,/area/library) +"Rq" = (/obj/structure/janitorialcart,/obj/machinery/requests_console/preset/janitor{pixel_y = 30},/obj/item/clothing/suit/caution,/obj/item/clothing/suit/caution,/obj/item/clothing/suit/caution,/obj/item/clothing/suit/caution,/obj/item/device/lightreplacer,/obj/structure/mopbucket,/obj/item/weapon/reagent_containers/glass/bucket,/obj/item/weapon/mop,/obj/item/weapon/storage/bag/trash,/obj/item/weapon/soap/nanotrasen,/turf/simulated/floor/tiled/monotile,/area/janitor) +"Rr" = (/obj/structure/cable/white{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/light_switch{dir = 8; pixel_x = 24; pixel_y = -32},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 10},/obj/effect/floor_decal/steeldecal/steel_decals4,/turf/simulated/floor/tiled/white,/area/medical/patient_wing) +"Rs" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/angled_bay/hatch{dir = 4; door_color = "#e6ab22"; name = "Exploration Substation"; req_one_access = list(10); stripe_color = "#e6ab22"},/turf/simulated/floor/tiled/steel_ridged,/area/maintenance/stellardelight/substation/exploration) +"Rt" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/angled_bay/hatch{name = "maintenance access"; req_access = list(26); stripe_color = "#454545"},/turf/simulated/floor/tiled/steel_ridged,/area/janitor) +"Ru" = (/obj/item/clothing/mask/breath,/obj/item/clothing/mask/breath,/obj/item/clothing/shoes/magboots,/obj/item/clothing/shoes/magboots,/obj/item/clothing/suit/space/void/security,/obj/item/clothing/suit/space/void/security,/obj/item/clothing/head/helmet/space/void/security,/obj/item/clothing/head/helmet/space/void/security,/obj/machinery/door/window/brigdoor{dir = 2},/obj/structure/table/rack{dir = 8; layer = 2.9},/obj/structure/window/reinforced{dir = 8},/turf/simulated/floor/tiled/eris/white/gray_platform,/area/gateway) +"Rv" = (/obj/structure/cable/pink{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/dark,/area/security/security_cell_hallway) +"Rw" = (/obj/machinery/atmospherics/unary/vent_pump/high_volume{frequency = 1379; id_tag = "security_airpump"},/obj/machinery/embedded_controller/radio/airlock/airlock_controller{dir = 4; id_tag = "security_airlock"; pixel_x = -24; req_one_access = list(1); tag_airpump = "security_airpump"; tag_chamber_sensor = "security_sensor"; tag_exterior_door = "security_exterior"; tag_interior_door = "security_interior"},/obj/machinery/airlock_sensor{dir = 8; id_tag = "security_sensor"; pixel_x = 24},/obj/machinery/light/small{dir = 4},/turf/simulated/floor,/area/security/tactical) +"Ry" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/blast/angled/open{dir = 4; id = "researchwindowlockdown"},/obj/structure/window/bay/reinforced,/obj/structure/low_wall/bay/reinforced/steel,/obj/structure/cable/green{color = "#42038a"; icon_state = "4-8"},/turf/simulated/floor,/area/rnd/xenobiology/xenoflora_storage) +"Rz" = (/turf/simulated/floor/tiled/milspec,/area/stellardelight/deck1/explobriefing) +"RA" = (/obj/structure/disposalpipe/segment,/obj/effect/floor_decal/milspec/color/emerald/half{dir = 4},/obj/machinery/hologram/holopad,/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/aft) +"RB" = (/obj/machinery/gateway{dir = 10},/obj/machinery/light{dir = 8},/turf/simulated/floor/tiled/eris/white/gray_platform,/area/gateway) +"RC" = (/turf/simulated/wall/bay/red,/area/security/warden) +"RE" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/virology) +"RF" = (/turf/simulated/floor/airless,/area/stellardelight/deck1/exterior) +"RG" = (/obj/structure/cable/pink{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/turf/simulated/floor/tiled/dark,/area/security/security_cell_hallway) +"RH" = (/obj/structure/cable/white{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/light_switch{dir = 4; pixel_x = -32; pixel_y = -32},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 6},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 1},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/exam_room) +"RI" = (/turf/space/internal_edge/bottomleft,/area/stellardelight/deck1/starboard) +"RJ" = (/obj/machinery/light{dir = 4},/obj/structure/cable/pink{icon_state = "1-2"},/turf/simulated/floor/tiled/dark,/area/security/security_cell_hallway) +"RK" = (/obj/structure/cable/green{icon_state = "1-8"},/obj/machinery/alarm/angled{dir = 8},/obj/machinery/disposal/wall/cleaner{dir = 1},/obj/structure/disposalpipe/trunk{dir = 1},/turf/simulated/floor/tiled/white,/area/crew_quarters/toilet) +"RL" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/turf/simulated/floor,/area/maintenance/stellardelight/deck1/portaft) +"RM" = (/obj/structure/closet/secure_closet/personal,/obj/machinery/firealarm/angled{dir = 4},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/turf/simulated/floor/carpet,/area/stellardelight/deck1/dorms/dorm4) +"RN" = (/turf/simulated/floor/reinforced,/area/rnd/xenobiology) +"RP" = (/obj/structure/table/rack,/obj/item/weapon/rig/medical/equipped,/obj/machinery/light{dir = 1},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/stellardelight/deck1/paramedic) +"RQ" = (/obj/structure/cable/green{icon_state = "2-4"},/obj/structure/sign/department/chapel{pixel_x = -32; plane = -34},/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/fore) +"RR" = (/obj/machinery/light{dir = 8},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/obj/machinery/botany/editor,/turf/simulated/floor/tiled/eris,/area/rnd/xenobiology/xenoflora) +"RS" = (/turf/simulated/wall/bay/purple,/area/stellardelight/deck1/explobriefing) +"RT" = (/obj/machinery/door/firedoor/glass,/obj/structure/cable/white{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/door/airlock/angled_bay/standard/color{dir = 8; door_color = "#ffffff"; id_tag = "resleeveclean"; name = "Cleaning Room"; req_access = list(5); stripe_color = "#5a96bb"},/turf/simulated/floor/tiled/steel_ridged,/area/stellardelight/deck1/resleeving) +"RU" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/recharger/wallcharger{pixel_x = 4; pixel_y = 29},/obj/machinery/recharger/wallcharger{pixel_x = 4; pixel_y = 20},/obj/effect/floor_decal/milspec/color/red/half{dir = 4},/obj/machinery/recharger/wallcharger{pixel_x = 4; pixel_y = 38},/turf/simulated/floor/tiled/dark,/area/security/security_lockerroom) +"RV" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/blast/angled/open{dir = 2; id = "researchwindowlockdown"},/obj/structure/window/bay/reinforced,/obj/structure/low_wall/bay/reinforced/steel,/turf/simulated/floor,/area/rnd/xenobiology/xenoflora_storage) +"RX" = (/obj/effect/floor_decal/milspec/color/red/half{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals6{dir = 9},/obj/machinery/power/apc/angled{dir = 8},/obj/structure/cable/green{icon_state = "0-2"},/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/fore) +"RY" = (/obj/structure/cable/orange{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden,/turf/simulated/floor,/area/maintenance/stellardelight/deck1/exploration) +"RZ" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/starboard) +"Sa" = (/obj/structure/cable/green{icon_state = "4-8"},/obj/structure/cable/white{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals3{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals3{dir = 4},/obj/structure/disposalpipe/junction,/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/port) +"Sb" = (/obj/structure/cable/green{color = "#42038a"; icon_state = "2-4"},/obj/structure/cable/green{color = "#42038a"; icon_state = "1-4"},/obj/structure/cable/green{color = "#42038a"; icon_state = "1-2"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/turf/simulated/floor/tiled/steel_grid,/area/maintenance/stellardelight/deck1/starboardaft) +"Sc" = (/turf/simulated/wall/bay/r_wall/purple,/area/maintenance/stellardelight/deck1/starboardaft) +"Sd" = (/obj/structure/cable/orange{icon_state = "1-4"},/turf/simulated/floor/airless,/area/stellardelight/deck1/exterior) +"Se" = (/obj/structure/table/reinforced,/obj/item/weapon/storage/firstaid/regular,/obj/item/weapon/storage/firstaid/regular,/obj/item/weapon/storage/firstaid/adv,/obj/item/bodybag/cryobag,/obj/item/bodybag/cryobag,/obj/machinery/alarm/angled{dir = 8},/turf/simulated/floor/tiled/eris/white/gray_platform,/area/gateway) +"Sf" = (/obj/structure/cable/green{color = "#42038a"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 5},/turf/simulated/floor/tiled/steel_grid,/area/assembly/robotics) +"Sg" = (/obj/machinery/vending/wardrobe/chapdrobe,/turf/simulated/floor/lino,/area/chapel/office) +"Sh" = (/obj/structure/cable/green{icon_state = "2-8"},/obj/structure/cable/green{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals3{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals3{dir = 9},/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/port) +"Si" = (/obj/structure/bed/chair/comfy/black,/obj/machinery/firealarm/angled{dir = 8},/turf/simulated/floor/carpet,/area/stellardelight/deck1/dorms/dorm1) +"Sj" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/starboard) +"Sk" = (/obj/machinery/power/apc/angled{dir = 1},/obj/structure/cable/green{color = "#42038a"; icon_state = "0-2"},/obj/item/device/radio/intercom{dir = 4; pixel_x = 24},/turf/simulated/floor/tiled/eris,/area/rnd/storage) +"Sl" = (/obj/structure/cable{icon_state = "1-4"},/turf/simulated/floor,/area/maintenance/stellardelight/substation/security) +"Sn" = (/obj/structure/flora/pottedplant/orientaltree,/obj/machinery/light,/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/turf/simulated/floor/tiled/milspec,/area/stellardelight/deck1/explobriefing) +"Sq" = (/obj/machinery/portable_atmospherics/canister/carbon_dioxide,/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/obj/structure/cable/green{color = "#42038a"; icon_state = "4-8"},/turf/simulated/floor/tiled/eris,/area/rnd/xenobiology/xenoflora_storage) +"Sr" = (/obj/structure/cable/green{color = "#42038a"; icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/steel_grid,/area/assembly/robotics) +"Ss" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor,/area/maintenance/stellardelight/deck1/starboardfore) +"St" = (/obj/effect/landmark/start/xenobot,/turf/simulated/floor/tiled/eris,/area/rnd/xenobiology/xenoflora) +"Su" = (/obj/structure/cable/yellow{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 8},/obj/item/device/radio/intercom{dir = 8; pixel_x = -24},/turf/simulated/floor/tiled/eris/steel/cargo,/area/stellardelight/deck1/mining) +"Sv" = (/obj/structure/cable/pink{icon_state = "1-8"},/obj/structure/cable/pink{icon_state = "4-8"},/turf/simulated/floor/tiled/dark,/area/security/security_lockerroom) +"Sx" = (/obj/item/device/radio/intercom{dir = 4; pixel_x = 24},/turf/simulated/floor/wood,/area/library) +"Sy" = (/obj/structure/cable/pink{icon_state = "2-8"},/turf/simulated/floor/airless,/area/stellardelight/deck1/exterior) +"Sz" = (/obj/machinery/light,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/starboard) +"SA" = (/obj/machinery/door/firedoor/glass,/obj/structure/window/bay/reinforced,/obj/structure/cable/pink{icon_state = "4-8"},/obj/structure/low_wall/bay/reinforced/steel,/turf/simulated/floor,/area/chapel/main) +"SB" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/techfloor,/area/stellardelight/deck1/port) +"SC" = (/turf/simulated/wall/bay/steel,/area/maintenance/stellardelight/substation/security) +"SD" = (/obj/structure/closet/secure_closet/personal/patient,/obj/machinery/atmospherics/unary/vent_pump/on,/obj/machinery/camera/network/medbay,/turf/simulated/floor/tiled/eris/white/cargo,/area/medical/virology) +"SE" = (/obj/structure/cable/green{color = "#42038a"; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/turf/simulated/floor/tiled/milspec,/area/stellardelight/deck1/exploration) +"SF" = (/obj/structure/bed/chair/office/dark,/obj/effect/landmark/start/security,/turf/simulated/floor/tiled/dark,/area/security/lobby) +"SG" = (/obj/machinery/vending/wallmed1/public{pixel_x = 29},/obj/structure/cable/green{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/white,/area/crew_quarters/toilet) +"SH" = (/obj/structure/cable/green{icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/light_switch{pixel_x = -24; pixel_y = 25},/turf/simulated/floor/carpet,/area/stellardelight/deck1/dorms/dorm8) +"SI" = (/obj/machinery/computer/security{dir = 4},/obj/effect/floor_decal/milspec/color/red/half{dir = 10},/turf/simulated/floor/tiled/dark,/area/security/lobby) +"SJ" = (/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/obj/structure/cable/green{icon_state = "1-8"},/obj/structure/sign/directions{desc = "A direction sign, pointing out the way to the shuttle bay."; name = "\improper Shuttle Bay"; pixel_x = 32},/obj/structure/sign/directions/science{dir = 6; pixel_x = 32; pixel_y = -6},/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/aft) +"SL" = (/obj/effect/landmark{name = "lightsout"},/obj/machinery/hologram/holopad,/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/port) +"SM" = (/obj/random/trash_pile,/turf/simulated/floor,/area/maintenance/stellardelight/deck1/starboardaft) +"SN" = (/obj/machinery/power/pointdefense{id_tag = "sd_pd"},/obj/effect/floor_decal/industrial/warning/full,/obj/structure/cable/green{color = "#42038a"; icon_state = "0-2"},/obj/structure/cable/green{color = "#42038a"; icon_state = "2-4"},/turf/simulated/floor/airless,/area/stellardelight/deck1/exterior) +"SO" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/structure/sign/directions{desc = "A direction sign, pointing out the way to the shuttle bay."; name = "\improper Shuttle Bay"; pixel_y = -32},/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/aft) +"SP" = (/obj/machinery/button/remote/airlock{dir = 1; id = "dorm3"; name = "Room 3 Lock"; pixel_y = -22; specialfunctions = 4},/obj/machinery/power/apc/angled{dir = 4; name = "night shift APC"; nightshift_setting = 2},/obj/structure/cable/green{icon_state = "0-8"},/obj/structure/closet/crate/bin{anchored = 1},/turf/simulated/floor/carpet/purcarpet,/area/stellardelight/deck1/dorms/dorm3) +"SQ" = (/turf/simulated/floor/lino,/area/chapel/office) +"SR" = (/obj/machinery/door/blast/multi_tile/three_tile_ver{id = "xenospace6"},/turf/simulated/floor/reinforced,/area/rnd/workshop) +"SS" = (/obj/structure/cable/yellow{icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/light_switch{dir = 8; pixel_x = 25; pixel_y = 32},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 10},/obj/effect/floor_decal/steeldecal/steel_decals4,/turf/simulated/floor/tiled/eris/steel/cargo,/area/stellardelight/deck1/miningequipment) +"ST" = (/obj/effect/landmark{name = "lightsout"},/obj/machinery/hologram/holopad,/turf/simulated/floor/tiled/techfloor,/area/rnd/workshop) +"SU" = (/obj/machinery/light/small,/turf/simulated/floor/carpet/purcarpet,/area/stellardelight/deck1/dorms/dorm7) +"SV" = (/obj/effect/floor_decal/steeldecal/steel_decals10{dir = 10},/obj/effect/floor_decal/steeldecal/steel_decals10{dir = 9},/turf/simulated/floor/tiled/white,/area/stellardelight/deck1/shower) +"SW" = (/obj/machinery/door/airlock/angled_bay/external/glass{dir = 4; frequency = 1379; id_tag = "ex_interior"; locked = 1; name = "Exterior Airlock"},/obj/machinery/door/firedoor/glass,/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4},/turf/simulated/floor/tiled/steel_ridged,/area/maintenance/stellardelight/deck1/exploration) +"SX" = (/obj/structure/cable/green{icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/structure/cable/green{icon_state = "1-4"},/turf/simulated/floor/tiled/white,/area/crew_quarters/toilet) +"SY" = (/obj/structure/cable/green{icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/machinery/light_switch{pixel_x = -24; pixel_y = 25},/turf/simulated/floor/carpet/purcarpet,/area/stellardelight/deck1/dorms/dorm7) +"SZ" = (/obj/structure/cable/green{icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/turf/simulated/floor/tiled/eris/steel/panels,/area/stellardelight/deck1/pilot) +"Ta" = (/obj/structure/cable/green{icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/wood,/area/library) +"Tb" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/light/small{dir = 8},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor,/area/maintenance/stellardelight/deck1/exploration) +"Tc" = (/obj/item/weapon/bedsheet/orangedouble,/obj/structure/bed/double/padded,/obj/structure/curtain/black,/turf/simulated/floor/carpet/purcarpet,/area/stellardelight/deck1/dorms/dorm7) +"Td" = (/turf/simulated/wall/bay/r_wall/steel,/area/maintenance/stellardelight/deck1/portcent) +"Te" = (/obj/structure/table/rack/shelf/steel,/obj/item/weapon/gun/energy/laser{pixel_x = -1; pixel_y = 2},/obj/item/weapon/gun/energy/laser{pixel_x = -1; pixel_y = -11},/obj/machinery/atmospherics/pipe/simple/hidden/purple{dir = 9},/obj/effect/floor_decal/milspec/color/black,/turf/simulated/floor/tiled/dark,/area/security/armoury) +"Tf" = (/obj/structure/cable/green{color = "#42038a"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 5},/turf/simulated/floor/tiled/steel_grid,/area/maintenance/stellardelight/deck1/starboardaft) +"Tg" = (/obj/structure/closet/emergsuit_wall{dir = 4; pixel_x = 27},/turf/simulated/floor/tiled/dark,/area/security/lobby) +"Th" = (/obj/structure/cable/pink{icon_state = "1-8"},/turf/simulated/floor/tiled/dark,/area/security/security_processing) +"Ti" = (/obj/structure/bed/chair/bay/shuttle{dir = 4},/turf/simulated/floor/tiled/eris/steel/gray_platform,/area/stellardelight/deck1/exploshuttle) +"Tj" = (/obj/structure/cable/green{color = "#42038a"; icon_state = "1-8"},/obj/structure/cable/green{color = "#42038a"; icon_state = "1-2"},/turf/simulated/floor/tiled/steel_grid,/area/rnd/research) +"Tk" = (/obj/structure/bed/chair/comfy/black,/obj/item/device/radio/intercom{dir = 1; pixel_y = 24},/turf/simulated/floor/carpet/bcarpet,/area/stellardelight/deck1/starboard) +"Tl" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/angled_bay/standard/glass{dir = 4; door_color = "#ffffff"; name = "Xenoflora Research"; req_access = list(77); stripe_color = "#5a19a8"},/obj/structure/cable/green{color = "#42038a"; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/turf/simulated/floor/tiled/steel_ridged,/area/rnd/xenobiology/xenoflora) +"Tm" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/angled_bay/standard/glass{door_color = "#8c1d11"; name = "Forensics Lab"; req_access = list(4); stripe_color = "#d27428"},/turf/simulated/floor/tiled/steel_ridged,/area/security/detectives_office) +"Tn" = (/obj/structure/table/steel_reinforced,/obj/machinery/light{dir = 8},/turf/simulated/floor/tiled/eris,/area/stellardelight/deck1/researchequip) +"To" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor,/area/maintenance/stellardelight/deck1/portaft) +"Tp" = (/obj/machinery/door/firedoor/glass,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/door/airlock/angled_bay/standard/glass{door_color = "#ffffff"; name = "Xenobiology"; req_access = null; req_one_access = list(47,55); stripe_color = "#5a19a8"},/turf/simulated/floor/tiled/steel_ridged,/area/rnd/xenobiology) +"Tq" = (/obj/structure/cable/white,/obj/structure/cable/white{icon_state = "0-2"},/obj/machinery/power/smes/buildable{RCon_tag = "Substation - Medical"; output_attempt = 0},/turf/simulated/floor,/area/maintenance/stellardelight/substation/medical) +"Tr" = (/obj/structure/cable/green{color = "#42038a"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/milspec,/area/stellardelight/deck1/exploequipment) +"Ts" = (/obj/machinery/door/blast/angled{id = "xenobiodiv2"; name = "Divider 2 Blast Door"},/turf/simulated/floor/reinforced,/area/rnd/xenobiology) +"Tv" = (/obj/machinery/vending/coffee,/obj/machinery/atmospherics/unary/vent_scrubber/on,/turf/simulated/floor/tiled/steel_ridged,/area/stellardelight/deck1/starboard) +"Tw" = (/obj/structure/disposalpipe/trunk{dir = 4},/obj/machinery/disposal/wall{dir = 4; plane = -34},/turf/simulated/floor/tiled/techfloor,/area/stellardelight/deck1/port) +"Tx" = (/obj/machinery/door/firedoor/glass,/obj/structure/cable/green{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/door/airlock/angled_bay/standard/color{door_color = "#9c9c9c"; fill_color = "#5c5c5c"; id_tag = "dorm3"; name = "Room 3"; stripe_color = "#89bd66"},/turf/simulated/floor/tiled/steel_ridged,/area/stellardelight/deck1/dorms/dorm3) +"Ty" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/obj/structure/closet/crate/bin{anchored = 1},/obj/effect/landmark/vines,/turf/simulated/floor/tiled/milspec,/area/stellardelight/deck1/exploration) +"TB" = (/obj/structure/cable/yellow{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 10},/obj/effect/floor_decal/steeldecal/steel_decals4,/turf/simulated/floor/tiled/eris/steel/cargo,/area/stellardelight/deck1/mining) +"TC" = (/obj/structure/bed/chair/office/dark,/turf/simulated/floor/tiled/milspec,/area/stellardelight/deck1/explobriefing) +"TD" = (/obj/structure/cable/green{color = "#42038a"; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 5},/turf/simulated/floor/tiled/milspec,/area/stellardelight/deck1/exploration) +"TE" = (/obj/effect/floor_decal/milspec/color/orange/half,/turf/simulated/floor/tiled/dark,/area/prison/cell_block/C) +"TF" = (/obj/structure/bed/chair/sofa/corp/right{dir = 1},/turf/simulated/floor/carpet/purcarpet,/area/stellardelight/deck1/dorms/dorm2) +"TG" = (/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/structure/cable/green{color = "#42038a"; icon_state = "4-8"},/turf/simulated/floor/tiled/steel_grid,/area/rnd/xenobiology) +"TH" = (/obj/machinery/door/firedoor/glass,/obj/structure/window/bay/reinforced,/obj/machinery/door/blast/angled/open{dir = 2; id = "processinglockdown"},/obj/structure/low_wall/bay/reinforced/red,/turf/simulated/floor,/area/security/security_processing) +"TI" = (/obj/machinery/power/terminal{dir = 4},/obj/structure/cable,/obj/machinery/alarm/angled{dir = 4},/turf/simulated/floor,/area/maintenance/stellardelight/substation/cargo) +"TJ" = (/obj/structure/stairs/spawner/south,/obj/structure/window/reinforced{dir = 4},/turf/simulated/floor,/area/stellardelight/deck1/fore) +"TK" = (/obj/machinery/clonepod/transhuman,/turf/simulated/floor/tiled/eris/white/bluecorner,/area/stellardelight/deck1/resleeving) +"TL" = (/obj/machinery/alarm/angled,/turf/simulated/floor/carpet/purcarpet,/area/stellardelight/deck1/dorms/dorm6) +"TM" = (/obj/structure/cable/pink{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/structure/cable/pink{icon_state = "1-4"},/obj/effect/floor_decal/milspec/color/black,/turf/simulated/floor/tiled/dark,/area/security/armoury) +"TN" = (/obj/item/weapon/bedsheet/orangedouble,/obj/structure/bed/double/padded,/obj/structure/curtain/black,/turf/simulated/floor/carpet/purcarpet,/area/stellardelight/deck1/dorms/dorm6) +"TO" = (/obj/structure/cable/green{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/sign/directions/science{dir = 6; pixel_x = -32},/obj/structure/sign/directions/science{dir = 5; pixel_x = -32; pixel_y = 6},/obj/structure/sign/directions{desc = "A direction sign, pointing out the way to the shuttle bay."; dir = 10; name = "\improper Shuttle Bay"; pixel_x = -32; pixel_y = -6},/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/aft) +"TP" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/effect/floor_decal/steeldecal/steel_decals6{dir = 4},/turf/simulated/floor/tiled/milspec,/area/stellardelight/deck1/explobriefing) +"TQ" = (/obj/structure/cable/green{icon_state = "1-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor,/area/maintenance/stellardelight/deck1/starboardcent) +"TR" = (/obj/structure/cable/green{color = "#42038a"; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals6{dir = 8},/turf/simulated/floor/tiled/milspec,/area/stellardelight/deck1/exploration) +"TS" = (/obj/random/maintenance/security,/obj/random/maintenance/security,/obj/structure/table/rack,/obj/random/maintenance,/obj/random/contraband,/obj/random/mre,/turf/simulated/floor,/area/maintenance/security_port) +"TT" = (/obj/structure/bed/chair/comfy/brown{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/carpet/bcarpet,/area/stellardelight/deck1/port) +"TU" = (/obj/structure/closet/coffin,/obj/structure/cable/green{icon_state = "1-2"},/turf/simulated/floor/tiled/dark,/area/chapel/main) +"TV" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/structure/table/rack,/obj/item/canvas,/obj/item/canvas/nineteen_nineteen,/obj/item/canvas/twentyfour_twentyfour,/obj/item/canvas/twentythree_nineteen,/obj/item/canvas/twentythree_twentythree,/obj/machinery/alarm/angled{dir = 4},/obj/item/paint_palette,/obj/item/paint_brush,/turf/simulated/floor/wood,/area/library) +"TW" = (/obj/machinery/door/blast/angled{dir = 4; id = "chapelmassdriver"},/turf/simulated/floor/airless,/area/chapel/chapel_morgue) +"TX" = (/obj/machinery/door/firedoor/glass,/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/door/airlock/angled_bay/standard/color{dir = 8; door_color = "#ffffff"; id_tag = "recoveryexit"; name = "Recovery Room"; req_access = list(5); stripe_color = "#5a96bb"},/turf/simulated/floor/tiled/steel_ridged,/area/medical/patient_wing) +"TY" = (/obj/structure/closet/secure_closet/personal/patient,/obj/machinery/atmospherics/unary/vent_pump/on,/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/exam_room) +"TZ" = (/obj/structure/cable{icon_state = "1-8"},/obj/structure/cable{icon_state = "1-4"},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/light/small,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor,/area/maintenance/stellardelight/deck1/starboardcent) +"Ua" = (/turf/simulated/wall/bay/steel,/area/maintenance/stellardelight/substation/exploration) +"Ub" = (/obj/machinery/door/firedoor/glass,/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/door/airlock/angled_bay/hatch{dir = 4; name = "maintenance access"; stripe_color = "#454545"},/turf/simulated/floor/tiled/steel_ridged,/area/maintenance/stellardelight/deck1/portcent) +"Uc" = (/obj/machinery/computer/ship/navigation/telescreen{pixel_x = 32},/obj/structure/table/bench/sifwooden/padded,/obj/item/device/radio/intercom{dir = 4; pixel_x = 24; pixel_y = -32},/obj/effect/landmark/start/pilot,/turf/simulated/floor/tiled/eris/steel/panels,/area/stellardelight/deck1/pilot) +"Ud" = (/obj/machinery/power/terminal{dir = 8},/obj/structure/cable,/obj/machinery/alarm/angled{dir = 8},/turf/simulated/floor,/area/maintenance/stellardelight/substation/research) +"Ue" = (/obj/machinery/light_switch{pixel_y = 25},/obj/effect/floor_decal/milspec/color/red/half{dir = 9},/turf/simulated/floor/tiled/dark,/area/security/lobby) +"Uf" = (/obj/machinery/newscaster{pixel_x = 29},/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/starboard) +"Ug" = (/obj/machinery/door/firedoor/glass,/obj/structure/window/bay/reinforced,/obj/machinery/door/blast/angled/open{dir = 4; id = "wardenoffice"; name = "Privacy Shutters"},/obj/structure/low_wall/bay/reinforced/red,/turf/simulated/floor,/area/security/warden) +"Uh" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/turf/simulated/floor/wood,/area/library) +"Uj" = (/obj/structure/table/woodentable,/obj/random/paicard,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/carpet/bcarpet,/area/stellardelight/deck1/starboard) +"Uk" = (/obj/structure/cable/yellow{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/effect/floor_decal/steeldecal/steel_decals3{dir = 9},/obj/effect/floor_decal/steeldecal/steel_decals3{dir = 8},/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/aft) +"Ul" = (/obj/structure/cable/pink{icon_state = "1-8"},/obj/structure/cable/pink{icon_state = "4-8"},/turf/simulated/floor/airless,/area/stellardelight/deck1/exterior) +"Um" = (/obj/structure/mirror{pixel_y = 38},/obj/structure/sink{pixel_y = 20},/obj/structure/cable/green{icon_state = "4-8"},/turf/simulated/floor/tiled/white,/area/crew_quarters/toilet) +"Un" = (/obj/structure/cable/green{icon_state = "4-8"},/obj/structure/cable/green{icon_state = "2-4"},/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/turf/simulated/floor/tiled/dark,/area/chapel/main) +"Uo" = (/obj/effect/landmark{name = "lightsout"},/turf/simulated/floor/tiled/milspec,/area/stellardelight/deck1/explobriefing) +"Up" = (/obj/machinery/status_display{pixel_y = 32},/turf/simulated/floor/tiled/milspec,/area/stellardelight/deck1/explobriefing) +"Uq" = (/obj/structure/cable/pink{icon_state = "1-2"},/obj/structure/cable/pink{icon_state = "2-8"},/turf/simulated/floor/airless,/area/stellardelight/deck1/exterior) +"Ur" = (/obj/structure/cable/green{icon_state = "1-4"},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/obj/machinery/recharge_station,/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/starboard) +"Us" = (/obj/structure/bed/chair/comfy/brown,/obj/machinery/newscaster{pixel_y = 28},/obj/effect/landmark/start/librarian,/turf/simulated/floor/wood,/area/library) +"Ut" = (/obj/machinery/door/window/brigdoor/eastleft{name = "Slime Pen 2"; req_access = list(55)},/obj/machinery/door/window/brigdoor/westright{name = "Slime Pen 2"; req_access = list(55)},/obj/machinery/door/blast/angled/open{dir = 4; id = "xenobiopen2"; name = "Pen 2 Blast Doors"},/turf/simulated/floor/reinforced,/area/rnd/xenobiology) +"Uu" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable{icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor,/area/maintenance/stellardelight/deck1/starboardcent) +"Uv" = (/obj/structure/cable/green{color = "#42038a"; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/green{color = "#42038a"; icon_state = "1-4"},/obj/effect/mouse_hole_spawner{dir = 8},/turf/simulated/floor,/area/maintenance/stellardelight/deck1/starboardaft) +"Uw" = (/obj/structure/cable/yellow{icon_state = "1-4"},/turf/simulated/floor,/area/maintenance/stellardelight/deck1/exploration) +"Ux" = (/obj/machinery/portable_atmospherics/canister/carbon_dioxide,/obj/machinery/camera/network/research{dir = 4},/turf/simulated/floor/tiled,/area/rnd/storage) +"Uy" = (/obj/item/weapon/bikehorn/rubberducky,/turf/simulated/floor/tiled/steel_ridged,/area/stellardelight/deck1/shower) +"Uz" = (/obj/structure/bookcase/bookcart,/turf/simulated/floor/carpet,/area/library) +"UA" = (/obj/machinery/r_n_d/destructive_analyzer,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/dark,/area/rnd/research) +"UB" = (/obj/machinery/power/apc/angled{cell_type = /obj/item/weapon/cell/super; dir = 1; name = "night shift APC"; nightshift_setting = 2},/obj/structure/cable{icon_state = "0-4"},/obj/structure/closet/emcloset,/turf/simulated/floor,/area/maintenance/stellardelight/deck1/exploration) +"UD" = (/obj/structure/cable/green{color = "#42038a"; icon_state = "1-2"},/turf/simulated/floor/tiled/dark,/area/rnd/research) +"UE" = (/obj/structure/cable/green{color = "#42038a"; icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/turf/simulated/floor/tiled/steel_grid,/area/rnd/research) +"UF" = (/obj/machinery/biogenerator,/turf/simulated/floor/tiled/eris,/area/rnd/xenobiology/xenoflora) +"UG" = (/obj/effect/floor_decal/industrial/warning{dir = 9},/obj/machinery/light{dir = 8},/turf/simulated/floor/reinforced,/area/stellardelight/deck1/shuttlebay) +"UH" = (/turf/simulated/floor/tiled/dark,/area/chapel/main) +"UI" = (/obj/structure/cable/pink{icon_state = "2-8"},/obj/structure/cable/pink{icon_state = "2-4"},/obj/structure/cable/pink{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/turf/simulated/floor/tiled/dark,/area/security/security_cell_hallway) +"UJ" = (/obj/effect/floor_decal/industrial/warning{dir = 6},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/obj/effect/landmark/vermin,/turf/simulated/floor/reinforced,/area/stellardelight/deck1/shuttlebay) +"UK" = (/obj/structure/cable/pink{icon_state = "1-8"},/obj/structure/cable/pink{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/turf/simulated/floor/tiled/dark,/area/security/security_cell_hallway) +"UL" = (/obj/structure/cable/orange{icon_state = "1-2"},/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/angled_bay/hatch{door_color = "#e6ab22"; name = "Atmospherics Substation"; req_one_access = list(10); stripe_color = "#e6ab22"},/turf/simulated/floor/tiled/steel_ridged,/area/maintenance/stellardelight/substation/atmospherics) +"UM" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/obj/structure/table/rack,/obj/random/action_figure,/obj/random/maintenance/security,/obj/random/maintenance/clean,/obj/random/maintenance,/obj/random/snack,/turf/simulated/floor,/area/maintenance/stellardelight/deck1/starboardcent) +"UN" = (/obj/structure/table/steel,/obj/item/device/electronic_assembly/large/default,/obj/machinery/light{dir = 8},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/turf/simulated/floor/tiled/techfloor,/area/rnd/workshop) +"UP" = (/obj/machinery/light/small{dir = 1},/obj/random/maintenance/security,/obj/random/maintenance/security,/obj/random/maintenance/security,/obj/random/maintenance/security,/obj/structure/table/rack,/obj/random/contraband,/obj/random/action_figure,/turf/simulated/floor,/area/maintenance/security_port) +"UQ" = (/obj/structure/cable{icon_state = "1-4"},/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor,/area/maintenance/stellardelight/deck1/exploration) +"UR" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/item/device/radio/intercom{dir = 4; pixel_x = 24},/obj/machinery/portable_atmospherics/canister/oxygen,/turf/simulated/floor/tiled/milspec,/area/stellardelight/deck1/exploequipment) +"US" = (/obj/structure/table/rack/shelf/steel,/obj/item/clothing/glasses/hud/security,/obj/item/clothing/glasses/hud/security,/obj/item/clothing/glasses/hud/security,/turf/simulated/floor/tiled/dark,/area/security/security_equiptment_storage) +"UT" = (/obj/structure/cable/green{color = "#42038a"; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable/green{color = "#42038a"; icon_state = "2-4"},/turf/simulated/floor/tiled/milspec,/area/stellardelight/deck1/exploration) +"UU" = (/obj/effect/floor_decal/industrial/warning{dir = 8},/obj/structure/cable/yellow{icon_state = "1-4"},/turf/simulated/floor/reinforced,/area/stellardelight/deck1/shuttlebay) +"UV" = (/obj/machinery/button/remote/blast_door{dir = 1; id = "xenobiopen1"; name = "Pen 1 Containment"; pixel_x = -30; pixel_y = 8; req_access = list(55)},/obj/machinery/button/remote/blast_door{id = "xenobiopen3"; name = "Pen 3 Containment"; pixel_x = -31; pixel_y = -8; req_access = list(55)},/obj/machinery/button/remote/blast_door{dir = 8; id = "xenobiodiv1"; name = "Divider 1 Blast Doors"; pixel_x = -39; req_access = list(55)},/obj/machinery/light/floortube{dir = 8; pixel_x = -6},/turf/simulated/floor/tiled/dark,/area/rnd/xenobiology) +"UW" = (/obj/effect/floor_decal/industrial/outline,/turf/simulated/floor/tiled/eris/steel/gray_platform,/area/stellardelight/deck1/exploshuttle) +"UX" = (/obj/machinery/door/firedoor/glass,/obj/structure/cable/green{color = "#42038a"; icon_state = "1-2"},/obj/machinery/door/airlock/angled_bay/hatch{door_color = "#e6ab22"; name = "Research Substation"; req_one_access = list(10); stripe_color = "#e6ab22"},/turf/simulated/floor/tiled/steel_ridged,/area/maintenance/stellardelight/substation/research) +"UY" = (/obj/machinery/suit_cycler/engineering{req_access = null},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/turf/simulated/floor/tiled/eris/white/gray_platform,/area/gateway) +"UZ" = (/obj/structure/cable{icon_state = "2-8"},/turf/simulated/floor,/area/maintenance/stellardelight/substation/research) +"Va" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/turf/simulated/floor/tiled/techfloor,/area/medical/morgue) +"Vb" = (/turf/simulated/wall/bay/steel,/area/maintenance/stellardelight/substation/medical) +"Vc" = (/obj/structure/cable/pink{icon_state = "1-2"},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/turf/simulated/floor/tiled/dark,/area/security/lobby) +"Vd" = (/obj/structure/cable/green{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/machinery/light_switch{dir = 8; pixel_x = 24; pixel_y = 32},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 10},/obj/effect/floor_decal/steeldecal/steel_decals4,/turf/simulated/floor/tiled/eris/steel/panels,/area/stellardelight/deck1/pilot) +"Ve" = (/turf/simulated/wall/bay/r_wall/steel,/area/prison/cell_block) +"Vf" = (/obj/structure/disposalpipe/trunk{dir = 8},/obj/machinery/disposal/wall{dir = 8},/turf/simulated/floor/tiled/techfloor,/area/stellardelight/deck1/starboard) +"Vg" = (/obj/structure/cable/green{color = "#42038a"; icon_state = "4-8"},/turf/simulated/wall/bay/r_wall/steel,/area/rnd/xenobiology) +"Vh" = (/turf/simulated/wall/bay/r_wall/steel,/area/stellardelight/deck1/pilot) +"Vi" = (/obj/machinery/door/firedoor/glass,/obj/structure/window/bay/reinforced,/obj/structure/low_wall/bay/reinforced/steel,/turf/simulated/floor,/area/maintenance/stellardelight/deck1/exploration) +"Vl" = (/obj/machinery/door/window/brigdoor/eastleft{name = "Slime Pen 6"; req_access = list(55)},/obj/machinery/door/window/brigdoor/westright{name = "Slime Pen 6"; req_access = list(55)},/obj/machinery/door/blast/angled/open{dir = 4; id = "xenobiopen6"; name = "Pen 6 Blast Doors"},/turf/simulated/floor/reinforced,/area/rnd/xenobiology) +"Vm" = (/obj/structure/cable/yellow{icon_state = "2-8"},/obj/effect/shuttle_landmark/shuttle_initializer/mining,/turf/simulated/floor/tiled/eris/steel/brown_platform,/area/stellardelight/deck1/miningshuttle) +"Vn" = (/obj/machinery/door/blast/angled,/turf/simulated/floor,/area/stellardelight/deck1/shuttlebay) +"Vo" = (/obj/machinery/power/apc/angled{dir = 1},/obj/structure/cable/green{color = "#42038a"; icon_state = "0-2"},/obj/machinery/atmospherics/unary/vent_pump/on,/turf/simulated/floor/tiled/milspec,/area/stellardelight/deck1/exploequipment) +"Vp" = (/obj/structure/bookcase{name = "bookcase (Reference)"},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/obj/structure/sign/painting/library_secure{pixel_x = 30},/obj/item/weapon/book/bundle/custom_library/reference/ThermodynamicReactionsandResearch,/obj/item/weapon/book/bundle/custom_library/reference/fbpandprostheticmaintenance,/obj/item/weapon/book/bundle/custom_library/reference/recyclingprocedures,/obj/item/weapon/book/custom_library/reference/fistfulofd6splayersguide,/obj/item/weapon/book/custom_library/reference/securityguidelines,/obj/item/weapon/book/custom_library/reference/spacesurvivalguidedespressurization,/obj/item/weapon/book/manual/anomaly_spectroscopy,/obj/item/weapon/book/manual/anomaly_testing,/obj/item/weapon/book/manual/atmospipes,/obj/item/weapon/book/manual/bar_guide,/obj/item/weapon/book/manual/barman_recipes,/obj/item/weapon/book/manual/casino,/obj/item/weapon/book/manual/chef_recipes,/obj/item/weapon/book/manual/command_guide,/obj/item/weapon/book/manual/cook_guide,/obj/item/weapon/book/manual/detective,/obj/item/weapon/book/manual/engineering_construction,/obj/item/weapon/book/manual/engineering_guide,/obj/item/weapon/book/manual/engineering_hacking,/obj/item/weapon/book/manual/engineering_particle_accelerator,/obj/item/weapon/book/manual/engineering_singularity_safety,/obj/item/weapon/book/manual/evaguide,/obj/item/weapon/book/manual/excavation,/obj/item/weapon/book/manual/hydroponics_pod_people,/obj/item/weapon/book/manual/mass_spectrometry,/obj/item/weapon/book/manual/materials_chemistry_analysis,/obj/item/weapon/book/manual/medical_cloning,/obj/item/weapon/book/manual/medical_diagnostics_manual,/obj/item/weapon/book/manual/research_and_development,/obj/item/weapon/book/manual/resleeving,/obj/item/weapon/book/manual/ripley_build_and_repair,/obj/item/weapon/book/manual/robotics_cyborgs,/obj/item/weapon/book/manual/robotics_manual,/obj/item/weapon/book/manual/rust_engine,/obj/item/weapon/book/manual/security_space_law,/obj/item/weapon/book/manual/standard_operating_procedure,/obj/item/weapon/book/manual/stasis,/obj/item/weapon/book/manual/supermatter_engine,/obj/item/weapon/book/manual/tesla_engine,/obj/item/weapon/book/manual/virology,/obj/effect/landmark/vermin,/turf/simulated/floor/wood,/area/library) +"Vq" = (/obj/machinery/computer/centrifuge,/obj/machinery/embedded_controller/radio/airlock/access_controller{dir = 4; id_tag = "virology_airlock_control"; name = "Virology Access Console"; pixel_x = -28; pixel_y = -16; tag_exterior_door = "virology_airlock_exterior"; tag_interior_door = "virology_airlock_interior"},/obj/machinery/camera/network/medbay{dir = 4},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/virology) +"Vr" = (/obj/machinery/camera/network/security{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals6{dir = 5},/turf/simulated/floor/tiled/dark,/area/security/lobby) +"Vs" = (/obj/structure/cable/white{icon_state = "2-8"},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/stellardelight/deck1/resleeving) +"Vt" = (/obj/structure/cable/white{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/machinery/hologram/holopad,/turf/simulated/floor/tiled/techfloor,/area/medical/morgue) +"Vu" = (/obj/machinery/door/firedoor/glass,/obj/structure/window/bay/reinforced,/obj/structure/low_wall/bay/reinforced/steel,/turf/simulated/floor,/area/maintenance/stellardelight/deck1/portfore) +"Vv" = (/obj/machinery/button/remote/airlock{id = "dorm7"; name = "Room 7 Lock"; pixel_y = 24; specialfunctions = 4},/obj/machinery/power/apc/angled{dir = 8; name = "night shift APC"; nightshift_setting = 2},/obj/structure/cable/green{icon_state = "0-4"},/obj/structure/closet/crate/bin{anchored = 1},/turf/simulated/floor/carpet/purcarpet,/area/stellardelight/deck1/dorms/dorm7) +"Vw" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/techfloor,/area/stellardelight/deck1/port) +"Vx" = (/obj/structure/cable/pink{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/effect/floor_decal/milspec/color/black,/turf/simulated/floor/tiled/dark,/area/security/security_cell_hallway) +"Vy" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/turf/simulated/floor/carpet/purcarpet,/area/stellardelight/deck1/dorms/dorm3) +"Vz" = (/obj/structure/cable/green{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/effect/floor_decal/steeldecal/steel_decals6{dir = 6},/obj/item/device/radio/intercom{dir = 8; pixel_x = -24},/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/starboard) +"VA" = (/obj/machinery/door/firedoor/glass,/obj/structure/cable/white{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/door/airlock/angled_bay/standard/color{dir = 8; door_color = "#ffffff"; name = "EMT Bay"; req_access = list(5); stripe_color = "#5a96bb"},/turf/simulated/floor/tiled/steel_ridged,/area/stellardelight/deck1/paramedic) +"VB" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/cable{icon_state = "2-8"},/turf/simulated/floor,/area/maintenance/stellardelight/substation/security) +"VC" = (/obj/machinery/power/apc/angled{dir = 1},/obj/structure/cable/white{icon_state = "0-4"},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/stellardelight/deck1/resleeving) +"VD" = (/obj/structure/railing/grey{dir = 8},/obj/structure/sign/directions/bar{pixel_x = -32; pixel_y = 6},/obj/structure/sign/directions/command{pixel_x = -32},/obj/structure/sign/directions/medical{pixel_x = -32; pixel_y = -6},/obj/structure/sign/directions/evac{pixel_x = -32; pixel_y = -12},/obj/structure/sign/directions/stairs_up{pixel_x = -32; pixel_y = 12},/turf/simulated/floor,/area/stellardelight/deck1/fore) +"VE" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/obj/structure/table/standard,/obj/machinery/recharger{pixel_y = 5},/turf/simulated/floor/tiled/eris/steel/cargo,/area/stellardelight/deck1/mining) +"VF" = (/obj/structure/closet/secure_closet/security,/obj/item/device/holowarrant,/obj/item/clothing/accessory/badge/holo/cord,/obj/item/clothing/accessory/badge/holo/cord,/obj/machinery/light{dir = 4},/obj/effect/floor_decal/milspec/color/red,/obj/item/device/ticket_printer,/turf/simulated/floor/tiled/dark,/area/security/security_lockerroom) +"VG" = (/obj/effect/floor_decal/milspec/color/red/half{dir = 4},/turf/simulated/floor/tiled/dark,/area/security/security_lockerroom) +"VH" = (/obj/structure/table/woodentable,/obj/machinery/alarm/angled{dir = 8},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/turf/simulated/floor/carpet,/area/stellardelight/deck1/dorms/dorm5) +"VI" = (/obj/structure/table/rack/shelf/steel,/obj/item/clothing/suit/armor/vest/wolftaur{pixel_x = 4; pixel_y = 7},/obj/item/clothing/suit/armor/vest/wolftaur{pixel_x = -8; pixel_y = -4},/obj/item/weapon/storage/lockbox,/turf/simulated/floor/tiled/dark,/area/security/security_equiptment_storage) +"VJ" = (/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled/dark,/area/security/armoury) +"VK" = (/obj/structure/table/steel,/obj/random/maintenance/security,/obj/random/maintenance/security,/obj/random/maintenance,/obj/random/medical,/obj/random/drinkbottle,/turf/simulated/floor,/area/maintenance/stellardelight/deck1/starboardfore) +"VL" = (/obj/effect/floor_decal/chapel{dir = 1},/obj/structure/cable/green{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/dark,/area/chapel/main) +"VM" = (/obj/structure/cable/pink{icon_state = "4-8"},/turf/simulated/wall/bay/r_wall/black,/area/chapel/chapel_morgue) +"VN" = (/obj/structure/cable/pink{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/cyan,/obj/effect/floor_decal/milspec/color/black,/turf/simulated/floor/tiled/dark,/area/security/armoury) +"VP" = (/obj/structure/cable/green{icon_state = "2-8"},/turf/simulated/wall/bay/r_wall/steel,/area/crew_quarters/toilet) +"VQ" = (/obj/structure/shuttle/engine/propulsion,/turf/simulated/floor/reinforced,/area/stellardelight/deck1/miningshuttle) +"VR" = (/obj/structure/bed/chair/comfy/brown{dir = 8},/obj/effect/landmark/start/visitor,/turf/simulated/floor/carpet/bcarpet,/area/stellardelight/deck1/starboard) +"VS" = (/obj/machinery/gateway{dir = 1},/obj/machinery/camera/network/command,/turf/simulated/floor/tiled/eris/white/gray_platform,/area/gateway) +"VT" = (/obj/machinery/conveyor{dir = 8; id = "miningops"},/obj/structure/plasticflaps/mining,/turf/simulated/floor/tiled/eris/steel/cargo,/area/stellardelight/deck1/oreprocessing) +"VV" = (/turf/simulated/wall/bay/red,/area/chapel/office) +"VW" = (/obj/machinery/vending/wardrobe/detdrobe,/obj/machinery/light{dir = 8},/obj/effect/floor_decal/milspec/color/red,/turf/simulated/floor/tiled/dark,/area/security/security_lockerroom) +"VX" = (/obj/machinery/alarm/angled{dir = 8},/turf/simulated/floor/tiled/eris/steel/brown_platform,/area/stellardelight/deck1/miningshuttle) +"VY" = (/obj/structure/table/reinforced,/turf/simulated/floor/tiled/eris/steel/brown_platform,/area/stellardelight/deck1/miningshuttle) +"VZ" = (/obj/structure/table/woodentable,/obj/structure/cable/green{icon_state = "0-2"},/obj/machinery/power/apc/angled{dir = 1; name = "night shift APC"; nightshift_setting = 2},/obj/machinery/recharger{pixel_y = 5},/turf/simulated/floor/wood,/area/library) +"Wa" = (/obj/machinery/button/remote/airlock{id = "dorm2"; name = "Room 2 Lock"; pixel_y = 24; specialfunctions = 4},/obj/machinery/power/apc/angled{dir = 4; name = "night shift APC"; nightshift_setting = 2},/obj/structure/cable/green{icon_state = "0-8"},/obj/structure/closet/crate/bin{anchored = 1},/turf/simulated/floor/carpet/purcarpet,/area/stellardelight/deck1/dorms/dorm2) +"Wb" = (/obj/effect/floor_decal/industrial/warning/full,/obj/structure/cable/green{color = "#42038a"},/obj/structure/cable/green{color = "#42038a"; icon_state = "0-4"},/obj/machinery/power/pointdefense{id_tag = "sd_pd"},/turf/simulated/floor/airless,/area/stellardelight/deck1/exterior) +"Wc" = (/obj/machinery/smartfridge/produce,/turf/simulated/wall/bay/r_wall/purple,/area/rnd/xenobiology/xenoflora_storage) +"Wd" = (/obj/machinery/power/apc/angled{dir = 1},/obj/structure/cable/yellow{icon_state = "0-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/ore_box,/turf/simulated/floor/tiled/eris/steel/cargo,/area/stellardelight/deck1/shuttlebay) +"We" = (/obj/structure/cable/green{color = "#42038a"; icon_state = "1-4"},/obj/effect/landmark/start/xenobot,/turf/simulated/floor/tiled/eris,/area/rnd/xenobiology/xenoflora) +"Wf" = (/obj/structure/table/woodentable,/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/random/coin/sometimes,/obj/item/weapon/material/ashtray/glass,/turf/simulated/floor/carpet/bcarpet,/area/stellardelight/deck1/port) +"Wg" = (/obj/structure/cable{icon_state = "1-4"},/obj/structure/cable{icon_state = "2-4"},/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/turf/simulated/floor,/area/maintenance/stellardelight/deck1/portcent) +"Wh" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/light/small{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/table/rack,/obj/random/maintenance/security,/obj/random/maintenance/security,/obj/random/maintenance/research,/obj/random/contraband,/turf/simulated/floor,/area/maintenance/stellardelight/deck1/portcent) +"Wi" = (/obj/machinery/camera/network/research/xenobio{dir = 9; network = list("Xenobiology")},/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor/reinforced,/area/rnd/xenobiology) +"Wj" = (/obj/effect/floor_decal/milspec/color/emerald/half{dir = 4},/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/starboard) +"Wk" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/turf/simulated/floor/carpet,/area/stellardelight/deck1/dorms/dorm4) +"Wl" = (/obj/structure/bed/chair/comfy/black{dir = 1},/obj/machinery/light/small{dir = 4},/turf/simulated/floor/carpet,/area/stellardelight/deck1/dorms/dorm8) +"Wm" = (/obj/structure/sink{dir = 4; pixel_x = 11},/turf/simulated/floor/tiled/eris,/area/rnd/xenobiology/xenoflora) +"Wn" = (/obj/machinery/door/firedoor/glass,/obj/structure/cable/green{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/door/airlock/angled_bay/standard/color{door_color = "#9c9c9c"; fill_color = "#5c5c5c"; id_tag = "dorm7"; name = "Room 7"; stripe_color = "#89bd66"},/turf/simulated/floor/tiled/steel_ridged,/area/stellardelight/deck1/dorms/dorm7) +"Wo" = (/obj/structure/bed/chair/office/dark{dir = 8},/obj/effect/landmark/start/scientist,/turf/simulated/floor/tiled/steel_grid,/area/rnd/research) +"Wp" = (/obj/structure/bed/chair/sofa/pew/left{dir = 1},/obj/structure/sign/painting/chapel_secure{pixel_y = -32},/obj/effect/landmark/start/visitor,/turf/simulated/floor/tiled/dark,/area/chapel/main) +"Wq" = (/obj/structure/cable/green{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/light{dir = 8},/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/starboard) +"Wr" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/dark,/area/chapel/chapel_morgue) +"Ws" = (/obj/machinery/camera/network/halls{dir = 1},/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/starboard) +"Wt" = (/obj/effect/floor_decal/industrial/warning/corner,/turf/simulated/floor/tiled/eris/steel/cargo,/area/stellardelight/deck1/oreprocessing) +"Wu" = (/turf/simulated/wall/bay/r_wall/steel,/area/maintenance/stellardelight/deck1/starboardaft) +"Wv" = (/obj/machinery/portable_atmospherics/canister/oxygen,/obj/effect/floor_decal/industrial/warning{dir = 4},/turf/simulated/floor/tiled,/area/rnd/storage) +"Ww" = (/obj/structure/cable/green{color = "#42038a"; icon_state = "4-8"},/turf/simulated/wall/bay/r_wall/steel,/area/maintenance/stellardelight/deck1/starboardaft) +"Wx" = (/obj/structure/cable/green{color = "#42038a"; icon_state = "2-8"},/turf/simulated/floor,/area/maintenance/stellardelight/deck1/exploration) +"Wy" = (/obj/structure/cable/green{icon_state = "4-8"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/turf/simulated/floor/tiled/techfloor,/area/stellardelight/deck1/starboard) +"Wz" = (/obj/structure/cable/white{icon_state = "1-2"},/obj/machinery/camera/network/halls{dir = 4},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/port) +"WA" = (/obj/machinery/conveyor_switch/oneway{id = "miningops"; name = "Mining Ops conveyor switch"; pixel_x = 10; pixel_y = 5; req_access = list(48); req_one_access = list(48)},/turf/simulated/floor/tiled/eris/steel/cargo,/area/stellardelight/deck1/oreprocessing) +"WB" = (/obj/machinery/light{dir = 4},/turf/simulated/floor/tiled/steel_grid,/area/stellardelight/deck1/fore) +"WC" = (/obj/structure/table/rack,/obj/random/maintenance/research,/obj/random/maintenance/security,/obj/random/maintenance/security,/obj/random/maintenance/clean,/obj/random/maintenance,/turf/simulated/floor,/area/maintenance/stellardelight/deck1/starboardcent) +"WD" = (/obj/structure/cable/pink{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/dark,/area/security/security_lockerroom) +"WE" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/carpet,/area/stellardelight/deck1/dorms/dorm5) +"WF" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/disposalpipe/junction{dir = 4},/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/port) +"WG" = (/obj/machinery/door/firedoor/glass,/obj/structure/window/bay/reinforced,/obj/structure/low_wall/bay/reinforced/red,/turf/simulated/floor,/area/prison/cell_block/B) +"WH" = (/obj/structure/bed/chair/backed_red{dir = 4},/turf/simulated/floor/tiled/milspec,/area/stellardelight/deck1/exploration) +"WJ" = (/obj/structure/table/woodentable,/obj/machinery/atmospherics/unary/vent_scrubber/on,/obj/structure/sign/painting/library_secure{pixel_y = 30},/obj/machinery/photocopier/faxmachine{department = "Library Conference Room"},/turf/simulated/floor/wood,/area/library) +"WK" = (/obj/structure/cable/green{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/port) +"WL" = (/obj/structure/cable/pink{icon_state = "4-8"},/turf/simulated/wall/bay/r_wall/steel,/area/chapel/chapel_morgue) +"WM" = (/turf/simulated/wall/bay/r_wall/purple,/area/stellardelight/deck1/explobriefing) +"WP" = (/obj/machinery/conveyor{dir = 4; id = "miningops"},/obj/machinery/mineral/output,/turf/simulated/floor/tiled/eris/steel/cargo,/area/stellardelight/deck1/oreprocessing) +"WQ" = (/obj/structure/cable/yellow{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/item/device/radio/intercom{dir = 1; pixel_y = 24},/obj/machinery/mining/brace,/turf/simulated/floor/tiled/eris/steel/cargo,/area/stellardelight/deck1/shuttlebay) +"WR" = (/turf/simulated/wall/bay/purple,/area/rnd/research) +"WS" = (/obj/machinery/alarm/angled{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable/green{icon_state = "1-2"},/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/aft) +"WT" = (/obj/structure/table/reinforced,/obj/machinery/cell_charger,/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/obj/item/weapon/tank/jetpack/carbondioxide,/obj/item/weapon/tank/jetpack/carbondioxide,/obj/item/weapon/tank/jetpack/carbondioxide,/obj/item/weapon/tank/jetpack/carbondioxide,/obj/effect/landmark/vermin,/turf/simulated/floor/tiled/eris/white/gray_platform,/area/gateway) +"WU" = (/obj/effect/floor_decal/milspec/color/emerald/half{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4,/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 10},/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/starboard) +"WW" = (/obj/structure/table/woodentable,/obj/machinery/light/small,/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/turf/simulated/floor/carpet/purcarpet,/area/stellardelight/deck1/dorms/dorm6) +"WX" = (/obj/machinery/atmospherics/pipe/manifold/hidden{dir = 1},/turf/simulated/floor/bluegrid{name = "Server Base"; nitrogen = 500; oxygen = 0; temperature = 80},/area/stellardelight/deck1/researchserver) +"WY" = (/obj/structure/cable{icon_state = "1-2"},/turf/simulated/floor/tiled/eris/white/gray_platform,/area/gateway) +"WZ" = (/obj/machinery/vending/tool,/turf/simulated/floor/tiled/eris,/area/stellardelight/deck1/researchhall) +"Xa" = (/obj/machinery/computer/ship/navigation/telescreen{pixel_x = -32; pixel_y = -5},/obj/structure/cable/yellow{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/eris/steel/cargo,/area/stellardelight/deck1/mining) +"Xb" = (/obj/structure/cable{icon_state = "2-8"},/obj/machinery/camera/network/command{dir = 9},/turf/simulated/floor/tiled/eris/white/gray_platform,/area/gateway) +"Xc" = (/turf/simulated/wall/bay/r_wall/steel,/area/crew_quarters/toilet) +"Xd" = (/obj/machinery/alarm/angled,/obj/structure/closet/crate/bin{anchored = 1},/turf/simulated/floor/tiled/white,/area/security/detectives_office) +"Xe" = (/obj/structure/cable/yellow{icon_state = "4-8"},/obj/machinery/alarm/angled,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/aft) +"Xf" = (/obj/structure/cable/green{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 10},/obj/effect/floor_decal/steeldecal/steel_decals4,/turf/simulated/floor/tiled/dark,/area/chapel/main) +"Xg" = (/obj/structure/cable/orange{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/universal,/obj/structure/sign/vacuum{pixel_x = -32},/turf/simulated/floor,/area/maintenance/stellardelight/deck1/exploration) +"Xh" = (/obj/structure/table/steel_reinforced,/obj/machinery/door/firedoor/glass,/obj/machinery/door/window/brigdoor/eastleft{name = "Warden's Desk"; req_access = list(3)},/obj/machinery/door/blast/angled/open{dir = 4; id = "wardenoffice"; name = "Privacy Shutters"},/turf/simulated/floor/tiled/dark,/area/security/warden) +"Xi" = (/obj/machinery/light/small,/turf/simulated/floor/tiled/eris/white/cargo,/area/medical/virology) +"Xj" = (/obj/structure/disposalpipe/trunk{dir = 2},/obj/machinery/disposal/wall{dir = 4; pixel_x = 10},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/wood,/area/library) +"Xk" = (/obj/structure/cable/pink{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 6},/turf/simulated/floor/tiled/dark,/area/security/lobby) +"Xl" = (/obj/effect/floor_decal/industrial/warning{dir = 5},/obj/structure/cable/green{color = "#42038a"; icon_state = "2-8"},/turf/simulated/floor/reinforced,/area/stellardelight/deck1/shuttlebay) +"Xm" = (/obj/machinery/door/firedoor/glass,/obj/structure/cable/pink{icon_state = "1-2"},/obj/machinery/door/airlock/angled_bay/hatch{door_color = "#e6ab22"; name = "Security Substation"; req_one_access = list(10); stripe_color = "#e6ab22"},/turf/simulated/floor/tiled/steel_ridged,/area/maintenance/stellardelight/substation/security) +"Xn" = (/obj/structure/table/steel_reinforced,/obj/structure/cable/green{color = "#42038a"; icon_state = "0-4"},/obj/machinery/power/apc/angled{dir = 8; name = "night shift APC"; nightshift_setting = 2},/obj/machinery/camera/network/research,/turf/simulated/floor/tiled/eris,/area/stellardelight/deck1/researchequip) +"Xo" = (/obj/machinery/power/terminal{dir = 4},/obj/structure/cable,/obj/machinery/alarm/angled{dir = 4},/turf/simulated/floor,/area/maintenance/stellardelight/substation/medical) +"Xp" = (/obj/structure/table/steel,/obj/item/device/integrated_electronics/debugger{pixel_x = -5},/obj/item/device/integrated_electronics/wirer{pixel_x = 5},/obj/machinery/power/apc/angled{dir = 1},/obj/structure/cable/green{color = "#42038a"; icon_state = "0-4"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/techfloor,/area/rnd/workshop) +"Xq" = (/obj/structure/cable/yellow{icon_state = "4-8"},/turf/simulated/floor,/area/maintenance/stellardelight/deck1/exploration) +"Xr" = (/obj/machinery/door/firedoor/glass,/obj/machinery/button/remote/blast_door{id = "mechbay"; name = "Mech Bay"; pixel_y = 25; req_access = list(29,47)},/obj/machinery/door/blast/angled{dir = 4; id = "mechbay"; name = "Mech Bay"},/turf/simulated/floor/tiled/steel_ridged,/area/assembly/robotics) +"Xs" = (/obj/structure/cable{icon_state = "1-8"},/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/turf/simulated/floor,/area/maintenance/stellardelight/deck1/portcent) +"Xt" = (/obj/structure/sink{dir = 8; pixel_x = -12; pixel_y = 2},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/turf/simulated/floor/tiled/eris,/area/rnd/xenobiology/xenoflora) +"Xu" = (/obj/structure/cable/green{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/aft) +"Xv" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/obj/structure/reagent_dispensers/foam,/turf/simulated/floor,/area/maintenance/stellardelight/deck1/starboardcent) +"Xw" = (/obj/machinery/power/pointdefense{id_tag = "sd_pd"},/obj/effect/floor_decal/industrial/warning/full,/obj/structure/cable/pink,/obj/structure/cable/pink{icon_state = "0-2"},/turf/simulated/floor/airless,/area/stellardelight/deck1/exterior) +"Xx" = (/obj/structure/cable/green{icon_state = "1-4"},/obj/structure/cable/green{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/effect/floor_decal/steeldecal/steel_decals3{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals3{dir = 10},/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/port) +"Xz" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/turf/simulated/floor,/area/maintenance/stellardelight/deck1/portaft) +"XA" = (/obj/structure/cable/green{color = "#42038a"; icon_state = "1-2"},/obj/structure/cable/green{color = "#42038a"; icon_state = "1-8"},/turf/simulated/floor/airless,/area/stellardelight/deck1/exterior) +"XB" = (/turf/simulated/wall/bay/r_wall/red,/area/security/security_equiptment_storage) +"XC" = (/obj/effect/floor_decal/milspec/color/red/half{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals6{dir = 9},/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/fore) +"XD" = (/obj/machinery/door/firedoor/glass,/obj/structure/cable/green{color = "#42038a"; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/door/airlock/angled_bay/hatch{dir = 4; door_color = "#ffffff"; name = "maintenance access"; req_one_access = null; stripe_color = "#5a19a8"},/turf/simulated/floor/tiled/steel_ridged,/area/stellardelight/deck1/explobriefing) +"XE" = (/obj/structure/table/reinforced,/obj/item/roller,/obj/machinery/light{dir = 4},/turf/simulated/floor/tiled/eris/white/gray_platform,/area/gateway) +"XF" = (/obj/effect/floor_decal/milspec/color/emerald/corner,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/aft) +"XG" = (/obj/structure/flora/pottedplant/dead,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/firealarm/angled{dir = 4},/turf/simulated/floor/tiled/techfloor,/area/stellardelight/deck1/researchserver) +"XH" = (/obj/machinery/status_display{pixel_y = 32},/obj/effect/floor_decal/steeldecal/steel_decals6{dir = 1},/turf/simulated/floor/tiled/milspec,/area/stellardelight/deck1/exploration) +"XJ" = (/obj/structure/disposalpipe/segment,/obj/effect/floor_decal/milspec/color/emerald/half{dir = 4},/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/aft) +"XL" = (/obj/machinery/alarm/angled{dir = 4},/obj/structure/closet/secure_closet/brig{id = "Cell A"},/obj/effect/floor_decal/milspec/color/orange/half{dir = 10},/turf/simulated/floor/tiled/dark,/area/prison/cell_block) +"XM" = (/obj/structure/cable/green{color = "#42038a"; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/turf/simulated/floor,/area/maintenance/stellardelight/deck1/exploration) +"XN" = (/obj/item/device/radio/intercom{dir = 4; pixel_x = 24},/obj/effect/landmark/start/scientist,/turf/simulated/floor/tiled/eris,/area/stellardelight/deck1/researchequip) +"XO" = (/obj/machinery/door/firedoor/glass,/obj/structure/cable/green{color = "#42038a"; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/door/airlock/angled_bay/standard/glass{door_color = "#ffffff"; name = "Mech Bay"; req_access = list(29,47); stripe_color = "#5a19a8"},/turf/simulated/floor/tiled/steel_ridged,/area/assembly/robotics) +"XP" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/obj/machinery/light{dir = 8},/turf/simulated/floor/tiled/white,/area/crew_quarters/toilet) +"XQ" = (/obj/structure/disposalpipe/trunk{dir = 4},/obj/structure/disposaloutlet,/obj/machinery/light{dir = 1},/turf/simulated/floor/reinforced,/area/rnd/xenobiology) +"XR" = (/turf/simulated/wall/bay/steel,/area/maintenance/stellardelight/substation/research) +"XS" = (/obj/machinery/portable_atmospherics/canister/nitrogen,/obj/effect/floor_decal/industrial/warning{dir = 1},/turf/simulated/floor/tiled,/area/rnd/storage) +"XT" = (/obj/machinery/portable_atmospherics/hydroponics,/turf/simulated/floor/tiled/eris,/area/rnd/xenobiology/xenoflora) +"XU" = (/obj/machinery/light{dir = 1},/obj/structure/cable/green{icon_state = "2-8"},/obj/random/vendordrink,/obj/machinery/atmospherics/unary/vent_pump/on,/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/port) +"XV" = (/obj/machinery/door/firedoor/glass,/obj/structure/window/bay/reinforced,/obj/structure/low_wall/bay/reinforced/purple,/turf/simulated/floor,/area/stellardelight/deck1/exploration) +"XW" = (/obj/structure/cable/yellow{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/camera/network/mining,/obj/machinery/mining/drill/loaded,/turf/simulated/floor/tiled/eris/steel/cargo,/area/stellardelight/deck1/shuttlebay) +"XX" = (/obj/structure/table/woodentable,/obj/item/device/flashlight/lamp/green{pixel_x = 1; pixel_y = 5},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/wood,/area/library) +"XY" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/aft) +"XZ" = (/obj/machinery/light{dir = 8},/turf/simulated/floor/tiled/dark,/area/security/warden) +"Ya" = (/obj/structure/cable/pink{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/white,/area/security/detectives_office) +"Yb" = (/obj/machinery/light,/turf/simulated/floor/bluegrid,/area/assembly/robotics) +"Yc" = (/obj/machinery/door/window/brigdoor/eastleft{name = "Slime Pen 5"; req_access = list(55)},/obj/machinery/door/window/brigdoor/westright{name = "Slime Pen 5"; req_access = list(55)},/obj/machinery/door/blast/angled/open{dir = 4; id = "xenobiopen5"; name = "Pen 5 Blast Doors"},/turf/simulated/floor/reinforced,/area/rnd/xenobiology) +"Yd" = (/obj/structure/cable/pink{icon_state = "1-8"},/turf/simulated/wall/bay/r_wall/steel,/area/maintenance/stellardelight/substation/security) +"Ye" = (/obj/structure/closet/secure_closet/hydroponics/sci{req_access = list(77)},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/obj/structure/cable/green{color = "#42038a"; icon_state = "1-2"},/obj/machinery/alarm/angled{dir = 4},/turf/simulated/floor/tiled/eris,/area/stellardelight/deck1/researchhall) +"Yf" = (/obj/structure/window/reinforced{dir = 8; pixel_x = -4},/obj/structure/cable/white{icon_state = "1-8"},/obj/structure/cable/white{icon_state = "2-8"},/obj/structure/cable/white{icon_state = "2-4"},/obj/structure/cable/white{icon_state = "1-4"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 10},/obj/effect/floor_decal/steeldecal/steel_decals4,/turf/simulated/floor/tiled/eris/white/bluecorner,/area/stellardelight/deck1/lowermed) +"Yh" = (/obj/machinery/camera/network/mining{dir = 8},/obj/structure/ore_box,/turf/simulated/floor/tiled/eris/steel/cargo,/area/stellardelight/deck1/mining) +"Yi" = (/obj/structure/table/woodentable,/obj/machinery/microwave,/obj/machinery/firealarm/angled{dir = 4},/turf/simulated/floor/carpet/purcarpet,/area/stellardelight/deck1/dorms/dorm7) +"Yj" = (/obj/machinery/processor,/obj/machinery/light{dir = 1},/turf/simulated/floor/tiled/steel_grid,/area/rnd/xenobiology) +"Yk" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/turf/simulated/floor,/area/maintenance/stellardelight/deck1/exploration) +"Ym" = (/obj/structure/cable/pink{icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/effect/floor_decal/milspec/color/red/half,/turf/simulated/floor/tiled/dark,/area/security/security_cell_hallway) +"Yn" = (/obj/structure/table/rack,/obj/random/maintenance,/obj/random/maintenance/clean,/obj/random/maintenance/research,/obj/random/medical,/obj/random/snack,/turf/simulated/floor,/area/maintenance/stellardelight/deck1/exploration) +"Yo" = (/obj/structure/morgue{dir = 1},/turf/simulated/floor/tiled/techfloor,/area/medical/morgue) +"Yp" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/obj/structure/table/reinforced,/obj/machinery/light{dir = 4},/obj/effect/floor_decal/milspec/color/orange/half{dir = 4},/turf/simulated/floor/tiled/dark,/area/prison/cell_block) +"Yq" = (/obj/structure/bed/chair/bay/shuttle{dir = 8},/turf/simulated/floor/tiled/eris/steel/brown_platform,/area/stellardelight/deck1/miningshuttle) +"Yr" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/turf/simulated/floor/carpet/purcarpet,/area/stellardelight/deck1/dorms/dorm7) +"Ys" = (/obj/machinery/button/remote/airlock{dir = 1; id = "dorm5"; name = "Room 5 Lock"; pixel_y = -22; specialfunctions = 4},/obj/machinery/power/apc/angled{dir = 8; name = "night shift APC"; nightshift_setting = 2},/obj/structure/cable/green{icon_state = "0-4"},/obj/structure/closet/crate/bin{anchored = 1},/turf/simulated/floor/carpet,/area/stellardelight/deck1/dorms/dorm5) +"Yt" = (/obj/structure/cable/green{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/starboard) +"Yu" = (/obj/machinery/alarm/angled{dir = 8},/turf/simulated/floor/tiled/eris,/area/rnd/storage) +"Yv" = (/turf/simulated/wall/bay/black,/area/chapel/office) +"Yw" = (/obj/structure/cable/green{color = "#42038a"; icon_state = "1-2"},/obj/effect/landmark{name = "lightsout"},/turf/simulated/floor/tiled/eris,/area/rnd/xenobiology/xenoflora) +"Yx" = (/obj/machinery/atmospherics/pipe/simple/hidden,/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/turf/simulated/floor/tiled/dark,/area/security/tactical) +"Yy" = (/obj/structure/table/steel_reinforced,/obj/machinery/recharger{pixel_y = 5},/obj/structure/sign/vacuum{pixel_y = 32},/turf/simulated/floor/tiled/dark,/area/security/tactical) +"Yz" = (/obj/machinery/atmospherics/portables_connector,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/structure/cable/green{color = "#42038a"; icon_state = "1-4"},/turf/simulated/floor/tiled/eris,/area/rnd/xenobiology/xenoflora_storage) +"YA" = (/obj/structure/bookcase{desc = "There appears to be a shrine to WGW at the back..."; name = "Forbidden Knowledge"},/obj/machinery/atmospherics/unary/vent_scrubber/on,/obj/structure/sign/painting/library_private{pixel_y = 32},/obj/structure/sign/painting/library_private{pixel_x = -32},/obj/item/weapon/book/manual/engineering_hacking,/obj/item/weapon/book/manual/nuclear,/obj/item/weapon/book/custom_library/fiction/woodysgotwood,/turf/simulated/floor/wood,/area/library) +"YB" = (/obj/structure/cable/green{color = "#42038a"; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/turf/simulated/floor/tiled/milspec,/area/stellardelight/deck1/exploration) +"YC" = (/obj/machinery/atmospherics/pipe/manifold/visible,/obj/machinery/meter,/obj/structure/reagent_dispensers/watertank,/turf/simulated/floor/tiled/eris,/area/rnd/xenobiology/xenoflora_storage) +"YE" = (/turf/simulated/floor,/area/maintenance/stellardelight/substation/cargo) +"YF" = (/turf/simulated/wall/bay/r_wall/brown,/area/stellardelight/deck1/dorms/dorm7) +"YG" = (/obj/machinery/door/firedoor/glass,/obj/structure/cable/yellow{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/door/airlock/angled_bay/standard/glass{dir = 4; door_color = "#a6753d"; name = "Refinery"; req_access = list(48); stripe_color = "#3b2b1a"},/turf/simulated/floor/tiled/steel_ridged,/area/stellardelight/deck1/oreprocessing) +"YH" = (/obj/structure/bed/chair/wood{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/lino,/area/chapel/office) +"YI" = (/obj/machinery/door/firedoor/glass/hidden/steel{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/aft) +"YJ" = (/obj/machinery/computer/ship/navigation/telescreen{pixel_y = 32},/obj/structure/cable/yellow{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/light_switch{pixel_y = 24},/obj/structure/cable/yellow{icon_state = "2-8"},/turf/simulated/floor/tiled/eris/steel/cargo,/area/stellardelight/deck1/shuttlebay) +"YK" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/angled_bay/standard/color{dir = 4; door_color = "#8c1d11"; fill_color = "#854a44"; name = "Armory"; req_access = list(3); stripe_color = "#d27428"},/turf/simulated/floor/tiled/steel_ridged,/area/security/armoury) +"YL" = (/obj/machinery/door/firedoor/glass,/obj/structure/table/reinforced,/obj/machinery/light{dir = 1},/obj/structure/sign/department/robo{pixel_y = 32},/obj/machinery/door/blast/angled_shutter/open{dir = 4; id = "dontlooktmyrobotpenis"; name = "Privacy Shutters"},/obj/machinery/door/window/brigdoor/westleft{dir = 4; name = "Robotics Desk"; req_access = list(7); req_one_access = list(47)},/turf/simulated/floor/tiled/monotile,/area/assembly/robotics) +"YM" = (/obj/machinery/door/firedoor/glass,/obj/structure/window/bay/reinforced,/obj/structure/low_wall/bay/reinforced/purple,/turf/simulated/floor,/area/gateway) +"YN" = (/obj/machinery/power/apc/angled{dir = 1},/obj/structure/cable/green{icon_state = "0-4"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/aft) +"YO" = (/obj/structure/cable/pink{icon_state = "1-2"},/obj/machinery/camera/network/security{dir = 8},/turf/simulated/floor/tiled/dark,/area/security/security_cell_hallway) +"YP" = (/obj/structure/cable/orange{icon_state = "4-8"},/turf/simulated/wall/bay/r_wall/steel,/area/maintenance/stellardelight/deck1/exploration) +"YQ" = (/obj/structure/cable/yellow{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/camera/network/mining{dir = 1},/turf/simulated/floor/tiled/eris/steel/cargo,/area/stellardelight/deck1/mining) +"YR" = (/obj/structure/table/glass,/obj/item/weapon/paper_bin{pixel_y = 4},/obj/item/weapon/pen{pixel_y = 4},/obj/machinery/firealarm/angled{dir = 8},/turf/simulated/floor/tiled/white,/area/medical/patient_wing) +"YS" = (/obj/structure/cable/white{icon_state = "2-8"},/obj/effect/floor_decal/steeldecal/steel_decals3{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals3{dir = 4},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/port) +"YT" = (/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/port) +"YV" = (/obj/structure/cable/pink{icon_state = "1-2"},/turf/simulated/wall/bay/r_wall/steel,/area/security/tactical) +"YW" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/structure/cable/green{color = "#42038a"; icon_state = "4-8"},/turf/simulated/floor/tiled/steel_grid,/area/rnd/xenobiology) +"YX" = (/obj/structure/closet/secure_closet/security,/obj/item/device/holowarrant,/obj/item/clothing/accessory/badge/holo/cord,/obj/item/clothing/accessory/badge/holo/cord,/obj/machinery/firealarm/angled{dir = 4},/obj/effect/floor_decal/milspec/color/red,/obj/item/device/ticket_printer,/turf/simulated/floor/tiled/dark,/area/security/security_lockerroom) +"YY" = (/obj/effect/floor_decal/chapel{dir = 4},/obj/structure/bed/chair/sofa/pew/right{dir = 1},/obj/effect/landmark/start/visitor,/turf/simulated/floor/tiled/dark,/area/chapel/main) +"YZ" = (/obj/structure/window/reinforced{dir = 1},/obj/structure/table/reinforced,/obj/item/weapon/storage/box/swabs{layer = 5},/obj/item/weapon/hand_labeler,/obj/item/weapon/folder/red,/obj/item/weapon/folder/blue{pixel_y = -3},/obj/item/weapon/folder/yellow{pixel_y = -5},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/white,/area/security/detectives_office) +"Za" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/steel_grid,/area/assembly/robotics) +"Zb" = (/obj/structure/closet/secure_closet/security,/obj/item/device/holowarrant,/obj/item/clothing/accessory/badge/holo/cord,/obj/item/clothing/accessory/badge/holo/cord,/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/obj/effect/floor_decal/milspec/color/red,/obj/item/device/ticket_printer,/turf/simulated/floor/tiled/dark,/area/security/security_lockerroom) +"Zc" = (/obj/machinery/recharge_station,/turf/simulated/floor/bluegrid,/area/assembly/robotics) +"Zd" = (/obj/effect/landmark{name = "carpspawn"},/turf/space,/area/space) +"Ze" = (/obj/machinery/door/firedoor/glass,/obj/structure/window/bay/reinforced,/obj/structure/low_wall/bay/reinforced/black,/turf/simulated/floor,/area/chapel/chapel_morgue) +"Zf" = (/obj/machinery/light{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/turf/simulated/floor/tiled/eris/steel/cargo,/area/stellardelight/deck1/shuttlebay) +"Zg" = (/obj/structure/closet/secure_closet/miner,/turf/simulated/floor/tiled/eris/steel/cargo,/area/stellardelight/deck1/miningequipment) +"Zh" = (/obj/structure/table/woodentable,/obj/machinery/recharger{pixel_y = 5},/turf/simulated/floor/tiled/milspec,/area/stellardelight/deck1/explobriefing) +"Zi" = (/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/exam_room) +"Zj" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/window/brigdoor/southleft{id = "Cell C"; name = "Cell C"; req_access = list(2)},/obj/structure/cable/pink{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/steel_ridged,/area/prison/cell_block/C) +"Zk" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/turf/simulated/floor/tiled/white,/area/crew_quarters/toilet) +"Zl" = (/obj/structure/cable/green{icon_state = "1-2"},/obj/effect/floor_decal/steeldecal/steel_decals3{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals3{dir = 10},/turf/simulated/floor/tiled/techfloor,/area/stellardelight/deck1/starboard) +"Zn" = (/obj/machinery/door/firedoor/glass,/obj/structure/window/bay/reinforced,/obj/machinery/door/blast/angled/open{dir = 2; id = "wardenoffice"; name = "Privacy Shutters"},/obj/structure/low_wall/bay/reinforced/red,/turf/simulated/floor,/area/security/warden) +"Zo" = (/obj/machinery/atmospherics/pipe/manifold/hidden,/obj/machinery/camera/network/civilian{dir = 1},/turf/simulated/floor,/area/maintenance/stellardelight/deck1/exploration) +"Zp" = (/obj/machinery/button/remote/blast_door{dir = 4; id = "GatewayShutterE"; name = "EVA Shutter"; pixel_x = -23; req_one_access = list(18,19,43,67)},/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/starboard) +"Zq" = (/obj/machinery/light{dir = 4},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/exam_room) +"Zr" = (/obj/structure/table/reinforced,/obj/machinery/button/remote/blast_door{dir = 4; id = "dontlooktmyrobotpenis"; name = "Privacy Shutter Control"; pixel_y = 2},/obj/item/device/robotanalyzer,/turf/simulated/floor/tiled/steel,/area/assembly/robotics) +"Zs" = (/obj/structure/table/woodentable,/obj/structure/sign/painting/chapel_secure{pixel_y = 32},/obj/machinery/atmospherics/unary/vent_scrubber/on,/turf/simulated/floor/lino,/area/chapel/office) +"Zt" = (/turf/simulated/floor,/area/stellardelight/deck1/fore) +"Zu" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/turf/simulated/floor,/area/maintenance/stellardelight/deck1/starboardcent) +"Zv" = (/turf/simulated/wall/bay/r_wall/red,/area/security/detectives_office) +"Zw" = (/obj/effect/floor_decal/milspec/color/black,/turf/simulated/floor/tiled/dark,/area/security/security_cell_hallway) +"Zx" = (/obj/machinery/access_button{command = "cycle_interior"; dir = 8; frequency = 1379; master_tag = "virology_airlock_control"; name = "Virology Access Button"; pixel_y = -33; req_access = list(39)},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/angled_bay/standard/color{autoclose = 0; dir = 4; door_color = "#ffffff"; frequency = 1379; id_tag = "virology_airlock_interior"; locked = 1; name = "Virology Interior Airlock"; req_access = list(39); stripe_color = "#5a96bb"},/turf/simulated/floor/tiled/steel_ridged,/area/medical/virology) +"Zy" = (/obj/machinery/photocopier,/obj/machinery/light/small{dir = 4},/turf/simulated/floor/lino,/area/chapel/office) +"Zz" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/obj/machinery/alarm/angled{dir = 4},/obj/structure/table/steel,/obj/random/maintenance/security,/obj/random/maintenance/security,/turf/simulated/floor,/area/maintenance/stellardelight/deck1/portfore) +"ZA" = (/turf/simulated/floor/tiled/steel_grid,/area/rnd/xenobiology) +"ZB" = (/obj/structure/cable/yellow{icon_state = "4-8"},/obj/structure/closet/emergsuit_wall{pixel_y = 29},/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/aft) +"ZC" = (/obj/machinery/recharger/wallcharger{pixel_x = 4; pixel_y = 20},/obj/machinery/recharger/wallcharger{pixel_x = 4; pixel_y = 29},/turf/simulated/floor/tiled/eris/steel/cargo,/area/stellardelight/deck1/mining) +"ZD" = (/obj/structure/table/rack/shelf/steel,/obj/item/clothing/suit/armor/vest/alt{pixel_x = -4; pixel_y = -6},/obj/item/clothing/suit/armor/vest/alt{pixel_x = 6; pixel_y = -6},/obj/item/clothing/suit/armor/vest/alt{pixel_x = -4; pixel_y = 6},/obj/item/clothing/suit/armor/vest/alt{pixel_x = 6; pixel_y = 6},/obj/machinery/atmospherics/unary/vent_scrubber/on,/obj/machinery/firealarm/angled{dir = 8},/turf/simulated/floor/tiled/dark,/area/security/security_equiptment_storage) +"ZE" = (/obj/structure/stairs/spawner/south,/obj/structure/railing/grey{dir = 4},/turf/simulated/floor,/area/stellardelight/deck1/fore) +"ZF" = (/obj/structure/window/reinforced{dir = 1},/obj/machinery/dnaforensics,/turf/simulated/floor/tiled/white,/area/security/detectives_office) +"ZG" = (/turf/simulated/wall/bay/r_wall/red,/area/security/security_lockerroom) +"ZI" = (/obj/effect/floor_decal/steeldecal/steel_decals6{dir = 5},/turf/simulated/floor/tiled/dark,/area/security/lobby) +"ZJ" = (/obj/structure/cable/yellow{icon_state = "1-4"},/obj/structure/cable/yellow{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/obj/machinery/firealarm/angled{dir = 8},/turf/simulated/floor/tiled/eris/steel/cargo,/area/stellardelight/deck1/mining) +"ZK" = (/obj/structure/cable/pink{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor,/area/maintenance/stellardelight/deck1/portfore) +"ZM" = (/obj/machinery/seed_extractor,/obj/machinery/atmospherics/unary/vent_pump/on,/turf/simulated/floor/tiled/eris,/area/rnd/xenobiology/xenoflora) +"ZN" = (/obj/machinery/light{dir = 1},/obj/machinery/mineral/equipment_vendor/survey,/turf/simulated/floor/tiled/milspec,/area/stellardelight/deck1/exploequipment) +"ZO" = (/obj/structure/cable/white{icon_state = "1-2"},/obj/machinery/station_map{dir = 4; pixel_x = -32},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/aft) +"ZP" = (/obj/structure/table/steel_reinforced,/obj/machinery/door/firedoor/glass,/obj/structure/window/reinforced{dir = 4},/obj/machinery/door/blast/angled/open{dir = 4; id = "wardenoffice"; name = "Privacy Shutters"},/turf/simulated/floor/tiled/dark,/area/security/warden) +"ZQ" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/milspec,/area/stellardelight/deck1/exploequipment) +"ZR" = (/obj/machinery/camera/network/security{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals6{dir = 6},/turf/simulated/floor/tiled/dark,/area/security/lobby) +"ZS" = (/obj/effect/floor_decal/industrial/outline/yellow,/obj/structure/cable/orange{icon_state = "0-4"},/obj/structure/cable/orange{icon_state = "16-0"},/obj/machinery/door/firedoor/glass,/turf/simulated/floor,/area/maintenance/stellardelight/deck1/exploration) +"ZT" = (/obj/structure/window/reinforced/full,/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 4},/obj/structure/grille,/obj/structure/window/reinforced{dir = 8},/obj/machinery/door/blast/angled/open{dir = 4; id = "xenobiopen2"; name = "Pen 2 Blast Doors"},/turf/simulated/floor/tiled/dark,/area/rnd/xenobiology) +"ZU" = (/obj/structure/bed/chair/comfy/brown{dir = 8},/turf/simulated/floor/carpet/bcarpet,/area/stellardelight/deck1/port) +"ZV" = (/obj/structure/cable/green{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/structure/sign/department/chapel{pixel_x = -32; plane = -34},/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck1/fore) +"ZW" = (/obj/structure/cable/green{color = "#42038a"; icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/turf/simulated/floor/tiled/steel_grid,/area/rnd/research) +"ZX" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/angled_bay/double{name = "maintenance access"; stripe_color = "#454545"},/turf/simulated/floor,/area/maintenance/stellardelight/deck1/portaft) +"ZY" = (/obj/effect/floor_decal/borderfloorblack/full,/obj/effect/floor_decal/industrial/hatch/yellow,/obj/machinery/deployable/barrier,/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/turf/simulated/floor/tiled/dark,/area/security/armoury) +"ZZ" = (/turf/simulated/wall/bay/purple,/area/rnd/xenobiology) + +(1,1,1) = {" +uquququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququq +uquququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququq +uquququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququq +uquququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququq +uquququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququq +uquququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququq +uquququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququq +uquququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququq +uquququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququq +uquququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququq +uququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququqNJuquququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququq +uquququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququq +uquququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququq +uquququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququq +uquququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququq +uquququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququq +uquququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququq +uquququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququq +uquququququququququququququququququququququququququququququququququququququququququququququququququququququququqZduququququququququququququququqZduququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququq +uququququququququququququququququququququququququququququququququququququqZduquququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququq +uququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququqZduquququququququququququququququququququququququququququququququququququququququququq +uquququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququq +uquququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququq +uquququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququq +uquququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququq +uquququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququq +uquququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququq +uquququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququqbDAhbDuqbDAhbDuququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququq +uququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququqnngHgHgHgHgHUlgHgHgHpngHgHgHgHgHSyuquququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququq +uquququququququququququququququququququququququququququququququququququququququququququququququququququququququququququqfPyEVeVefwfwfwVejrjrjrbkDFDFDFbkbkaguHuququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququq +uquququququququququququququququququququququququququququququququququququququququququququququququququququququqnngHgHgHgHgHUqEhVedRdTtoIMyeeBhlHkCMtHLwiDkTbkaSaggHDlgHgHgHSyuququququququququququququququququququququququququququququququququququququququququququququququququququququququq +uququququququququququququququququququququququququququququququququququququququququququququququququququququqMPyEEhEhEhEhEhsvEhakqsqPtMYpyewYsxicCMsAdhvZmnwMaSaSQYCDQYaSaSagrouquququququququququququququququququququququququququququququququququququququququququququququququququququququq +uquququququququququququququququququququququququququququququququququququququququququququququququququququqnnyEEhEhMcMcMcMcGMvxXLqYprqYBYyeflIXIfCMqOTEJXTEyBXBZDVIgbBMvcaSniagSyuququququququququququququququququququququququququququququququququququququququququququququququququququququq +uquququququququququququququququququququququququququququququququququququququququququququququququququqnngHyEEhEhvxvxvxvxvxrFvxDSyeGmyeDSDSWGehWGQkQkCMZjCMQkXBpZEDwxzxBTXBniniaggHSyuququququququququququququququququququququququququququququququququququququququququququququququququququq +uququququququququququququququququququququququququququqZduquququququququququququququququququququqnngHyELgLgEhvxuyQPrHaFtsyMVJFDZwVxPjEeqSlURvLcwTwTzCRvqGdBXBqIrhEiUSdVXBeFniQwniaggHSyuququququququququququququququququququququququququququququququququququququququququququququququququq +uququququququququququququququququququququququququququququququququququququququququququququququqgcUlWLWLWLVMaqpcIDIypKGPGRTMykLaLaPhsuUIbXOnUKxUfFxUxLYmPOGWZGZGZGBsZGZGZGeFQiRwnininiyGHcuquququququququququququququququququququququququququququququququququququququququququququququququq +uququququququququququququququququququququququququququququququququququququququququququququququqRFLgLgLgFmOytCvxttzENGIJhCzNvxRCZnZnRCrXBaQuQuTHTHTHQuQubpRJZGweoOoIRUqZZGGrGrtpGrGrniYVRFuquququququququququququququququququququququququququququququququququququququququququququququququq +uququququququququququququququququququququququququququququququququququququququququququququququqbDTWESDgWrfkAkvxwhHuFadJtgeAYKFjCIFCZPRvwTNeiOtiQghQtFNewTYOZGVWedWDVGoQZGeeeTYxacYyGrYVbDuquququququququququququququququququququququququququququququququququququququququququququququququq +uququququququququququququququququququququququququququququququququququququququququququququququqbDtLZeZetKjoAkvxthmZAXdJfqubvxMbfIbmXhRvwTNejlAwvsabThNewTeGAoLLSvLAwsRehFPoBGdilSIlplwXbDuquququququququququququququququququququququququququququququququququququququququququququququququq +uquququququququququququququququququququququququququququququququququququququququququququququququqtLMkKIWrkoAkvxHzdDPvdJhucMvxXZfICERCMBwTNexdeHFHmjcENewTDEZGjcLHBJBidmZGHZaueXFsdtGrniuququququququququququququququququququququququququququququququququququququququququququququququququq +uquququququququququququququququququququququququququququququququququququququququququququququququqnMfZfkOrAkvxvxJRIiVNOJtgtnvxsrxAvgfafTbCQuQuQuQunqQuQuQQzeZGaevobqIKYXZGnvftqBeDIoGrniuququququququququququququququququququququququququququququququququququququququququququququququququq +uquququququququququququququququququququququququququququququququququququququququququququququququqnMEyGeqFAkvxuapEkslpJYrOrOvxcgMbolRCRGyRxmcyiokSgWLNaaNjeQZGsLvobqIKVFZGfnActUxRjtGrniuquququququququququququququqZduquququququququququququququququququququququququququququququququququq +uquququququququququququququququququququququququququququququququququququququququququququququququqnMsdcNAVAkvxvxzpTelJbICwZYvxNifyoaUgPSwTwToBwTwTgojvwTwTqeZGZbINGpmFIsZGaBxNPaNKfGGrniuququququququququququququququququququququququququququququququququququququququququququququququququq +uququququququququququququququququququququququququququququququququququququququququququququququqbDAkAkAkLIAktCvxvxvxvxvxvxvxvxzDzDzDzDLeQCQCQCQCQCurQCQCFeTmZvZvZvZvcYZvZvGrGrGrqJGrGrnibDuquququququququququququququququququququququququququququququququququququququququququququququququq +uququququququququququququququququququququququququququququququququququququququququququququququqbDiNmUxPaUixKfkBphogspiiUPTSwfhcNciZUeIHvAlBGTCQtSVczqIqFemwBdBkFiXdOEGiFesJCrsDyytNVKgebDuquququququququququququququququququququququququququququququququququququququququququququququququq +uququququququququququququququququququququququququququququququququququququququququququququququqnnSAOGjspThjCfzBBfBfwaBfBfBfBfBfFpXkhTJNhTGDyaahhTxaheHNMebEYaHAfdQXPyJMMSbxbxbxbxPWAIaWSyuquququququququququququququququququququququququququququququququququququququququququququququququq +uquququququququququququququququququququququququququququququququququququququququququququququqnnyExyxyFoAYMjAYAYYvYvYvYvYvYvYvYvVVODmuQCqpmumumuBtQCmuTgFeBSxIFhYZFhxIZFFeLYLYLYLYjwyywGagSyuququququququququququququququququququququququququququququququququququququququququququququququq +uquququququququququququququququququququququququququququququququququququququququququququququqNDuqxyOxZKAYRjsUNBYvyVRdFwgESgZsZyVVZRZIQCSISFNNSFkGQCgyVrFeQVmgCznhFZpYxGFeYAUsKqLYaiyywGuqXwuququququququququququququququququququququququququququququququququququququququququququququququq +uquququququququququququququququququququququququququququququququququququququququququququququqaggHasNWisppadTUNBeSxhrYvEHwPgchSQVVQGHsQCjyHFfUaYjyQCQGHsFecmnVNkBOxXezBvFeTVUhEULYcrbxaWgHyEuququququququququququququququququququququququququququququququququququququququququququququququq +uququququququququququququququququququququququququququququququququququququququququququququququqRFVucBZKppDwAmUHeSkkYHvpYvYvYvYvVVRXzbwZmOmOmOmOmOBAXCEAFeFeFeFeOQOQOQOQOQiErrpDLYfByygeRFuquququququququququququququququququququququququququququququququququququququququququququququququq +uququququququququququququququququququququququququququququququququququququququququququququququqbDVucBZKppPXfWUHeSSQtXxvYvMmmAxEjfiXIFhUzczcHazczcnWzczcKEQnszpxFTWJVZfXFTFTrpFTLYyyyygebDuquququququququququququququququququququququququququququququququququququququququququququququququq +uququququququququququququququququququququququququququququququququququququququququququququququqbDxyFVkhAYqNfWUHYvYvRcYvYvRQzWzWzWmTGAzWzWzWdfzWzWzWGAzWzWzWaohSwzJSEgiqjKzojLeILYBwxqwGbDuquququququququququququququququququququququququququququququququququququququququququququququququq +uquququququququququququququququququququququququququququququququququququququququququququququququqVudSZKppPXfWeqgmqQHvwABUHxxZxZhGKuKuYMJJYMYMYMJJYMKuKuDpxZxZtRFTXjEgiqloNFANCORpsVyygeuququququququququququququququququququququququququququququququququququququququququququququququququq +uquququququququququququququququququququququququququququququququququququququququququququququququqVukxZKppujEYyZUnVLOCXfAJejKVMAWBKuKtLDJJunVSsoJJOpRuKuDiMAKVvBizFLTabAxVxVmeUzRpsVyygeuququququququququququququququququququququququququququququququququququququququququququququququququq +uquququququququququququququququququququququququququququququququququququququququququququququququqxyZzEvAYwbNzLhrNHKuLgiBUJnKVZtDYKuCaSeJJkEMEjPJJfhXbKuVDZtKVlFdKiqiqzjoKebjCVpLYbMtPwGuququququququququququququququququququququququququququququququququququququququququququququququququq +uquququququququququququququququququququququququququququququququququququququququququququququququqVuBbZKppUHUHUHDIUHUHUHPbZVKVgjZEKuvQXEJJRBQxOwJJJCEIKuEVTJKVjYFTCkiqLMiKKpiqSxRpSsyygeuququququququququququqZduququququququququququqlguququququququququququququququququququququququququq +uquququququququququququququququququququququququququququququququququququququququququququququququqVucBZKppUHlhYYrNCXktwVPbpyEOKuKuKunDKjJJhHgLgLJJAKWYKuKuKuKylMwzAHiqFbXXkwiqaGRpSsyygeuququququququququququququququququququququququququququququququququququququququququququququququququq +uquququququququququququququququququququququququququququququququququququququququququququququququqVucBZKppjBcWPmvDmkKvsBPbgrhLhYcacchXhXLJAvzyCvvHzyovcxxnaHAFJbwziqiqBxjqKpiqiqRpSsyygeuququququququququququququququququququququququququququququququququququququququququququququququququq +uquququququququququququququququququququququququququququququququqZduquququququququququququququqbDxycBZKAYfVWpzYyoMubFNhBUOurbKuUYllnDnDnDgxEndbnDnDWYnDMTKuZpzaFTmoxBCjygEbEbdxLYSsyywGbDuquququququququququququququququququququququququququququququququququququququququququququququququq +uququququququququququququququququququququququququququququququququququququququququququququququqbDxyDjnZAYAYAYAYfcAYAYBUBUlshLhYnDnDnDuMNRydhzWTNRDLFttbtbrQlysbFTFTLYLYHjLYLYLYLYyFAWwGbDuquququququququququququququququququququququququququququququququququququququququququququququququq +uququququququququququququququququququququququququququququququququququququququququququququququqRFTdgYGvRfvGHgokeCxKTdqojJewYTKuKuYMYMYMKuYMYMYMKuYMYMYMKuKueieNHLkMFEWCiAIGACCmyCEmCgFERFuquququququququququququququququququququququququququququququququququququququququququququququququq +uquququququququququququququququququququququququququququququququququququququququququququququqgcaptdaVkYbHywGQsQeEISUbuAqmAGWFLVuDRkRkRkczwyambnmEOOOOOOQcLoOOqjvrlcCsIkCCIkUuIpTZBRyrKavFCiuququququququququququququququququququququququququququququququququququququququququququququququq +uquququququququququququququququququququququququququququququququququququququququququququququqnnyExWSCXmSCVbzwVbgYcFTdTwVwmsPtENYTrwkUkUNfkUwiAQIrAQAQsgAQEQeieivhVfFECgyTblEtblXRLTXRozRFJEuququququququququququququququququququququququququququququququququququququququququququququququq +uquququququququququququququququququququququququququququququququququququququququququququququqaKuqxWrJrsSCJddyVbhhcFTdIAugCZSLENatEpERERwSERbibibrbibicURZQjquAQWyvLFEhIyTbllxfjXRmLUZozuqJEuququququququququququququququququququququququququququququququququququququququququququququququq +uquququququququququququququququququququququququququququququququququququququququququququququqaKuqxWjVhbSClmJjVbkmnzTdHiobmsobPtKLMtERrWSHzgbiSiKGHXbiqLyieieieiSjePFEUMxTblkcjhXRkrBQozuqJEuququququququququququququququququququququququququququququququququququququququququququququququq +uquququququququququququququququququququququququququququququququququququququququququququququqaKuqxWzHsPSCXoTqVbQBIxTdDqnShkJeShofEKERlCjDajbigKsnGubiUriWbdSzDCJbUfFEXvZublPZrCXRGFUdozuqJEuquququququququququququququqZduquququququququququququququququququququququququququququququququq +uquququququququququququququququququququququququququququququququququququququququququququququqaKRFxWSlVBSCHIRhVbzicFTdaNbOYFYFWnYFYFERdvPIWlbiLXkLegbinfnfcJnfnfSjLEFEwPyTblodbZXRLqztozeaEGuququququququququququququququququququququququququququququququququququququququququququququququq +uquququququququququququququququququququququququququququququququququququququququququququququqmCgHYdSClqSCusQrVbgYFRTdhpzMYFVvSYHtYiERERIZIZbiwEwEbibiuvOeNoWanfmSxxFElYyTblrAblXRUXXRoztjIVuququququququququququququququququququququququququququququququququququququququququququququququq +uququququququququququququququququququququququququququququququququququququququququququququququqRFTdgYWgWhNtaPlrHYXsTdQfGXYFTcmzYrKObUEZITITITITITRIHHzrrcKJQMnfvtidFECgyTCgpiCgiyLmFlgPEGuquququququququququququququququququququququququququququququququququququququququququququququququq +uququququququququququququququququququququququququququququququququququququququququququququququqbDTdgYcFgYgYGVGNGNGNgGYSFvYFeKSUMLCobUqXxexexexexeuwHHTFpJAyeZnfSjyxFEbzeMgzTQvPvPulCgFEbDuquququququququququququququququququququququququququququququququququququququququququququququququq +uququququququququququququququququququququququququququququququququququququququququququququququqbDNPZXrKPMPMRtPMPMPMPMrgOvYFYFYFYFYFYFqXxexexexexeuwnfnfnfnfnfnfSjMCWuWuWuKlWuWuWuOhnLWubDuquququququququququququququququququququququququququququququququququququququququququququququququq +uququququququququququququququququququququququququqZduquququququququququququququququququququququqEHnmCBPMKAnomvPHRqmMrgbwjaYFJsJsJsYFqXxexexexexeuwnfOAOAOAnfNQpgouTvIwcoZlTkHOJFDvoeuQuququququququququququququququququququququququququququququququququququququququququququququququququq +uquququququququququququququququququququququququququququququququququququququququququququququququqEHnmCBPMLjEopNBzNriFLCkjKFKFKFKFKFKFqXxexexexexeuwfrfrfrfrfrfrMDYtMvzlzloDUjdjJFDvSMuQuququququququququququququququququququququququququququququququququququququququququququququququququq +uquququququququququququququququququququququququququququququququququququququququququququququququqNPNPCBPMNCnobvnoFzmMrgWKKFliTLAeqKMNqXxexexexexeuwjzfuJHQeIzfrnXeieieieiaEsmsmJFDvWuWuuququququququququququququququququququququququququququququququququququququququququququququququququq +uququququququququququququququququququququququququququququququququququququququququququququququqbDNPFICBPMbJlQmcoTrZmMJAnCKFTNArLitGMNNTEfEfEfEfEfMhjzjAhKVyDcfrJhaXaDaDaDaDaDaDCtDvawWubDuquququququququququququququququququququququququququququququququququququququququququququququququq +uququququququququququququququququququququququququququququququququququququququququququququququqbDNPRaCBPMmMmMmMmMmMmMwuutKFpmKMWWxHvuvuATATICPAPAICICFKbtCbSPfrAZmQaDwKmNEswcJUCtDvmBWubDuquququququququququququququququququququququququququququququququququququququququququququququququq +uququququququququququququququququququququququququququququququququququququququququququququququqRFNPbVRLXcvdvMCAwJLsIYKdWKKFKFKgKFKFvuBrAqQdICdaWkRMICfrfrTxfrfrnXWjYLBnscigoocPCtDvoeWuRFuquququququququququququququququququququququququququququququququququququququququququququququququq +uquququququququququququququququququququququququququququququququququququququququququququququqsyyzekMlIbVPIYIYIYIULRIYiawWukkUXxuSXUvuAPWEVHICdciTDeICcZeWChAQhNdGWjryZrcSBKcDnuCtUvLuWwvFJOuququququququququququququququququququququququququququququququququququququququququququququququq +uququququququququququququququququququququququququququququququququququququququququqibuquququqncRFNPNLToIgKiKzMOfboCFuSaoUobobMqobbgvuYsABQaICzRMQoAICGKeiDzeieinXWjdWxshVBKcDyICtDvoeWuRFJEuquququqpzuquququququququququququququququququququququququququququququququququququququququququq +uququququququququququququququququququququququququququququququququququququququququqkJuquququqncuqNPyNbQXcIYIYIYkQkyIYxCswHWBISBYTiIvuvugfvuICICqwICICBLeiimlDaEnXWjaDzGLKNMMJafCtlTHVWuuqJEuquququqJEuquququququququququququququququququququququququququququququququququququququququququq +uququququququququququququququququququququququququququququququququququququququququqkJRFuququqncuqNPldDrXcvdPURikQQSIYhRJvTTWflvcOHlueuerPQFfNImieuCnQmmseaQclfzOtcHaDIhIQZascalCtDvoeWuuqJEuququqRFJEuquququququququququququququququququququququququququququququququququququququququququq +uququququququququququququququququququququququququququququququququququququququququqkJRFuququqncuqNPwQaOXcIYIYIYkQSGIYkecKFkJtZUcdYTYToFYTYTxceieijneieiWsknwnVRnXWUDsruQqgUQZcRCtiloeWuuqJEuququqRFJEuquququququququququququququququququququququququququququququququququququququququququq +uququququququququququququququququququququququququququququququququququququququququqkJRFuququqhDyzekRgIbvmUmUmeLkQiRIYcLqyoEoEoEoEoEoEoEoEhJhJhJhJhJhJhJhJhJhJhJONtwaDavsqSrBossCtORLuWwvFEGuququqRFJEuquququququququququququququququququququququququququququququququququququququququququq +uququququququququququququququququququququququququququququququququququququququququqkJRFRFuquqRFRFNPnmToXcXPZkSXKoRKIYWzcGoEhPxiFQFBargCoEiGzkhJsfBVfmhJSDCRRbhJWqWjaDaDaDXOaDaDCtCYoeWuRFRFuquqRFRFJEuququququququququququququququqZduquququququququququququququququququququququququququq +uququququququququququququququququququququququququququququququququququququququququqkJRFRFuququqRFNPtBXzqENHNHitNHNHNHresGnxbTVaVaVttZOgoEJkbfZxgTREOjsIgZBjIchJDJWjXrMrvYfRZcbWCtLfoeWuRFuququqRFRFJEuquququququququququququququququququququququququququququququququququququququququququq +uququququququququququququququququququququququququququququququququququququququququqSdDDRFuququqbDNPnmToqEinPFzPEwEwNHMIHPoEYoYoYonOGGcfoEpXpvhJVqQIPQhJhJhJhJhJhWWjNbfoAOjQscrVCtQzKYWubDuququqRFRFJEuquququququququququququququququququququququququququququququququququququququququququq +uquququququququququququququququququququququqGauquququququququququququququququququqRFkJRFRFuquqbDNPnmToqExSgIpSCuMZNHnJbsoEoEoEoErLoEoEoEhJuVhJlZzfuZEBuiBjIchJVzMHNbYbvYSfZcEWCtDvoeWubDuquqRFRFeaEGuquququququququququququququququququququququququququququququququququququququququququq +uququququququququququququququququququququququququququququququququququququququququqRFkJRFRFuququqEHnmToqEjdcuUycuOMNHuGDkFGASMfeOmhNwslFGEuoHhJGnwRCJhJsKXiRbhJgdxxaDaDaDfJaDaDCtDvoeuQuququqRFRFJERFuquququququququququququququququququququququququququququququququququququququququququq +uququququququququququququququququququququququququququququququququququququququququqRFkJRFRFbDuquqEHnmToqEylSVSVSVkKNHbulfTXdqqnFrKRFrRrmRbGPphJhJhJhJhJhJhJhJhJKHxFiMRlnHSbfsuXypbBQUuQuquqbDRFRFJERFuquququququququququququququququququququququququququququququququququququququququququq +uququququququququququququququququququququququququququququququququququququququququqRFkJRFbDbDbDuqrakAkfqEMsNHMsNHMsNHZOWSFGFGFGYRnwopFdFGepmJNvqhLrKWHRTYqhananzQklLFwgQRTfAbGoSckqPRWuuqbDbDbDRFJERFuquququququququququququququququququququququququququququququququququququququququququq +uquququququququququququququququququququququququququququququququququququququququququoKsuqbDrarararavTJPqEaxNHDyNHaxNHIWtJLWGCFGFGFGFNFGFGCGdwYfBFRHQhQhAuqhlRCLXuCVaMaMaMtqaMaMDxDxDxymfgfgymbDuqAMvXuquququququququququququququququququququququququququququququququququququququququququq +uququququququququququququququququququququququququququququququququququququququququqgakJuqraraUBynILILnPqENHNHNHNHNHNHqvtJeVHCCGMXVCVsfLxgCGNgJxqhJqQpaRZqqhpUeVXukvaMoSXpDPdskdDxfMzTYjdFlaymymuqJEFPuquququququququququququququququququququququququququququququququququququququququququq +uququququququququququququququququququququququququququququququququququququququququqbDSdYPYPKmjpqqwFwFjOVhvkmfmlctnFAjiJtJpaocCGoYgDdHHyTKCGecOcqhddvWZigFqhOHpaXujgMgoLPljIDxDxDxuYZAZAxtZAdzymymJEbDuquququququququququququququququququququququququququququququququququququququququququq +uququququququququququququququququququququququququququququququququququququququququqbDraraZSfErlaAwFpbJWVhjWoRSZriVdlzETSJCGCGCGCGCGoWfHoMCGikQAqhqhqhqhqhqhqDqDTOXJMgguSTDWeogXbehqvVvVvNTGYWeYVgoibDuquququququququququququququququququququququququququququququququququququququququququq +uququququququququququququququququququququququququququququququququququququququququqrararararaRYqqwFJlGdVhvKOFOFApUcAjQvYICGKcGZCUCGvbhsevCGiBJxqDlXefRPcsqaOUqDjHDKMgoLPlFUDxaZDxHDuzEzsXHqbcHrelymymuquququququququququququququququququququququququququququququququququququququququququq +uququququququququququququququququququququququququququququququququququququququququqsWxMQbpIzdRYsFwFTIOmVhwtwtDVnjmKAjdPoyRnohciMKRTpAirDAqWQJMMVADftvyuLUerdrDaiLyWaMUNFMJThxglDxDxDxDxDxTpDxDxDxDxymuquququququququququququququququququququququququququququququququququququququququququq +uququququququququququququququququququququququququququququququququququququququququqKkqdZotxSWFFqqwFYEBNVhVhVhAjAjAjAjhgshCGcpPVqRCGhviphvCGOdQOqDznOlEMPzwormqDnGXJaMaMaMuUZZZZDxXQAdjxKKpklKwvaLnbxouquququququququququququququququququququququququququququququququququququququququququq +uquququququququququququququququququququququququququququququququququququququququqbDrararararaXgqqwFwFpOwFPdfOvjgnrkDmhgNlCGCGCGCGCGCGCGCGCGtataqDqDqDqDqDqDqDqDXuHpnItIxzhMhmNuDxJVRNlnggeRggUtRNJVxobDuququququququququququququququququququququququququququququququququququququququququq +uquququququququququququququququququququququququququququququququququququququququqbDViOzYnxlwULnYkvTpfUwXqXqvfvUOZOZGhnTnYnTmDXeiSyOZBcAckmrgqIesMltYNbRdXbhytdnqTRAnIJKWoUEZWrDDxKSRNOYFfzvyfZTRNKSjbbDuququququququququququququququququququququququququququququququququququququququququq +uququququququququququququququququququququqZduquququququququququququququququququqeaGjWxvTrfPGvnpPNInBtcySmafOuuBlBlBlcIfSSOrGXYjThghghgosUkmIhghghghghgKXOkhtXFOaDdnIuRjGnEcvIPDxDxOqDxUVGbdgDxTsDxymRFuququququququququququququququququququququququququququququququququququququququququq +uququququququququququququququququququququququququququququququququququququququqSNEGraiUumumULumqqUaUaUapCpCpCpCpCpCpCsCxbuWdldldldldldldlpHdlgQgQgQgQgQgQgQgQWRWRgMWRWROXUAUDfpDxXQAdBmbKFqjkExaLnbxoRFpzuquququququququququququququququququququququququququququququququququququququququq +uququququququququququququququququququququququququququququququququququququququqJERFraiUumlIEXumUQRsgVJgpCucVoZNteCTtuyjPNuWdlNSQKsRZCNmwpleVEPsxDdOcQWPHBdodYWRMidpsYGcBZzUTjcwDxPkRNkIggAfggjuRNfvxoRFJEuquququququququququququququququququququququququququququququququququququququququq +uququququququququququququququququququququququququququququququququququququququqJERFraiUumQljmumTbUaBWnepCKeTrtYtYaytujRDOuWsSzzpVpVYQonpVBeECPspwsZgQPsPsgQLvWRMyJcLPyvQEBulGyUDxKSRNAirTeRrTLtRNKSkNRFJEuquququququququququququququququququququququququququququququququququququququququq +uququququququququququququququququququququququququququququququququququququququqJEuqraiUumKDngumMnUaexfQpCpCaJtYAtempCDtceuWpRxfxfxfxfpRpRXaYhgQuPtzfKPPgpPsKbqAqAqAqAqAyqBBtOdZDxDxlbDxcjGbNXDxLQDxymuqJEuquququququququququququququququququququququququququququququququququququququququq +uququququququququququququququququququququququququququququququququququququququqJEuqViiUumKPcCJpPLUaPunlpCAatWGBvweulOBCzsuWrnoJaTqVMFrIpRZJTBYGuIxumVdQHngQKbqAzXFYzXqAWRpsWRWRDxCnWiQmbKeRjkIOtACnxouqJEuquququququququququququququququququququququququququququququququququququququququq +uququququququququququququququququququququququququququququququququququququququqJEuqraiUumumumumDQUaUaMVpCpCZQtYtYADpCPrDOuWdCMGMGMGMGSSNsjFwpgQdQDodQdQWAPsKbqAjjWXyYqAXndeFcGUDxRNbLYcggeRggVlbLRNxouqJEuquququququququququququququququququququqZduququququququququququququququququququq +uququququququququququququququququququququququququququququququququququququququqsavXraKZInifififXMEcEcgtpCndZQtYtYURtuYBBHuWdEvCvCdLvCDnpRKCwpPsWthAvJPsPsgQHEqAnthByQqATnQHiwbPDxkusHzIKBhZErorwjEqSReaEGuquququququququququququququququququququququququququququququququququququququququq +uququququququququququququququququququququququququququququququququququququququqRFJEravTwmWMWMWMWMWMWMWMpCNxsOzKeJxktucVPwuWvqZgvikHZgvapRSuNZPshiuJffqbVTPnqUqAFWpMduhalHfxvvXNDxDxDxCSiCiCiCiCiCiCVgtTRFuquququququququququququququququququququququququququququququququququququququququq +uququququququququququququququququququququququququququququququququququququququqhwGLuFtEAgWMClRzUpHSRzqlpCpCpCpCpCpCpCPrDOuWpRxfxfxfxfpRpRHbstgQgQPsPsgQgQgQgQqAkzGEXGqANdmttfhdJQZMxjGlXTPJDHARrdBXpQsaIVuquququququququququququququququququququququququququququququququququququququququq +uquququququququququququququququququququququququququququququququququququququququqRFViJoLyWMwqRzRzRzRzTPvyXHCKByPEJzzLUTiQBDaIwwwwzOmYZfDNlPwNYJqMwOXWWQWdlAlVqAOVcXesqApFOIJQJQJQFOWeazStsjpQQDivGqkVRFuququququququququququququququququququququququququququququququququququququququququq +uquququququququququququququququququququququququququququququququququququququququqbDViBPwmWMmPUoTCTCNACWmWTRjZTDjZLOSEMdKUuWUGdIdIdIbSmGmGXlLxmbdIdIdIdIdIdIyLqAqAqAqAqAWZbNJQwIrjQyXTKNXTgkpQQDivBXkVbDuququququququququququququququququququququququququququququququququququququququququq +uquququququququququququququququququququququququququqZduququququququququququququqbDraCcwmWMLpkgzZoZAnFxRSWHDOuxPCeyvzQtPCuWiYOTuhuhuhuhOTIBCPKrnKxJxJxJxJnKqgoXXSkaSkoXnNtDJQXtoxpjXTYwXTWmDHEPivmXpQbDuququququququququququququququququququququququququququququququququququququququququq +uquququququququququququququququququququququququququququququququququququququququqbDragwrBWMwkkgyPZhAnfeRSmHufrMPCeyWHQtPCXVuNybihbaomihybIBcnKrGSVYxOqHVYdUoGoXkpWvvIoXCpzSJQUFcTQyXTFAXTBEDHFXpLxQpQbDuququququququququququqZduququququququququququququququququququququququququququququq +uquququququququququququququququququququququququququququququququququququququququqbDraxwwmWMsTkgzZrtAnqkRSWHDOQtPCeyWHfDlwXVuNOTOLLlLlKwOTIBCPKrnKzVyHyHVXnKoGoXtrlNyDptALLkTlRmNVwBkCIRkCAsMRRoNqObkVbDuququququququququququququququququququququququququququququququququququququququququq +uquququququququququququququququququququququququququququququququququququququququqRFravTNpXDgSjiOBOBsNaCRSWHpdQtmdeyWHQtPCXVuNOTUWfifiiHIujNCPUUMaVmpepeeUnKoGoXUxEkIEoXcqmiJQdMsjDGuTDGsjJwWchrYzSqRyvXuququququququququququququququququququququququququququququququququququququququququq +uququququququququququququququququququququququququququququququququququququququqpzRFraGyOzWMSnkORzRzRzFyRSHfveHGtmeyghhoTyuWuNOThybYbYycOToGCPuNnKgOHdHdwCdUoGoXpupqYuoXYedNJQRROoPBlWPBOobbDHqxYCmypQJEpzuquququququququququququququququququququququququququququququququququququququququq +uququququququququququququququququququququququququququququququququququququququqJERFrararanknkHenynynynknkLZuBuBLZNYuBuBuBLZuNybTibYbYKQyboGCPuNGSJDHdHdYqdUoGkPDbDbkPkPFnGIbjbjLGLGbjLGLGbjpQpQRVpQpQsaXAuquququququququququququququququququququququququququququququququququququququququq +uquququququququququququququququququququququququququququququququququququququqRFJERFbDbDRFRFbDJEbDuqbDbDRFbDuquqbDJEbDuqbDEJuNOTOTLlLlOTOToGcnuNnKnKyHyHnKnKoGEJbDuqRFRFJEuqbDbDuqbDRFbDuqbDRFbDuquqbDRFJERFuququququququququququququququququququququququququququququququququququququququq +uquququququququququququququququququququququququququququququququququququququqeaGLvFvFvFvFvFhEenvFvFvFvFvFhEvFvFvFoqvFvFvXEJAxboOTOTOTOTbooGCPuNVQnKnKnKnKVQKTEJeavFvFvFenvFvFCxvFvFvFvFvFvFhEvFvFvFvFvFcbvXuququququququququququququququququququququququququququququququququququququququq +uquququququququququququququququququququququququququququququququququququququqJERFRFuququqbDJEuquququququqJEbDuquququqbDJEEJnAyKyKyKyKyKyKsiJIdAPYPYPYPYPYPYUJEJJEbDuquququqbDJEuquququququqJEbDuququqRFRFJEuququququququququququququququququququququququququququququququququququququququq +uquququququququququququququququququququququququququququququququququququququqJERFRFuquqRFRFJERFRFRFRFRFRFJERFRFuquququqJEEJEJVnVnVnVnVnVnVnVnVnVnVnVnVnVnVnEJEJJEuquququqRFRFJERFRFRFRFRFRFJERFRFuquqRFRFJEuququququququququququququququququququququququququququququququququququququququq +uquququququququququququququququququququququququququququququququququququququqJERFuququqRFRFsavFvFvFbyvFvFEGRFRFuquququqWbvFvFvFvFvFvFvFvFvXuqRFRFbDbDuqbDbDRFRFFPuquququqRFRFsavFvFdkvFvFvFEGRFRFuququqRFJEuququququququququququququququququququququququququququququququququququququququq +uquququququququququququququququququququququququququququququququququququququqJEuququququqRFRFRFRFRFRFRFRFRFRFuquququququququququququququqsaIVRFuquququququququququququququqRFRFRFRFRFRFRFRFRFRFuququququqJEuququququququququququququququququququququququququququququququququququququququq +uquququququququququququququququququququququququququququququququququququququqFPuququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququqFPuququququququququququququququququququququququququququququququququququququququq +uquququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququq +uquququququququququququququququququququququququququququququququququququququququququququqetuququququququququququququququququququququqyXuquququququququququququququququququququququququququqetuquququququququququququququququququququququququququququququququququququququququququququququq +uquququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququq +uququququququququququququququququququququququququququququqZduquququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququq +uquququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququq +uquququququququququququququququququququququququququququququququququququququququququququququququququququququqZduquququququququququququququququququququququququququququququququququququququququququqZduquququququququququququququququququququququququququququququququququququququququququq +uquququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququq +uquququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququq +uquququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququq +uquququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququq +uquququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququq +uquququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququq +uquququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququq +uquququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququq +uquququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququq +uquququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququququq +"} +>>>>>>> 5e30d29614... Merge pull request #14566 from Heroman3003/wall-locker-color diff --git a/maps/stellar_delight/stellar_delight2.dmm b/maps/stellar_delight/stellar_delight2.dmm index d78b856480..03029917d3 100644 --- a/maps/stellar_delight/stellar_delight2.dmm +++ b/maps/stellar_delight/stellar_delight2.dmm @@ -1,3 +1,4 @@ +<<<<<<< HEAD //MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE "aa" = ( /obj/structure/cable/orange{ @@ -3973,6 +3974,9 @@ /obj/item/weapon/reagent_containers/glass/beaker/large, /obj/item/weapon/reagent_containers/dropper, /obj/machinery/atmospherics/unary/vent_pump/on, +/obj/machinery/injector_maker{ + pixel_y = 21 + }, /turf/simulated/floor/tiled/eris/white/bluecorner, /area/medical/chemistry) "jg" = ( @@ -4232,9 +4236,6 @@ /area/stellardelight/deck2/fore) "jK" = ( /obj/structure/table/glass, -/obj/machinery/camera/network/medbay{ - dir = 4 - }, /turf/simulated/floor/tiled/eris/white/bluecorner, /area/stellardelight/deck2/triage) "jL" = ( @@ -21932,6 +21933,9 @@ /obj/machinery/camera/network/medbay{ dir = 8 }, +/obj/machinery/injector_maker{ + pixel_x = 29 + }, /turf/simulated/floor/tiled/eris/white/bluecorner, /area/stellardelight/deck2/triage) "WZ" = ( @@ -43170,4 +43174,2656 @@ Jh Jh Jh Jh +======= +"aa" = (/obj/structure/cable/orange{icon_state = "2-4"},/turf/simulated/wall/bay/r_wall/steel,/area/maintenance/stellardelight/deck2/portsolars) +"ab" = (/obj/structure/stairs/spawner/north,/obj/structure/window/reinforced{dir = 4},/turf/simulated/floor,/area/stellardelight/deck2/aftstarboard) +"ac" = (/obj/machinery/atmospherics/pipe/simple/visible/black,/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos/storage) +"ad" = (/obj/structure/table/reinforced,/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/chemistry) +"ae" = (/obj/structure/cable/yellow{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals4,/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 10},/turf/simulated/floor/tiled/eris/steel/cargo,/area/quartermaster/storage) +"af" = (/obj/item/bee_pack,/obj/item/honey_frame,/obj/item/honey_frame,/obj/item/honey_frame,/obj/item/honey_frame,/obj/item/honey_frame,/obj/item/weapon/tool/crowbar,/obj/item/bee_smoker,/obj/item/beehive_assembly,/obj/structure/closet/crate/hydroponics{desc = "All you need to start your own honey farm."; name = "beekeeping crate"},/obj/item/beehive_assembly,/obj/item/beehive_assembly,/obj/item/beehive_assembly,/obj/item/beehive_assembly,/obj/item/bee_pack,/obj/item/bee_pack,/obj/item/bee_pack,/obj/item/honey_frame,/obj/item/honey_frame,/obj/item/honey_frame,/obj/machinery/power/apc/angled{dir = 1},/obj/structure/cable/green{icon_state = "0-2"},/obj/effect/floor_decal/milspec/color/green/half{dir = 1},/turf/simulated/floor/tiled,/area/hydroponics) +"ag" = (/obj/machinery/atmospherics/pipe/simple/visible/green,/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{dir = 9},/obj/structure/cable/orange{icon_state = "1-2"},/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos/monitoring) +"ah" = (/obj/machinery/atmospherics/omni/atmos_filter{name = "CO2 Filter"; tag_north = 2; tag_south = 1; tag_west = 5},/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos/storage) +"ai" = (/obj/machinery/vending/tool,/turf/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/locker_room) +"aj" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/angled_bay/standard/glass{dir = 4; name = "Hydroponics/Kitchen Access"; req_one_access = list(35,28)},/turf/simulated/floor/tiled/steel_ridged,/area/hydroponics) +"ak" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable/yellow{icon_state = "2-8"},/turf/simulated/floor/tiled/eris/steel/cargo,/area/quartermaster/storage) +"al" = (/obj/machinery/atmospherics/pipe/manifold4w/hidden/green,/obj/machinery/meter,/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable{icon_state = "1-4"},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/monitoring) +"am" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor,/area/maintenance/stellardelight/deck2/starboardsolars) +"an" = (/obj/machinery/door/firedoor/glass,/obj/structure/cable/blue{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/door/airlock/angled_bay/hatch{dir = 4; name = "maintenance access"; stripe_color = "#454545"},/turf/simulated/floor/tiled/steel_ridged,/area/stellardelight/deck2/starboard) +"ao" = (/obj/machinery/atmospherics/pipe/simple/visible/green,/obj/machinery/atmospherics/pipe/simple/visible/red{dir = 4},/obj/structure/cable/orange{icon_state = "1-2"},/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos/storage) +"ap" = (/obj/machinery/hologram/holopad,/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/monotile,/area/hydroponics) +"aq" = (/obj/effect/landmark/start/atmostech,/turf/simulated/floor,/area/stellardelight/deck2/combustionworkshop) +"ar" = (/obj/effect/floor_decal/industrial/warning/corner{dir = 8},/obj/structure/cable/yellow{icon_state = "1-4"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/eris/steel/cargo,/area/quartermaster/storage) +"as" = (/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/eris/steel/brown_platform,/area/crew_quarters/bar) +"at" = (/obj/effect/floor_decal/industrial/outline/yellow,/obj/structure/cable{icon_state = "0-2"},/obj/structure/cable{icon_state = "16-0"},/obj/structure/disposalpipe/up{dir = 4},/obj/machinery/door/firedoor/glass,/turf/simulated/floor,/area/maintenance/stellardelight/deck2/starboardfore) +"au" = (/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals_central5{dir = 8},/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore) +"av" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/mob/living/simple_mob/animal/goat{name = "Ted"},/turf/simulated/floor/tiled/freezer/cold,/area/crew_quarters/kitchen) +"aw" = (/obj/structure/table/standard,/obj/random/tech_supply,/obj/random/tech_supply,/obj/random/tech_supply,/obj/random/tech_supply,/obj/structure/symbol/sa{pixel_y = 32},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/structure/cable/green{icon_state = "4-8"},/turf/simulated/floor/tiled/techmaint,/area/storage/primary) +"ax" = (/obj/structure/cable/green{icon_state = "1-8"},/turf/simulated/floor,/area/maintenance/stellardelight/deck2/starboardfore) +"ay" = (/obj/machinery/atmospherics/pipe/simple/hidden/fuel{dir = 5},/turf/simulated/floor/tiled/techfloor,/area/stellardelight/deck2/fuelstorage) +"az" = (/obj/effect/floor_decal/industrial/warning{dir = 4},/obj/structure/cable/cyan{icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4},/obj/machinery/camera/network/engineering{dir = 1},/turf/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/engine_eva) +"aA" = (/turf/simulated/floor/tiled/monotile,/area/stellardelight/deck2/fore) +"aB" = (/obj/structure/cable/green{icon_state = "4-8"},/obj/structure/cable/green{icon_state = "1-4"},/obj/structure/cable/green{icon_state = "1-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore) +"aC" = (/obj/machinery/computer/guestpass{pixel_y = 24},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 1},/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore) +"aD" = (/obj/structure/cable/orange{icon_state = "4-8"},/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/angled_bay/standard/color{dir = 4; door_color = "#e6ab22"; fill_color = "#877242"; name = "Combustion Workshop"; req_access = list(24); stripe_color = "#2ebfbd"},/turf/simulated/floor/tiled/steel_ridged,/area/stellardelight/deck2/combustionworkshop) +"aE" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/effect/floor_decal/steeldecal/steel_decals6{dir = 8},/turf/simulated/floor/tiled/eris/dark/cargo,/area/crew_quarters/recreation_area) +"aF" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/obj/effect/floor_decal/milspec/color/white/half,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/stellardelight/deck2/central) +"aG" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/effect/floor_decal/milspec/color/green/half{dir = 4},/turf/simulated/floor/tiled,/area/hydroponics) +"aH" = (/obj/effect/floor_decal/milspec/color/black/corner,/obj/effect/floor_decal/milspec/color/silver/corner{dir = 4},/obj/structure/closet/hydrant{dir = 4; pixel_x = 27},/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore) +"aI" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/door/firedoor/glass,/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/obj/machinery/door/airlock/angled_bay/double{name = "maintenance access"; stripe_color = "#454545"},/turf/simulated/floor,/area/maintenance/stellardelight/deck2/starboardsolars) +"aJ" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/disposalpipe/segment,/mob/living/simple_mob/animal/passive/cow,/turf/simulated/floor/grass,/area/hydroponics) +"aK" = (/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/turf/simulated/floor/lino,/area/crew_quarters/bar) +"aL" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/item/device/radio/intercom{dir = 4; pixel_x = 24},/turf/simulated/floor/tiled,/area/stellardelight/deck2/starboard) +"aM" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor,/area/maintenance/stellardelight/deck2/starboardsolars) +"aN" = (/turf/simulated/wall/bay/r_wall/steel,/area/crew_quarters/locker) +"aO" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/structure/table/reinforced,/obj/random/tech_supply,/obj/random/tech_supply,/turf/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/engine_eva) +"aP" = (/obj/effect/floor_decal/milspec/color/black/corner{dir = 1},/obj/effect/floor_decal/milspec/color/silver/corner{dir = 8},/obj/structure/closet/hydrant{dir = 8; pixel_x = -27},/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore) +"aQ" = (/obj/structure/grille,/turf/simulated/floor/airless,/area/engineering/engine_room) +"aR" = (/obj/effect/floor_decal/industrial/outline/yellow,/obj/vehicle/train/trolley{dir = 1},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/turf/simulated/floor/tiled/eris/steel/cargo,/area/quartermaster/storage) +"aS" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/effect/floor_decal/milspec/color/green/half{dir = 4},/obj/item/weapon/stool/padded{dir = 4},/obj/effect/landmark/start/botanist,/turf/simulated/floor/tiled,/area/hydroponics) +"aT" = (/obj/machinery/door/firedoor/glass,/obj/structure/window/bay/reinforced,/obj/machinery/door/blast/angled/open{dir = 4; id = "botanylockdown"},/obj/structure/low_wall/bay/reinforced/steel,/turf/simulated/floor,/area/maintenance/stellardelight/deck2/portfore) +"aU" = (/turf/simulated/floor/tiled/monotile,/area/stellardelight/deck2/aftport) +"aV" = (/obj/structure/reagent_dispensers/watertank,/turf/simulated/floor,/area/maintenance/stellardelight/deck2/portaft) +"aW" = (/obj/structure/cable/orange{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/universal,/turf/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/engine_eva) +"aX" = (/obj/machinery/atmospherics/pipe/simple/hidden/cyan,/obj/structure/cable/white{icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/white{icon_state = "1-8"},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/cmostore) +"aY" = (/obj/machinery/light,/turf/simulated/floor/tiled/eris/steel/brown_platform,/area/crew_quarters/bar) +"aZ" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/camera/network/engineering{dir = 4},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/monitoring) +"ba" = (/obj/structure/cable/green{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/stellardelight/deck2/starboard) +"bb" = (/obj/machinery/light/floortube{dir = 4; pixel_x = 6},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/effect/floor_decal/milspec/color/green/half{dir = 8},/turf/simulated/floor/tiled,/area/hydroponics) +"bc" = (/obj/machinery/seed_extractor,/obj/effect/floor_decal/milspec/color/green/half{dir = 4},/turf/simulated/floor/tiled,/area/hydroponics) +"bd" = (/obj/effect/landmark/start/engineer,/turf/simulated/floor/tiled/eris/dark/gray_platform,/area/engineering/workshop) +"be" = (/obj/machinery/computer/station_alert,/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/monitoring) +"bf" = (/turf/simulated/open,/area/stellardelight/deck2/triage) +"bg" = (/obj/machinery/atmospherics/pipe/simple/visible/black{dir = 10},/turf/simulated/wall/bay/r_wall/steel,/area/stellardelight/deck2/port) +"bh" = (/obj/machinery/door/firedoor/glass,/obj/structure/cable/green{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/door/airlock/angled_bay/hatch/engineering{dir = 4},/turf/simulated/floor/tiled/steel_ridged,/area/stellardelight/deck2/port) +"bi" = (/obj/structure/cable/white{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/reception) +"bj" = (/obj/machinery/door/firedoor/glass,/obj/structure/window/bay/reinforced,/obj/structure/sign/securearea{desc = "A warning sign which reads 'HIGH VOLTAGE'"; icon_state = "shock"; name = "\improper HIGH VOLTAGE"; pixel_y = 32},/obj/structure/low_wall/bay/reinforced/orange,/turf/simulated/floor,/area/engineering/engine_room) +"bk" = (/obj/machinery/light{dir = 8},/obj/structure/cable{icon_state = "1-2"},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 8},/turf/simulated/floor/tiled,/area/stellardelight/deck2/aftport) +"bl" = (/obj/structure/cable/yellow{icon_state = "1-2"},/obj/structure/noticeboard{pixel_x = -32},/turf/simulated/floor/tiled/eris/steel/cargo,/area/quartermaster/storage) +"bm" = (/obj/structure/sign/directions/science{pixel_x = 32},/obj/structure/sign/directions/dorms{pixel_x = 32; pixel_y = 6},/obj/structure/sign/directions{desc = "A direction sign, pointing out the way to the shuttle bay."; name = "\improper Shuttle Bay"; pixel_x = 32; pixel_y = -6},/obj/structure/sign/directions/security{pixel_x = 32; pixel_y = 12},/obj/structure/sign/directions/stairs_down{pixel_x = 32; pixel_y = 18},/obj/structure/railing/grey{dir = 4},/turf/simulated/floor/tiled/monotile,/area/stellardelight/deck2/aftport) +"bn" = (/obj/structure/railing/grey{dir = 8},/obj/structure/cable/white{icon_state = "32-1"},/turf/simulated/floor/tiled/monotile,/area/stellardelight/deck2/triage) +"bo" = (/obj/machinery/atmospherics/pipe/simple/hidden/cyan{dir = 9},/obj/machinery/power/apc/angled{dir = 4},/obj/structure/cable/orange{icon_state = "0-8"},/obj/structure/cable/orange{icon_state = "2-8"},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/monitoring) +"bp" = (/obj/structure/cable/green{icon_state = "4-8"},/obj/structure/cable/green{icon_state = "1-8"},/turf/simulated/floor/tiled/eris/steel/brown_platform,/area/crew_quarters/bar) +"bq" = (/obj/machinery/light{dir = 8},/obj/effect/floor_decal/milspec/color/green/half{dir = 8},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/hydroponics) +"br" = (/obj/structure/sign/directions/science{pixel_x = -32},/obj/structure/sign/directions/dorms{pixel_x = -32; pixel_y = 6},/obj/structure/sign/directions{desc = "A direction sign, pointing out the way to the shuttle bay."; name = "\improper Shuttle Bay"; pixel_x = -32; pixel_y = -6},/obj/structure/sign/directions/security{pixel_x = -32; pixel_y = 12},/obj/structure/sign/directions/stairs_down{pixel_x = -32; pixel_y = 18},/obj/structure/railing/grey{dir = 8},/turf/simulated/floor/tiled/monotile,/area/stellardelight/deck2/aftstarboard) +"bs" = (/obj/structure/table/standard,/obj/item/device/healthanalyzer,/obj/machinery/light{dir = 8},/obj/machinery/atmospherics/unary/vent_scrubber/on,/turf/simulated/floor/tiled/white,/area/medical/surgery2) +"bt" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/button/remote/blast_door{dir = 4; id = "botanylockdown"; name = "Window Lockdown"; pixel_x = -25},/obj/effect/floor_decal/milspec/color/green/half{dir = 8},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/hydroponics) +"bu" = (/obj/structure/table/glass,/obj/item/weapon/storage/box/gloves{pixel_x = 4; pixel_y = 4},/obj/item/weapon/storage/box/masks,/obj/machinery/power/apc/angled{dir = 8},/obj/structure/cable/white{icon_state = "0-4"},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/stellardelight/deck2/triage) +"bv" = (/turf/simulated/floor/tiled/monotile,/area/stellardelight/deck2/aftstarboard) +"bw" = (/obj/machinery/power/pointdefense{id_tag = "sd_pd"},/obj/effect/floor_decal/industrial/warning/full,/obj/structure/cable/green,/turf/simulated/floor/airless,/area/stellardelight/deck2/exterior) +"bx" = (/obj/structure/sign/double/barsign,/turf/simulated/wall/bay/steel,/area/crew_quarters/bar) +"by" = (/obj/structure/cable/green{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 8},/turf/simulated/floor/tiled/eris/steel/brown_platform,/area/crew_quarters/bar) +"bz" = (/obj/effect/floor_decal/industrial/warning{dir = 8},/obj/structure/cable/cyan{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/hidden,/obj/machinery/camera/network/engine{dir = 1},/turf/simulated/floor/tiled/eris/dark/monofloor,/area/engineering/engine_room) +"bA" = (/obj/effect/floor_decal/milspec/color/blue/half{dir = 4},/turf/simulated/floor/tiled,/area/stellardelight/deck2/port) +"bB" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/eris/steel/brown_platform,/area/quartermaster/storage) +"bC" = (/obj/structure/bed/chair/bay/shuttle{dir = 4},/obj/item/device/radio/intercom{pixel_y = -24},/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck2/starboardescape) +"bD" = (/obj/machinery/power/pointdefense{id_tag = "sd_pd"},/obj/effect/floor_decal/industrial/warning/full,/obj/structure/cable/green{icon_state = "0-2"},/turf/simulated/floor/airless,/area/stellardelight/deck2/exterior) +"bE" = (/obj/machinery/door/blast/angled,/turf/simulated/floor,/area/quartermaster/storage) +"bF" = (/obj/machinery/atmospherics/pipe/simple/visible/black,/turf/simulated/wall/bay/r_wall/orange,/area/engineering/atmos/storage) +"bG" = (/obj/structure/cable/yellow{icon_state = "32-8"},/obj/structure/sign/department/miner_dock{pixel_y = 32},/turf/simulated/floor/tiled/monotile,/area/quartermaster/storage) +"bH" = (/obj/structure/cable/orange{icon_state = "4-8"},/obj/structure/cable{icon_state = "1-2"},/turf/simulated/floor/airless,/area/stellardelight/deck2/exterior) +"bI" = (/obj/structure/bed/chair/bay/shuttle{dir = 8},/obj/item/device/radio/intercom{pixel_y = -24},/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck2/portescape) +"bJ" = (/obj/structure/cable/white{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/stellardelight/deck2/triage) +"bK" = (/obj/structure/table/rack/steel,/obj/item/weapon/circuitboard/sleeper{pixel_x = -3; pixel_y = 3},/obj/item/weapon/circuitboard/sleeper_console{pixel_x = -2; pixel_y = 2},/obj/item/weapon/circuitboard/body_scanner{pixel_x = -1; pixel_y = 1},/obj/item/weapon/circuitboard/scanner_console,/obj/item/weapon/circuitboard/grinder{pixel_x = 1; pixel_y = -1},/obj/item/weapon/circuitboard/bioprinter{pixel_x = 2; pixel_y = -2},/obj/item/weapon/circuitboard/chem_master{pixel_x = 3; pixel_y = -3},/turf/simulated/floor/tiled/eris/dark/techfloor_grid,/area/storage/tech) +"bL" = (/obj/structure/stairs/spawner/north,/obj/structure/railing/grey{dir = 8},/turf/simulated/floor,/area/stellardelight/deck2/central) +"bM" = (/obj/structure/cable/orange{icon_state = "1-2"},/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/mob/living/simple_mob/animal/passive/opossum/poppy,/turf/simulated/floor/tiled/eris/dark/gray_platform,/area/engineering/workshop) +"bN" = (/obj/structure/cable/green{icon_state = "1-8"},/obj/structure/cable/green{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore) +"bO" = (/obj/item/device/radio/intercom{dir = 1; pixel_y = 24},/mob/living/simple_mob/otie/red/chubby/cocoa,/turf/simulated/floor/tiled/eris/steel/brown_platform,/area/crew_quarters/bar) +"bP" = (/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/machinery/alarm/angled,/obj/machinery/space_heater,/turf/simulated/floor,/area/maintenance/stellardelight/deck2/portfore) +"bQ" = (/obj/structure/closet/secure_closet/quartermaster,/obj/item/weapon/storage/backpack/dufflebag,/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/obj/machinery/firealarm/angled{dir = 8},/turf/simulated/floor/wood,/area/quartermaster/qm) +"bR" = (/obj/machinery/door/firedoor/glass,/obj/structure/cable/orange{icon_state = "1-2"},/obj/machinery/door/airlock/angled_bay/hatch{door_color = "#e6ab22"; name = "maintenance access"; req_one_access = list(24); stripe_color = "#e6ab22"},/turf/simulated/floor/tiled/steel_ridged,/area/engineering/atmos/monitoring) +"bS" = (/obj/machinery/biogenerator,/obj/machinery/light{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/effect/floor_decal/milspec/color/green/half{dir = 4},/turf/simulated/floor/tiled,/area/hydroponics) +"bT" = (/obj/structure/cable/orange{icon_state = "1-2"},/turf/simulated/wall/bay/r_wall/steel,/area/engineering/storage) +"bU" = (/obj/structure/filingcabinet,/obj/machinery/light,/obj/machinery/alarm/angled{dir = 8},/turf/simulated/floor/wood,/area/quartermaster/qm) +"bV" = (/obj/structure/table/woodentable,/obj/item/weapon/book/manual/bar_guide,/obj/item/device/radio/intercom{dir = 8; pixel_x = -24},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/turf/simulated/floor/wood,/area/stellardelight/deck2/barbackroom) +"bW" = (/obj/effect/floor_decal/milspec/cargo,/obj/structure/cable/yellow{icon_state = "4-8"},/turf/simulated/floor/tiled/eris/steel/brown_platform,/area/quartermaster/storage) +"bX" = (/obj/structure/cable{icon_state = "2-4"},/obj/structure/cable{icon_state = "1-2"},/obj/structure/cable{icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/obj/machinery/hologram/holopad,/turf/simulated/floor/tiled,/area/stellardelight/deck2/aftstarboard) +"bY" = (/turf/simulated/floor/tiled/steel_grid,/area/stellardelight/deck2/aftport) +"bZ" = (/obj/machinery/computer/atmoscontrol,/obj/machinery/light/floortube{dir = 1; pixel_y = 6},/obj/machinery/requests_console/preset/engineering{pixel_y = 30},/turf/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/engineering_monitoring) +"ca" = (/obj/structure/medical_stand,/turf/simulated/floor/tiled/white,/area/medical/surgery) +"cb" = (/obj/structure/table/fancyblack,/turf/simulated/floor/carpet/sblucarpet,/area/stellardelight/deck2/briefingroom) +"cc" = (/obj/machinery/power/smes/buildable{RCon_tag = "Engine - Core"; charge = 2e+006; input_attempt = 1; input_level = 200000; name = "Engine"; output_level = 250000},/obj/structure/cable/cyan{icon_state = "0-8"},/turf/simulated/floor/plating,/area/engineering/storage) +"cd" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/obj/machinery/floodlight,/turf/simulated/floor/plating,/area/engineering/storage) +"ce" = (/obj/machinery/vending/wardrobe/cargodrobe,/obj/machinery/status_display/supply_display{pixel_y = 32},/turf/simulated/floor/tiled/eris/steel/cargo,/area/quartermaster/storage) +"cf" = (/obj/machinery/atmospherics/pipe/simple/hidden{dir = 10},/turf/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/engine_eva) +"cg" = (/obj/structure/bed/chair/comfy/blue,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/requests_console/preset/bridge{pixel_y = 30},/obj/structure/cable/blue{icon_state = "4-8"},/turf/simulated/floor/carpet/sblucarpet,/area/stellardelight/deck2/briefingroom) +"ch" = (/turf/simulated/wall/bay/r_wall/green,/area/crew_quarters/kitchen) +"ci" = (/obj/structure/cable/green{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/turf/simulated/floor/tiled,/area/stellardelight/deck2/aftport) +"cj" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/turf/simulated/floor/tiled,/area/stellardelight/deck2/aftport) +"ck" = (/obj/structure/table/reinforced,/obj/item/weapon/reagent_containers/spray/cleaner{desc = "Someone has crossed out the 'Space' from Space Cleaner and written in Chemistry. Scrawled on the back is, 'Okay, whoever filled this with polytrinic acid, it was only funny the first time. It was hard enough replacing the CMO's first cat!'"; name = "Chemistry Cleaner"},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/chemistry) +"cl" = (/obj/machinery/atmospherics/pipe/simple/hidden/cyan,/turf/simulated/wall/bay/r_wall/orange,/area/engineering/atmos/monitoring) +"cm" = (/obj/machinery/shieldgen,/turf/simulated/floor/plating,/area/engineering/storage) +"cn" = (/obj/structure/sign/painting/public{pixel_x = -30},/obj/structure/cable{icon_state = "1-2"},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 8},/turf/simulated/floor/tiled,/area/stellardelight/deck2/port) +"co" = (/obj/effect/floor_decal/steeldecal/steel_decals5,/obj/effect/floor_decal/steeldecal/steel_decals_central5,/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore) +"cp" = (/obj/machinery/light/small{dir = 1},/obj/machinery/power/thermoregulator,/turf/simulated/floor/plating,/area/engineering/storage) +"cq" = (/obj/machinery/air_sensor{frequency = 1438; id_tag = "burn_chamber"; output = 63},/obj/machinery/camera/network/engine,/turf/simulated/floor/reinforced/airless,/area/stellardelight/deck2/combustionworkshop) +"cr" = (/obj/structure/cable/cyan{icon_state = "1-2"},/turf/simulated/floor/airless,/area/engineering/engine_room) +"cs" = (/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 1},/obj/machinery/newscaster{pixel_y = 28},/turf/simulated/floor/tiled,/area/stellardelight/deck2/aftport) +"ct" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/eris/dark/cargo,/area/crew_quarters/recreation_area) +"cu" = (/obj/structure/closet/secure_closet/freezer/meat,/turf/simulated/floor/tiled/freezer/cold,/area/crew_quarters/kitchen) +"cv" = (/turf/simulated/wall/bay/r_wall/steel,/area/stellardelight/deck2/fuelstorage) +"cw" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/eris/cafe,/area/crew_quarters/kitchen) +"cx" = (/obj/machinery/atmospherics/pipe/tank/nitrous_oxide,/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos/storage) +"cy" = (/obj/machinery/atmospherics/pipe/simple/hidden/fuel{dir = 4},/obj/structure/disposalpipe/sortjunction/flipped{dir = 8; name = "Void"; sortType = "Void"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable{icon_state = "4-8"},/turf/simulated/floor/tiled/eris/steel/cargo,/area/quartermaster/storage) +"cz" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/obj/structure/sign/department/cargo{pixel_x = 32},/obj/structure/closet/emcloset,/turf/simulated/floor/tiled,/area/stellardelight/deck2/aftport) +"cA" = (/obj/structure/sign/poster{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 8},/turf/simulated/floor/tiled,/area/stellardelight/deck2/starboard) +"cB" = (/obj/structure/closet/crate/bin,/obj/machinery/light/small{dir = 1},/turf/simulated/floor/wood,/area/stellardelight/deck2/barbackroom) +"cC" = (/obj/structure/flora/pottedplant/decorative,/turf/simulated/floor/tiled/eris/dark/cargo,/area/crew_quarters/recreation_area) +"cD" = (/obj/effect/floor_decal/industrial/warning{dir = 1},/obj/structure/cable/white{icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/turf/simulated/floor/tiled/white,/area/medical/surgery2) +"cE" = (/obj/machinery/atmospherics/pipe/tank/oxygen,/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos/storage) +"cF" = (/obj/structure/cable/orange{icon_state = "1-8"},/turf/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/engine_eva) +"cG" = (/obj/structure/cable/orange{icon_state = "1-2"},/obj/structure/cable/orange{icon_state = "2-8"},/obj/structure/cable/orange{icon_state = "1-8"},/turf/simulated/floor/airless,/area/stellardelight/deck2/exterior) +"cH" = (/obj/machinery/requests_console{department = "Cargo Bay"; departmentType = 2; dir = 8; pixel_x = 28},/turf/simulated/floor/wood,/area/quartermaster/qm) +"cI" = (/obj/structure/sign/painting/public{pixel_y = 30},/obj/structure/sign/painting/public{pixel_y = -30},/obj/effect/floor_decal/steeldecal/steel_decals5,/turf/simulated/floor/tiled,/area/storage/art) +"cJ" = (/obj/structure/bed/chair/comfy/blue,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/structure/cable/blue{icon_state = "4-8"},/turf/simulated/floor/carpet/sblucarpet,/area/stellardelight/deck2/briefingroom) +"cK" = (/obj/machinery/status_display{pixel_y = 32},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 1},/turf/simulated/floor/tiled,/area/stellardelight/deck2/aftport) +"cL" = (/obj/structure/cable/cyan{icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/turf/simulated/floor/tiled/eris/dark/techfloor_grid,/area/engineering/engine_room) +"cM" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable{icon_state = "2-8"},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/monitoring) +"cN" = (/obj/effect/floor_decal/industrial/warning{dir = 4},/obj/machinery/embedded_controller/radio/airlock/airlock_controller{id_tag = "engine_airlock"; pixel_y = 24; req_one_access = list(10,11); tag_airpump = "engine_airpump"; tag_chamber_sensor = "engine_sensor"; tag_exterior_door = "engine_exterior"; tag_interior_door = "engine_interior"},/obj/machinery/atmospherics/unary/vent_pump/high_volume{frequency = 1379; id_tag = "engine_airpump"},/turf/simulated/floor/tiled/eris/dark/monofloor,/area/engineering/engine_room) +"cO" = (/obj/structure/cable/green{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/turf/simulated/floor/tiled,/area/stellardelight/deck2/port) +"cP" = (/obj/machinery/alarm/angled{dir = 8},/obj/effect/floor_decal/milspec/color/black/corner,/obj/effect/floor_decal/milspec/color/silver/corner{dir = 4},/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore) +"cQ" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/angled_bay/hatch{dir = 4; name = "maintenance access"; req_access = list(25); stripe_color = "#454545"},/obj/structure/cable/green{icon_state = "4-8"},/turf/simulated/floor/tiled/steel_ridged,/area/stellardelight/deck2/barbackroom) +"cR" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/cmostore) +"cS" = (/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/stellardelight/deck2/starboard) +"cT" = (/obj/structure/cable/green{icon_state = "1-4"},/obj/structure/cable/green{icon_state = "2-4"},/turf/simulated/floor/airless,/area/stellardelight/deck2/exterior) +"cU" = (/obj/effect/floor_decal/industrial/warning,/obj/machinery/conveyor{dir = 1; id = "cargounload"},/turf/simulated/floor/tiled/eris/steel/cargo,/area/quartermaster/storage) +"cV" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/obj/effect/landmark{name = "morphspawn"},/obj/structure/reagent_dispensers/fueltank,/turf/simulated/floor,/area/maintenance/stellardelight/deck2/portaft) +"cW" = (/obj/structure/table/standard,/obj/machinery/microwave,/obj/machinery/atmospherics/unary/vent_scrubber/on,/obj/machinery/button/remote/blast_door{id = "kitchenlockdown"; name = "Window Lockdown"; pixel_x = 2; pixel_y = 26},/turf/simulated/floor/tiled/eris/cafe,/area/crew_quarters/kitchen) +"cX" = (/obj/machinery/door/firedoor/glass,/obj/structure/window/bay/reinforced,/obj/machinery/door/blast/angled/open{dir = 2; id = "qmwindows"; name = "Privacy Shutters"},/obj/structure/low_wall/bay/reinforced/brown,/turf/simulated/floor,/area/quartermaster/qm) +"cY" = (/obj/machinery/light,/obj/effect/floor_decal/milspec/color/blue/half,/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore) +"cZ" = (/obj/item/device/flashlight/lamp/green{pixel_x = 7; pixel_y = 16},/obj/item/weapon/folder/blue_captain{pixel_x = -6; pixel_y = 7},/obj/structure/table/darkglass,/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/obj/machinery/requests_console/preset/captain{pixel_x = -30},/obj/item/weapon/melee/chainofcommand,/obj/item/weapon/folder/blue_captain{pixel_x = -6},/turf/simulated/floor/carpet/blucarpet,/area/crew_quarters/captain) +"da" = (/obj/structure/cable/orange{icon_state = "1-8"},/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/turf/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/locker_room) +"db" = (/obj/structure/table/reinforced,/obj/item/weapon/paper{info = "For those who didn't know yet, the big blue box in here is a 'grid checker' which will shut off the power if a dangerous power spike erupts into the powernet, shutting everything down protects everything from electrical damage, however the outages can be disruptive to ship operations, so it is designed to restore power after a somewhat significant delay, up to fifteen minutes or so. The grid checker can be manually hacked in order to end the outage sooner. To do that, you must cut three specific wires which do not cause a red light to shine, then pulse a fourth wire. Electrical protection is highly recommended when doing maintenance on the grid checker."; name = "grid checker info"},/obj/item/stack/cable_coil{pixel_x = 3; pixel_y = 3},/obj/item/weapon/storage/box/lights/mixed,/turf/simulated/floor/plating,/area/engineering/storage) +"dc" = (/obj/machinery/atmospherics/pipe/simple/hidden/cyan,/obj/structure/cable/white{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 5},/turf/simulated/floor/tiled/eris/white/cargo,/area/stellardelight/deck2/triage) +"dd" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable{icon_state = "1-2"},/turf/simulated/floor/tiled/eris/dark/techfloor_grid,/area/engineering/storage) +"de" = (/obj/structure/cable/green{icon_state = "4-8"},/turf/simulated/floor,/area/maintenance/stellardelight/deck2/starboardfore) +"df" = (/obj/structure/cable{icon_state = "0-2"},/obj/structure/cable,/obj/machinery/power/grid_checker,/turf/simulated/floor/plating,/area/engineering/storage) +"dg" = (/obj/structure/cable/white{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/machinery/hologram/holopad,/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/chemistry) +"dh" = (/obj/structure/table/woodentable,/obj/machinery/computer/med_data/laptop{dir = 8},/turf/simulated/floor/carpet/blue,/area/medical/psych) +"di" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/obj/structure/sign/poster{dir = 1},/obj/machinery/light/small{dir = 8},/turf/simulated/floor/tiled/techfloor,/area/stellardelight/deck2/fuelstorage) +"dj" = (/obj/structure/cable/green{icon_state = "2-8"},/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/turf/simulated/floor/tiled,/area/stellardelight/deck2/aftport) +"dk" = (/obj/structure/cable/green{icon_state = "1-2"},/turf/simulated/floor/airless,/area/stellardelight/deck2/exterior) +"dl" = (/obj/structure/reagent_dispensers/fueltank,/turf/simulated/floor/plating,/area/engineering/storage) +"dm" = (/obj/item/device/radio/intercom{dir = 1; pixel_x = -32; pixel_y = 24},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/eris/cafe,/area/crew_quarters/kitchen) +"dn" = (/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 1},/obj/machinery/disposal/wall,/obj/structure/disposalpipe/trunk,/turf/simulated/floor/tiled,/area/stellardelight/deck2/port) +"do" = (/turf/simulated/wall/bay/brown,/area/quartermaster/storage) +"dp" = (/obj/machinery/light{dir = 1},/obj/effect/floor_decal/milspec/color/blue/half{dir = 1},/turf/simulated/floor/tiled,/area/stellardelight/deck2/central) +"dq" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/eris/steel/brown_platform,/area/quartermaster/storage) +"dr" = (/obj/structure/cable/white{icon_state = "4-8"},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/stellardelight/deck2/triage) +"ds" = (/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/stellardelight/deck2/triage) +"dt" = (/obj/machinery/atmospherics/pipe/simple/hidden/cyan{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/green{dir = 1},/obj/structure/cable/orange{icon_state = "4-8"},/obj/structure/cable{icon_state = "1-2"},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/monitoring) +"du" = (/obj/structure/bed/chair/office/dark{dir = 4},/turf/simulated/floor/wood,/area/quartermaster/qm) +"dv" = (/obj/structure/window/reinforced{dir = 8; pixel_x = -4},/obj/machinery/light{dir = 1},/obj/structure/bed/chair/comfy/brown,/turf/simulated/floor/glass/reinforced,/area/stellardelight/deck2/fore) +"dw" = (/obj/item/weapon/stool/padded,/obj/effect/floor_decal/spline/plain{dir = 1},/turf/simulated/floor/lino,/area/crew_quarters/bar) +"dx" = (/obj/machinery/atmospherics/pipe/simple/visible/black{dir = 8},/obj/structure/cable/orange{icon_state = "1-2"},/turf/simulated/floor,/area/maintenance/stellardelight/deck2/portsolars) +"dy" = (/obj/machinery/camera/network/halls{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals5,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/stellardelight/deck2/starboard) +"dz" = (/obj/structure/cable/green{icon_state = "1-2"},/obj/structure/cable/green{icon_state = "1-4"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/obj/machinery/hologram/holopad,/turf/simulated/floor/tiled,/area/stellardelight/deck2/aftport) +"dA" = (/obj/machinery/door/firedoor/glass,/obj/structure/window/bay/reinforced,/obj/structure/low_wall/bay/reinforced/orange,/turf/simulated/floor,/area/engineering/workshop) +"dB" = (/obj/structure/cable/green{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled,/area/stellardelight/deck2/central) +"dC" = (/obj/structure/railing/grey,/obj/structure/railing/grey{dir = 4},/turf/simulated/open,/area/maintenance/stellardelight/deck2/portaft) +"dD" = (/obj/structure/table/standard,/obj/item/stack/nanopaste,/obj/machinery/power/apc/angled{dir = 1},/obj/structure/cable/white{icon_state = "0-2"},/turf/simulated/floor/tiled/white,/area/medical/surgery) +"dE" = (/obj/effect/floor_decal/steeldecal/steel_decals5,/obj/structure/flora/pottedplant/minitree,/turf/simulated/floor/tiled,/area/stellardelight/deck2/starboard) +"dF" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/turf/simulated/floor/grass,/area/hydroponics) +"dG" = (/obj/effect/floor_decal/emblem/stellardelight{dir = 9},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 1},/obj/structure/closet/walllocker_double/emergency_engi/north,/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore) +"dH" = (/obj/machinery/atmospherics/binary/circulator{anchored = 1; dir = 1},/obj/machinery/camera/network/engine{dir = 4},/turf/simulated/floor,/area/stellardelight/deck2/combustionworkshop) +"dI" = (/obj/structure/cable/green{icon_state = "1-2"},/turf/simulated/floor/tiled,/area/stellardelight/deck2/aftstarboard) +"dJ" = (/obj/machinery/status_display/supply_display{pixel_x = -32},/turf/simulated/floor/wood,/area/quartermaster/qm) +"dK" = (/obj/machinery/computer/transhuman/designer{dir = 8},/obj/structure/sign/painting/library_secure{pixel_y = 30},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/reception) +"dL" = (/obj/structure/stairs/spawner/north,/obj/structure/railing/grey{dir = 4},/turf/simulated/floor,/area/stellardelight/deck2/aftport) +"dM" = (/obj/structure/cable/green{icon_state = "1-8"},/obj/structure/cable/green{icon_state = "1-2"},/turf/simulated/floor/airless,/area/stellardelight/deck2/exterior) +"dN" = (/obj/machinery/atmospherics/pipe/simple/hidden/fuel{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable{icon_state = "4-8"},/turf/simulated/floor/tiled/eris/steel/cargo,/area/quartermaster/storage) +"dO" = (/obj/machinery/light/small{dir = 4},/obj/structure/cable/orange{icon_state = "1-2"},/turf/simulated/floor,/area/maintenance/stellardelight/deck2/portsolars) +"dP" = (/turf/simulated/floor/grass,/area/hydroponics) +"dQ" = (/obj/structure/cable/green{icon_state = "1-4"},/turf/simulated/floor/tiled/monotile,/area/hydroponics) +"dR" = (/obj/machinery/light{dir = 8},/obj/structure/cable{icon_state = "1-2"},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 8},/turf/simulated/floor/tiled,/area/stellardelight/deck2/port) +"dS" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/hologram/holopad,/turf/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/locker_room) +"dT" = (/obj/machinery/computer/atmos_alert{dir = 1},/obj/machinery/camera/network/engineering{dir = 4},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/monitoring) +"dU" = (/obj/structure/bed/chair/backed_red{dir = 4},/obj/effect/landmark/start/visitor,/turf/simulated/floor/tiled/eris/steel/brown_platform,/area/crew_quarters/bar) +"dV" = (/obj/structure/disposalpipe/segment,/turf/simulated/wall/bay/r_wall/steel,/area/stellardelight/deck2/o2production) +"dW" = (/obj/structure/closet/secure_closet/engineering_electrical/double{anchored = 1},/turf/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/locker_room) +"dX" = (/obj/machinery/light{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 8},/turf/simulated/floor/tiled,/area/stellardelight/deck2/port) +"dY" = (/obj/item/weapon/stool/padded{dir = 1},/obj/effect/landmark/start/visitor,/turf/simulated/floor/tiled/eris/dark/cargo,/area/crew_quarters/recreation_area) +"dZ" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/structure/cable/blue{icon_state = "4-8"},/obj/structure/sign/painting/library_secure{pixel_y = 30},/turf/simulated/floor/carpet/sblucarpet,/area/stellardelight/deck2/briefingroom) +"ea" = (/obj/machinery/portable_atmospherics/hydroponics,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/effect/floor_decal/milspec/color/green/half{dir = 8},/turf/simulated/floor/tiled,/area/hydroponics) +"eb" = (/obj/machinery/atmospherics/unary/vent_pump/high_volume{dir = 4; frequency = 1379; id_tag = "d2_portmaint_airpump"},/obj/machinery/embedded_controller/radio/airlock/airlock_controller{id_tag = "d2_portmaint_airlock"; pixel_y = 24; req_one_access = list(13); tag_airpump = "d2_portmaint_airpump"; tag_chamber_sensor = "d2_portmaint_sensor"; tag_exterior_door = "d2_portmaint_exterior"; tag_interior_door = "d2_portmaint_interior"},/obj/machinery/airlock_sensor{dir = 1; id_tag = "d2_portmaint_sensor"; pixel_y = -24; req_access = list(13)},/obj/machinery/light/small,/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable/orange{icon_state = "1-2"},/turf/simulated/floor,/area/maintenance/stellardelight/deck2/portsolars) +"ec" = (/obj/effect/floor_decal/milspec/color/blue/corner{dir = 1},/turf/simulated/floor/tiled,/area/stellardelight/deck2/starboard) +"ed" = (/turf/simulated/floor/wood,/area/quartermaster/qm) +"ee" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/hologram/holopad,/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/cmostore) +"ef" = (/obj/structure/bed/chair/office/light{dir = 1},/obj/machinery/button/remote/airlock{desc = "A remote control switch for the medbay foyer."; id = "MedbayFoyer W"; name = "Medbay Doors Control"; pixel_x = -6; pixel_y = 32},/obj/effect/landmark/start/medical,/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/reception) +"eg" = (/obj/machinery/atmospherics/pipe/simple/hidden/fuel,/turf/simulated/wall/bay/r_wall/orange,/area/stellardelight/deck2/fuelstorage) +"eh" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/eris/dark/techfloor_grid,/area/engineering/storage) +"ei" = (/obj/machinery/atmospherics/unary/vent_scrubber/on,/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 1},/turf/simulated/floor/tiled,/area/stellardelight/deck2/aftport) +"ej" = (/obj/machinery/portable_atmospherics/hydroponics,/obj/effect/floor_decal/milspec/color/green/half,/turf/simulated/floor/tiled,/area/hydroponics) +"ek" = (/obj/structure/sign/directions/recreation{dir = 4; pixel_x = 32},/obj/effect/floor_decal/milspec/color/black/corner,/obj/effect/floor_decal/milspec/color/silver/corner{dir = 4},/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore) +"el" = (/obj/machinery/shieldwallgen,/turf/simulated/floor/plating,/area/engineering/storage) +"em" = (/obj/effect/floor_decal/milspec/color/blue/half{dir = 1},/obj/item/device/radio/beacon,/turf/simulated/floor/tiled,/area/stellardelight/deck2/central) +"en" = (/obj/structure/window/reinforced{dir = 4},/turf/simulated/open,/area/stellardelight/deck2/aftstarboard) +"eo" = (/obj/structure/closet/secure_closet/engineering_welding/double,/turf/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/locker_room) +"ep" = (/obj/machinery/power/apc/angled{dir = 4; name = "night shift APC"; nightshift_setting = 2},/obj/structure/cable{icon_state = "0-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/turf/simulated/floor,/area/maintenance/stellardelight/deck2/starboardfore) +"eq" = (/turf/simulated/wall/bay/r_wall/orange,/area/engineering/atmos/storage) +"er" = (/obj/structure/bed/chair/comfy/blue{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/carpet/sblucarpet,/area/stellardelight/deck2/briefingroom) +"es" = (/obj/structure/disposalpipe/sortjunction/flipped{dir = 1; name = "Sorting Office"; sortType = "Sorting Office"},/turf/simulated/floor/tiled/eris/steel/cargo,/area/quartermaster/storage) +"et" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/monitoring) +"eu" = (/obj/structure/cable/orange{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/red,/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/monitoring) +"ev" = (/obj/structure/closet/secure_closet/personal,/obj/effect/floor_decal/industrial/outline,/obj/effect/floor_decal/steeldecal/steel_decals9,/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 8},/obj/item/clothing/shoes/black,/obj/item/device/communicator,/turf/simulated/floor/tiled/dark,/area/crew_quarters/locker) +"ew" = (/obj/structure/table/steel_reinforced,/obj/machinery/button/remote/blast_door{id = "bridgelockdown"; name = "Bridge Lockdown"; pixel_y = 2},/obj/effect/floor_decal/milspec/color/blue/corner,/turf/simulated/floor/tiled/eris/dark/gray_platform,/area/bridge) +"ex" = (/obj/structure/closet/hydrant{dir = 4; pixel_x = 27},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/stellardelight/deck2/triage) +"ey" = (/obj/machinery/door/firedoor/glass,/obj/structure/window/bay/reinforced,/obj/machinery/door/blast/angled/open{dir = 2; id = "atmoswindowlockdown"},/obj/structure/cable/orange{icon_state = "1-2"},/obj/structure/low_wall/bay/reinforced/steel,/turf/simulated/floor,/area/engineering/atmos/monitoring) +"ez" = (/obj/machinery/atmospherics/pipe/manifold/visible/black{dir = 8},/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos/storage) +"eA" = (/obj/structure/cable/green{icon_state = "4-8"},/turf/simulated/wall/bay/r_wall/steel,/area/maintenance/stellardelight/deck2/starboardfore) +"eB" = (/obj/effect/floor_decal/steeldecal/steel_decals5,/turf/simulated/floor/tiled,/area/stellardelight/deck2/aftport) +"eC" = (/turf/simulated/wall/bay/steel,/area/storage/primary) +"eD" = (/obj/machinery/door/firedoor/glass/hidden/steel{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 4},/obj/structure/sign/directions/stairs_up{pixel_x = 32},/obj/structure/sign/directions/stairs_down{dir = 1; pixel_x = 32; pixel_y = 6},/turf/simulated/floor/tiled,/area/stellardelight/deck2/aftport) +"eE" = (/obj/machinery/atmospherics/pipe/simple/hidden/universal,/turf/simulated/floor,/area/maintenance/stellardelight/deck2/portsolars) +"eF" = (/obj/structure/table/reinforced,/obj/machinery/alarm/angled,/obj/machinery/atmospherics/unary/vent_pump/on,/obj/item/weapon/storage/briefcase/inflatable{pixel_x = 3; pixel_y = 6},/obj/item/weapon/storage/briefcase/inflatable{pixel_y = 3},/obj/item/weapon/storage/briefcase/inflatable{pixel_x = -3},/turf/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/engine_eva) +"eG" = (/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/techfloor,/area/stellardelight/deck2/o2production) +"eH" = (/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/monitoring) +"eI" = (/obj/machinery/atmospherics/pipe/simple/visible/black{dir = 4},/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos/storage) +"eJ" = (/obj/structure/table/reinforced,/obj/machinery/chemical_dispenser/full,/obj/machinery/firealarm/angled{dir = 8},/obj/machinery/camera/network/medbay,/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/chemistry) +"eK" = (/obj/structure/table/steel,/obj/item/device/radio/intercom{dir = 4; pixel_x = 24},/turf/simulated/floor/tiled/eris/dark/techfloor_grid,/area/storage/tech) +"eL" = (/obj/machinery/camera/network/halls{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 8},/turf/simulated/floor/tiled,/area/stellardelight/deck2/port) +"eM" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled,/area/crew_quarters/locker) +"eN" = (/obj/structure/cable/green{icon_state = "1-2"},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 8},/turf/simulated/floor/tiled,/area/stellardelight/deck2/aftstarboard) +"eO" = (/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 1},/obj/item/device/radio/intercom{dir = 1; pixel_y = 24},/turf/simulated/floor/tiled,/area/stellardelight/deck2/aftstarboard) +"eP" = (/obj/structure/cable{icon_state = "2-8"},/turf/simulated/floor/tiled,/area/stellardelight/deck2/aftport) +"eQ" = (/obj/structure/cable/orange{icon_state = "1-8"},/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/machinery/requests_console/preset/engineering{pixel_x = 30},/turf/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/workshop) +"eR" = (/obj/effect/floor_decal/industrial/outline/yellow,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled/eris/steel/cargo,/area/quartermaster/storage) +"eS" = (/obj/structure/table/glass,/obj/structure/window/reinforced{dir = 1},/obj/machinery/computer/med_data/laptop,/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/reception) +"eT" = (/obj/structure/cable/green{icon_state = "1-2"},/obj/effect/landmark{name = "lightsout"},/turf/simulated/floor/tiled,/area/stellardelight/deck2/aftstarboard) +"eU" = (/obj/machinery/atmospherics/unary/vent_scrubber/on,/turf/simulated/floor/tiled/techfloor,/area/stellardelight/deck2/o2production) +"eV" = (/obj/structure/sign/directions/recreation{dir = 8; pixel_x = -32},/obj/effect/floor_decal/milspec/color/black/corner{dir = 1},/obj/effect/floor_decal/milspec/color/silver/corner{dir = 8},/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore) +"eW" = (/obj/machinery/atmospherics/pipe/simple/heat_exchanging{dir = 6},/obj/structure/cable/orange{icon_state = "4-8"},/turf/simulated/floor/airless,/area/stellardelight/deck2/exterior) +"eX" = (/obj/machinery/alarm/angled{dir = 4},/obj/effect/floor_decal/milspec/color/black/corner{dir = 1},/obj/effect/floor_decal/milspec/color/silver/corner{dir = 8},/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore) +"eY" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/turf/simulated/floor/tiled,/area/crew_quarters/locker) +"eZ" = (/obj/structure/cable/green{icon_state = "4-8"},/obj/structure/cable/green{icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled,/area/stellardelight/deck2/central) +"fa" = (/obj/machinery/door/window/westright{dir = 1; req_one_access = list(35,28)},/obj/structure/disposalpipe/segment,/turf/simulated/floor/grass,/area/hydroponics) +"fb" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/turf/simulated/floor/wood,/area/medical/psych) +"fc" = (/obj/structure/bed/chair/bay/shuttle{dir = 4},/obj/machinery/embedded_controller/radio/simple_docking_controller/escape_pod{frequency = 1380; id_tag = "starboard_escape_pod"; pixel_y = 24},/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck2/starboardescape) +"fd" = (/obj/machinery/atmospherics/unary/vent_scrubber/on,/obj/random/trash_pile,/turf/simulated/floor,/area/maintenance/stellardelight/deck2/starboardfore) +"fe" = (/obj/structure/shuttle/engine/propulsion{dir = 8},/turf/simulated/floor,/area/stellardelight/deck2/starboardescape) +"ff" = (/obj/machinery/atmospherics/pipe/simple/visible/green{dir = 4},/obj/machinery/atmospherics/binary/pump/high_power/on,/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos/storage) +"fg" = (/obj/machinery/camera/network/medbay{dir = 1},/turf/simulated/floor/tiled/white,/area/medical/surgery2) +"fh" = (/obj/structure/table/reinforced,/obj/machinery/reagentgrinder,/obj/item/stack/material/phoron,/obj/item/stack/material/phoron,/obj/item/stack/material/phoron,/obj/item/stack/material/phoron,/obj/item/stack/material/phoron,/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/chemistry) +"fi" = (/obj/structure/cable/green{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/eris/steel/brown_platform,/area/crew_quarters/bar) +"fj" = (/obj/structure/closet/secure_closet/engineering_electrical,/turf/simulated/floor/tiled/techfloor,/area/stellardelight/deck2/o2production) +"fk" = (/obj/machinery/vending/engivend,/obj/machinery/light{dir = 1},/turf/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/locker_room) +"fl" = (/turf/simulated/wall/bay/steel,/area/crew_quarters/locker) +"fm" = (/obj/machinery/vending/wardrobe/engidrobe,/obj/machinery/status_display{pixel_y = 32},/turf/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/locker_room) +"fn" = (/obj/structure/sign/directions/evac{dir = 6; pixel_x = -32},/obj/structure/cable{icon_state = "1-2"},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 8},/turf/simulated/floor/tiled,/area/stellardelight/deck2/aftport) +"fo" = (/obj/machinery/recharger{pixel_y = 4},/obj/item/device/perfect_tele{name = "manager's translocator"},/obj/structure/table/darkglass,/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/obj/machinery/light{dir = 4},/obj/effect/landmark/vermin,/turf/simulated/floor/wood,/area/crew_quarters/captain) +"fp" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/lino,/area/crew_quarters/bar) +"fq" = (/obj/structure/closet/secure_closet/engineering_welding,/turf/simulated/floor/tiled/techfloor,/area/stellardelight/deck2/o2production) +"fr" = (/obj/structure/sign/painting/public{pixel_x = -30},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 8},/turf/simulated/floor/tiled,/area/stellardelight/deck2/port) +"fs" = (/obj/machinery/power/apc/angled{dir = 4},/obj/structure/cable/green{icon_state = "0-8"},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 4},/turf/simulated/floor/tiled,/area/stellardelight/deck2/starboard) +"ft" = (/obj/machinery/vitals_monitor,/obj/machinery/atmospherics/pipe/manifold/hidden/cyan,/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/cmostore) +"fu" = (/obj/machinery/atmospherics/pipe/simple/hidden/cyan,/obj/structure/cable/white{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/effect/floor_decal/steeldecal/steel_decals10{dir = 8},/turf/simulated/floor/tiled/eris/white/cargo,/area/stellardelight/deck2/triage) +"fv" = (/obj/machinery/door/firedoor/glass/hidden/steel{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals5,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/stellardelight/deck2/central) +"fw" = (/obj/structure/cable/green{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor,/area/maintenance/stellardelight/deck2/portsolars) +"fx" = (/obj/effect/floor_decal/steeldecal/steel_decals10{dir = 8},/turf/simulated/floor/tiled/eris/white/cargo,/area/stellardelight/deck2/triage) +"fy" = (/obj/item/device/radio,/obj/item/device/radio,/obj/item/device/radio,/obj/item/weapon/tank/emergency/oxygen/engi,/obj/item/weapon/tank/emergency/oxygen/engi,/obj/item/clothing/mask/breath,/obj/item/clothing/mask/breath,/obj/structure/closet/crate/medical{desc = "A crate full of emergency supplies to help with response and rescue operations. A logo of NanoTrasen with a checkmark is stamped on the crate."; name = "NanoTrasen Emergency Supply Crate"},/obj/item/weapon/storage/briefcase/inflatable,/obj/item/weapon/storage/firstaid/adv,/obj/item/weapon/storage/firstaid/regular,/obj/item/bodybag/cryobag,/obj/item/bodybag/cryobag,/turf/simulated/floor/tiled/eris/dark/monofloor,/area/bridge) +"fz" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/obj/structure/cable/yellow{icon_state = "4-8"},/turf/simulated/floor/tiled/eris/steel/brown_platform,/area/quartermaster/storage) +"fA" = (/obj/structure/cable/orange{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/engine_eva) +"fB" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 5},/turf/simulated/floor/tiled/eris/steel/brown_platform,/area/crew_quarters/bar) +"fC" = (/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 4},/obj/structure/closet/hydrant{dir = 4; pixel_x = 27},/turf/simulated/floor/tiled,/area/stellardelight/deck2/starboard) +"fD" = (/obj/structure/cable{icon_state = "1-2"},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 8},/obj/structure/closet/hydrant{dir = 8; pixel_x = -27},/turf/simulated/floor/tiled,/area/stellardelight/deck2/aftport) +"fE" = (/obj/item/weapon/storage/pill_bottle/dice_nerd,/obj/item/weapon/storage/pill_bottle/dice,/obj/item/weapon/storage/dicecup,/obj/item/weapon/deck/cah,/obj/item/weapon/deck/cah/black,/obj/item/weapon/deck/cards,/obj/item/weapon/deck/cards/casino,/obj/structure/closet/walllocker_double/misc_civ/north,/turf/simulated/floor/tiled/eris/dark/cargo,/area/crew_quarters/recreation_area) +"fF" = (/obj/machinery/atmospherics/pipe/simple/hidden/cyan,/obj/structure/cable/white{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/cmostore) +"fG" = (/obj/machinery/atmospherics/portables_connector{dir = 1},/obj/machinery/camera/network/engineering{dir = 1},/turf/simulated/floor,/area/engineering/atmos/monitoring) +"fH" = (/obj/item/canvas,/obj/item/canvas,/obj/item/canvas,/obj/item/canvas,/obj/item/canvas,/obj/item/canvas/nineteen_nineteen,/obj/item/canvas/nineteen_nineteen,/obj/item/canvas/nineteen_nineteen,/obj/item/canvas/nineteen_nineteen,/obj/item/canvas/nineteen_nineteen,/obj/item/canvas/twentyfour_twentyfour,/obj/item/canvas/twentyfour_twentyfour,/obj/item/canvas/twentyfour_twentyfour,/obj/item/canvas/twentyfour_twentyfour,/obj/item/canvas/twentyfour_twentyfour,/obj/item/canvas/twentythree_nineteen,/obj/item/canvas/twentythree_nineteen,/obj/item/canvas/twentythree_nineteen,/obj/item/canvas/twentythree_nineteen,/obj/item/canvas/twentythree_nineteen,/obj/item/canvas/twentythree_twentythree,/obj/item/canvas/twentythree_twentythree,/obj/item/canvas/twentythree_twentythree,/obj/item/canvas/twentythree_twentythree,/obj/item/canvas/twentythree_twentythree,/obj/structure/table/standard,/obj/machinery/recharger,/obj/machinery/atmospherics/unary/vent_pump/on,/obj/machinery/light{dir = 4},/obj/item/paint_palette,/obj/item/paint_palette,/obj/item/paint_brush,/obj/item/paint_brush,/obj/effect/landmark/vines,/obj/structure/closet/walllocker_double/misc_civ/north,/turf/simulated/floor/tiled,/area/storage/art) +"fI" = (/obj/effect/floor_decal/milspec/color/white/corner{dir = 8},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/stellardelight/deck2/central) +"fJ" = (/turf/simulated/open,/area/stellardelight/deck2/aftstarboard) +"fK" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals6,/turf/simulated/floor/tiled/eris/dark/cargo,/area/crew_quarters/recreation_area) +"fL" = (/obj/machinery/atmospherics/unary/vent_pump/on,/obj/effect/landmark/vermin,/obj/machinery/station_slot_machine,/turf/simulated/floor/tiled/eris/dark/cargo,/area/crew_quarters/recreation_area) +"fM" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/obj/structure/table/steel_reinforced,/obj/machinery/photocopier/faxmachine{department = "Bridge"},/obj/machinery/light/floortube{dir = 4; pixel_x = 6},/obj/item/weapon/paper/dockingcodes/sd,/obj/item/device/radio,/obj/item/device/radio,/obj/structure/closet/walllocker_double/command/east,/turf/simulated/floor/tiled/eris/dark/monofloor,/area/bridge) +"fN" = (/obj/machinery/door/firedoor/glass,/obj/structure/window/bay/reinforced,/obj/structure/sign/securearea{desc = "A warning sign which reads 'HIGH VOLTAGE'"; icon_state = "shock"; name = "\improper HIGH VOLTAGE"; pixel_y = -32},/obj/structure/low_wall/bay/reinforced/orange,/turf/simulated/floor,/area/engineering/engine_room) +"fO" = (/obj/structure/cable/white{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/stellardelight/deck2/triage) +"fP" = (/obj/structure/closet/crate/bin{anchored = 1},/obj/structure/sign/painting/library_secure{pixel_y = 30},/turf/simulated/floor/tiled/eris/white/cargo,/area/stellardelight/deck2/triage) +"fQ" = (/obj/structure/lattice,/obj/structure/cable/orange{icon_state = "32-2"},/obj/machinery/door/firedoor/glass,/turf/simulated/open,/area/maintenance/stellardelight/deck2/atmos) +"fR" = (/obj/structure/cable/green{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals_central5{dir = 8},/turf/simulated/floor/tiled,/area/stellardelight/deck2/port) +"fS" = (/obj/structure/cable/blue{icon_state = "4-8"},/obj/item/weapon/book/manual/command_guide,/obj/item/weapon/book/manual/standard_operating_procedure,/obj/item/weapon/book/manual/security_space_law,/obj/item/weapon/book/manual/sd_guide,/obj/structure/closet/walllocker_double/command/north,/turf/simulated/floor/wood,/area/crew_quarters/captain) +"fT" = (/obj/structure/table/reinforced,/obj/fiftyspawner/steel,/obj/fiftyspawner/steel,/obj/fiftyspawner/steel,/obj/fiftyspawner/steel,/obj/fiftyspawner/steel,/obj/fiftyspawner/wood,/obj/item/stack/material/glass/phoronrglass{amount = 20},/obj/fiftyspawner/rods,/obj/fiftyspawner/rods,/obj/fiftyspawner/plastic,/obj/fiftyspawner/plastic,/obj/item/stack/material/plasteel{amount = 30},/obj/structure/closet/walllocker_double/engineering/east{name = "material sheets"},/turf/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/workshop) +"fU" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/locker_room) +"fV" = (/turf/simulated/floor,/area/bridge) +"fW" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/turf/simulated/floor/tiled,/area/stellardelight/deck2/aftstarboard) +"fX" = (/obj/structure/bed/chair/bay/shuttle{dir = 8},/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck2/portescape) +"fY" = (/obj/effect/floor_decal/industrial/warning,/obj/machinery/conveyor_switch/oneway{id = "cargoload"},/turf/simulated/floor/tiled/eris/steel/cargo,/area/quartermaster/storage) +"fZ" = (/obj/machinery/door/firedoor/glass,/obj/structure/window/bay/reinforced,/obj/structure/cable/yellow{icon_state = "1-2"},/obj/structure/low_wall/bay/reinforced/orange,/turf/simulated/floor,/area/engineering/storage) +"ga" = (/obj/machinery/alarm/angled{dir = 8},/obj/structure/cable/orange{icon_state = "1-2"},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/monitoring) +"gb" = (/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/obj/machinery/smartfridge/sheets/persistent_lossy,/turf/simulated/floor/tiled/eris/steel/cargo,/area/quartermaster/storage) +"gc" = (/obj/structure/cable/cyan{icon_state = "1-2"},/obj/item/weapon/book/manual/engineering_particle_accelerator,/obj/item/weapon/book/manual/tesla_engine,/obj/structure/closet/walllocker_double/engineering/west,/turf/simulated/floor/tiled/eris/dark/techfloor_grid,/area/engineering/engine_room) +"gd" = (/obj/machinery/door/firedoor/glass,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/turf/simulated/floor,/area/maintenance/stellardelight/deck2/starboardsolars) +"ge" = (/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/hidden/red,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/techfloor,/area/stellardelight/deck2/o2production) +"gf" = (/obj/structure/cable/green{icon_state = "1-8"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled,/area/stellardelight/deck2/aftport) +"gg" = (/obj/structure/bed/chair/office/light{dir = 1},/obj/machinery/button/remote/airlock{desc = "A remote control switch for the medbay foyer."; id = "MedbayFoyer W"; name = "Medbay Doors Control"; pixel_x = -6; pixel_y = 32},/obj/structure/cable/white{icon_state = "1-2"},/obj/effect/landmark/start/medical,/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/reception) +"gh" = (/obj/structure/table/rack{dir = 8; layer = 2.9},/obj/item/weapon/circuitboard/robotics{pixel_x = -3; pixel_y = 3},/obj/item/weapon/circuitboard/mecha_control,/obj/item/weapon/circuitboard/aifixer{pixel_x = 3; pixel_y = -3},/obj/machinery/light/small{dir = 1},/turf/simulated/floor/tiled/eris/dark/techfloor_grid,/area/storage/tech) +"gi" = (/obj/structure/cable/green{icon_state = "2-8"},/obj/structure/cable/green{icon_state = "1-8"},/turf/simulated/floor/airless,/area/stellardelight/deck2/exterior) +"gj" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/eris/cafe,/area/crew_quarters/kitchen) +"gk" = (/obj/structure/cable/green{icon_state = "4-8"},/obj/structure/cable/green{icon_state = "1-8"},/obj/structure/table/rack,/obj/random/maintenance/clean,/obj/random/maintenance/clean,/obj/random/maintenance/clean,/obj/random/maintenance/clean,/obj/random/maintenance/engineering,/obj/random/maintenance,/obj/random/maintenance,/turf/simulated/floor,/area/maintenance/stellardelight/deck2/starboardfore) +"gl" = (/obj/structure/cable/green{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/effect/floor_decal/milspec/color/black/corner{dir = 1},/obj/effect/floor_decal/milspec/color/silver/corner{dir = 4},/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore) +"gm" = (/obj/structure/cable/green{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/embedded_controller/radio/simple_docking_controller/escape_pod_berth{dir = 4; frequency = 1380; id_tag = "port_escape_berth"; pixel_x = -24},/turf/simulated/floor/tiled/eris/white/danger,/area/stellardelight/deck2/port) +"gn" = (/obj/structure/displaycase,/turf/simulated/floor/wood,/area/crew_quarters/captain) +"go" = (/obj/machinery/atmospherics/binary/pump/on{dir = 8; name = "Air to Ports"},/obj/structure/cable/orange{icon_state = "1-2"},/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos/monitoring) +"gp" = (/obj/machinery/atmospherics/pipe/simple/hidden,/obj/structure/cable{icon_state = "1-2"},/obj/structure/cable{icon_state = "1-4"},/turf/simulated/floor,/area/maintenance/stellardelight/deck2/starboardsolars) +"gq" = (/obj/structure/bed/chair{dir = 8},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/obj/machinery/status_display/supply_display{pixel_x = 32},/turf/simulated/floor/tiled/eris/steel/brown_platform,/area/quartermaster/storage) +"gr" = (/obj/structure/table/standard,/obj/machinery/microwave,/turf/simulated/floor/tiled/eris/cafe,/area/crew_quarters/kitchen) +"gs" = (/obj/machinery/atmospherics/unary/vent_pump/engine{external_pressure_bound = 100; external_pressure_bound_default = 0; frequency = 1438; icon_state = "map_vent_in"; id_tag = "cooling_out"; initialize_directions = 4; pump_direction = 0; use_power = 1},/turf/simulated/floor/reinforced/airless,/area/stellardelight/deck2/combustionworkshop) +"gt" = (/obj/item/weapon/storage/box/lights/mixed,/obj/item/weapon/tape_roll,/obj/item/weapon/storage/belt/utility,/obj/item/device/multitool,/obj/fiftyspawner/steel,/obj/structure/closet/walllocker_double/cargo/east,/turf/simulated/floor/tiled/eris/steel/cargo,/area/quartermaster/storage) +"gu" = (/obj/machinery/firealarm/angled,/obj/item/device/defib_kit/loaded,/obj/structure/table/reinforced,/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/cmostore) +"gv" = (/obj/structure/lattice,/obj/structure/cable{icon_state = "32-2"},/obj/machinery/door/firedoor/glass,/turf/simulated/open,/area/maintenance/stellardelight/deck2/starboardfore) +"gw" = (/obj/effect/landmark{name = "lightsout"},/turf/simulated/floor/tiled,/area/stellardelight/deck2/aftport) +"gx" = (/obj/structure/table/steel_reinforced,/obj/machinery/door/window/westright{req_one_access = list(35,28)},/obj/effect/floor_decal/milspec/color/green,/turf/simulated/floor/tiled,/area/hydroponics) +"gy" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/monitoring) +"gz" = (/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 4},/obj/structure/closet/walllocker_double/emergency_engi/east,/turf/simulated/floor/tiled,/area/stellardelight/deck2/starboard) +"gA" = (/obj/structure/railing/grey{dir = 4},/turf/simulated/floor/tiled/monotile,/area/stellardelight/deck2/fore) +"gB" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/monitoring) +"gC" = (/obj/structure/cable/blue{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/camera/network/command{dir = 10},/turf/simulated/floor/tiled/eris/dark/gray_platform,/area/bridge) +"gD" = (/obj/structure/table/reinforced,/obj/random/powercell,/obj/random/tech_supply,/obj/item/device/t_scanner,/turf/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/workshop) +"gE" = (/obj/structure/cable{icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/machinery/camera/network/engineering{dir = 1},/turf/simulated/floor/tiled/eris/dark/techfloor_grid,/area/engineering/storage) +"gF" = (/obj/structure/cable/orange{icon_state = "1-2"},/obj/structure/cable/orange{icon_state = "2-8"},/turf/simulated/floor/airless,/area/stellardelight/deck2/exterior) +"gG" = (/obj/effect/floor_decal/milspec/color/green/half{dir = 8},/obj/structure/disposalpipe/trunk{dir = 2},/obj/machinery/disposal/wall{dir = 4; pixel_x = -24; plane = -34},/turf/simulated/floor/tiled,/area/hydroponics) +"gH" = (/obj/structure/cable/white{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 5},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/reception) +"gI" = (/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4},/obj/item/weapon/circuitboard/tesla_coil,/obj/item/weapon/circuitboard/tesla_coil,/obj/structure/closet/walllocker_double/engineering/north,/turf/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/engine_eva) +"gJ" = (/obj/structure/medical_stand,/turf/simulated/floor/tiled/white,/area/medical/surgery2) +"gK" = (/obj/structure/cable/green{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/turf/simulated/floor/tiled,/area/stellardelight/deck2/aftport) +"gL" = (/obj/effect/floor_decal/milspec/color/orange/half{dir = 6},/turf/simulated/floor/tiled,/area/stellardelight/deck2/aftstarboard) +"gM" = (/obj/machinery/atmospherics/pipe/manifold/visible/green{dir = 1},/obj/structure/cable/orange{icon_state = "1-2"},/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos/storage) +"gN" = (/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/turf/simulated/floor/tiled/eris/steel/brown_platform,/area/quartermaster/storage) +"gO" = (/obj/structure/table/standard,/obj/item/device/destTagger{pixel_x = 4; pixel_y = 3},/obj/item/weapon/packageWrap,/turf/simulated/floor/tiled/eris/steel/brown_platform,/area/quartermaster/storage) +"gP" = (/obj/structure/cable/green{icon_state = "4-8"},/turf/simulated/floor/wood,/area/stellardelight/deck2/barbackroom) +"gQ" = (/obj/machinery/gibber,/turf/simulated/floor/tiled/freezer/cold,/area/crew_quarters/kitchen) +"gR" = (/obj/structure/closet/firecloset,/obj/machinery/power/apc/angled{dir = 8},/obj/structure/cable/green,/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/obj/effect/landmark/vermin,/turf/simulated/floor/tiled/techmaint,/area/storage/primary) +"gS" = (/obj/structure/dispenser,/turf/simulated/floor/plating,/area/engineering/storage) +"gT" = (/obj/structure/cable{icon_state = "4-8"},/turf/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/locker_room) +"gU" = (/turf/simulated/floor/tiled/eris/dark/techfloor_grid,/area/engineering/storage) +"gV" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/turf/simulated/floor/plating,/area/engineering/storage) +"gW" = (/obj/machinery/power/tesla_coil,/obj/structure/cable/yellow{icon_state = "4-8"},/obj/structure/cable/yellow{icon_state = "0-8"},/turf/simulated/floor/airless,/area/engineering/engine_room) +"gX" = (/obj/structure/cable/orange{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/turf/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/engine_eva) +"gY" = (/obj/machinery/atmospherics/pipe/manifold/visible/black{dir = 1},/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos/storage) +"gZ" = (/obj/machinery/atmospherics/pipe/simple/hidden/yellow{dir = 4},/turf/simulated/floor,/area/stellardelight/deck2/combustionworkshop) +"ha" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden,/obj/machinery/alarm/angled{dir = 8},/turf/simulated/floor,/area/maintenance/stellardelight/deck2/starboardsolars) +"hb" = (/obj/structure/cable/green{icon_state = "2-8"},/turf/simulated/floor,/area/maintenance/stellardelight/deck2/starboardfore) +"hc" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/structure/bed/chair/bay/comfy/blue{dir = 1},/turf/simulated/floor/tiled/eris/dark/monofloor,/area/bridge) +"hd" = (/obj/structure/cable/green{icon_state = "1-4"},/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore) +"he" = (/obj/machinery/atmospherics/pipe/manifold4w/visible/green,/obj/structure/cable/orange{icon_state = "1-2"},/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos/storage) +"hf" = (/obj/structure/disposalpipe/segment,/turf/simulated/wall/bay/r_wall/green,/area/hydroponics) +"hg" = (/obj/structure/shuttle/window,/obj/structure/grille,/turf/simulated/floor,/area/stellardelight/deck2/portescape) +"hh" = (/obj/structure/cable/green{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/monotile,/area/hydroponics) +"hi" = (/obj/structure/closet/walllocker_double/medical/north,/obj/item/weapon/storage/box/body_record_disk,/obj/item/device/retail_scanner/medical,/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/cmostore) +"hj" = (/obj/structure/cable/white{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/eris/white/bluecorner,/area/stellardelight/deck2/triage) +"hk" = (/obj/structure/cable/green{icon_state = "2-4"},/obj/structure/cable/green{icon_state = "1-2"},/turf/simulated/floor/airless,/area/stellardelight/deck2/exterior) +"hl" = (/turf/simulated/wall/bay/green,/area/crew_quarters/kitchen) +"hm" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/turf/simulated/floor/tiled/eris/dark/cargo,/area/crew_quarters/recreation_area) +"hn" = (/turf/simulated/wall/bay/white,/area/medical/cryo) +"ho" = (/obj/machinery/optable,/turf/simulated/floor/tiled/white,/area/medical/surgery2) +"hp" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 8},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/reception) +"hq" = (/obj/structure/sign/department/ass,/turf/simulated/wall/bay/brown,/area/storage/primary) +"hr" = (/obj/structure/sign/directions/evac{pixel_x = 32; pixel_y = -32},/turf/simulated/floor/tiled,/area/stellardelight/deck2/port) +"hs" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/angled_bay/standard/glass{door_color = "#e6ab22"; name = "Engineering EVA Storage"; req_access = null; req_one_access = list(11,24); stripe_color = "#913013"},/obj/structure/cable/orange{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/steel_ridged,/area/engineering/workshop) +"ht" = (/obj/machinery/atmospherics/pipe/simple/hidden/fuel,/obj/effect/floor_decal/industrial/warning{dir = 4},/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/obj/machinery/light{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable{icon_state = "1-2"},/turf/simulated/floor/tiled/eris/steel/cargo,/area/quartermaster/storage) +"hu" = (/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/turf/simulated/floor/tiled/techfloor,/area/stellardelight/deck2/o2production) +"hv" = (/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 4},/obj/structure/closet/walllocker_double/emergency_engi/east,/turf/simulated/floor/tiled,/area/stellardelight/deck2/port) +"hw" = (/obj/structure/table/standard,/obj/machinery/alarm/angled,/turf/simulated/floor/tiled/white,/area/medical/surgery) +"hx" = (/turf/simulated/floor/tiled/eris/white/bluecorner,/area/stellardelight/deck2/triage) +"hy" = (/obj/machinery/door/firedoor/glass/hidden/steel{dir = 1},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled,/area/stellardelight/deck2/aftstarboard) +"hz" = (/obj/structure/cable/orange{icon_state = "4-8"},/obj/item/stack/cable_coil/yellow,/turf/simulated/floor/airless,/area/stellardelight/deck2/exterior) +"hA" = (/obj/structure/closet/walllocker_double/emergency_engi/south,/turf/simulated/floor/tiled/eris/white/cargo,/area/stellardelight/deck2/triage) +"hB" = (/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 4},/obj/structure/closet/walllocker_double/emergency_engi/east,/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore) +"hC" = (/obj/structure/filingcabinet/chestdrawer{name = "Medical Forms"},/turf/simulated/floor/carpet/blue,/area/medical/psych) +"hD" = (/obj/structure/bed/chair/sofa/corp/left{dir = 4},/obj/effect/landmark/start/visitor,/turf/simulated/floor/carpet/turcarpet,/area/crew_quarters/recreation_area) +"hE" = (/obj/effect/floor_decal/milspec/color/green/half{dir = 8},/obj/structure/closet/walllocker_double/emergency_engi/west,/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore) +"hF" = (/obj/machinery/vending/wallmed1{dir = 1; pixel_y = -30},/turf/simulated/floor/tiled/white,/area/medical/surgery2) +"hH" = (/obj/structure/cable/green{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor/tiled/monotile,/area/hydroponics) +"hI" = (/obj/machinery/atmospherics/pipe/simple/hidden/green{dir = 6},/obj/structure/cable/orange{icon_state = "1-2"},/turf/simulated/floor/airless,/area/stellardelight/deck2/exterior) +"hJ" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled,/area/stellardelight/deck2/aftstarboard) +"hK" = (/obj/machinery/atmospherics/pipe/manifold/hidden/red{dir = 4},/obj/structure/cable{icon_state = "2-4"},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/monitoring) +"hL" = (/obj/structure/table/reinforced,/obj/machinery/light,/obj/machinery/power/apc/angled{dir = 4},/obj/structure/cable/white,/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/chemistry) +"hM" = (/obj/structure/table/standard,/obj/machinery/alarm/angled,/turf/simulated/floor/tiled/white,/area/medical/surgery2) +"hN" = (/obj/machinery/atmospherics/omni/atmos_filter{name = "N2/O2 Filter"; tag_east = 4; tag_north = 2; tag_south = 3; tag_west = 1},/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos/storage) +"hO" = (/obj/machinery/door/firedoor/glass,/obj/structure/window/bay/reinforced,/obj/structure/low_wall/bay/reinforced/steel,/turf/simulated/floor,/area/maintenance/stellardelight/deck2/portfore) +"hP" = (/obj/effect/floor_decal/industrial/outline,/obj/effect/floor_decal/steeldecal/steel_decals9,/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 8},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/obj/machinery/disposal/wall/cleaner{dir = 4},/turf/simulated/floor/tiled/dark,/area/crew_quarters/locker) +"hQ" = (/obj/structure/table/standard,/obj/item/weapon/storage/firstaid/surgery,/obj/item/device/radio/intercom{dir = 4; name = "Station Intercom (General)"; pixel_x = 24},/turf/simulated/floor/tiled/white,/area/medical/surgery2) +"hR" = (/obj/machinery/atmospherics/pipe/simple/hidden/cyan,/obj/structure/cable/white{icon_state = "1-2"},/turf/simulated/floor/tiled/eris/white/cargo,/area/stellardelight/deck2/triage) +"hS" = (/obj/effect/floor_decal/milspec/cargo,/turf/simulated/floor/tiled/eris/steel/brown_platform,/area/quartermaster/storage) +"hT" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/disposalpipe/tagger{dir = 2; name = "package tagger - Resleeving"; sort_tag = "Resleeving"},/turf/simulated/floor/tiled,/area/crew_quarters/locker) +"hU" = (/obj/structure/disposalpipe/tagger/partial{dir = 8; name = "partial tagger - Sorting Office"; sort_tag = "Sorting Office"},/obj/structure/cable/yellow{icon_state = "1-4"},/turf/simulated/floor/tiled/eris/steel/cargo,/area/quartermaster/storage) +"hV" = (/obj/effect/floor_decal/industrial/loading{dir = 4},/turf/simulated/floor/tiled/white,/area/medical/surgery) +"hW" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/turf/simulated/floor/tiled/eris/steel/cargo,/area/quartermaster/storage) +"hX" = (/obj/machinery/light,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/turf/simulated/floor/tiled/eris/dark/techfloor_grid,/area/engineering/engine_room) +"hY" = (/obj/item/weapon/stool/padded{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/effect/landmark/start/bartender,/turf/simulated/floor/lino,/area/crew_quarters/bar) +"hZ" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/machinery/hologram/holopad,/turf/simulated/floor/tiled/eris/cafe,/area/crew_quarters/kitchen) +"ib" = (/obj/machinery/power/grounding_rod,/obj/structure/cable/yellow{icon_state = "2-4"},/turf/simulated/floor/airless,/area/engineering/engine_room) +"ic" = (/obj/structure/bed/chair/backed_red{dir = 8},/obj/effect/landmark/start/visitor,/turf/simulated/floor/tiled/eris/steel/brown_platform,/area/crew_quarters/bar) +"ie" = (/turf/simulated/wall/bay/r_wall/steel,/area/maintenance/stellardelight/deck2/portsolars) +"if" = (/obj/machinery/vending/hydronutrients,/obj/effect/floor_decal/milspec/color/green,/turf/simulated/floor/tiled,/area/hydroponics) +"ig" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/red{dir = 9},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/monitoring) +"ih" = (/obj/structure/cable/green{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore) +"ii" = (/obj/structure/closet/crate/bin{anchored = 1},/obj/effect/floor_decal/milspec/color/green/half,/turf/simulated/floor/tiled,/area/hydroponics) +"ij" = (/obj/machinery/computer/ship/navigation/telescreen{pixel_x = 32; pixel_y = -32},/obj/structure/table/bench/steel,/obj/effect/landmark/start/visitor,/turf/simulated/floor/tiled/eris/dark/cargo,/area/crew_quarters/recreation_area) +"ik" = (/obj/effect/floor_decal/corner_steel_grid{dir = 10},/obj/machinery/bodyscanner{dir = 4},/turf/simulated/floor/tiled/eris/white/cargo,/area/stellardelight/deck2/triage) +"il" = (/obj/machinery/vending/assist,/turf/simulated/floor/tiled/eris/dark/techfloor_grid,/area/storage/tech) +"im" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/monitoring) +"in" = (/obj/effect/floor_decal/industrial/warning/corner{dir = 4},/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor/tiled/eris/steel/cargo,/area/quartermaster/storage) +"io" = (/obj/structure/bed/chair/bay/comfy/brown{dir = 8},/obj/effect/landmark/start/intern,/turf/simulated/floor/carpet,/area/crew_quarters/recreation_area) +"ip" = (/obj/machinery/door/firedoor/glass,/obj/structure/window/bay/reinforced,/obj/machinery/door/blast/angled/open{id = "psychshutter"; name = "Privacy Shutter"},/obj/structure/low_wall/bay/reinforced/white,/turf/simulated/floor,/area/medical/psych) +"ir" = (/obj/structure/cable/green{icon_state = "1-2"},/turf/simulated/wall/bay/r_wall/steel,/area/crew_quarters/bar) +"is" = (/obj/structure/cable/cyan{icon_state = "1-4"},/turf/simulated/floor/tiled/eris/dark/techfloor_grid,/area/engineering/engine_room) +"it" = (/obj/machinery/alarm/angled{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/turf/simulated/floor/wood,/area/stellardelight/deck2/briefingroom) +"iu" = (/obj/effect/floor_decal/milspec/color/blue/half{dir = 8},/turf/simulated/floor/tiled,/area/stellardelight/deck2/starboard) +"iv" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/turf/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/engineering_monitoring) +"iw" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/turf/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/locker_room) +"ix" = (/obj/structure/bed/chair/sofa/corp{dir = 1},/obj/effect/landmark/start/visitor,/turf/simulated/floor/carpet/turcarpet,/area/crew_quarters/recreation_area) +"iy" = (/obj/machinery/atm{pixel_y = 30},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 1},/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore) +"iz" = (/turf/simulated/floor,/area/maintenance/stellardelight/deck2/portaft) +"iA" = (/obj/machinery/atmospherics/pipe/simple/hidden/black{dir = 4},/turf/simulated/wall/bay/r_wall/orange,/area/engineering/atmos/storage) +"iB" = (/obj/structure/filingcabinet/filingcabinet,/obj/machinery/requests_console/preset/cargo{pixel_y = 30},/turf/simulated/floor/tiled/eris/steel/brown_platform,/area/quartermaster/storage) +"iC" = (/obj/structure/sink/kitchen{pixel_y = 20},/obj/machinery/firealarm/angled{dir = 8},/turf/simulated/floor/tiled/eris/cafe,/area/crew_quarters/kitchen) +"iD" = (/obj/effect/floor_decal/industrial/warning{dir = 1},/obj/machinery/hologram/holopad,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/white,/area/medical/surgery) +"iE" = (/obj/structure/railing/grey{dir = 8},/obj/structure/sign/directions/evac{dir = 1; pixel_x = -32},/obj/structure/sign/directions/stairs_up{dir = 1; pixel_x = -32; pixel_y = 6},/turf/simulated/floor,/area/stellardelight/deck2/aftstarboard) +"iF" = (/obj/machinery/door/window/brigdoor/northleft{dir = 4; name = "Kitchen"; req_access = list(28)},/obj/machinery/camera/network/civilian,/turf/simulated/floor/tiled/eris/cafe,/area/crew_quarters/kitchen) +"iG" = (/obj/structure/cable,/obj/machinery/power/smes/buildable{RCon_tag = "Power - Main"; charge = 2e+007; cur_coils = 4; input_attempt = 1; input_level = 500000; name = "Main"; output_level = 1e+006},/turf/simulated/floor/plating,/area/engineering/storage) +"iH" = (/obj/structure/cable{icon_state = "2-4"},/obj/structure/cable{icon_state = "2-8"},/turf/simulated/floor/airless,/area/stellardelight/deck2/exterior) +"iI" = (/obj/structure/table/reinforced,/obj/machinery/light{dir = 4},/obj/item/weapon/reagent_containers/spray/cleaner,/turf/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/workshop) +"iJ" = (/obj/machinery/atmospherics/pipe/manifold/hidden/yellow{dir = 1},/obj/structure/cable{icon_state = "4-8"},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/monitoring) +"iK" = (/obj/item/weapon/stock_parts/manipulator,/obj/item/weapon/stock_parts/matter_bin,/obj/item/weapon/stock_parts/matter_bin,/obj/item/weapon/stock_parts/manipulator,/obj/structure/table/rack/steel,/obj/item/weapon/stock_parts/console_screen,/obj/item/weapon/circuitboard/autolathe,/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/turf/simulated/floor/tiled/eris/dark/techfloor_grid,/area/storage/tech) +"iL" = (/obj/structure/grille,/obj/structure/shuttle/window,/obj/effect/shuttle_landmark{base_area = /area/stellardelight/deck2/exterior; base_turf = /turf/simulated/floor/airless; docking_controller = "starboard_escape_berth"; landmark_tag = "starboard_ship_berth"; name = "Stellar Delight Escape Pod Starboard"},/turf/simulated/floor,/area/stellardelight/deck2/starboardescape) +"iN" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/angled_bay/standard/glass{name = "Hydroponics/Kitchen Access"; req_one_access = list(35,28)},/turf/simulated/floor/tiled/steel_ridged,/area/crew_quarters/kitchen) +"iO" = (/obj/structure/window/reinforced{dir = 1; pixel_y = 4},/turf/simulated/floor/tiled/eris/dark/cargo,/area/crew_quarters/recreation_area) +"iP" = (/obj/structure/cable/white{icon_state = "4-8"},/obj/machinery/requests_console/preset/medical{pixel_y = -30},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/reception) +"iQ" = (/turf/simulated/wall/bay/r_wall/steel,/area/maintenance/stellardelight/deck2/starboardfore) +"iR" = (/obj/machinery/power/tesla_coil,/obj/structure/cable/yellow{icon_state = "1-2"},/obj/structure/cable/yellow,/turf/simulated/floor/airless,/area/engineering/engine_room) +"iS" = (/obj/structure/cable/orange{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/engineering_monitoring) +"iT" = (/obj/structure/table/woodentable,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled/eris/steel/brown_platform,/area/crew_quarters/bar) +"iU" = (/obj/machinery/power/pointdefense{id_tag = "sd_pd"},/obj/effect/floor_decal/industrial/warning/full,/obj/structure/cable/orange{icon_state = "0-2"},/turf/simulated/floor/airless,/area/stellardelight/deck2/exterior) +"iV" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/item/device/radio/intercom{dir = 4; pixel_x = 24},/turf/simulated/floor/tiled,/area/crew_quarters/locker) +"iW" = (/obj/machinery/button/remote/airlock{desc = "A remote control switch for the medbay foyer."; dir = 8; id = "MedbayFoyer W"; name = "Medbay Doors Control"; pixel_x = 25},/obj/structure/cable/white{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/stellardelight/deck2/triage) +"iX" = (/obj/machinery/door/firedoor/glass,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/door/airlock/angled_bay/standard/glass{door_color = "#9c9c9c"; name = "Bar"; stripe_color = "#89bd66"},/turf/simulated/floor/tiled/steel_ridged,/area/crew_quarters/bar) +"iY" = (/obj/structure/cable/green{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/monotile,/area/hydroponics) +"iZ" = (/turf/simulated/floor/tiled/monotile,/area/hydroponics) +"ja" = (/obj/machinery/atmospherics/pipe/simple/visible/supply{dir = 5},/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos/monitoring) +"jc" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/chemistry) +"jd" = (/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/obj/structure/closet/emergsuit_wall{dir = 4; pixel_x = 27},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 4},/turf/simulated/floor/tiled,/area/stellardelight/deck2/port) +"jf" = (/obj/structure/table/reinforced,/obj/item/weapon/reagent_containers/glass/beaker/large,/obj/item/weapon/reagent_containers/dropper,/obj/machinery/atmospherics/unary/vent_pump/on,/obj/machinery/injector_maker{pixel_y = 21},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/chemistry) +"jg" = (/obj/structure/table/reinforced,/obj/random/tech_supply,/obj/random/tech_supply,/turf/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/engine_eva) +"ji" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore) +"jj" = (/obj/structure/easel,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 4},/obj/item/device/radio/intercom{dir = 4; pixel_x = 24},/turf/simulated/floor/tiled,/area/storage/art) +"jk" = (/obj/structure/cable/blue{icon_state = "1-8"},/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/turf/simulated/floor/tiled,/area/stellardelight/deck2/starboard) +"jm" = (/obj/structure/table/reinforced,/obj/item/device/gps/engineering{pixel_x = 3; pixel_y = 6},/obj/item/device/gps/engineering{pixel_y = 3},/obj/item/device/gps/engineering{pixel_x = -3},/obj/machinery/camera/network/engineering{dir = 4},/turf/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/engine_eva) +"jn" = (/obj/machinery/atmospherics/portables_connector{dir = 1},/obj/machinery/portable_atmospherics/canister/air/airlock,/turf/simulated/floor,/area/maintenance/stellardelight/deck2/starboardsolars) +"jo" = (/obj/machinery/door/firedoor/glass,/obj/structure/window/bay/reinforced,/obj/structure/low_wall/bay/reinforced/green,/turf/simulated/floor,/area/hydroponics) +"jp" = (/obj/structure/cable/white{icon_state = "1-4"},/obj/machinery/light,/turf/simulated/floor/tiled/eris/white/cargo,/area/stellardelight/deck2/triage) +"jq" = (/obj/machinery/power/apc/angled{dir = 4},/obj/structure/cable/white{icon_state = "0-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/cmostore) +"jr" = (/obj/structure/closet/emergsuit_wall{pixel_y = 29},/obj/effect/floor_decal/milspec/color/silver/corner{dir = 4},/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore) +"js" = (/obj/structure/closet/secure_closet/atmos_personal,/obj/machinery/light/small,/turf/simulated/floor/tiled/techfloor,/area/stellardelight/deck2/o2production) +"jt" = (/obj/machinery/vending/nifsoft_shop,/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 1},/turf/simulated/floor/tiled,/area/stellardelight/deck2/aftport) +"jv" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/turf/simulated/floor/tiled/eris/dark/cargo,/area/crew_quarters/recreation_area) +"jw" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/angled_bay/standard/glass{name = "glass airlock"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/steel_ridged,/area/stellardelight/deck2/port) +"jx" = (/obj/structure/cable/green{icon_state = "4-8"},/turf/simulated/floor/airless,/area/stellardelight/deck2/exterior) +"jy" = (/obj/structure/sign/directions/cargo{pixel_x = -32; pixel_y = -35},/obj/structure/sign/directions/medical{pixel_x = -32; pixel_y = -29},/obj/effect/floor_decal/milspec/color/blue/corner{dir = 8},/obj/structure/sign/directions/engineering{pixel_x = -32; pixel_y = -41},/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore) +"jz" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 1},/obj/machinery/station_map{pixel_y = 32},/turf/simulated/floor/tiled,/area/stellardelight/deck2/aftstarboard) +"jA" = (/obj/structure/table/rack{dir = 8; layer = 2.6},/obj/machinery/door/window/northleft{name = "Atmospherics Hardsuits"; req_access = list(24)},/obj/item/clothing/shoes/magboots,/obj/item/clothing/shoes/magboots,/obj/item/clothing/mask/breath,/obj/item/clothing/mask/breath,/obj/item/clothing/suit/space/void/atmos,/obj/item/clothing/suit/space/void/atmos,/obj/item/clothing/head/helmet/space/void/atmos,/obj/item/clothing/head/helmet/space/void/atmos,/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced{dir = 4},/turf/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/engine_eva) +"jB" = (/obj/structure/railing/grey{dir = 8},/turf/simulated/floor,/area/maintenance/stellardelight/deck2/starboardaft) +"jC" = (/obj/structure/cable/green{icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore) +"jD" = (/obj/structure/cable/yellow{icon_state = "1-4"},/turf/simulated/floor/tiled/eris/steel/brown_platform,/area/quartermaster/storage) +"jE" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/structure/cable{icon_state = "1-4"},/obj/machinery/light,/turf/simulated/floor,/area/stellardelight/deck2/combustionworkshop) +"jF" = (/obj/machinery/door/firedoor/glass/hidden/steel{dir = 1},/obj/effect/floor_decal/milspec/color/black/corner,/obj/effect/floor_decal/milspec/color/silver/corner{dir = 8},/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore) +"jG" = (/obj/structure/table/glass,/obj/item/weapon/paper_bin{pixel_y = 5},/obj/item/weapon/pen,/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/reception) +"jI" = (/obj/structure/table/woodentable,/obj/structure/plushie/ian{dir = 8; pixel_y = 6},/turf/simulated/floor/wood,/area/medical/psych) +"jJ" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore) +"jK" = (/obj/structure/table/glass,/turf/simulated/floor/tiled/eris/white/bluecorner,/area/stellardelight/deck2/triage) +"jL" = (/obj/structure/cable/orange{icon_state = "1-4"},/turf/simulated/wall/bay/r_wall/steel,/area/maintenance/stellardelight/deck2/portsolars) +"jM" = (/obj/effect/floor_decal/milspec/color/green/half{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 10},/obj/effect/floor_decal/steeldecal/steel_decals4,/turf/simulated/floor/tiled,/area/hydroponics) +"jN" = (/obj/machinery/light{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 1},/turf/simulated/floor/tiled,/area/stellardelight/deck2/aftport) +"jO" = (/obj/machinery/door/firedoor/glass,/obj/structure/window/bay/reinforced,/obj/structure/sign/securearea{desc = "A warning sign which reads 'HIGH VOLTAGE'"; icon_state = "shock"; name = "\improper HIGH VOLTAGE"; pixel_y = -32},/obj/structure/low_wall/bay/reinforced/steel,/turf/simulated/floor,/area/engineering/engine_room) +"jP" = (/obj/effect/floor_decal/milspec/color/silver/corner{dir = 8},/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore) +"jQ" = (/turf/simulated/floor/reinforced,/area/quartermaster/storage) +"jS" = (/obj/structure/cable{icon_state = "1-8"},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/obj/effect/floor_decal/milspec/color/orange/half,/turf/simulated/floor/tiled,/area/stellardelight/deck2/aftstarboard) +"jT" = (/obj/machinery/door/firedoor/glass,/obj/structure/window/bay/reinforced,/obj/structure/low_wall/bay/reinforced/steel,/turf/simulated/floor,/area/maintenance/stellardelight/deck2/starboardsolars) +"jU" = (/obj/machinery/door/firedoor/glass,/obj/structure/window/bay/reinforced,/obj/machinery/door/blast/angled/open{dir = 2; id = "bridgelockdown"},/obj/structure/low_wall/bay/reinforced/blue,/turf/simulated/floor,/area/bridge) +"jV" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/monitoring) +"jW" = (/obj/machinery/light{dir = 8},/obj/structure/closet/crate/bin{anchored = 1},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/cmostore) +"jX" = (/obj/structure/flora/pottedplant/minitree,/obj/machinery/alarm/angled{dir = 8},/turf/simulated/floor/wood,/area/medical/psych) +"jY" = (/obj/structure/cable/orange{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/workshop) +"jZ" = (/obj/effect/floor_decal/industrial/outline/yellow,/obj/structure/closet/crate,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/eris/steel/cargo,/area/quartermaster/storage) +"ka" = (/obj/machinery/door/firedoor/glass,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable/cyan{icon_state = "1-2"},/obj/machinery/door/airlock/angled_bay/standard/glass{door_color = "#e6ab22"; name = "Particle Accelerator"; req_access = list(10); stripe_color = "#913013"},/turf/simulated/floor/tiled/steel_ridged,/area/engineering/engine_room) +"kb" = (/obj/machinery/door/firedoor/glass,/obj/structure/cable/white{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/steel_ridged,/area/stellardelight/deck2/triage) +"kc" = (/obj/machinery/computer/power_monitor,/obj/effect/floor_decal/milspec/color/orange/half,/turf/simulated/floor/tiled/eris/dark/monofloor,/area/bridge) +"kd" = (/obj/structure/cable/green{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore) +"ke" = (/obj/item/device/radio/intercom{dir = 1; pixel_y = 24},/obj/item/device/radio/intercom/department/medbay{dir = 4; pixel_x = 24},/obj/structure/closet/crate/bin{anchored = 1},/turf/simulated/floor/wood,/area/medical/psych) +"kf" = (/obj/machinery/light{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/eris/dark/techfloor_grid,/area/engineering/engine_room) +"kg" = (/obj/machinery/alarm/angled{dir = 4},/turf/simulated/floor,/area/maintenance/stellardelight/deck2/portaft) +"kh" = (/obj/structure/cable/orange{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/structure/cable/orange{icon_state = "1-8"},/turf/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/engineering_monitoring) +"ki" = (/obj/structure/extinguisher_cabinet{pixel_x = -32; pixel_y = 32},/obj/structure/cable/green{icon_state = "1-4"},/obj/structure/cable/green{icon_state = "2-4"},/obj/structure/cable/green{icon_state = "4-8"},/turf/simulated/floor/tiled/eris/cafe,/area/crew_quarters/kitchen) +"kj" = (/obj/structure/cable/white{icon_state = "1-2"},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/cmostore) +"kk" = (/obj/machinery/vending/blood,/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/cmostore) +"kl" = (/obj/structure/window/reinforced{dir = 8; pixel_x = -4},/obj/structure/flora/pottedplant/decorative,/turf/simulated/floor/glass/reinforced,/area/stellardelight/deck2/fore) +"km" = (/obj/machinery/atmospherics/pipe/simple/hidden/green,/obj/structure/cable/orange{icon_state = "1-4"},/obj/structure/cable/orange{icon_state = "1-2"},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/monitoring) +"kn" = (/obj/machinery/atmospherics/pipe/simple/hidden/cyan{dir = 4},/obj/structure/disposalpipe/trunk{dir = 8},/obj/machinery/disposal/wall{dir = 8},/obj/structure/cable{icon_state = "1-2"},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/monitoring) +"ko" = (/obj/item/weapon/storage/secure/briefcase/ml3m_pack_med,/obj/structure/table/reinforced,/obj/machinery/alarm/angled{dir = 4},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/cmostore) +"kp" = (/obj/structure/window/reinforced{dir = 1; pixel_y = 4},/obj/machinery/light{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/eris/dark/cargo,/area/crew_quarters/recreation_area) +"kq" = (/obj/structure/closet/secure_closet/cargotech,/obj/item/weapon/stamp/cargo,/obj/item/weapon/storage/backpack/dufflebag,/obj/machinery/light{dir = 4},/turf/simulated/floor/tiled/eris/steel/cargo,/area/quartermaster/storage) +"kr" = (/obj/machinery/power/apc/angled{dir = 1},/obj/structure/cable/green{icon_state = "0-2"},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 1},/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore) +"ks" = (/obj/structure/table/rack/steel,/obj/item/weapon/circuitboard/mech_recharger{pixel_x = -4; pixel_y = 4},/obj/item/weapon/circuitboard/cell_charger{pixel_x = -3; pixel_y = 3},/obj/item/weapon/circuitboard/recharger{pixel_x = -2; pixel_y = 2},/obj/item/weapon/circuitboard/recharge_station{pixel_x = -1; pixel_y = 1},/obj/item/weapon/circuitboard/arcade/battle,/obj/item/weapon/circuitboard/arcade/clawmachine{pixel_x = 1; pixel_y = -1},/obj/item/weapon/circuitboard/arcade/orion_trail{pixel_x = 2; pixel_y = -2},/obj/item/weapon/circuitboard/jukebox{pixel_x = 3; pixel_y = -3},/turf/simulated/floor/tiled/eris/dark/techfloor_grid,/area/storage/tech) +"kt" = (/obj/structure/window/reinforced{dir = 8},/turf/simulated/open,/area/stellardelight/deck2/aftport) +"ku" = (/obj/machinery/computer/ship/navigation/telescreen{pixel_y = -32},/turf/simulated/floor/tiled/eris/steel/brown_platform,/area/crew_quarters/bar) +"kv" = (/obj/machinery/alarm/angled{dir = 8},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/obj/effect/floor_decal/milspec/color/orange/half{dir = 4},/turf/simulated/floor/tiled,/area/stellardelight/deck2/aftstarboard) +"kx" = (/obj/structure/disposalpipe/sortjunction/wildcard/flipped{dir = 1},/turf/simulated/floor/tiled/eris/steel/cargo,/area/quartermaster/storage) +"ky" = (/obj/structure/bed/chair/comfy/brown,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/turf/simulated/floor/carpet/blucarpet,/area/crew_quarters/captain) +"kz" = (/obj/machinery/firealarm/angled{dir = 8},/obj/machinery/atmospherics/binary/pump{dir = 1; name = "cold loop pump"},/turf/simulated/floor,/area/stellardelight/deck2/combustionworkshop) +"kA" = (/obj/structure/table/reinforced,/obj/random/toolbox,/obj/item/device/geiger,/obj/machinery/alarm/angled{dir = 4},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/turf/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/workshop) +"kB" = (/obj/structure/table/standard,/obj/item/clothing/under/pizzaguy,/obj/item/clothing/under/pizzaguy,/obj/item/clothing/under/pizzaguy,/obj/item/clothing/head/pizzaguy,/obj/item/clothing/head/pizzaguy,/obj/item/clothing/head/pizzaguy,/obj/machinery/status_display/supply_display{pixel_x = 32},/turf/simulated/floor/tiled/eris/steel/cargo,/area/quartermaster/storage) +"kC" = (/obj/structure/cable/white{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/stellardelight/deck2/triage) +"kD" = (/obj/machinery/door/airlock/angled_bay/standard/color{door_color = "#323d80"; name = "Bridge"; req_access = list(19); req_one_access = list(19); stripe_color = "#f7d35c"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable/blue{icon_state = "1-2"},/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled/steel_ridged,/area/stellardelight/deck2/briefingroom) +"kE" = (/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled/steel_ridged,/area/crew_quarters/recreation_area) +"kF" = (/obj/machinery/camera/network/halls{dir = 1},/obj/effect/floor_decal/milspec/color/blue/half,/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore) +"kG" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/obj/effect/floor_decal/milspec/color/green/half{dir = 8},/turf/simulated/floor/tiled,/area/hydroponics) +"kH" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/machinery/hologram/holopad,/turf/simulated/floor/tiled/eris/dark/techfloor_grid,/area/storage/tech) +"kI" = (/obj/structure/cable/green{icon_state = "2-4"},/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/effect/landmark{name = "lightsout"},/obj/machinery/hologram/holopad,/turf/simulated/floor/tiled,/area/stellardelight/deck2/port) +"kJ" = (/obj/machinery/computer/card{dir = 4},/obj/machinery/light/floortube{dir = 8; pixel_x = -6},/obj/effect/floor_decal/milspec/color/blue/half{dir = 4},/turf/simulated/floor/tiled/eris/dark/monofloor,/area/bridge) +"kK" = (/obj/structure/cable/green{icon_state = "2-8"},/obj/structure/disposalpipe/sortjunction/flipped{dir = 1; name = "Bar"; sortType = "Bar"},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/turf/simulated/floor,/area/maintenance/stellardelight/deck2/portfore) +"kL" = (/obj/structure/cable/orange{icon_state = "1-8"},/turf/simulated/floor/airless,/area/stellardelight/deck2/exterior) +"kM" = (/obj/machinery/atmospherics/pipe/simple/hidden/green{dir = 10},/obj/structure/cable/orange{icon_state = "2-8"},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/monitoring) +"kN" = (/obj/structure/cable/orange{icon_state = "4-8"},/obj/structure/cable/orange{icon_state = "2-8"},/turf/simulated/floor/plating,/area/maintenance/stellardelight/substation/engineering) +"kO" = (/obj/machinery/atmospherics/pipe/simple/hidden/cyan{dir = 5},/obj/structure/cable/white{icon_state = "1-4"},/obj/effect/floor_decal/steeldecal/steel_decals4,/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 10},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/cmostore) +"kP" = (/obj/machinery/atmospherics/pipe/simple/hidden/red,/turf/simulated/floor,/area/stellardelight/deck2/combustionworkshop) +"kQ" = (/obj/machinery/atmospherics/pipe/manifold/visible/black{dir = 4},/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos/storage) +"kR" = (/obj/machinery/door/firedoor/glass,/obj/structure/window/bay/reinforced,/obj/structure/low_wall/bay/reinforced/green,/obj/machinery/door/blast/angled/open{dir = 4; id = "botanylockdown"},/turf/simulated/floor,/area/hydroponics) +"kS" = (/obj/structure/cable/green{icon_state = "4-8"},/obj/structure/cable/green{icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore) +"kT" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/angled_bay/standard/color{dir = 4; door_color = "#e6ab22"; fill_color = "#877242"; name = "Tech Storage"; req_access = list(23); stripe_color = "#913013"},/obj/structure/cable/orange{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled/steel_ridged,/area/engineering/engine_eva) +"kV" = (/obj/machinery/door/firedoor/glass/hidden/steel{dir = 8},/obj/structure/sign/directions/bar{dir = 1; pixel_x = 32},/obj/effect/floor_decal/milspec/color/black/corner,/obj/effect/floor_decal/milspec/color/silver/corner{dir = 4},/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore) +"kW" = (/obj/machinery/atmospherics/binary/pump{dir = 4},/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos/storage) +"kX" = (/obj/machinery/vending/dinnerware,/obj/machinery/atmospherics/unary/vent_pump/on,/obj/structure/cable/green{icon_state = "4-8"},/turf/simulated/floor/tiled/eris/cafe,/area/crew_quarters/kitchen) +"kY" = (/obj/machinery/power/apc/angled{dir = 4},/obj/structure/cable/yellow{icon_state = "0-8"},/turf/simulated/floor/wood,/area/quartermaster/qm) +"kZ" = (/obj/structure/extinguisher_cabinet{pixel_x = 5; pixel_y = 28},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/reception) +"la" = (/obj/effect/floor_decal/industrial/danger{dir = 4},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/monitoring) +"lc" = (/obj/structure/cable/white{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/wood,/area/medical/psych) +"ld" = (/obj/structure/table/glass,/obj/machinery/photocopier/faxmachine{department = "Medical"},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/reception) +"le" = (/obj/machinery/door/firedoor/glass,/obj/structure/cable/yellow{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/door/airlock/angled_bay/standard/color{dir = 4; door_color = "#a6753d"; fill_color = "#75736f"; name = "Quartermaster"; req_access = list(41); stripe_color = "#3b2b1a"},/turf/simulated/floor/tiled/steel_ridged,/area/quartermaster/qm) +"lf" = (/obj/machinery/portable_atmospherics/hydroponics,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/effect/floor_decal/milspec/color/green/half{dir = 4},/turf/simulated/floor/tiled,/area/hydroponics) +"lg" = (/obj/structure/closet/secure_closet/captains,/obj/item/clothing/glasses/omnihud/all,/obj/item/weapon/disk/nuclear,/obj/item/weapon/paper/dockingcodes/sd,/obj/item/device/retail_scanner/command,/turf/simulated/floor/wood,/area/crew_quarters/captain) +"lh" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/angled_bay/hatch{door_color = "#e6ab22"; name = "maintenance access"; req_one_access = list(24); stripe_color = "#e6ab22"},/obj/structure/cable/orange{icon_state = "1-2"},/turf/simulated/floor/tiled/steel_ridged,/area/engineering/atmos/storage) +"li" = (/obj/structure/table/steel,/turf/simulated/floor/tiled/eris/dark/techfloor_grid,/area/storage/tech) +"lj" = (/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore) +"lk" = (/obj/structure/table/rack{dir = 8; layer = 2.6},/obj/item/clothing/shoes/magboots,/obj/item/clothing/shoes/magboots,/obj/machinery/door/window/southright{dir = 1; name = "Engineering Hardsuits"; req_one_access = list(11)},/obj/structure/window/reinforced{dir = 4},/obj/item/clothing/mask/breath,/obj/item/clothing/mask/breath,/obj/item/clothing/suit/space/void/engineering,/obj/item/clothing/suit/space/void/engineering,/obj/item/clothing/head/helmet/space/void/engineering,/obj/item/clothing/head/helmet/space/void/engineering,/turf/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/engine_eva) +"ll" = (/obj/machinery/atmospherics/unary/vent_scrubber/on,/obj/effect/floor_decal/milspec/color/blue/half{dir = 1},/turf/simulated/floor/tiled,/area/stellardelight/deck2/central) +"lm" = (/obj/structure/cable/orange{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/fuel,/obj/item/device/radio/intercom{dir = 8; pixel_x = -24},/turf/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/engine_eva) +"ln" = (/obj/structure/cable/green{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/item/device/radio/beacon,/turf/simulated/floor/tiled,/area/stellardelight/deck2/aftport) +"lo" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/eris/dark/monofloor,/area/bridge) +"lq" = (/obj/structure/sign/securearea{desc = "A warning sign which reads 'RADIOACTIVE AREA'"; icon_state = "radiation"; name = "\improper RADIOACTIVE AREA"; pixel_x = -32},/obj/structure/cable/orange{icon_state = "1-2"},/obj/structure/cable/orange{icon_state = "2-4"},/turf/simulated/floor/airless,/area/stellardelight/deck2/exterior) +"lr" = (/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 5},/turf/simulated/floor/tiled/eris/cafe,/area/crew_quarters/kitchen) +"ls" = (/obj/structure/bed/chair/backed_red{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/turf/simulated/floor/tiled/eris/steel/brown_platform,/area/crew_quarters/bar) +"lt" = (/obj/effect/floor_decal/industrial/danger{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/cyan{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/monitoring) +"lu" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/turf/simulated/floor/tiled/eris/dark/techfloor_grid,/area/engineering/storage) +"lv" = (/obj/machinery/light{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 4},/turf/simulated/floor/tiled,/area/stellardelight/deck2/starboard) +"lw" = (/obj/structure/table/rack/steel,/obj/item/weapon/circuitboard/powermonitor{pixel_x = -3; pixel_y = 3},/obj/item/weapon/circuitboard/stationalert_engineering{pixel_x = -2; pixel_y = 2},/obj/item/weapon/circuitboard/atmos_alert{pixel_x = -1; pixel_y = 1},/obj/item/weapon/circuitboard/rcon_console,/obj/item/weapon/circuitboard/atmoscontrol{pixel_x = 1; pixel_y = -1},/obj/item/weapon/circuitboard/drone_control{pixel_x = 2; pixel_y = -2},/turf/simulated/floor/tiled/eris/dark/techfloor_grid,/area/storage/tech) +"lx" = (/obj/machinery/power/tesla_coil,/obj/structure/cable/yellow{icon_state = "1-2"},/obj/structure/cable/yellow{icon_state = "0-2"},/turf/simulated/floor/airless,/area/engineering/engine_room) +"ly" = (/obj/machinery/atmospherics/pipe/simple/visible/supply{dir = 4},/obj/machinery/meter,/obj/structure/cable/orange{icon_state = "1-2"},/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos/monitoring) +"lz" = (/obj/structure/cable/green{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/effect/landmark/start/chef,/turf/simulated/floor/tiled/eris/cafe,/area/crew_quarters/kitchen) +"lA" = (/obj/structure/cable/cyan{icon_state = "1-8"},/obj/machinery/light/small,/turf/simulated/floor/airless,/area/engineering/engine_room) +"lB" = (/obj/structure/cable/blue{icon_state = "2-4"},/obj/structure/cable/blue{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/eris/dark/gray_platform,/area/bridge) +"lC" = (/obj/machinery/computer/communications{dir = 4},/obj/item/device/radio/intercom{dir = 8; pixel_x = -24},/turf/simulated/floor/carpet/blucarpet,/area/crew_quarters/captain) +"lD" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/machinery/camera/network/command{dir = 10},/turf/simulated/floor/tiled/eris/dark/gray_platform,/area/bridge) +"lF" = (/obj/effect/landmark{name = "lightsout"},/turf/simulated/floor,/area/stellardelight/deck2/combustionworkshop) +"lG" = (/obj/structure/bed/chair/sofa/corp/right{dir = 8},/obj/machinery/light{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/carpet/turcarpet,/area/crew_quarters/recreation_area) +"lI" = (/obj/structure/table/steel_reinforced,/obj/machinery/door/window/westleft{req_one_access = list(35,28)},/obj/effect/floor_decal/milspec/color/green,/turf/simulated/floor/tiled,/area/hydroponics) +"lJ" = (/obj/machinery/door/firedoor/glass,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/door/airlock/angled_bay/double/glass{dir = 8; door_color = "#9c9c9c"; name = "Commons"; stripe_color = "#89bd66"},/turf/simulated/floor/tiled/steel_ridged,/area/crew_quarters/recreation_area) +"lK" = (/obj/structure/cable/orange{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/engine_eva) +"lL" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/cmostore) +"lM" = (/obj/effect/floor_decal/milspec/color/blue/half{dir = 4},/turf/space,/area/space) +"lN" = (/obj/structure/cable/cyan{icon_state = "1-2"},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/obj/item/device/radio/intercom{dir = 8; pixel_x = -24},/turf/simulated/floor/tiled/eris/dark/techfloor_grid,/area/engineering/engine_room) +"lO" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/turf/simulated/floor/tiled/eris/dark/cargo,/area/crew_quarters/recreation_area) +"lP" = (/obj/structure/table/glass,/obj/machinery/light{dir = 4},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/obj/machinery/recharger,/turf/simulated/floor/tiled/eris/white/bluecorner,/area/stellardelight/deck2/triage) +"lQ" = (/obj/structure/sign/directions/chapel{dir = 1; pixel_x = 32},/obj/structure/sign/directions/dorms{dir = 1; pixel_x = 32; pixel_y = -6},/obj/structure/sign/directions/security{dir = 1; pixel_x = 32; pixel_y = 6},/obj/structure/sign/directions{desc = "A direction sign, pointing out the way to the shuttle bay."; dir = 1; name = "\improper Shuttle Bay"; pixel_x = 32; pixel_y = -12},/obj/structure/sign/directions/stairs_down{dir = 1; pixel_x = 32; pixel_y = 12},/turf/simulated/open,/area/stellardelight/deck2/fore) +"lR" = (/obj/machinery/vending/wardrobe/virodrobe,/obj/machinery/atmospherics/unary/vent_pump/on,/obj/machinery/status_display{pixel_y = 32},/obj/machinery/light{dir = 4},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/cmostore) +"lS" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals6{dir = 8},/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore) +"lT" = (/obj/effect/floor_decal/milspec/color/silver/corner{dir = 4},/obj/effect/floor_decal/milspec/color/black/corner{dir = 1},/obj/structure/sign/department/bar{pixel_y = 32; plane = -34},/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore) +"lU" = (/obj/structure/cable/green{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor/tiled/eris/steel/brown_platform,/area/crew_quarters/bar) +"lV" = (/obj/machinery/door/firedoor/glass,/obj/structure/cable/cyan{icon_state = "4-8"},/obj/machinery/door/airlock/angled_bay/external/glass{dir = 4; frequency = 1379; id_tag = "engine_interior"; locked = 1; name = "Engine Airlock"},/obj/machinery/access_button{command = "cycle_interior"; frequency = 1379; master_tag = "engine_airlock"; name = "interior access button"; pixel_y = 32; req_access = list(10,11)},/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4},/turf/simulated/floor/tiled/steel_ridged,/area/engineering/engine_room) +"lW" = (/obj/machinery/medical_kiosk{pixel_y = 6},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/reception) +"lX" = (/obj/machinery/door/window/southright{dir = 1; name = "Jetpack Storage"; req_one_access = list(11,24)},/obj/structure/table/rack{dir = 8; layer = 2.6},/obj/item/weapon/tank/jetpack/carbondioxide,/obj/item/weapon/tank/jetpack/carbondioxide,/turf/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/engine_eva) +"lY" = (/obj/structure/sign/directions/library{dir = 1; pixel_x = -32},/obj/structure/sign/directions/dorms{dir = 1; pixel_x = -32; pixel_y = -6},/obj/structure/sign/directions/security{dir = 1; pixel_x = -32; pixel_y = 6},/obj/structure/sign/directions/science{dir = 1; pixel_x = -32; pixel_y = -12},/obj/structure/sign/directions/stairs_down{dir = 1; pixel_x = -32; pixel_y = 12},/turf/simulated/open,/area/stellardelight/deck2/fore) +"lZ" = (/obj/structure/cable/green{icon_state = "2-8"},/turf/simulated/floor/airless,/area/stellardelight/deck2/exterior) +"ma" = (/obj/machinery/atmospherics/pipe/simple/heat_exchanging{dir = 9},/turf/simulated/floor/airless,/area/stellardelight/deck2/exterior) +"mb" = (/obj/effect/floor_decal/milspec/color/blue/half{dir = 4},/obj/machinery/station_map{dir = 8; pixel_x = 32},/turf/simulated/floor/tiled,/area/stellardelight/deck2/port) +"md" = (/obj/effect/floor_decal/industrial/outline,/obj/effect/floor_decal/steeldecal/steel_decals9,/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 8},/obj/machinery/vending/loadout/loadout_misc,/obj/machinery/atmospherics/unary/vent_pump/on,/obj/effect/landmark/vines,/turf/simulated/floor/tiled/dark,/area/crew_quarters/locker) +"me" = (/obj/structure/cable/white{icon_state = "2-8"},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/reception) +"mf" = (/obj/machinery/atmospherics/pipe/tank/air,/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos/storage) +"mg" = (/obj/random/vendordrink,/obj/machinery/atmospherics/unary/vent_pump/on,/obj/effect/landmark/vines,/turf/simulated/floor/tiled/steel_ridged,/area/stellardelight/deck2/port) +"mh" = (/obj/structure/disposaloutlet,/obj/structure/disposalpipe/trunk{dir = 1},/obj/structure/cable/orange{icon_state = "4-8"},/turf/simulated/floor/airless,/area/stellardelight/deck2/exterior) +"mi" = (/obj/structure/sign/department/bridge{pixel_x = 32},/obj/effect/floor_decal/milspec/color/blue/half{dir = 4},/turf/simulated/floor/tiled,/area/stellardelight/deck2/port) +"mj" = (/obj/machinery/atmospherics/pipe/simple/hidden/universal,/obj/machinery/power/apc/angled{cell_type = /obj/item/weapon/cell/super; dir = 4; name = "night shift APC"; nightshift_setting = 2},/obj/structure/cable{icon_state = "0-8"},/turf/simulated/floor,/area/maintenance/stellardelight/deck2/starboardsolars) +"mk" = (/obj/machinery/power/apc/angled{dir = 1},/obj/structure/cable/green{icon_state = "0-2"},/obj/effect/floor_decal/milspec/color/blue/half{dir = 1},/turf/simulated/floor/tiled,/area/stellardelight/deck2/central) +"ml" = (/obj/effect/floor_decal/milspec/color/green/half{dir = 5},/turf/simulated/floor/tiled,/area/hydroponics) +"mm" = (/obj/structure/cable/green{icon_state = "1-4"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/stellardelight/deck2/starboard) +"mn" = (/turf/simulated/floor/lino,/area/crew_quarters/bar) +"mo" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/reception) +"mq" = (/obj/machinery/atmospherics/unary/engine/bigger{dir = 1},/turf/simulated/floor/airless,/area/stellardelight/deck2/fuelstorage) +"mr" = (/obj/machinery/door/firedoor/glass,/obj/structure/window/bay/reinforced,/obj/structure/low_wall/bay/reinforced/steel,/turf/simulated/floor,/area/engineering/engine_room) +"ms" = (/obj/machinery/atmospherics/pipe/simple/heat_exchanging{dir = 9},/obj/structure/cable/orange{icon_state = "4-8"},/turf/simulated/floor/airless,/area/stellardelight/deck2/exterior) +"mt" = (/turf/simulated/floor/tiled/eris/dark/cargo,/area/crew_quarters/recreation_area) +"mu" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/angled_bay/standard/color{dir = 4; door_color = "#e6ab22"; fill_color = "#877242"; name = "Combustion Workshop"; req_access = list(24); stripe_color = "#2ebfbd"},/obj/structure/cable{icon_state = "4-8"},/turf/simulated/floor/tiled/steel_ridged,/area/engineering/atmos/monitoring) +"mv" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/fuel{dir = 10},/turf/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/engine_eva) +"mw" = (/obj/structure/cable/yellow{icon_state = "1-2"},/obj/effect/landmark/start/cargo,/turf/simulated/floor/tiled/eris/steel/brown_platform,/area/quartermaster/storage) +"mx" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/obj/machinery/portable_atmospherics/canister/nitrogen,/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/monitoring) +"mz" = (/obj/machinery/portable_atmospherics/hydroponics,/obj/effect/floor_decal/milspec/color/green/half{dir = 4},/turf/simulated/floor/tiled,/area/hydroponics) +"mA" = (/obj/machinery/atmospherics/portables_connector{dir = 1},/obj/machinery/camera/network/engineering{dir = 4},/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos/storage) +"mB" = (/obj/machinery/atmospherics/pipe/tank/phoron{dir = 1},/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos/storage) +"mC" = (/obj/machinery/power/emitter{anchored = 1; dir = 1; icon_state = "emitter1"; state = 1},/obj/structure/cable/cyan{icon_state = "0-8"},/obj/structure/cable/cyan{icon_state = "4-8"},/turf/simulated/floor/airless,/area/engineering/engine_room) +"mD" = (/obj/machinery/atmospherics/binary/pump,/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/monitoring) +"mE" = (/obj/structure/cable/yellow{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/wood,/area/quartermaster/qm) +"mF" = (/obj/structure/reagent_dispensers/watertank,/turf/simulated/floor/tiled/techmaint,/area/storage/primary) +"mG" = (/obj/structure/closet/secure_closet/personal,/obj/effect/floor_decal/industrial/outline,/obj/effect/floor_decal/steeldecal/steel_decals9,/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 8},/obj/item/clothing/shoes/black,/obj/machinery/light,/obj/item/device/communicator,/turf/simulated/floor/tiled/dark,/area/crew_quarters/locker) +"mH" = (/obj/structure/table/steel_reinforced,/obj/machinery/atmospherics/unary/vent_scrubber/on,/obj/item/weapon/book/manual/security_space_law,/obj/item/weapon/folder/red,/obj/item/weapon/folder/blue,/obj/machinery/power/apc/angled{dir = 8; name = "night shift APC"; nightshift_setting = 2},/obj/structure/cable/blue{icon_state = "0-2"},/obj/machinery/light{dir = 1},/obj/effect/landmark/vermin,/turf/simulated/floor/wood,/area/stellardelight/deck2/briefingroom) +"mI" = (/turf/simulated/wall/bay/r_wall/steel,/area/maintenance/stellardelight/deck2/atmos) +"mJ" = (/obj/structure/table/woodentable,/obj/random/paicard,/turf/simulated/floor/tiled/eris/steel/brown_platform,/area/crew_quarters/bar) +"mK" = (/obj/machinery/door/firedoor/glass,/obj/structure/cable/white{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/door/airlock/angled_bay/standard/color{dir = 8; door_color = "#ffffff"; name = "Operating Theatre 2"; req_access = list(45); stripe_color = "#5a96bb"},/turf/simulated/floor/tiled/steel_ridged,/area/medical/surgery2) +"mL" = (/obj/structure/flora/pottedplant/small,/obj/machinery/camera/network/civilian{dir = 1},/turf/simulated/floor/tiled/dark,/area/crew_quarters/recreation_area) +"mM" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/effect/landmark/start/engineer,/turf/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/locker_room) +"mN" = (/obj/effect/floor_decal/milspec/color/black/corner,/obj/effect/floor_decal/milspec/color/silver/corner{dir = 4},/obj/machinery/station_map{dir = 8; pixel_x = 32},/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore) +"mO" = (/turf/simulated/wall/bay/r_wall/orange,/area/engineering/engineering_monitoring) +"mP" = (/obj/structure/cable/white{icon_state = "2-8"},/turf/simulated/floor/wood,/area/medical/psych) +"mQ" = (/obj/structure/table/standard,/obj/item/weapon/packageWrap,/obj/item/weapon/packageWrap,/obj/machinery/power/apc/angled{dir = 1},/obj/structure/cable/green{icon_state = "0-2"},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 1},/turf/simulated/floor/tiled,/area/storage/art) +"mR" = (/obj/structure/cable/orange{icon_state = "1-4"},/obj/structure/cable/orange{icon_state = "1-8"},/obj/structure/cable/orange{icon_state = "4-8"},/turf/simulated/floor/airless,/area/stellardelight/deck2/exterior) +"mS" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/obj/effect/landmark{name = "verminstart"},/turf/simulated/floor/grass,/area/hydroponics) +"mT" = (/turf/simulated/wall/bay/steel,/area/storage/art) +"mU" = (/obj/item/weapon/stool/padded{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/camera/network/civilian{dir = 8},/turf/simulated/floor/tiled/eris/dark/cargo,/area/crew_quarters/recreation_area) +"mV" = (/obj/structure/cable/green{icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore) +"mW" = (/obj/structure/table/reinforced,/obj/item/weapon/reagent_containers/glass/beaker/large,/obj/item/weapon/reagent_containers/dropper,/obj/item/device/radio/intercom{pixel_y = -24},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/chemistry) +"mX" = (/obj/structure/table/standard,/obj/item/weapon/paper_bin{pixel_x = -3; pixel_y = 7},/obj/item/weapon/pen/red{pixel_x = -1; pixel_y = 3},/obj/item/weapon/pen/blue{pixel_x = -5; pixel_y = -1},/obj/machinery/alarm/angled,/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 1},/turf/simulated/floor/tiled,/area/storage/art) +"mY" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/obj/structure/closet/emcloset,/turf/simulated/floor,/area/maintenance/stellardelight/deck2/portfore) +"mZ" = (/obj/structure/cable{icon_state = "0-8"},/obj/structure/cable{icon_state = "1-8"},/obj/machinery/power/solar,/turf/simulated/floor/airless,/area/stellardelight/deck2/exterior) +"na" = (/obj/structure/cable/cyan{icon_state = "1-2"},/obj/machinery/camera/network/engineering{dir = 8},/obj/effect/landmark/start/engineer,/turf/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/locker_room) +"nb" = (/obj/structure/cable/orange{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/engine_eva) +"nd" = (/turf/simulated/wall/bay/white,/area/medical/surgery2) +"nf" = (/obj/machinery/firealarm/angled{dir = 4},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/orange{icon_state = "1-2"},/turf/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/engineering_monitoring) +"ng" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/hologram/holopad,/turf/simulated/floor/tiled/eris/dark/danger,/area/engineering/engine_room) +"ni" = (/turf/simulated/wall/bay/r_wall/steel,/area/engineering/engine_room) +"nj" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/effect/floor_decal/steeldecal/steel_decals10,/turf/simulated/floor/tiled/eris/white/cargo,/area/stellardelight/deck2/triage) +"nm" = (/obj/effect/floor_decal/industrial/warning/corner{dir = 1},/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor/tiled/eris/steel/cargo,/area/quartermaster/storage) +"no" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/turf/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/engine_eva) +"np" = (/obj/structure/cable/orange{icon_state = "1-4"},/obj/structure/cable/orange,/obj/machinery/power/apc/angled{dir = 8},/obj/machinery/power/sensor{name = "Powernet Sensor - Engineering Subgrid"; name_tag = "Engineering Subgrid"},/turf/simulated/floor/plating,/area/maintenance/stellardelight/substation/engineering) +"nq" = (/turf/simulated/wall/bay/r_wall/steel,/area/engineering/engine_eva) +"nr" = (/obj/machinery/atmospherics/pipe/simple/hidden/cyan{dir = 10},/turf/simulated/wall/bay/r_wall/orange,/area/engineering/atmos/storage) +"ns" = (/obj/structure/table/reinforced,/obj/machinery/photocopier/faxmachine{department = "Engineering"},/turf/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/engineering_monitoring) +"nt" = (/turf/simulated/wall/bay/brown,/area/crew_quarters/recreation_area) +"nu" = (/obj/structure/cable/blue{icon_state = "1-2"},/obj/machinery/door/airlock/angled_bay/standard/color{door_color = "#323d80"; fill_color = "#c9892e"; id_tag = "captaindoor"; name = "Captain's Office"; req_access = list(20); stripe_color = "#f7d35c"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/steel_ridged,/area/crew_quarters/captain) +"nv" = (/obj/structure/cable/blue{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/eris/dark/monofloor,/area/bridge) +"nw" = (/obj/structure/cable{icon_state = "1-2"},/obj/effect/floor_decal/milspec/color/orange/half{dir = 8},/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/stellardelight/deck2/aftport) +"nx" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/structure/cable{icon_state = "4-8"},/turf/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/locker_room) +"ny" = (/obj/machinery/atmospherics/pipe/simple/visible/black{dir = 6},/obj/structure/sign/atmos/co2{pixel_y = 26},/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos/storage) +"nz" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable/yellow{icon_state = "4-8"},/obj/effect/landmark{name = "lightsout"},/turf/simulated/floor/tiled/eris/steel/brown_platform,/area/quartermaster/storage) +"nA" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/structure/cable{icon_state = "4-8"},/turf/simulated/floor,/area/stellardelight/deck2/combustionworkshop) +"nB" = (/obj/random/vendorfood,/obj/machinery/atmospherics/unary/vent_pump/on,/turf/simulated/floor/tiled,/area/stellardelight/deck2/aftport) +"nC" = (/obj/machinery/appliance/cooker/grill,/obj/machinery/requests_console{department = "Service"; pixel_y = 26},/turf/simulated/floor/tiled/eris/cafe,/area/crew_quarters/kitchen) +"nD" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/hologram/holopad,/obj/structure/cable/blue{icon_state = "4-8"},/turf/simulated/floor/tiled/eris/dark/gray_platform,/area/bridge) +"nE" = (/obj/machinery/atmospherics/pipe/tank/carbon_dioxide,/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos/storage) +"nF" = (/obj/structure/table/standard,/obj/item/clothing/head/soft,/obj/item/clothing/head/soft,/obj/item/weapon/stamp{pixel_x = -3; pixel_y = 3},/obj/machinery/camera/network/cargo,/turf/simulated/floor/tiled/eris/steel/cargo,/area/quartermaster/storage) +"nG" = (/obj/machinery/atmospherics/pipe/simple/visible/cyan{dir = 5},/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos/storage) +"nH" = (/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4},/obj/structure/closet/walllocker_double/medical/north,/obj/item/weapon/storage/firstaid/regular,/obj/item/weapon/storage/firstaid/regular,/obj/random/medical/lite,/obj/random/medical/lite,/obj/item/bodybag/cryobag,/obj/item/bodybag/cryobag,/turf/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/engine_eva) +"nI" = (/obj/machinery/atmospherics/pipe/simple/heat_exchanging{dir = 5},/obj/structure/cable/orange{icon_state = "1-2"},/turf/simulated/floor/airless,/area/stellardelight/deck2/exterior) +"nJ" = (/obj/structure/cable/white{icon_state = "2-4"},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/cmostore) +"nK" = (/turf/simulated/wall/bay/r_wall/blue,/area/bridge) +"nL" = (/obj/structure/sign/painting/public{pixel_x = -30},/obj/effect/floor_decal/milspec/color/blue/half{dir = 8},/turf/simulated/floor/tiled,/area/stellardelight/deck2/starboard) +"nM" = (/obj/machinery/light/small,/turf/simulated/floor/tiled/eris/dark/techfloor_grid,/area/engineering/storage) +"nN" = (/obj/structure/cable/green{icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/turf/simulated/floor/tiled,/area/stellardelight/deck2/aftstarboard) +"nO" = (/turf/simulated/wall/bay/r_wall/orange,/area/engineering/engine_eva) +"nP" = (/obj/structure/cable/green{icon_state = "1-8"},/turf/simulated/floor/airless,/area/stellardelight/deck2/exterior) +"nQ" = (/obj/structure/table/marble,/obj/machinery/chemical_dispenser/bar_soft/full{dir = 1},/obj/machinery/requests_console{department = "Service"; dir = 1; pixel_y = -26},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/obj/effect/landmark/vermin,/turf/simulated/floor/lino,/area/crew_quarters/bar) +"nR" = (/obj/machinery/atmospherics/pipe/simple/hidden/red{dir = 6},/obj/structure/cable{icon_state = "4-8"},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/monitoring) +"nS" = (/obj/effect/floor_decal/milspec/color/green/corner{dir = 1},/obj/item/device/radio/intercom{dir = 8; pixel_x = -24},/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore) +"nT" = (/obj/structure/cable/white{icon_state = "1-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/stellardelight/deck2/triage) +"nU" = (/obj/structure/table/steel_reinforced,/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/door/firedoor/glass,/obj/machinery/door/blast/angled_shutter{dir = 4; id = "kitchen"; layer = 3.3; name = "Kitchen Shutters"},/turf/simulated/floor/tiled/eris/cafe,/area/crew_quarters/kitchen) +"nV" = (/obj/machinery/atmospherics/pipe/simple/hidden/cyan{dir = 10},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/cmostore) +"nW" = (/obj/machinery/atmospherics/pipe/simple/hidden/green,/obj/structure/cable/orange{icon_state = "1-2"},/obj/machinery/alarm/angled{dir = 4},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/monitoring) +"nX" = (/obj/machinery/alarm/angled{dir = 4},/obj/structure/cable{icon_state = "1-2"},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 8},/turf/simulated/floor/tiled,/area/stellardelight/deck2/aftport) +"nZ" = (/obj/machinery/atmospherics/pipe/simple/hidden/cyan{dir = 4},/obj/structure/cable/orange{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/monitoring) +"oa" = (/turf/simulated/wall/bay/brown,/area/maintenance/stellardelight/substation/engineering) +"ob" = (/obj/effect/shuttle_landmark/premade/sd/deck2/starboard,/turf/space,/area/space) +"oc" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/carpet/blucarpet,/area/crew_quarters/captain) +"od" = (/obj/machinery/atmospherics/pipe/simple/hidden/red{dir = 5},/turf/simulated/floor/tiled/techfloor,/area/stellardelight/deck2/o2production) +"oe" = (/obj/machinery/atmospherics/pipe/simple/visible/red{dir = 4},/obj/machinery/atmospherics/pipe/simple/visible/green,/obj/structure/cable/orange{icon_state = "1-2"},/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos/storage) +"of" = (/obj/structure/sign/directions/evac{pixel_x = 32},/obj/effect/floor_decal/milspec/color/black/corner,/obj/effect/floor_decal/milspec/color/silver/corner{dir = 4},/obj/structure/sign/directions/medical{pixel_x = 32; pixel_y = -6},/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore) +"og" = (/obj/machinery/sleeper{dir = 4},/obj/effect/floor_decal/corner_steel_grid{dir = 10},/turf/simulated/floor/tiled/eris/white/cargo,/area/stellardelight/deck2/triage) +"oh" = (/obj/structure/table/standard,/obj/item/weapon/storage/firstaid/surgery,/obj/item/device/radio/intercom{dir = 8; pixel_x = -24},/turf/simulated/floor/tiled/white,/area/medical/surgery2) +"oi" = (/obj/structure/sign/department/bridge{pixel_x = -32},/obj/effect/floor_decal/milspec/color/blue/half{dir = 8},/turf/simulated/floor/tiled,/area/stellardelight/deck2/starboard) +"oj" = (/obj/structure/cable/green{icon_state = "4-8"},/turf/simulated/floor/tiled/monotile,/area/hydroponics) +"ok" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/grass,/area/hydroponics) +"ol" = (/obj/structure/cable/white{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 8},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/chemistry) +"om" = (/obj/structure/cable/orange{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable{icon_state = "4-8"},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/monitoring) +"on" = (/obj/machinery/firealarm/angled{dir = 8},/obj/machinery/recharge_station,/turf/simulated/floor/tiled/eris/dark/techfloor_grid,/area/storage/tech) +"oo" = (/obj/machinery/atmospherics/portables_connector{dir = 1},/obj/machinery/light{dir = 8},/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos/storage) +"op" = (/obj/machinery/power/generator{anchored = 1; dir = 4},/obj/structure/cable{icon_state = "0-2"},/turf/simulated/floor,/area/stellardelight/deck2/combustionworkshop) +"oq" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable/orange{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/monitoring) +"os" = (/obj/machinery/door/firedoor/glass/hidden/steel{dir = 8},/obj/effect/floor_decal/milspec/color/blue,/obj/structure/sign/deck2{pixel_x = 32},/turf/simulated/floor/tiled/monotile,/area/stellardelight/deck2/central) +"ot" = (/obj/machinery/alarm/angled,/obj/machinery/atmospherics/portables_connector/fuel,/obj/effect/floor_decal/industrial/outline/red,/turf/simulated/floor,/area/stellardelight/deck2/fuelstorage) +"ou" = (/obj/machinery/computer/supplycomp/control{dir = 4},/obj/item/device/radio/intercom{dir = 1; name = "Station Intercom (General)"; pixel_y = 24},/turf/simulated/floor/tiled/eris/steel/brown_platform,/area/quartermaster/storage) +"ov" = (/turf/simulated/wall/bay/r_wall/steel,/area/stellardelight/deck2/combustionworkshop) +"ow" = (/turf/simulated/wall/bay/r_wall/orange,/area/storage/tech) +"ox" = (/obj/structure/sign/poster{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 8},/turf/simulated/floor/tiled,/area/stellardelight/deck2/port) +"oy" = (/obj/machinery/door/blast/angled{dir = 4; id = "burnchamberlockvent"},/turf/simulated/floor/reinforced/airless,/area/stellardelight/deck2/combustionworkshop) +"oz" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/turf/simulated/floor/grass,/area/hydroponics) +"oA" = (/obj/machinery/atmospherics/binary/pump,/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos/storage) +"oB" = (/obj/structure/cable/green{icon_state = "2-4"},/turf/simulated/floor/tiled/eris/steel/brown_platform,/area/crew_quarters/bar) +"oC" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/structure/cable/yellow{icon_state = "4-8"},/turf/simulated/floor/tiled/eris/steel/brown_platform,/area/quartermaster/storage) +"oD" = (/obj/machinery/door/firedoor/glass,/obj/structure/cable/green{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/door/airlock/angled_bay/hatch{dir = 4; name = "maintenance access"; req_access = list(28); stripe_color = "#454545"},/turf/simulated/floor/tiled/steel_ridged,/area/crew_quarters/kitchen) +"oE" = (/turf/simulated/wall/bay/r_wall/orange,/area/stellardelight/deck2/o2production) +"oF" = (/obj/structure/bed/chair/backed_red{dir = 8},/turf/simulated/floor/tiled/eris/steel/brown_platform,/area/crew_quarters/bar) +"oG" = (/turf/simulated/floor,/area/maintenance/stellardelight/deck2/starboardfore) +"oH" = (/obj/machinery/door/firedoor/glass/hidden/steel{dir = 2},/obj/effect/floor_decal/milspec/color/blue/half{dir = 1},/turf/simulated/floor/tiled,/area/stellardelight/deck2/central) +"oI" = (/obj/machinery/door/firedoor/glass,/obj/structure/cable/orange{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/door/airlock/angled_bay/standard/glass{dir = 4; door_color = "#e6ab22"; name = "Engineering Hard Storage"; req_access = list(11); stripe_color = "#913013"},/turf/simulated/floor/tiled/steel_ridged,/area/engineering/engineering_monitoring) +"oJ" = (/obj/machinery/door/firedoor/glass,/obj/structure/window/bay/reinforced,/obj/machinery/door/blast/angled/open{dir = 2; id = "barlockdown"},/obj/structure/low_wall/bay/reinforced/steel,/turf/simulated/floor,/area/crew_quarters/bar) +"oK" = (/obj/structure/table/standard,/obj/item/device/defib_kit/loaded,/obj/item/weapon/reagent_containers/spray/cleaner{desc = "Someone has crossed out the Space from Space Cleaner and written in Surgery. 'Do not remove under punishment of death!!!' is scrawled on the back."; name = "Surgery Cleaner"; pixel_x = 2; pixel_y = 2},/obj/item/device/radio/intercom/department/medbay{dir = 4; pixel_x = 24},/turf/simulated/floor/tiled/white,/area/medical/surgery2) +"oL" = (/obj/machinery/atmospherics/pipe/manifold4w/visible/cyan,/obj/machinery/power/apc/angled{dir = 4},/obj/structure/cable/orange{icon_state = "0-8"},/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos/storage) +"oM" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/angled_bay/double/glass{dir = 8; name = "Art Storage"},/turf/simulated/floor/tiled/steel_ridged,/area/storage/art) +"oO" = (/obj/machinery/chem_master/condimaster,/turf/simulated/floor/tiled/eris/cafe,/area/crew_quarters/kitchen) +"oP" = (/obj/machinery/firealarm/angled{dir = 4},/obj/structure/cable/yellow{icon_state = "1-8"},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/turf/simulated/floor/plating,/area/engineering/storage) +"oQ" = (/obj/machinery/atmospherics/pipe/simple/visible/red,/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos/storage) +"oR" = (/turf/simulated/floor/plating,/area/engineering/storage) +"oS" = (/obj/structure/bed/chair/bay/comfy/brown{dir = 4},/obj/effect/landmark/start/entertainer,/turf/simulated/floor/carpet,/area/crew_quarters/recreation_area) +"oT" = (/obj/structure/reagent_dispensers/fueltank,/turf/simulated/floor/tiled/techmaint,/area/storage/primary) +"oU" = (/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{dir = 5},/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos/monitoring) +"oV" = (/obj/structure/cable/orange{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/eris/dark/gray_platform,/area/engineering/workshop) +"oX" = (/obj/machinery/atmospherics/pipe/manifold4w/hidden,/turf/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/engine_eva) +"oY" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable/cyan{icon_state = "1-2"},/turf/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/locker_room) +"oZ" = (/obj/machinery/computer/ship/navigation/telescreen{pixel_y = 32},/obj/machinery/firealarm/angled{dir = 4},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/obj/effect/landmark/start/commandsecretary,/turf/simulated/floor/tiled/eris/dark/monofloor,/area/bridge) +"pa" = (/obj/effect/floor_decal/emblem/stellardelight{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 1},/obj/machinery/station_map{pixel_y = 32},/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore) +"pb" = (/obj/machinery/atmospherics/pipe/simple/hidden/fuel{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 6},/turf/simulated/floor/tiled/eris/steel/cargo,/area/quartermaster/storage) +"pc" = (/obj/machinery/conveyor_switch/oneway{id = "packageSort1"},/obj/effect/floor_decal/industrial/warning{dir = 10},/turf/simulated/floor/tiled/eris/steel/cargo,/area/quartermaster/storage) +"pd" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/grass,/area/hydroponics) +"pe" = (/obj/machinery/shieldgen,/obj/machinery/light/small{dir = 8},/turf/simulated/floor/plating,/area/engineering/storage) +"pf" = (/obj/machinery/door/firedoor/glass,/obj/machinery/atmospherics/pipe/simple/hidden/cyan{dir = 4},/obj/structure/cable/white{icon_state = "4-8"},/obj/machinery/door/airlock/angled_bay/hatch{dir = 4; door_color = "#ffffff"; name = "Gas Storage"; req_one_access = list(5); stripe_color = "#5a96bb"},/turf/simulated/floor/tiled/steel_ridged,/area/medical/cryo) +"pg" = (/obj/structure/closet/secure_closet/medical3,/obj/item/weapon/soap/nanotrasen,/obj/item/weapon/storage/belt/medical,/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/cmostore) +"ph" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/turf/simulated/floor,/area/maintenance/stellardelight/deck2/starboardaft) +"pj" = (/obj/machinery/light/small{dir = 8},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/orange{icon_state = "1-2"},/turf/simulated/floor,/area/maintenance/stellardelight/deck2/starboardsolars) +"pk" = (/obj/machinery/atmospherics/pipe/manifold/hidden{dir = 4},/obj/structure/cable{icon_state = "2-8"},/obj/machinery/power/sensor{name = "Powernet Sensor - Port Solar Array"; name_tag = "Port Solar Array"},/obj/structure/cable{icon_state = "0-8"},/turf/simulated/floor,/area/maintenance/stellardelight/deck2/portsolars) +"pl" = (/obj/structure/table/standard,/obj/machinery/photocopier/faxmachine{department = "Cargo"},/turf/simulated/floor/tiled/eris/steel/brown_platform,/area/quartermaster/storage) +"pn" = (/obj/machinery/alarm/angled{dir = 4},/obj/machinery/recharge_station,/obj/structure/cable/green{icon_state = "1-2"},/obj/machinery/light{dir = 1},/turf/simulated/floor/tiled/eris/steel/brown_platform,/area/crew_quarters/bar) +"po" = (/obj/machinery/door/firedoor/glass/hidden/steel{dir = 2},/obj/machinery/status_display{pixel_y = 32},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 1},/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore) +"pp" = (/obj/effect/floor_decal/industrial/outline/yellow,/obj/structure/closet/crate,/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/eris/steel/cargo,/area/quartermaster/storage) +"pq" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals_central5{dir = 4},/turf/simulated/floor/tiled,/area/stellardelight/deck2/aftport) +"pr" = (/obj/machinery/light/small,/obj/structure/closet/emcloset,/turf/simulated/floor/tiled/eris/white/danger,/area/stellardelight/deck2/port) +"pu" = (/obj/effect/floor_decal/industrial/warning{dir = 8},/turf/simulated/floor/airless,/area/engineering/engine_room) +"pv" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/angled_bay/standard/glass{dir = 4; name = "glass airlock"},/obj/structure/cable{icon_state = "4-8"},/turf/simulated/floor/tiled/steel_ridged,/area/stellardelight/deck2/aftport) +"pw" = (/obj/structure/sign/pods,/turf/simulated/wall/bay/r_wall/steel,/area/stellardelight/deck2/port) +"px" = (/obj/machinery/power/emitter,/turf/simulated/floor/plating,/area/engineering/storage) +"py" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/lino,/area/crew_quarters/bar) +"pz" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/effect/landmark/start/chef,/turf/simulated/floor/tiled/eris/cafe,/area/crew_quarters/kitchen) +"pA" = (/obj/machinery/light{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 8},/turf/simulated/floor/tiled,/area/stellardelight/deck2/port) +"pB" = (/obj/machinery/atmospherics/binary/pump{dir = 8},/turf/simulated/floor,/area/stellardelight/deck2/combustionworkshop) +"pC" = (/obj/structure/cable/orange{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/turf/simulated/floor/tiled/eris/dark/techfloor_grid,/area/storage/tech) +"pD" = (/obj/effect/floor_decal/industrial/warning,/turf/simulated/floor/tiled/eris/steel/cargo,/area/quartermaster/storage) +"pG" = (/obj/structure/cable/green{icon_state = "4-8"},/obj/structure/cable/green{icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore) +"pH" = (/obj/structure/sign/directions/evac{pixel_x = -32},/obj/effect/floor_decal/milspec/color/black/corner{dir = 1},/obj/effect/floor_decal/milspec/color/silver/corner{dir = 8},/obj/structure/sign/directions/medical{pixel_x = -32; pixel_y = -6},/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore) +"pI" = (/obj/structure/closet/crate/bin{anchored = 1},/turf/simulated/floor/tiled/eris/cafe,/area/crew_quarters/kitchen) +"pJ" = (/turf/simulated/floor,/area/maintenance/stellardelight/deck2/starboardaft) +"pK" = (/obj/machinery/atmospherics/pipe/simple/hidden/fuel{dir = 4},/obj/machinery/door/firedoor/glass,/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/door/airlock/angled_bay/hatch{dir = 4; door_color = "#e6ab22"; locked = 1; name = "maintenance access"; req_one_access = list(19); stripe_color = "#e6ab22"},/obj/structure/cable{icon_state = "4-8"},/turf/simulated/floor/tiled/steel_ridged,/area/engineering/atmos/monitoring) +"pL" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 1},/turf/simulated/floor/tiled,/area/stellardelight/deck2/port) +"pM" = (/obj/structure/bed/chair{dir = 4},/obj/machinery/alarm/angled,/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/reception) +"pN" = (/obj/structure/reagent_dispensers/watertank,/obj/item/weapon/reagent_containers/glass/bucket,/obj/machinery/light{dir = 1},/obj/effect/floor_decal/milspec/color/green/half{dir = 1},/turf/simulated/floor/tiled,/area/hydroponics) +"pO" = (/obj/machinery/atmospherics/binary/algae_farm/filled{dir = 1},/turf/simulated/floor/tiled/techfloor,/area/stellardelight/deck2/o2production) +"pP" = (/obj/structure/cable/green{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/effect/landmark{name = "lightsout"},/obj/machinery/hologram/holopad,/turf/simulated/floor/tiled,/area/storage/art) +"pQ" = (/obj/structure/bed/chair/bay/shuttle{dir = 4},/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck2/starboardescape) +"pR" = (/obj/structure/closet/gmcloset{name = "formal wardrobe"},/obj/item/glass_jar,/obj/item/device/retail_scanner/civilian,/obj/item/device/retail_scanner/civilian,/obj/item/device/destTagger{pixel_x = 4; pixel_y = 3},/obj/item/weapon/packageWrap,/turf/simulated/floor/wood,/area/stellardelight/deck2/barbackroom) +"pS" = (/obj/structure/cable/green{icon_state = "1-4"},/obj/structure/cable/green{icon_state = "1-8"},/obj/structure/cable/green{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/turf/simulated/floor,/area/maintenance/stellardelight/deck2/portfore) +"pT" = (/obj/machinery/atmospherics/pipe/simple/hidden/cyan{dir = 9},/turf/simulated/wall/bay/r_wall/orange,/area/engineering/atmos/monitoring) +"pU" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/fuel{dir = 4},/turf/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/engine_eva) +"pV" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals5,/turf/simulated/floor/tiled,/area/crew_quarters/locker) +"pW" = (/obj/machinery/media/jukebox,/obj/machinery/light{dir = 1},/turf/simulated/floor/tiled/eris/steel/brown_platform,/area/crew_quarters/bar) +"pX" = (/obj/machinery/portable_atmospherics/hydroponics,/obj/effect/floor_decal/milspec/color/green/half{dir = 10},/turf/simulated/floor/tiled,/area/hydroponics) +"pY" = (/obj/machinery/atmospherics/pipe/simple/hidden/green,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/item/device/radio/intercom{dir = 4; pixel_x = 24},/turf/simulated/floor/tiled/techfloor,/area/stellardelight/deck2/o2production) +"pZ" = (/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 4},/obj/machinery/station_map{dir = 8; pixel_x = 32},/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore) +"qa" = (/obj/structure/table/rack,/obj/random/maintenance/medical,/obj/random/maintenance/medical,/obj/random/maintenance/medical,/obj/random/maintenance/medical,/obj/random/maintenance/medical,/obj/random/maintenance,/obj/random/contraband,/turf/simulated/floor,/area/maintenance/stellardelight/deck2/starboardaft) +"qb" = (/obj/machinery/door/firedoor/glass/hidden/steel,/obj/structure/cable/green{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/turf/simulated/floor/tiled,/area/stellardelight/deck2/aftport) +"qd" = (/obj/item/device/radio/intercom{dir = 1; pixel_y = 24},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/obj/structure/cable/cyan{icon_state = "2-4"},/obj/structure/closet/secure_closet/engineering_personal,/obj/effect/landmark/vermin,/turf/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/locker_room) +"qe" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/turf/simulated/floor/tiled/eris/steel/brown_platform,/area/crew_quarters/bar) +"qf" = (/turf/simulated/wall/bay/r_wall/white,/area/medical/surgery2) +"qg" = (/obj/machinery/atmospherics/binary/pump/high_power/on,/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos/storage) +"qh" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable{icon_state = "1-4"},/turf/simulated/floor,/area/maintenance/stellardelight/deck2/starboardsolars) +"qi" = (/obj/effect/floor_decal/industrial/warning/full,/obj/structure/cable/orange{icon_state = "0-8"},/obj/structure/cable/orange{icon_state = "0-4"},/obj/machinery/power/pointdefense{id_tag = "sd_pd"},/turf/simulated/floor/airless,/area/stellardelight/deck2/exterior) +"qj" = (/obj/structure/table/glass,/obj/structure/window/reinforced{dir = 1},/obj/item/device/flashlight/lamp/green{pixel_y = -6},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/reception) +"qk" = (/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/eris/steel/cargo,/area/quartermaster/storage) +"ql" = (/obj/machinery/atmospherics/pipe/tank/phoron,/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos/storage) +"qm" = (/obj/machinery/vending/medical,/obj/effect/floor_decal/industrial/warning{dir = 8},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/turf/simulated/floor/tiled/eris/white/cargo,/area/stellardelight/deck2/triage) +"qn" = (/obj/structure/filingcabinet/medical{desc = "A large cabinet with hard copy medical records."; name = "Medical Records"},/obj/machinery/power/apc/angled{dir = 1},/obj/structure/cable/white{icon_state = "0-4"},/obj/machinery/firealarm/angled{dir = 8},/turf/simulated/floor/carpet/blue,/area/medical/psych) +"qo" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals6,/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore) +"qp" = (/obj/structure/window/reinforced{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/grass,/area/hydroponics) +"qq" = (/obj/machinery/door/firedoor/glass,/obj/structure/window/bay/reinforced,/obj/machinery/door/blast/angled/open{dir = 2; id = "atmoswindowlockdown"},/obj/structure/low_wall/bay/reinforced/steel,/turf/simulated/floor,/area/engineering/atmos/monitoring) +"qr" = (/turf/simulated/wall/bay/r_wall/orange,/area/engineering/storage) +"qs" = (/obj/structure/table/standard,/obj/item/weapon/storage/fancy/crayons,/obj/item/weapon/storage/fancy/crayons,/obj/item/weapon/storage/fancy/crayons,/obj/item/weapon/storage/fancy/crayons,/obj/item/weapon/storage/fancy/crayons,/obj/machinery/atmospherics/unary/vent_scrubber/on,/obj/machinery/newscaster{pixel_y = 28},/obj/effect/landmark/vermin,/turf/simulated/floor/tiled,/area/storage/art) +"qt" = (/obj/effect/floor_decal/industrial/outline/yellow,/obj/structure/closet/crate/freezer,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled/eris/steel/cargo,/area/quartermaster/storage) +"qu" = (/obj/effect/floor_decal/industrial/warning{dir = 9},/turf/simulated/floor/tiled/eris/steel/cargo,/area/quartermaster/storage) +"qv" = (/obj/machinery/power/port_gen/pacman{anchored = 1},/obj/effect/floor_decal/industrial/outline/yellow,/obj/structure/cable/yellow{icon_state = "1-4"},/turf/simulated/floor/plating,/area/engineering/storage) +"qw" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/monitoring) +"qx" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/obj/structure/cable/orange{icon_state = "1-2"},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/monitoring) +"qy" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/obj/structure/closet/firecloset,/turf/simulated/floor,/area/maintenance/stellardelight/deck2/portfore) +"qz" = (/obj/structure/cable/orange{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/eris/dark/gray_platform,/area/engineering/workshop) +"qA" = (/obj/structure/table/rack/steel,/obj/item/weapon/circuitboard/skills{pixel_x = -3; pixel_y = 3},/obj/item/weapon/circuitboard/med_data{pixel_x = -2; pixel_y = 2},/obj/item/weapon/circuitboard/secure_data{pixel_x = -1; pixel_y = 1},/obj/item/weapon/circuitboard/security,/obj/item/weapon/circuitboard/security/engineering{pixel_x = 1; pixel_y = -1},/obj/item/weapon/circuitboard/security/mining{pixel_x = 2; pixel_y = -2},/obj/item/weapon/circuitboard/stationalert_security{pixel_x = 3; pixel_y = -3},/obj/machinery/camera/network/engineering,/turf/simulated/floor/tiled/eris/dark/techfloor_grid,/area/storage/tech) +"qC" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/angled_bay/double{name = "maintenance access"; stripe_color = "#454545"},/turf/simulated/floor,/area/maintenance/stellardelight/deck2/portsolars) +"qD" = (/obj/machinery/power/apc/angled{dir = 1},/obj/structure/cable/green{icon_state = "0-8"},/obj/machinery/recharge_station,/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 1},/turf/simulated/floor/tiled,/area/stellardelight/deck2/aftstarboard) +"qF" = (/obj/machinery/atmospherics/portables_connector{dir = 1},/turf/simulated/floor,/area/engineering/atmos/monitoring) +"qG" = (/obj/structure/cable{icon_state = "2-8"},/turf/simulated/floor/airless,/area/stellardelight/deck2/exterior) +"qH" = (/obj/structure/cable/orange{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/hologram/holopad,/obj/effect/landmark/start/engineer,/turf/simulated/floor/tiled/eris/dark/gray_platform,/area/engineering/workshop) +"qI" = (/obj/structure/cable/green{icon_state = "1-2"},/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled,/area/stellardelight/deck2/port) +"qJ" = (/obj/structure/cable/cyan{icon_state = "4-8"},/turf/simulated/floor/tiled/eris/dark/techfloor_grid,/area/engineering/engine_room) +"qL" = (/obj/machinery/atmospherics/portables_connector{dir = 1},/obj/machinery/light,/turf/simulated/floor,/area/engineering/atmos/monitoring) +"qM" = (/obj/machinery/atmospherics/pipe/simple/hidden/fuel{dir = 6},/turf/simulated/wall/bay/r_wall/steel,/area/stellardelight/deck2/fuelstorage) +"qN" = (/obj/machinery/atmospherics/pipe/simple/hidden/green{dir = 5},/obj/effect/floor_decal/industrial/danger{dir = 1},/obj/structure/cable/orange{icon_state = "1-2"},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/monitoring) +"qO" = (/obj/machinery/atmospherics/pipe/simple/hidden/red{dir = 6},/turf/simulated/floor/tiled/techfloor,/area/stellardelight/deck2/o2production) +"qP" = (/obj/machinery/portable_atmospherics/canister/oxygen,/turf/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/engine_eva) +"qQ" = (/obj/machinery/door/firedoor/glass,/obj/machinery/smartfridge/chemistry,/turf/simulated/floor/plating,/area/medical/chemistry) +"qS" = (/obj/item/weapon/stool/padded{dir = 4},/obj/effect/floor_decal/spline/plain{dir = 8},/obj/machinery/light,/turf/simulated/floor/lino,/area/crew_quarters/bar) +"qT" = (/obj/structure/lattice,/obj/structure/railing/grey{dir = 4},/obj/structure/sign/directions/evac{dir = 1; pixel_x = 32},/obj/structure/sign/directions/stairs_up{dir = 1; pixel_x = 32; pixel_y = 6},/turf/simulated/floor,/area/stellardelight/deck2/aftport) +"qV" = (/obj/structure/cable/yellow{icon_state = "1-2"},/obj/structure/cable{icon_state = "4-8"},/turf/simulated/floor/tiled/eris/dark/techfloor_grid,/area/engineering/storage) +"qW" = (/obj/machinery/atmospherics/pipe/simple/hidden/fuel,/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/obj/structure/dispenser{phorontanks = 0},/obj/machinery/camera/network/engineering{dir = 1},/turf/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/engine_eva) +"qX" = (/obj/random/tech_supply/component/nofail,/obj/random/tech_supply/component/nofail,/obj/random/tech_supply/component/nofail,/obj/random/tech_supply/component/nofail,/obj/random/tech_supply/component/nofail,/obj/random/tech_supply/component/nofail,/obj/random/tech_supply/component/nofail,/obj/random/tech_supply/component/nofail,/obj/item/device/flash,/obj/item/device/flash,/obj/item/device/integrated_electronics/debugger{pixel_x = -5},/obj/item/device/integrated_electronics/wirer{pixel_x = 5},/obj/item/device/integrated_circuit_printer,/obj/structure/table/steel,/obj/machinery/alarm/angled,/turf/simulated/floor/tiled/eris/dark/techfloor_grid,/area/storage/tech) +"qY" = (/obj/structure/cable/green{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/obj/structure/cable/green{icon_state = "1-8"},/turf/simulated/floor,/area/maintenance/stellardelight/deck2/portsolars) +"qZ" = (/obj/structure/cable/white{icon_state = "1-2"},/obj/structure/sign/deck2{pixel_x = 32},/obj/structure/sign/directions/medical/morgue{pixel_x = -32},/obj/structure/sign/directions/medical/resleeving{pixel_x = -32; pixel_y = -6},/obj/structure/sign/directions/medical/virology{pixel_x = -32; pixel_y = -12},/obj/structure/sign/directions/stairs_down{pixel_x = -32; pixel_y = 6},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/stellardelight/deck2/triage) +"ra" = (/obj/structure/closet/emcloset,/turf/simulated/floor/tiled/techmaint,/area/storage/primary) +"rb" = (/obj/structure/cable/orange{icon_state = "1-2"},/turf/simulated/wall/bay/r_wall/steel,/area/stellardelight/deck2/o2production) +"rc" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/effect/floor_decal/milspec/color/white/half,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/stellardelight/deck2/central) +"rd" = (/obj/structure/table/marble,/obj/machinery/door/blast/shutters{dir = 8; id = "bar"; layer = 3.3; name = "Bar Shutters"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/lino,/area/crew_quarters/bar) +"re" = (/obj/effect/floor_decal/industrial/warning{dir = 8},/obj/effect/landmark/start/cargo,/turf/simulated/floor/tiled/eris/steel/cargo,/area/quartermaster/storage) +"rg" = (/obj/structure/bed/chair/sofa/corp/corner{dir = 8},/turf/simulated/floor/carpet/turcarpet,/area/crew_quarters/recreation_area) +"rh" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 1},/turf/simulated/floor/tiled,/area/stellardelight/deck2/starboard) +"ri" = (/obj/structure/cable/green{icon_state = "1-4"},/obj/structure/cable/green{icon_state = "1-2"},/turf/simulated/floor,/area/maintenance/stellardelight/deck2/starboardfore) +"rj" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/effect/floor_decal/emblem/stellardelight{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore) +"rk" = (/obj/structure/sign/directions/command{dir = 1; pixel_y = 32},/obj/effect/floor_decal/milspec/color/blue/half{dir = 1},/turf/simulated/floor/tiled,/area/stellardelight/deck2/central) +"rl" = (/obj/machinery/atmospherics/unary/vent_pump/on,/obj/effect/mouse_hole_spawner{dir = 4},/turf/simulated/floor,/area/maintenance/stellardelight/deck2/starboardfore) +"rm" = (/obj/structure/cable/white{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/stellardelight/deck2/triage) +"rn" = (/obj/machinery/appliance/cooker/fryer,/obj/machinery/camera/network/civilian{dir = 5},/turf/simulated/floor/tiled/eris/cafe,/area/crew_quarters/kitchen) +"rp" = (/obj/structure/cable/cyan{icon_state = "1-2"},/obj/machinery/light{dir = 4},/turf/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/locker_room) +"rq" = (/turf/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/engineering_monitoring) +"rr" = (/obj/structure/closet/walllocker_double/south{color = "#8da4a6"; pixel_x = -5},/obj/structure/table/standard,/obj/machinery/button/remote/blast_door{dir = 1; id = "kitchen"; name = "Kitchen shutters"; pixel_x = 9; pixel_y = -25},/obj/machinery/light_switch{dir = 1; pixel_x = -1; pixel_y = -42},/obj/item/weapon/reagent_containers/food/condiment/carton/flour,/obj/item/weapon/reagent_containers/food/condiment/carton/flour,/obj/item/weapon/reagent_containers/food/condiment/carton/flour,/obj/item/weapon/reagent_containers/food/condiment/carton/flour,/obj/item/weapon/reagent_containers/food/condiment/carton/flour,/obj/item/weapon/reagent_containers/food/condiment/carton/flour,/obj/item/weapon/reagent_containers/food/condiment/carton/flour,/obj/item/weapon/reagent_containers/food/condiment/carton/flour,/obj/item/weapon/reagent_containers/food/condiment/spacespice,/obj/item/weapon/reagent_containers/food/condiment/spacespice,/obj/item/weapon/reagent_containers/food/condiment/carton/sugar,/obj/item/weapon/reagent_containers/food/condiment/carton/sugar,/obj/item/weapon/reagent_containers/food/condiment/small/saltshaker,/obj/item/weapon/reagent_containers/food/condiment/small/saltshaker,/obj/item/weapon/reagent_containers/food/condiment/small/peppermill,/obj/item/weapon/reagent_containers/food/condiment/small/peppermill,/obj/machinery/button/remote/blast_door{dir = 1; id = "kitchenhallway"; name = "Kitchen shutters"; pixel_x = 9; pixel_y = -36},/obj/random/donkpocketbox,/turf/simulated/floor/tiled/eris/cafe,/area/crew_quarters/kitchen) +"rs" = (/obj/machinery/alarm/angled{dir = 4},/turf/simulated/floor,/area/maintenance/stellardelight/deck2/atmos) +"rt" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/effect/floor_decal/milspec/color/green/half{dir = 8},/obj/effect/landmark/start/botanist,/turf/simulated/floor/tiled,/area/hydroponics) +"ru" = (/obj/structure/bed/chair/bay/comfy/yellow{dir = 1},/turf/simulated/floor/tiled/eris/dark/monofloor,/area/bridge) +"rv" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/turf/simulated/floor/tiled/eris/steel/brown_platform,/area/quartermaster/storage) +"rw" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/angled_bay/standard/glass{door_color = "#e6ab22"; name = "Engineering Workshop"; req_access = null; req_one_access = list(11,24); stripe_color = "#913013"},/obj/structure/cable/orange{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/steel_ridged,/area/engineering/workshop) +"rx" = (/turf/simulated/wall/bay/r_wall/steel,/area/storage/primary) +"ry" = (/obj/structure/table/rack,/obj/item/weapon/tank/jetpack,/obj/item/clothing/mask/gas,/obj/item/clothing/suit/space/void/captain,/obj/item/clothing/head/helmet/space/void/captain,/obj/structure/window/reinforced,/obj/machinery/door/window/brigdoor/westright{dir = 4; name = "Captain's Storage"; req_access = list(20)},/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced{dir = 1},/obj/item/weapon/card/id/gold/captain/spare{name = "\improper Captain's spare ID"},/turf/simulated/floor/wood,/area/crew_quarters/captain) +"rz" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/turf/simulated/floor/tiled,/area/crew_quarters/locker) +"rB" = (/obj/structure/particle_accelerator/particle_emitter/right{dir = 4},/turf/simulated/floor/tiled/eris/dark/danger,/area/engineering/engine_room) +"rC" = (/obj/structure/cable/white{icon_state = "4-8"},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/reception) +"rD" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/angled_bay/external/glass{dir = 4},/obj/effect/map_helper/airlock/door/simple,/turf/simulated/floor/tiled/steel_ridged,/area/stellardelight/deck2/starboardescape) +"rE" = (/obj/structure/table/standard,/obj/random/tech_supply,/obj/random/tech_supply,/obj/random/tech_supply,/obj/random/tech_supply,/obj/random/paicard,/obj/machinery/atmospherics/unary/vent_pump/on,/obj/machinery/newscaster{pixel_y = 28},/obj/item/device/radio/intercom{dir = 4; pixel_x = 24},/obj/effect/landmark/vines,/turf/simulated/floor/tiled/techmaint,/area/storage/primary) +"rF" = (/obj/machinery/hologram/holopad,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/structure/cable/blue{icon_state = "1-4"},/turf/simulated/floor/carpet/sblucarpet,/area/stellardelight/deck2/briefingroom) +"rG" = (/obj/structure/bed/chair/comfy,/obj/effect/landmark/start/bartender,/turf/simulated/floor/wood,/area/stellardelight/deck2/barbackroom) +"rH" = (/obj/machinery/atmospherics/unary/vent_scrubber/on,/obj/machinery/firealarm/angled,/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 1},/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore) +"rI" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/turf/simulated/floor/tiled,/area/crew_quarters/locker) +"rK" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/eris/steel/cargo,/area/quartermaster/storage) +"rM" = (/obj/machinery/light/small{dir = 1},/obj/structure/closet/emcloset,/obj/machinery/camera/network/halls{dir = 4},/turf/simulated/floor/tiled/eris/white/danger,/area/stellardelight/deck2/starboard) +"rN" = (/turf/simulated/wall/bay/r_wall/blue,/area/crew_quarters/captain) +"rO" = (/obj/structure/closet/secure_closet/hydroponics,/obj/item/weapon/shovel/spade,/obj/item/weapon/storage/belt/utility,/obj/item/stack/material/sandstone{amount = 5},/obj/effect/floor_decal/milspec/color/green/half{dir = 9},/obj/machinery/requests_console{department = "Service"; pixel_y = 26},/obj/item/device/retail_scanner/civilian,/turf/simulated/floor/tiled,/area/hydroponics) +"rP" = (/obj/structure/disposalpipe/segment,/turf/simulated/floor/grass,/area/hydroponics) +"rQ" = (/obj/structure/cable/green{icon_state = "1-2"},/obj/structure/cable/green{icon_state = "1-4"},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore) +"rR" = (/turf/simulated/wall/bay/r_wall/steel,/area/maintenance/stellardelight/deck2/portaft) +"rT" = (/turf/simulated/wall/bay/r_wall/steel,/area/storage/tech) +"rV" = (/obj/machinery/door/firedoor/glass,/obj/structure/window/bay/reinforced,/obj/structure/low_wall/bay/reinforced/steel,/turf/simulated/floor,/area/crew_quarters/bar) +"rW" = (/obj/structure/cable/orange{icon_state = "1-4"},/obj/structure/cable/orange{icon_state = "1-2"},/turf/simulated/wall/bay/r_wall/steel,/area/maintenance/stellardelight/deck2/atmos) +"rX" = (/obj/machinery/door/firedoor/glass,/obj/structure/cable/green{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/door/airlock/angled_bay/standard/glass{dir = 4; door_color = "#9c9c9c"; name = "Laundry"; stripe_color = "#89bd66"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/steel_ridged,/area/crew_quarters/locker) +"rY" = (/obj/structure/sign/directions/medical{dir = 1; pixel_x = -32; pixel_y = 35},/obj/structure/sign/directions/bridge{dir = 1; pixel_x = -32; pixel_y = 41},/obj/structure/sign/directions/engineering{pixel_x = -32; pixel_y = 23},/obj/structure/sign/directions/cargo{dir = 10; pixel_x = -32; pixel_y = 29},/turf/simulated/floor/tiled,/area/stellardelight/deck2/starboard) +"rZ" = (/obj/structure/sign/pods,/turf/simulated/wall/bay/r_wall/steel,/area/stellardelight/deck2/starboard) +"sa" = (/obj/structure/cable{icon_state = "2-4"},/turf/simulated/wall/bay/r_wall/steel,/area/maintenance/stellardelight/deck2/portsolars) +"sb" = (/obj/machinery/atmospherics/pipe/manifold4w/visible/cyan,/obj/structure/cable/orange{icon_state = "4-8"},/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos/storage) +"sc" = (/obj/structure/bed/chair/sofa/corp{dir = 1},/turf/simulated/floor/carpet/turcarpet,/area/crew_quarters/recreation_area) +"sd" = (/obj/machinery/portable_atmospherics/hydroponics,/obj/machinery/alarm/angled{dir = 4},/obj/effect/floor_decal/milspec/color/green/half{dir = 10},/turf/simulated/floor/tiled,/area/hydroponics) +"se" = (/obj/structure/cable/green{icon_state = "2-4"},/turf/simulated/floor/airless,/area/stellardelight/deck2/exterior) +"sg" = (/turf/simulated/floor/tiled/eris/white/danger,/area/stellardelight/deck2/port) +"sh" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/grass,/area/hydroponics) +"si" = (/obj/structure/lattice,/obj/structure/cable/green{icon_state = "32-2"},/obj/structure/disposalpipe/down{dir = 4},/obj/machinery/atmospherics/pipe/zpipe/down/scrubbers,/obj/machinery/atmospherics/pipe/zpipe/down/supply,/obj/machinery/door/firedoor/glass,/turf/simulated/open,/area/maintenance/stellardelight/deck2/portfore) +"sj" = (/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 4},/obj/item/device/radio/intercom{dir = 4; pixel_x = 24},/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore) +"sk" = (/obj/machinery/door/firedoor/glass,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/door/airlock/angled_bay/standard/glass{door_color = "#a6753d"; name = "Cargo Office"; req_access = list(31); stripe_color = "#3b2b1a"},/turf/simulated/floor/tiled/steel_ridged,/area/quartermaster/storage) +"sl" = (/obj/item/weapon/stool/padded{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/turf/simulated/floor/tiled/eris/dark/techfloor_grid,/area/storage/tech) +"sm" = (/obj/effect/floor_decal/industrial/warning{dir = 8},/obj/machinery/airlock_sensor{id_tag = "engine_sensor"; pixel_y = 24},/obj/machinery/atmospherics/unary/vent_pump/high_volume{frequency = 1379; id_tag = "engine_airpump"},/turf/simulated/floor/tiled/eris/dark/monofloor,/area/engineering/engine_room) +"sn" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/turf/simulated/floor,/area/maintenance/stellardelight/deck2/portaft) +"so" = (/obj/structure/cable/white{icon_state = "4-8"},/turf/simulated/floor/carpet/blue,/area/medical/psych) +"sp" = (/obj/machinery/atmospherics/pipe/manifold4w/hidden/red,/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/monitoring) +"sq" = (/obj/machinery/door/firedoor/glass,/obj/structure/window/bay/reinforced,/obj/structure/low_wall/bay/reinforced/white,/turf/simulated/floor,/area/medical/chemistry) +"sr" = (/obj/item/weapon/stool/padded{dir = 4},/obj/effect/floor_decal/spline/plain{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/lino,/area/crew_quarters/bar) +"su" = (/obj/effect/floor_decal/industrial/warning,/obj/machinery/light/floortube{dir = 1; pixel_y = -10},/turf/simulated/floor/tiled/eris/steel/cargo,/area/quartermaster/storage) +"sv" = (/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/reception) +"sw" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/camera/network/engine{dir = 1},/turf/simulated/floor/tiled/eris/dark/techfloor_grid,/area/engineering/engine_room) +"sx" = (/obj/structure/cable/orange{icon_state = "4-8"},/turf/simulated/wall/bay/r_wall/steel,/area/maintenance/stellardelight/deck2/atmos) +"sy" = (/obj/structure/cable/orange{icon_state = "4-8"},/turf/simulated/wall/bay/r_wall/steel,/area/engineering/storage) +"sz" = (/obj/machinery/computer/atmoscontrol,/obj/machinery/status_display{pixel_y = 32},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/monitoring) +"sA" = (/obj/machinery/portable_atmospherics/hydroponics,/obj/effect/floor_decal/milspec/color/green/half{dir = 6},/turf/simulated/floor/tiled,/area/hydroponics) +"sB" = (/obj/machinery/light{dir = 8},/turf/simulated/floor/carpet/blucarpet,/area/crew_quarters/captain) +"sC" = (/obj/structure/cable{icon_state = "1-4"},/obj/structure/cable{icon_state = "1-8"},/turf/simulated/floor/airless,/area/stellardelight/deck2/exterior) +"sD" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/angled_bay/hatch{dir = 4; name = "maintenance access"; stripe_color = "#454545"},/turf/simulated/floor/tiled/steel_ridged,/area/crew_quarters/locker) +"sE" = (/obj/machinery/honey_extractor,/obj/machinery/status_display{pixel_x = 32},/obj/effect/floor_decal/milspec/color/green/half{dir = 4},/turf/simulated/floor/tiled,/area/hydroponics) +"sF" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/turf/simulated/floor,/area/stellardelight/deck2/combustionworkshop) +"sG" = (/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/wall/bay/brown,/area/quartermaster/storage) +"sH" = (/obj/structure/table/wooden_reinforced,/turf/simulated/floor/tiled/eris/dark/cargo,/area/crew_quarters/recreation_area) +"sI" = (/obj/structure/sign/deck2{pixel_x = 32},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 4},/turf/simulated/floor/tiled,/area/stellardelight/deck2/aftport) +"sJ" = (/obj/machinery/vending/wardrobe/medidrobe,/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/cmostore) +"sK" = (/obj/effect/floor_decal/industrial/loading{dir = 8},/obj/structure/cable/white{icon_state = "1-2"},/turf/simulated/floor/tiled/white,/area/medical/surgery) +"sL" = (/obj/structure/table/marble,/obj/machinery/door/blast/shutters{dir = 8; id = "bar"; layer = 3.3; name = "Bar Shutters"},/turf/simulated/floor/lino,/area/crew_quarters/bar) +"sM" = (/obj/structure/cable/orange{icon_state = "2-8"},/turf/simulated/wall/bay/r_wall/steel,/area/maintenance/stellardelight/deck2/starboardsolars) +"sN" = (/obj/machinery/door/firedoor/glass,/obj/structure/window/bay/reinforced,/obj/structure/cable/green{icon_state = "4-8"},/obj/structure/low_wall/bay/reinforced/steel,/turf/simulated/floor,/area/storage/primary) +"sO" = (/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore) +"sP" = (/obj/structure/cable/green{icon_state = "4-8"},/turf/simulated/floor/tiled/eris/steel/brown_platform,/area/crew_quarters/bar) +"sQ" = (/obj/structure/cable/yellow{icon_state = "2-8"},/obj/structure/cable/yellow{icon_state = "1-8"},/turf/simulated/floor/airless,/area/engineering/engine_room) +"sR" = (/obj/machinery/atmospherics/pipe/simple/heat_exchanging,/obj/structure/cable/orange{icon_state = "2-8"},/obj/structure/cable/orange{icon_state = "1-2"},/turf/simulated/floor/airless,/area/stellardelight/deck2/exterior) +"sS" = (/obj/machinery/door/firedoor/glass/hidden/steel,/obj/effect/floor_decal/milspec/color/blue,/obj/machinery/camera/network/command{dir = 4},/turf/simulated/floor/tiled/monotile,/area/stellardelight/deck2/central) +"sT" = (/obj/machinery/atmospherics/pipe/simple/hidden/green,/obj/machinery/camera/network/engineering{dir = 8},/turf/simulated/floor/tiled/techfloor,/area/stellardelight/deck2/o2production) +"sU" = (/obj/machinery/atmospherics/pipe/simple/visible/black{dir = 10},/obj/structure/sign/atmos/o2{pixel_x = 32; pixel_y = 26},/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos/storage) +"sV" = (/obj/machinery/firealarm/angled{dir = 8},/obj/effect/floor_decal/milspec/color/green/half{dir = 8},/turf/simulated/floor/tiled,/area/hydroponics) +"sW" = (/obj/effect/catwalk_plated,/turf/simulated/floor,/area/stellardelight/deck2/port) +"sX" = (/obj/structure/dogbed,/mob/living/simple_mob/animal/passive/dog/void_puppy/nulle,/turf/simulated/floor/wood,/area/crew_quarters/captain) +"sY" = (/obj/structure/cable/cyan{icon_state = "4-8"},/obj/structure/sign/securearea{desc = "A warning sign which reads 'RADIOACTIVE AREA'"; icon_state = "radiation"; name = "\improper RADIOACTIVE AREA"; pixel_y = 32},/obj/machinery/camera/network/engine,/turf/simulated/floor/airless,/area/engineering/engine_room) +"sZ" = (/obj/structure/closet/crate{icon_state = "crate"; name = "Grenade Crate"},/obj/item/weapon/grenade/chem_grenade,/obj/item/weapon/grenade/chem_grenade,/obj/item/weapon/grenade/chem_grenade,/obj/item/device/assembly/timer,/obj/item/device/assembly/timer,/obj/item/device/assembly/timer,/obj/item/device/assembly/igniter,/obj/item/device/assembly/igniter,/obj/item/device/assembly/igniter,/obj/item/weapon/tool/screwdriver,/obj/structure/table/reinforced,/obj/machinery/light,/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/cmostore) +"ta" = (/turf/simulated/wall/bay/brown,/area/engineering/workshop) +"tb" = (/obj/structure/bed/chair/sofa/corp/right{dir = 8},/obj/effect/landmark/start/visitor,/turf/simulated/floor/carpet/turcarpet,/area/crew_quarters/recreation_area) +"tc" = (/obj/structure/lattice,/turf/space,/area/stellardelight/deck2/exterior) +"td" = (/obj/machinery/door/firedoor/glass/hidden/steel{dir = 8},/obj/structure/cable/green{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore) +"te" = (/obj/structure/cable{icon_state = "4-8"},/obj/effect/floor_decal/steeldecal/steel_decals5,/obj/structure/flora/pottedplant/minitree,/turf/simulated/floor/tiled,/area/stellardelight/deck2/port) +"tf" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/window/eastright{dir = 8; name = "Chemistry"},/obj/machinery/door/window/westleft{dir = 4; name = "Chemistry"; req_one_access = list(33)},/obj/machinery/door/blast/shutters{dir = 8; id = "chemistry"; layer = 3.1; name = "Chemistry Shutters"},/obj/structure/table/reinforced,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/white,/area/medical/chemistry) +"tg" = (/obj/structure/sign/securearea{desc = "A warning sign which reads 'RADIOACTIVE AREA'"; icon_state = "radiation"; name = "\improper RADIOACTIVE AREA"},/turf/simulated/wall/bay/r_wall/orange,/area/engineering/engine_room) +"th" = (/obj/structure/cable/orange{icon_state = "1-2"},/obj/structure/cable/orange{icon_state = "1-8"},/turf/simulated/floor,/area/maintenance/stellardelight/deck2/atmos) +"ti" = (/obj/structure/cable/green{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled,/area/stellardelight/deck2/port) +"tj" = (/obj/structure/cable/green{icon_state = "2-4"},/obj/structure/cable/green{icon_state = "2-8"},/turf/simulated/floor/airless,/area/stellardelight/deck2/exterior) +"tk" = (/obj/machinery/atmospherics/pipe/simple/hidden/fuel{dir = 9},/turf/simulated/wall/bay/r_wall/steel,/area/stellardelight/deck2/fuelstorage) +"tl" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/engine_eva) +"tm" = (/obj/effect/floor_decal/industrial/warning{dir = 4},/obj/structure/cable/cyan{icon_state = "1-2"},/turf/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/engine_eva) +"tn" = (/obj/structure/table/standard,/obj/item/device/camera{pixel_x = -2; pixel_y = 9},/obj/item/device/camera{pixel_x = 2; pixel_y = 3},/obj/machinery/light{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 8},/turf/simulated/floor/tiled,/area/storage/art) +"to" = (/obj/machinery/atmospherics/pipe/simple/hidden/green{dir = 4},/obj/structure/cable/orange{icon_state = "4-8"},/obj/effect/landmark/start/atmostech,/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/monitoring) +"tp" = (/obj/machinery/atmospherics/pipe/simple/hidden,/obj/machinery/power/terminal{dir = 4},/obj/structure/cable,/turf/simulated/floor,/area/maintenance/stellardelight/deck2/starboardsolars) +"ts" = (/obj/structure/bed/chair/bay/comfy/brown{dir = 1},/obj/effect/landmark/start/visitor,/turf/simulated/floor/carpet,/area/crew_quarters/recreation_area) +"tt" = (/obj/structure/table/standard,/obj/item/weapon/folder/yellow,/obj/item/weapon/pen/red{pixel_x = 2; pixel_y = 6},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/button/remote/blast_door{dir = 4; id = "qmwindows"; name = "Privacy Shutters"; pixel_y = 15},/turf/simulated/floor/wood,/area/quartermaster/qm) +"tu" = (/obj/effect/floor_decal/industrial/warning/corner{dir = 8},/obj/structure/disposalpipe/junction{dir = 2; icon_state = "pipe-j2"},/turf/simulated/floor/tiled/eris/steel/cargo,/area/quartermaster/storage) +"tv" = (/obj/structure/bed/psych,/obj/structure/sign/painting/library_secure{pixel_y = -30},/turf/simulated/floor/wood,/area/medical/psych) +"tw" = (/obj/machinery/atmospherics/pipe/manifold/hidden{dir = 8},/obj/structure/cable{icon_state = "2-4"},/obj/machinery/power/sensor{name = "Powernet Sensor - Starboard Solar Array"; name_tag = "Starboard Solar Array"},/obj/structure/cable{icon_state = "0-4"},/turf/simulated/floor,/area/maintenance/stellardelight/deck2/starboardsolars) +"ty" = (/obj/effect/floor_decal/industrial/danger{dir = 8},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/monitoring) +"tz" = (/obj/effect/floor_decal/industrial/danger/corner{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/red{dir = 6},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/monitoring) +"tA" = (/obj/machinery/firealarm/angled,/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 1},/turf/simulated/floor/tiled,/area/stellardelight/deck2/aftport) +"tB" = (/obj/machinery/firealarm/angled,/obj/structure/frame,/turf/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/workshop) +"tC" = (/obj/machinery/hologram/holopad,/turf/simulated/floor/tiled/eris/dark/techfloor_grid,/area/storage/tech) +"tD" = (/obj/machinery/atmospherics/pipe/simple/hidden/green{dir = 4},/obj/structure/cable/orange{icon_state = "4-8"},/obj/machinery/vending/tool,/turf/simulated/floor/tiled/techfloor,/area/stellardelight/deck2/o2production) +"tE" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/table/reinforced,/obj/random/tech_supply,/obj/random/tech_supply,/turf/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/engine_eva) +"tF" = (/obj/machinery/atmospherics/pipe/manifold/visible/cyan{dir = 1},/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos/storage) +"tI" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/obj/structure/cable/orange{icon_state = "1-2"},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/monitoring) +"tJ" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/effect/landmark{name = "lightsout"},/obj/machinery/hologram/holopad,/turf/simulated/floor/tiled,/area/crew_quarters/locker) +"tK" = (/turf/simulated/wall/bay/r_wall/steel,/area/engineering/storage) +"tL" = (/obj/structure/sign/nanotrasen{pixel_x = 32},/turf/simulated/floor/glass/reinforced,/area/stellardelight/deck2/port) +"tM" = (/obj/structure/table/rack,/obj/structure/bed/chair/wheelchair{dir = 4},/obj/structure/bed/chair/wheelchair{dir = 4},/obj/machinery/camera/network/medbay{dir = 4},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/cmostore) +"tN" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/structure/cable{icon_state = "4-8"},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/monitoring) +"tP" = (/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 4},/obj/effect/mouse_hole_spawner{dir = 4},/turf/simulated/floor/tiled,/area/stellardelight/deck2/port) +"tQ" = (/obj/structure/cable{icon_state = "1-8"},/obj/structure/cable{icon_state = "1-2"},/turf/simulated/floor/plating,/area/maintenance/stellardelight/substation/engineering) +"tT" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/stellardelight/deck2/triage) +"tU" = (/obj/structure/disposalpipe/segment,/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 4},/turf/simulated/floor/tiled,/area/stellardelight/deck2/port) +"tV" = (/obj/item/weapon/storage/box/nifsofts_medical{pixel_x = 7; pixel_y = 7},/obj/item/weapon/storage/box/nifsofts_medical,/obj/structure/table/reinforced,/obj/item/device/radio{pixel_x = -4; pixel_y = 4},/obj/item/device/radio{pixel_x = 4; pixel_y = -4},/obj/item/device/radio{pixel_x = 7; pixel_y = 8},/obj/machinery/light_switch{pixel_y = 24},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/cmostore) +"tW" = (/turf/simulated/floor/tiled,/area/crew_quarters/locker) +"tX" = (/obj/structure/cable/orange{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/turf/simulated/floor/tiled/eris/dark/techfloor_grid,/area/engineering/storage) +"tZ" = (/obj/machinery/atmospherics/pipe/simple/heat_exchanging{dir = 6},/turf/simulated/floor/airless,/area/stellardelight/deck2/exterior) +"ua" = (/obj/effect/floor_decal/milspec/color/blue/corner,/obj/structure/sign/directions/medical{pixel_x = 32; pixel_y = -29},/obj/structure/sign/directions/cargo{pixel_x = 32; pixel_y = -35},/obj/structure/sign/directions/engineering{pixel_x = 32; pixel_y = -41},/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore) +"ub" = (/turf/simulated/floor/reinforced/airless,/area/stellardelight/deck2/combustionworkshop) +"uc" = (/obj/structure/cable/green{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/table/rack,/obj/random/maintenance/engineering,/obj/random/maintenance/engineering,/obj/random/contraband,/turf/simulated/floor,/area/maintenance/stellardelight/deck2/portsolars) +"ud" = (/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/turf/simulated/floor/tiled/eris/dark/cargo,/area/crew_quarters/recreation_area) +"ue" = (/obj/machinery/meter,/obj/machinery/atmospherics/pipe/manifold4w/visible/red,/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos/storage) +"uf" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/noticeboard{pixel_x = -32},/obj/effect/floor_decal/milspec/color/green/half{dir = 8},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/hydroponics) +"ug" = (/obj/machinery/door/firedoor/glass,/obj/structure/window/bay/reinforced,/obj/machinery/door/blast/angled/open{dir = 4; id = "privacyshutters"; name = "Privacy Shutter"},/obj/structure/low_wall/bay/reinforced/blue,/turf/simulated/floor,/area/stellardelight/deck2/briefingroom) +"uh" = (/obj/structure/cable/white{icon_state = "2-4"},/obj/structure/cable/white{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 10},/obj/effect/floor_decal/steeldecal/steel_decals4,/turf/simulated/floor/tiled/eris/white/bluecorner,/area/stellardelight/deck2/triage) +"ui" = (/obj/structure/lattice,/obj/machinery/atmospherics/pipe/simple/hidden/cyan{dir = 5},/turf/space,/area/space) +"uj" = (/obj/structure/closet/emergsuit_wall{dir = 8; pixel_x = -27},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/stellardelight/deck2/triage) +"uk" = (/turf/simulated/wall/bay/r_wall/steel,/area/stellardelight/deck2/o2production) +"ul" = (/obj/machinery/door/firedoor/glass/hidden/steel{dir = 1},/obj/structure/cable/green{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled,/area/stellardelight/deck2/aftport) +"um" = (/obj/structure/railing/grey{dir = 8},/turf/simulated/floor,/area/maintenance/stellardelight/deck2/portaft) +"un" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/light/small,/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/turf/simulated/floor,/area/maintenance/stellardelight/deck2/starboardaft) +"uo" = (/obj/machinery/door/firedoor/glass,/obj/structure/cable/orange{icon_state = "4-8"},/obj/machinery/door/airlock/angled_bay/hatch{dir = 4; door_color = "#e6ab22"; name = "Engineering Substation"; req_one_access = list(10); stripe_color = "#e6ab22"},/turf/simulated/floor/tiled/steel_ridged,/area/maintenance/stellardelight/substation/engineering) +"up" = (/obj/structure/cable{icon_state = "4-8"},/obj/effect/floor_decal/milspec/color/orange/corner,/turf/simulated/floor/tiled,/area/stellardelight/deck2/aftstarboard) +"uq" = (/obj/structure/sign/directions/medical{dir = 8; pixel_x = 32; pixel_y = 35},/obj/structure/sign/directions/cargo{pixel_x = 32; pixel_y = 28},/obj/structure/sign/directions/bridge{dir = 1; pixel_x = 32; pixel_y = 41},/obj/structure/sign/directions/engineering{pixel_x = 32; pixel_y = 22},/obj/structure/sign/directions/bar{dir = 1; pixel_x = 32; pixel_y = 47},/turf/simulated/floor/tiled,/area/stellardelight/deck2/starboard) +"ur" = (/obj/machinery/power/pointdefense{id_tag = "sd_pd"},/obj/effect/floor_decal/industrial/warning/full,/obj/structure/cable/green{icon_state = "0-8"},/obj/structure/cable/green{icon_state = "2-8"},/turf/simulated/floor/airless,/area/stellardelight/deck2/exterior) +"us" = (/obj/machinery/atmospherics/unary/vent_scrubber/on,/obj/machinery/recharge_station,/obj/effect/landmark/vines,/turf/simulated/floor/tiled/steel_ridged,/area/stellardelight/deck2/starboard) +"ut" = (/obj/machinery/atmospherics/pipe/manifold/hidden/red{dir = 1},/obj/structure/cable/orange{icon_state = "1-2"},/turf/simulated/floor/tiled/techfloor,/area/stellardelight/deck2/o2production) +"uu" = (/obj/structure/cable/orange{icon_state = "1-8"},/turf/simulated/wall/bay/r_wall/steel,/area/stellardelight/deck2/combustionworkshop) +"uv" = (/obj/structure/table/standard,/obj/item/weapon/storage/firstaid/surgery,/obj/item/device/radio/intercom{dir = 4; name = "Station Intercom (General)"; pixel_x = 24},/turf/simulated/floor/tiled/white,/area/medical/surgery) +"uw" = (/obj/structure/particle_accelerator/power_box{dir = 4},/turf/simulated/floor/tiled/eris/dark/danger,/area/engineering/engine_room) +"ux" = (/obj/machinery/door/firedoor/glass,/obj/structure/window/bay/reinforced,/obj/structure/low_wall/bay/reinforced/steel,/turf/simulated/floor,/area/maintenance/stellardelight/deck2/portsolars) +"uy" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 4},/turf/simulated/floor/tiled,/area/storage/art) +"uz" = (/obj/structure/sign/deck2{pixel_y = 32},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/obj/item/device/radio/intercom{dir = 8; pixel_x = -24},/obj/structure/flora/pottedplant/decorative,/turf/simulated/floor/tiled,/area/stellardelight/deck2/aftstarboard) +"uA" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/turf/simulated/floor/grass,/area/hydroponics) +"uB" = (/obj/machinery/atmospherics/pipe/simple/hidden/cyan,/obj/machinery/atmospherics/pipe/simple/hidden/green{dir = 4},/obj/effect/floor_decal/industrial/danger{dir = 1},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/monitoring) +"uC" = (/obj/structure/cable/blue{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/light{dir = 1},/turf/simulated/floor/tiled/eris/dark/gray_platform,/area/bridge) +"uD" = (/obj/structure/cable/orange{icon_state = "1-8"},/obj/structure/cable/orange{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/engineering_monitoring) +"uE" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore) +"uF" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/obj/machinery/camera/network/halls,/obj/effect/floor_decal/milspec/color/blue/half{dir = 1},/turf/simulated/floor/tiled,/area/stellardelight/deck2/central) +"uG" = (/obj/structure/cable/orange{icon_state = "1-2"},/obj/structure/cable/orange{icon_state = "1-4"},/turf/simulated/floor/airless,/area/stellardelight/deck2/exterior) +"uI" = (/obj/effect/floor_decal/industrial/warning{dir = 8},/obj/machinery/camera/network/cargo{dir = 4},/turf/simulated/floor/tiled/eris/steel/cargo,/area/quartermaster/storage) +"uJ" = (/obj/machinery/computer/security/telescreen/entertainment{desc = "Look's like it's set to the info station... I wonder what else is on?"; pixel_x = 32; pixel_y = -32},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/eris/dark/cargo,/area/crew_quarters/recreation_area) +"uK" = (/obj/structure/cable{icon_state = "1-2"},/turf/simulated/floor/airless,/area/stellardelight/deck2/exterior) +"uL" = (/obj/structure/cable/green{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/turf/simulated/floor,/area/maintenance/stellardelight/deck2/portaft) +"uM" = (/obj/machinery/atmospherics/pipe/simple/hidden/fuel{dir = 4},/obj/machinery/door/firedoor/glass,/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/door/airlock/angled_bay/hatch{dir = 4; door_color = "#e6ab22"; locked = 1; name = "maintenance access"; req_one_access = list(19); stripe_color = "#e6ab22"},/turf/simulated/floor/tiled/steel_ridged,/area/engineering/engine_eva) +"uN" = (/obj/structure/cable/orange{icon_state = "4-8"},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/monitoring) +"uO" = (/obj/machinery/atmospherics/pipe/manifold/visible/black{dir = 4},/obj/machinery/alarm/angled{dir = 8},/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos/storage) +"uP" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/wood,/area/crew_quarters/captain) +"uQ" = (/obj/structure/stairs/spawner/north,/obj/structure/railing/grey{dir = 4},/turf/simulated/floor,/area/stellardelight/deck2/central) +"uR" = (/obj/structure/cable/orange{icon_state = "4-8"},/turf/simulated/floor,/area/maintenance/stellardelight/deck2/atmos) +"uT" = (/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore) +"uU" = (/obj/structure/disposalpipe/trunk{dir = 8},/obj/machinery/disposal/wall{dir = 8},/turf/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/workshop) +"uW" = (/obj/machinery/appliance/mixer/candy,/obj/machinery/light,/turf/simulated/floor/tiled/eris/cafe,/area/crew_quarters/kitchen) +"uX" = (/obj/machinery/hologram/holopad,/obj/structure/cable/green{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor/tiled/eris/steel/brown_platform,/area/crew_quarters/bar) +"uY" = (/obj/structure/cable/yellow{icon_state = "1-8"},/turf/simulated/floor/tiled/eris/steel/brown_platform,/area/quartermaster/storage) +"uZ" = (/obj/machinery/button/remote/blast_door{dir = 8; id = "bar"; name = "Bar Shutter Control"; pixel_x = 24},/obj/structure/table/marble,/obj/item/weapon/reagent_containers/glass/rag,/obj/item/weapon/reagent_containers/food/drinks/shaker{pixel_x = -7; pixel_y = 11},/obj/machinery/light_switch{dir = 8; pixel_x = 26; pixel_y = -9},/obj/machinery/button/remote/blast_door{dir = 8; id = "barlockdown"; name = "Window Lockdown"; pixel_x = 24; pixel_y = 10},/turf/simulated/floor/lino,/area/crew_quarters/bar) +"va" = (/obj/structure/bed/chair/comfy/brown{dir = 1},/turf/simulated/floor/wood,/area/medical/psych) +"vb" = (/turf/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/locker_room) +"vc" = (/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor/tiled/eris/dark/gray_platform,/area/engineering/workshop) +"vd" = (/obj/structure/cable/orange{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/turf/simulated/floor/tiled/eris/dark/techfloor_grid,/area/storage/tech) +"ve" = (/obj/structure/cable/white{icon_state = "4-8"},/obj/structure/cable/white{icon_state = "2-4"},/obj/structure/cable/white{icon_state = "2-8"},/turf/simulated/floor/tiled/eris/white/cargo,/area/stellardelight/deck2/triage) +"vf" = (/obj/structure/table/glass,/obj/item/weapon/reagent_containers/glass/beaker/cryoxadone{pixel_x = -4},/obj/item/weapon/reagent_containers/glass/beaker/cryoxadone{pixel_x = 7; pixel_y = 1},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/stellardelight/deck2/triage) +"vg" = (/obj/machinery/power/apc/angled{dir = 4},/obj/structure/cable/green{icon_state = "0-8"},/obj/structure/cable/green{icon_state = "2-8"},/obj/machinery/status_display{pixel_y = 32},/turf/simulated/floor/tiled/eris/steel/brown_platform,/area/crew_quarters/bar) +"vh" = (/obj/structure/closet/crate/freezer,/obj/machinery/light{dir = 8},/turf/simulated/floor/tiled/freezer/cold,/area/crew_quarters/kitchen) +"vi" = (/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 1},/turf/simulated/floor/tiled/eris/white/cargo,/area/stellardelight/deck2/triage) +"vj" = (/obj/machinery/light{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 4},/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore) +"vk" = (/obj/machinery/atmospherics/pipe/simple/hidden/cyan,/obj/machinery/light{dir = 8},/turf/simulated/floor,/area/stellardelight/deck2/combustionworkshop) +"vn" = (/obj/machinery/atmospherics/pipe/simple/hidden/yellow{dir = 10},/obj/structure/cable{icon_state = "4-8"},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/monitoring) +"vo" = (/obj/structure/table/reinforced,/obj/machinery/recharger,/obj/item/weapon/cell/device,/obj/item/weapon/cell/device,/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/turf/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/workshop) +"vp" = (/obj/machinery/door/firedoor/glass,/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/door/airlock/angled_bay/hatch/engineering{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/steel_ridged,/area/stellardelight/deck2/starboard) +"vq" = (/obj/structure/cable/yellow{icon_state = "4-8"},/turf/simulated/floor/tiled/eris/steel/brown_platform,/area/quartermaster/storage) +"vt" = (/obj/machinery/atmospherics/pipe/simple/hidden,/obj/structure/table/rack,/obj/random/contraband,/obj/random/maintenance/clean,/obj/random/maintenance/clean,/obj/random/maintenance/clean,/obj/random/maintenance/clean,/obj/random/maintenance/clean,/obj/random/maintenance,/turf/simulated/floor,/area/maintenance/stellardelight/deck2/starboardsolars) +"vu" = (/obj/machinery/lapvend,/turf/simulated/floor/tiled/techmaint,/area/storage/primary) +"vw" = (/obj/machinery/atmospherics/unary/vent_pump/on,/turf/simulated/floor,/area/stellardelight/deck2/combustionworkshop) +"vx" = (/obj/machinery/atmospherics/portables_connector,/obj/machinery/portable_atmospherics/powered/pump/filled,/turf/simulated/floor,/area/engineering/atmos/monitoring) +"vy" = (/obj/structure/cable/yellow{icon_state = "4-8"},/obj/structure/cable/yellow{icon_state = "2-8"},/turf/simulated/floor/tiled/eris/steel/brown_platform,/area/quartermaster/storage) +"vz" = (/obj/machinery/alarm/angled,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/eris/dark/techfloor_grid,/area/engineering/engine_room) +"vA" = (/obj/machinery/atmospherics/pipe/simple/hidden/fuel{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 10},/obj/effect/floor_decal/steeldecal/steel_decals4,/turf/simulated/floor/tiled/eris/steel/cargo,/area/quartermaster/storage) +"vB" = (/obj/machinery/atmospherics/binary/pump{dir = 8},/obj/machinery/atmospherics/pipe/simple/visible/black,/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos/storage) +"vC" = (/obj/machinery/conveyor{dir = 1; id = "packageSort1"},/obj/machinery/disposal/deliveryChute,/obj/structure/disposalpipe/trunk{dir = 4},/turf/simulated/floor/tiled/eris/steel/cargo,/area/quartermaster/storage) +"vD" = (/obj/machinery/atmospherics/pipe/manifold4w/hidden/yellow,/obj/machinery/meter,/obj/structure/cable{icon_state = "4-8"},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/monitoring) +"vF" = (/obj/machinery/atmospherics/pipe/manifold/visible/supply,/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos/monitoring) +"vG" = (/obj/structure/closet/walllocker_double/medical/north,/obj/item/weapon/storage/firstaid/regular{pixel_x = 5; pixel_y = 8},/obj/item/weapon/storage/firstaid/regular{pixel_x = 5; pixel_y = 8},/obj/item/weapon/storage/belt/medical,/obj/item/weapon/storage/belt/medical,/obj/item/clothing/gloves/sterile/nitrile,/obj/item/clothing/gloves/sterile/nitrile,/obj/random/tetheraid,/obj/random/tetheraid,/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/cmostore) +"vH" = (/obj/effect/floor_decal/milspec/color/white/corner,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/stellardelight/deck2/central) +"vI" = (/obj/structure/cable/white{icon_state = "1-8"},/obj/structure/cable/white{icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/eris/white/bluecorner,/area/stellardelight/deck2/triage) +"vJ" = (/obj/structure/cable/orange{icon_state = "1-8"},/turf/simulated/wall/bay/r_wall/steel,/area/maintenance/stellardelight/deck2/atmos) +"vK" = (/obj/structure/cable/blue{icon_state = "1-8"},/turf/simulated/floor/wood,/area/crew_quarters/captain) +"vL" = (/obj/effect/floor_decal/steeldecal/steel_decals6,/obj/effect/floor_decal/steeldecal/steel_decals6{dir = 4},/turf/simulated/floor/tiled/white,/area/medical/surgery2) +"vM" = (/obj/machinery/power/terminal{dir = 8},/obj/structure/cable,/obj/machinery/light/small{dir = 4},/turf/simulated/floor/plating,/area/maintenance/stellardelight/substation/engineering) +"vN" = (/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/reception) +"vO" = (/obj/machinery/chem_master,/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/chemistry) +"vP" = (/obj/machinery/atmospherics/unary/vent_scrubber/on,/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/obj/effect/landmark/vermin,/turf/simulated/floor/tiled/monotile,/area/hydroponics) +"vQ" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/turf/simulated/floor,/area/maintenance/stellardelight/deck2/starboardaft) +"vR" = (/obj/machinery/light,/obj/effect/floor_decal/steeldecal/steel_decals5,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/stellardelight/deck2/starboard) +"vS" = (/obj/structure/bed/chair/bay/comfy/brown{dir = 1},/turf/simulated/floor/carpet,/area/crew_quarters/recreation_area) +"vU" = (/obj/machinery/alarm/angled{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 8},/turf/simulated/floor/tiled,/area/stellardelight/deck2/port) +"vV" = (/obj/structure/grille,/obj/structure/window/phoronreinforced/full,/obj/structure/window/phoronreinforced,/obj/structure/window/phoronreinforced{dir = 8},/obj/structure/window/phoronreinforced{dir = 1},/obj/structure/window/phoronreinforced{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/yellow,/obj/machinery/door/blast/angled/open{dir = 2; id = "burnchamberlockdown"},/turf/simulated/floor,/area/stellardelight/deck2/combustionworkshop) +"vW" = (/obj/machinery/atmospherics/binary/pump{dir = 1},/obj/machinery/portable_atmospherics/canister/phoron,/obj/machinery/status_display{pixel_x = 32},/turf/simulated/floor,/area/stellardelight/deck2/combustionworkshop) +"vX" = (/obj/machinery/vending/fitness,/obj/structure/sign/poster{dir = 1},/turf/simulated/floor/tiled/steel_ridged,/area/stellardelight/deck2/port) +"vY" = (/obj/item/device/radio/headset/headset_med,/obj/item/weapon/storage/box/syringes,/obj/item/weapon/storage/fancy/vials,/obj/item/weapon/storage/fancy/vials,/obj/item/weapon/storage/box/pillbottles,/obj/item/weapon/storage/box/pillbottles,/obj/structure/closet/wardrobe/chemistry_white,/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/chemistry) +"wa" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/table/glass,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/reception) +"wb" = (/obj/structure/cable/green{icon_state = "1-2"},/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/stellardelight/deck2/starboard) +"wd" = (/obj/structure/closet/secure_closet/medical2,/obj/machinery/firealarm/angled{dir = 8},/turf/simulated/floor/tiled/white,/area/medical/surgery) +"we" = (/obj/effect/floor_decal/milspec/color/blue/half{dir = 1},/obj/machinery/newscaster{pixel_y = 28},/turf/simulated/floor/tiled,/area/stellardelight/deck2/central) +"wf" = (/obj/structure/bed/chair/sofa/corp/corner{dir = 4},/turf/simulated/floor/carpet/turcarpet,/area/crew_quarters/recreation_area) +"wg" = (/obj/effect/floor_decal/industrial/warning/full,/obj/structure/cable/orange{icon_state = "0-2"},/obj/machinery/power/pointdefense{id_tag = "sd_pd"},/obj/structure/cable/orange{icon_state = "1-2"},/turf/simulated/floor/airless,/area/stellardelight/deck2/exterior) +"wh" = (/obj/structure/filingcabinet/chestdrawer{name = "Scan Records"},/obj/machinery/firealarm/angled,/turf/simulated/floor/tiled/eris/white/cargo,/area/stellardelight/deck2/triage) +"wi" = (/obj/structure/railing/grey{dir = 8},/turf/simulated/floor,/area/stellardelight/deck2/central) +"wk" = (/obj/structure/disposalpipe/junction{dir = 2; icon_state = "pipe-j2"},/turf/simulated/floor/tiled/eris/steel/cargo,/area/quartermaster/storage) +"wl" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/effect/floor_decal/milspec/color/white/half,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/stellardelight/deck2/central) +"wm" = (/obj/machinery/atmospherics/pipe/manifold/hidden/fuel{dir = 1},/turf/simulated/wall/bay/r_wall/steel,/area/stellardelight/deck2/fuelstorage) +"wn" = (/obj/structure/shuttle/engine/propulsion{dir = 4},/turf/simulated/floor,/area/stellardelight/deck2/portescape) +"wo" = (/obj/structure/bed/chair/bay/comfy/brown{dir = 1},/turf/simulated/floor/tiled/eris/dark/gray_platform,/area/bridge) +"wp" = (/turf/simulated/wall/bay/r_wall/orange,/area/stellardelight/deck2/combustionworkshop) +"wq" = (/obj/structure/bed/chair/backed_red{dir = 8},/obj/structure/cable/green{icon_state = "1-2"},/turf/simulated/floor/tiled/eris/steel/brown_platform,/area/crew_quarters/bar) +"wr" = (/obj/structure/cable{icon_state = "2-4"},/turf/simulated/floor/airless,/area/stellardelight/deck2/exterior) +"ws" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/wood,/area/medical/psych) +"wt" = (/obj/machinery/power/apc/angled{dir = 8},/obj/structure/cable/green,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 8},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/crew_quarters/locker) +"wu" = (/obj/machinery/atmospherics/pipe/simple/heat_exchanging{dir = 4},/obj/structure/cable/orange{icon_state = "4-8"},/turf/simulated/floor/airless,/area/stellardelight/deck2/exterior) +"wv" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/structure/cable/green{icon_state = "4-8"},/turf/simulated/floor/tiled/techmaint,/area/storage/primary) +"ww" = (/obj/structure/table/glass,/obj/random/medical{pixel_x = -4; pixel_y = 5},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/obj/effect/landmark/vermin,/turf/simulated/floor/tiled/eris/white/bluecorner,/area/stellardelight/deck2/triage) +"wy" = (/obj/structure/cable/green{icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/turf/simulated/floor/tiled,/area/storage/art) +"wz" = (/obj/structure/cable/white{icon_state = "4-8"},/turf/simulated/floor/tiled/eris/white/cargo,/area/stellardelight/deck2/triage) +"wA" = (/obj/machinery/atmospherics/pipe/simple/visible/red,/obj/machinery/atmospherics/pipe/simple/visible/green{dir = 4},/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos/storage) +"wB" = (/obj/structure/cable{icon_state = "4-8"},/turf/simulated/wall/bay/r_wall/steel,/area/stellardelight/deck2/port) +"wC" = (/obj/machinery/recharger,/obj/item/weapon/storage/box/syringegun,/obj/item/weapon/gun/launcher/syringe,/obj/structure/table/reinforced,/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/cmostore) +"wD" = (/obj/structure/cable/orange{icon_state = "4-8"},/turf/simulated/floor/tiled/eris/dark/techfloor_grid,/area/engineering/storage) +"wE" = (/obj/structure/disposalpipe/sortjunction/untagged/flipped{dir = 1},/turf/simulated/floor/tiled/eris/steel/cargo,/area/quartermaster/storage) +"wF" = (/obj/structure/cable/green{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled,/area/stellardelight/deck2/port) +"wG" = (/obj/structure/table/woodentable,/obj/machinery/computer/security/telescreen/entertainment{pixel_y = 30},/obj/item/weapon/reagent_containers/food/condiment/small/saltshaker{pixel_x = -3; pixel_y = 4},/obj/item/weapon/reagent_containers/food/condiment/small/peppermill{pixel_x = 2; pixel_y = 7},/turf/simulated/floor/tiled/eris/steel/brown_platform,/area/crew_quarters/bar) +"wH" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/eris/steel/brown_platform,/area/quartermaster/storage) +"wI" = (/obj/machinery/atmospherics/pipe/simple/visible/black,/obj/machinery/meter,/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos/storage) +"wJ" = (/obj/structure/sign/painting/public{pixel_y = -30},/turf/simulated/floor/tiled,/area/storage/art) +"wK" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/effect/floor_decal/emblem/stellardelight{dir = 8},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore) +"wL" = (/obj/machinery/appliance/mixer/cereal,/obj/machinery/alarm/angled{dir = 4},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/turf/simulated/floor/tiled/eris/cafe,/area/crew_quarters/kitchen) +"wM" = (/obj/machinery/atmospherics/portables_connector,/obj/machinery/portable_atmospherics/powered/pump/filled,/obj/structure/sign/poster{dir = 1},/turf/simulated/floor,/area/engineering/atmos/monitoring) +"wN" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/yellow{icon_state = "4-8"},/obj/effect/landmark/start/cargo,/turf/simulated/floor/tiled/eris/steel/cargo,/area/quartermaster/storage) +"wO" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/angled_bay/standard/glass{dir = 4; name = "glass airlock"},/turf/simulated/floor/tiled/steel_ridged,/area/stellardelight/deck2/aftstarboard) +"wP" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/monotile,/area/hydroponics) +"wR" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/effect/landmark/start/cargo,/turf/simulated/floor/tiled/eris/steel/brown_platform,/area/quartermaster/storage) +"wS" = (/obj/structure/bed/chair,/obj/machinery/firealarm/angled,/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/reception) +"wT" = (/obj/machinery/atmospherics/unary/cryo_cell,/turf/simulated/floor/tiled/techfloor/grid,/area/stellardelight/deck2/triage) +"wV" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/lino,/area/crew_quarters/bar) +"wW" = (/obj/structure/sign/nanotrasen{pixel_x = -32},/turf/simulated/floor/glass/reinforced,/area/stellardelight/deck2/starboard) +"wX" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/hologram/holopad,/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/reception) +"wY" = (/turf/simulated/wall/bay/steel,/area/stellardelight/deck2/aftport) +"wZ" = (/obj/machinery/atmospherics/pipe/tank/air{dir = 1},/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos/storage) +"xa" = (/obj/structure/cable/orange{icon_state = "1-4"},/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/structure/cable/orange{icon_state = "1-2"},/obj/structure/cable/orange{icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/hidden/fuel{dir = 10},/obj/machinery/hologram/holopad,/turf/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/engine_eva) +"xb" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/structure/cable/cyan{icon_state = "4-8"},/turf/simulated/floor/tiled/eris/dark/techfloor_grid,/area/engineering/engine_room) +"xc" = (/turf/simulated/wall/bay/r_wall/steel,/area/maintenance/stellardelight/deck2/starboardsolars) +"xd" = (/turf/simulated/wall/bay/r_wall/blue,/area/stellardelight/deck2/briefingroom) +"xe" = (/obj/structure/cable/green{icon_state = "1-8"},/obj/structure/cable/green{icon_state = "1-2"},/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled,/area/stellardelight/deck2/port) +"xg" = (/obj/structure/cable/green{icon_state = "1-4"},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore) +"xh" = (/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 4},/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/stellardelight/deck2/starboard) +"xi" = (/obj/machinery/atmospherics/omni/atmos_filter{name = "N2O Filter"; tag_east = 2; tag_south = 1; tag_west = 7},/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos/storage) +"xj" = (/obj/machinery/vending/wallmed1{dir = 1; pixel_y = -30},/turf/simulated/floor/tiled/white,/area/medical/surgery) +"xk" = (/obj/machinery/photocopier,/obj/machinery/light{dir = 1},/turf/simulated/floor/tiled/eris/steel/cargo,/area/quartermaster/storage) +"xl" = (/obj/machinery/atmospherics/pipe/simple/visible/cyan{dir = 10},/obj/structure/sign/atmos_air{pixel_x = 32; pixel_y = 26},/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos/storage) +"xm" = (/obj/machinery/alarm/angled,/obj/machinery/recharge_station,/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 1},/turf/simulated/floor/tiled,/area/stellardelight/deck2/aftport) +"xn" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/obj/effect/floor_decal/milspec/color/white/half,/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/landmark{name = "vinestart"},/turf/simulated/floor/tiled,/area/stellardelight/deck2/central) +"xo" = (/obj/machinery/computer/supplycomp/control,/turf/simulated/floor/wood,/area/quartermaster/qm) +"xp" = (/turf/simulated/wall/bay/white,/area/medical/psych) +"xq" = (/obj/machinery/portable_atmospherics/canister/air/airlock,/obj/machinery/atmospherics/portables_connector,/obj/machinery/status_display{pixel_y = 32},/turf/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/engine_eva) +"xr" = (/obj/machinery/atmospherics/pipe/simple/hidden/black{dir = 6},/obj/structure/cable/orange{icon_state = "1-2"},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/monitoring) +"xt" = (/obj/machinery/pipedispenser/disposal,/obj/structure/cable/orange{icon_state = "1-2"},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/monitoring) +"xu" = (/obj/machinery/atmospherics/pipe/manifold4w/visible/black,/obj/machinery/meter,/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos/storage) +"xv" = (/obj/structure/table/darkglass,/obj/machinery/computer/skills{pixel_x = 9},/obj/item/weapon/paper_bin{pixel_x = -7; pixel_y = -2},/turf/simulated/floor/carpet/blucarpet,/area/crew_quarters/captain) +"xw" = (/obj/effect/floor_decal/industrial/outline/yellow,/obj/vehicle/train/trolley{dir = 1},/obj/machinery/light{dir = 4},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/turf/simulated/floor/tiled/eris/steel/cargo,/area/quartermaster/storage) +"xx" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable{icon_state = "1-8"},/obj/effect/floor_decal/milspec/color/orange/half{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 6},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 1},/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/stellardelight/deck2/aftport) +"xy" = (/obj/structure/railing/grey{dir = 4},/turf/simulated/floor,/area/stellardelight/deck2/central) +"xz" = (/obj/structure/particle_accelerator/end_cap{dir = 4},/turf/simulated/floor/tiled/eris/dark/danger,/area/engineering/engine_room) +"xA" = (/obj/structure/cable/green{icon_state = "1-4"},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/turf/simulated/floor/tiled/eris/dark/cargo,/area/crew_quarters/recreation_area) +"xB" = (/obj/machinery/computer/station_alert/all,/obj/structure/panic_button{pixel_y = 32},/obj/effect/floor_decal/milspec/color/orange/half,/turf/simulated/floor/tiled/eris/dark/monofloor,/area/bridge) +"xC" = (/obj/effect/landmark{name = "lightsout"},/obj/effect/floor_decal/steeldecal/steel_decals5,/turf/simulated/floor/tiled,/area/stellardelight/deck2/aftport) +"xD" = (/obj/structure/bed/chair/backed_red{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/turf/simulated/floor/tiled/eris/steel/brown_platform,/area/crew_quarters/bar) +"xE" = (/obj/structure/bed/chair/sofa/corp/left{dir = 4},/obj/machinery/light{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/carpet/turcarpet,/area/crew_quarters/recreation_area) +"xG" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/hologram/holopad,/turf/simulated/floor/tiled/eris/steel/brown_platform,/area/quartermaster/storage) +"xH" = (/obj/machinery/door/firedoor/glass,/obj/structure/cable/white{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/door/airlock/angled_bay/standard/color{dir = 8; door_color = "#ffffff"; name = "Mental Health"; req_access = list(64); stripe_color = "#5a96bb"},/turf/simulated/floor/tiled/steel_ridged,/area/medical/psych) +"xI" = (/obj/effect/floor_decal/industrial/outline,/obj/effect/floor_decal/steeldecal/steel_decals9,/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 8},/obj/machinery/vending/loadout/accessory,/obj/machinery/light{dir = 1},/turf/simulated/floor/tiled/dark,/area/crew_quarters/locker) +"xJ" = (/obj/structure/table/reinforced,/obj/machinery/chemical_dispenser/biochemistry/full,/obj/item/device/radio/intercom{dir = 1; pixel_y = 24},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/chemistry) +"xK" = (/obj/structure/table/standard,/obj/random/tech_supply,/obj/random/tech_supply,/obj/random/tech_supply,/obj/random/tech_supply,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/recharger{pixel_y = 5},/turf/simulated/floor/tiled/techmaint,/area/storage/primary) +"xL" = (/obj/item/roller,/obj/item/roller{pixel_y = 8},/obj/item/roller{pixel_y = 16},/obj/structure/table/glass,/obj/structure/window/reinforced{dir = 1},/obj/machinery/power/apc/angled{dir = 4},/obj/structure/cable/white{icon_state = "0-8"},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/reception) +"xM" = (/obj/machinery/recharge_station,/turf/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/workshop) +"xN" = (/mob/living/simple_mob/animal/passive/mouse/brown/feivel,/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos/monitoring) +"xO" = (/obj/machinery/light,/obj/structure/cable/white{icon_state = "4-8"},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/reception) +"xP" = (/obj/structure/window/reinforced{dir = 4; pixel_x = 4},/obj/structure/table/wooden_reinforced,/turf/simulated/floor/glass/reinforced,/area/stellardelight/deck2/fore) +"xQ" = (/obj/structure/sign/redcross,/turf/simulated/wall/bay/white,/area/medical/reception) +"xR" = (/obj/machinery/door/firedoor/glass,/obj/structure/window/bay/reinforced,/obj/machinery/atmospherics/pipe/simple/hidden/green{dir = 8},/obj/machinery/door/blast/angled/open{dir = 4; id = "atmoswindowlockdown"},/obj/structure/low_wall/bay/reinforced/steel,/turf/simulated/floor,/area/stellardelight/deck2/combustionworkshop) +"xT" = (/obj/structure/cable/green{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore) +"xU" = (/obj/machinery/atmospherics/pipe/simple/hidden/fuel{dir = 4},/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable{icon_state = "1-4"},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/monitoring) +"xV" = (/obj/structure/sink{dir = 8; pixel_x = -12},/obj/item/device/radio/intercom{dir = 8; pixel_x = -24},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/cmostore) +"xW" = (/obj/machinery/atmospherics/pipe/simple/visible/black{dir = 6},/obj/structure/sign/atmos/phoron{pixel_x = -32; pixel_y = 26},/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos/storage) +"xX" = (/obj/structure/cable/green{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/stellardelight/deck2/starboard) +"xY" = (/obj/structure/table/standard,/obj/item/weapon/reagent_containers/spray/cleaner{desc = "Someone has crossed out the Space from Space Cleaner and written in Surgery. 'Do not remove under punishment of death!!!' is scrawled on the back."; name = "Surgery Cleaner"; pixel_x = 2; pixel_y = 2},/obj/item/device/radio/intercom/department/medbay{dir = 8; pixel_x = -24},/turf/simulated/floor/tiled/white,/area/medical/surgery2) +"xZ" = (/obj/structure/cable/green{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/turf/simulated/floor/tiled,/area/stellardelight/deck2/central) +"ya" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/sign/nosmoking_1{pixel_y = -32},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/reception) +"yc" = (/obj/machinery/light{dir = 1},/turf/simulated/floor/tiled/eris/dark/cargo,/area/crew_quarters/recreation_area) +"yd" = (/obj/structure/cable/green{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/angled_bay/standard/glass{dir = 4; name = "glass airlock"},/turf/simulated/floor/tiled/steel_ridged,/area/stellardelight/deck2/aftport) +"ye" = (/obj/machinery/atmospherics/pipe/simple/hidden/fuel{dir = 9},/obj/effect/floor_decal/industrial/warning{dir = 4},/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/structure/cable{icon_state = "1-8"},/turf/simulated/floor/tiled/eris/steel/cargo,/area/quartermaster/storage) +"yf" = (/obj/structure/cable/green{icon_state = "4-8"},/obj/structure/table/standard,/obj/item/weapon/reagent_containers/dropper,/obj/item/weapon/reagent_containers/glass/beaker{pixel_x = 5},/obj/item/weapon/reagent_containers/food/condiment/enzyme{layer = 5},/obj/item/weapon/reagent_containers/food/condiment/enzyme{layer = 5},/turf/simulated/floor/tiled/eris/cafe,/area/crew_quarters/kitchen) +"yg" = (/turf/simulated/floor/tiled/techfloor,/area/stellardelight/deck2/fuelstorage) +"yh" = (/obj/structure/closet/emergsuit_wall{dir = 4; pixel_x = 27},/obj/effect/floor_decal/milspec/color/black/corner,/obj/effect/floor_decal/milspec/color/silver/corner{dir = 4},/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore) +"yi" = (/obj/machinery/door/firedoor/glass,/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/door/airlock/angled_bay/hatch{door_color = "#e6ab22"; name = "maintenance access"; req_access = list(11,24); req_one_access = null; stripe_color = "#e6ab22"},/obj/structure/cable/orange{icon_state = "1-2"},/turf/simulated/floor/tiled/steel_ridged,/area/engineering/engineering_monitoring) +"yj" = (/obj/machinery/door/firedoor/glass,/obj/structure/window/bay/reinforced,/obj/structure/low_wall/bay/reinforced/orange,/turf/simulated/floor,/area/engineering/engine_room) +"yk" = (/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/eris/white/bluecorner,/area/stellardelight/deck2/triage) +"yl" = (/obj/machinery/atmospherics/pipe/simple/hidden/cyan,/turf/simulated/wall/bay/r_wall/orange,/area/engineering/atmos/storage) +"ym" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/obj/structure/sign/department/atmos{pixel_x = -32},/obj/structure/cable{icon_state = "1-2"},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 8},/turf/simulated/floor/tiled,/area/stellardelight/deck2/aftport) +"yn" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 1},/turf/simulated/floor/tiled,/area/crew_quarters/locker) +"yo" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/turf/simulated/floor/wood,/area/medical/psych) +"yp" = (/obj/structure/bed/chair/bay/shuttle{dir = 8},/obj/machinery/light/small{dir = 1},/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck2/portescape) +"yq" = (/obj/machinery/light{dir = 8},/turf/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/engine_eva) +"yr" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/angled_bay/standard/glass{name = "glass airlock"},/turf/simulated/floor/tiled/steel_ridged,/area/stellardelight/deck2/starboard) +"ys" = (/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 1},/obj/machinery/newscaster{pixel_y = 28},/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore) +"yu" = (/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 4},/obj/machinery/newscaster{pixel_x = 29},/turf/simulated/floor/tiled,/area/stellardelight/deck2/starboard) +"yv" = (/obj/effect/landmark/start/botanist,/turf/simulated/floor/tiled/monotile,/area/hydroponics) +"yw" = (/obj/structure/table/reinforced,/obj/fiftyspawner/glass,/obj/fiftyspawner/glass,/obj/fiftyspawner/glass,/obj/fiftyspawner/glass,/obj/fiftyspawner/glass,/obj/machinery/power/apc/angled{dir = 4},/obj/structure/cable/orange{icon_state = "0-8"},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/turf/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/workshop) +"yx" = (/obj/machinery/status_display{pixel_y = -32},/obj/effect/floor_decal/steeldecal/steel_decals5,/turf/simulated/floor/tiled,/area/stellardelight/deck2/starboard) +"yy" = (/obj/machinery/power/tracker,/obj/structure/cable{icon_state = "0-2"},/turf/simulated/floor/airless,/area/stellardelight/deck2/exterior) +"yz" = (/obj/structure/cable/green{icon_state = "1-4"},/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/obj/random/trash_pile,/turf/simulated/floor,/area/maintenance/stellardelight/deck2/portfore) +"yA" = (/obj/machinery/atmospherics/pipe/simple/hidden/fuel{dir = 10},/turf/simulated/wall/bay/r_wall/steel,/area/engineering/engine_eva) +"yB" = (/obj/machinery/atmospherics/pipe/simple/hidden/green{dir = 10},/obj/structure/cable{icon_state = "4-8"},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/monitoring) +"yC" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/turf/simulated/floor/tiled/eris/steel/cargo,/area/quartermaster/storage) +"yE" = (/obj/structure/medical_stand,/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/cmostore) +"yF" = (/obj/machinery/light{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 1},/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore) +"yG" = (/obj/structure/bed/chair/sofa/corp/corner{dir = 4},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/turf/simulated/floor/carpet/turcarpet,/area/crew_quarters/recreation_area) +"yH" = (/obj/structure/cable{icon_state = "0-4"},/obj/machinery/power/solar,/turf/simulated/floor/airless,/area/stellardelight/deck2/exterior) +"yI" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/cmostore) +"yJ" = (/obj/machinery/door/firedoor/glass,/obj/structure/cable/blue{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/door/blast/angled/open{dir = 4; id = "bridgelockdown"},/obj/machinery/door/airlock/angled_bay/standard/glass{dir = 4; door_color = "#323d80"; name = "Bridge"; req_access = list(19); req_one_access = list(19); stripe_color = "#f7d35c"},/turf/simulated/floor/tiled/steel_ridged,/area/bridge) +"yK" = (/obj/structure/cable/green{icon_state = "1-8"},/obj/structure/cable/green{icon_state = "4-8"},/turf/simulated/floor/airless,/area/stellardelight/deck2/exterior) +"yM" = (/obj/structure/cable/green{icon_state = "2-4"},/turf/simulated/floor/wood,/area/stellardelight/deck2/barbackroom) +"yN" = (/obj/machinery/door/airlock/angled_bay/hatch{door_color = "#e6ab22"; locked = 1; name = "Burn Chamber"; req_one_access = list(24); stripe_color = "#e6ab22"},/obj/machinery/door/blast/angled/open{dir = 2; id = "burnchamberlockdown"},/turf/simulated/floor/reinforced,/area/stellardelight/deck2/combustionworkshop) +"yP" = (/obj/random/trash_pile,/turf/simulated/floor,/area/maintenance/stellardelight/deck2/portaft) +"yQ" = (/obj/machinery/camera/network/medbay{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 10},/obj/effect/floor_decal/steeldecal/steel_decals4,/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/reception) +"yR" = (/obj/effect/floor_decal/industrial/outline/yellow,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/eris/steel/cargo,/area/quartermaster/storage) +"yS" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/angled_bay/hatch{name = "maintenance access"; stripe_color = "#454545"},/turf/simulated/floor,/area/maintenance/stellardelight/deck2/starboardfore) +"yT" = (/obj/effect/floor_decal/industrial/outline/yellow,/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/obj/machinery/status_display/supply_display{pixel_x = -32},/turf/simulated/floor/tiled/eris/steel/cargo,/area/quartermaster/storage) +"yU" = (/obj/effect/floor_decal/industrial/warning{dir = 1},/obj/structure/cable/white{icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/white,/area/medical/surgery) +"yV" = (/obj/item/device/sleevemate,/obj/item/device/denecrotizer/medical,/obj/structure/table/reinforced,/obj/machinery/light{dir = 4},/obj/item/weapon/gun/energy/mouseray/medical,/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/cmostore) +"yW" = (/turf/simulated/wall/bay/steel,/area/stellardelight/deck2/aftstarboard) +"yX" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/window/westleft{dir = 4; name = "Animal Pen"; req_one_access = list(35,28)},/turf/simulated/floor/tiled/steel_ridged,/area/hydroponics) +"yY" = (/obj/machinery/camera/network/halls{dir = 4},/obj/structure/cable{icon_state = "1-2"},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 8},/turf/simulated/floor/tiled,/area/stellardelight/deck2/aftport) +"yZ" = (/obj/structure/cable/green{icon_state = "1-4"},/obj/structure/cable/green{icon_state = "4-8"},/turf/simulated/floor/airless,/area/stellardelight/deck2/exterior) +"za" = (/obj/machinery/door/firedoor/glass,/obj/structure/window/bay/reinforced,/obj/structure/cable/yellow{icon_state = "4-8"},/obj/structure/low_wall/bay/reinforced/orange,/turf/simulated/floor,/area/engineering/engine_room) +"zb" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/monotile,/area/hydroponics) +"zc" = (/obj/structure/sign/department/chem{pixel_y = 32},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 6},/obj/machinery/light{dir = 1},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/stellardelight/deck2/triage) +"zd" = (/obj/machinery/atmospherics/portables_connector{dir = 1},/obj/machinery/light{dir = 4},/obj/structure/cable/orange{icon_state = "1-2"},/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos/storage) +"zf" = (/obj/machinery/light{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 4},/turf/simulated/floor/tiled,/area/stellardelight/deck2/aftport) +"zh" = (/obj/effect/floor_decal/steeldecal/steel_decals5,/turf/simulated/floor/tiled,/area/stellardelight/deck2/aftstarboard) +"zi" = (/obj/machinery/atmospherics/pipe/simple/hidden/yellow,/obj/structure/cable/orange{icon_state = "2-4"},/turf/simulated/floor,/area/stellardelight/deck2/combustionworkshop) +"zj" = (/turf/simulated/floor/tiled/eris/steel/brown_platform,/area/quartermaster/storage) +"zk" = (/obj/machinery/light/small,/obj/structure/closet/emcloset,/turf/simulated/floor/tiled/eris/white/danger,/area/stellardelight/deck2/starboard) +"zl" = (/obj/structure/cable/green{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/turf/simulated/floor/tiled,/area/stellardelight/deck2/aftport) +"zm" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/techmaint,/area/storage/primary) +"zo" = (/obj/machinery/status_display{pixel_y = 32},/obj/effect/floor_decal/milspec/color/blue/half{dir = 1},/turf/simulated/floor/tiled,/area/stellardelight/deck2/central) +"zp" = (/obj/machinery/power/apc/angled{dir = 8},/obj/structure/cable/green{icon_state = "0-4"},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 8},/turf/simulated/floor/tiled,/area/stellardelight/deck2/port) +"zq" = (/obj/structure/cable/orange{icon_state = "2-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled/eris/dark/techfloor_grid,/area/storage/tech) +"zr" = (/obj/structure/cable/green{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/effect/floor_decal/milspec/color/green/half{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4,/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 10},/turf/simulated/floor/tiled,/area/hydroponics) +"zs" = (/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals6{dir = 1},/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore) +"zt" = (/obj/machinery/camera/network/medbay{dir = 1},/turf/simulated/floor/tiled/white,/area/medical/surgery) +"zu" = (/obj/machinery/atmospherics/pipe/simple/hidden/cyan,/turf/simulated/floor,/area/stellardelight/deck2/combustionworkshop) +"zv" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/obj/machinery/power/apc/angled{cell_type = /obj/item/weapon/cell/super; dir = 8; name = "night shift APC"; nightshift_setting = 2},/obj/structure/cable/green{icon_state = "0-4"},/turf/simulated/floor,/area/maintenance/stellardelight/deck2/portsolars) +"zw" = (/obj/structure/bed/chair/backed_red{dir = 1},/obj/effect/landmark/start/visitor,/turf/simulated/floor/tiled/eris/steel/brown_platform,/area/crew_quarters/bar) +"zy" = (/obj/structure/cable/yellow{icon_state = "1-4"},/turf/simulated/floor/tiled/eris/dark/techfloor_grid,/area/engineering/engine_room) +"zz" = (/obj/effect/floor_decal/milspec/color/black/corner,/obj/effect/floor_decal/milspec/color/silver/corner{dir = 8},/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore) +"zC" = (/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 4},/obj/effect/landmark/start/medical,/turf/simulated/floor/tiled/eris/white/cargo,/area/stellardelight/deck2/triage) +"zD" = (/obj/machinery/atmospherics/pipe/manifold/hidden/cyan,/obj/effect/floor_decal/industrial/warning{dir = 1},/obj/structure/cable/white{icon_state = "4-8"},/turf/simulated/floor/tiled/eris/white/cargo,/area/stellardelight/deck2/triage) +"zG" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/reception) +"zH" = (/obj/machinery/light{dir = 1},/turf/simulated/floor/tiled/eris/dark/gray_platform,/area/bridge) +"zI" = (/obj/machinery/door/airlock/angled_bay/external/glass{dir = 4; frequency = 1379; id_tag = "d2_portmaint_exterior"; locked = 1; name = "Exterior Airlock"},/obj/machinery/access_button{command = "cycle_exterior"; dir = 8; frequency = 1379; master_tag = "d2_portmaint_airlock"; name = "exterior access button"; pixel_y = 32; req_one_access = list(13)},/obj/machinery/door/firedoor/glass,/obj/structure/cable{icon_state = "4-8"},/turf/simulated/floor/tiled/steel_ridged,/area/maintenance/stellardelight/deck2/portsolars) +"zJ" = (/obj/structure/cable/green{icon_state = "1-2"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/turf/simulated/floor/tiled/eris/cafe,/area/crew_quarters/kitchen) +"zK" = (/obj/structure/cable/blue{icon_state = "2-4"},/obj/machinery/alarm/angled{dir = 4},/obj/structure/closet/emcloset,/turf/simulated/floor,/area/maintenance/stellardelight/deck2/starboardfore) +"zL" = (/obj/machinery/atmospherics/pipe/manifold/hidden/cyan{dir = 1},/obj/machinery/firealarm/angled,/obj/structure/cable/white{icon_state = "4-8"},/turf/simulated/floor,/area/medical/cryo) +"zM" = (/obj/machinery/atmospherics/pipe/simple/visible/red,/obj/machinery/atmospherics/binary/pump{dir = 4},/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos/storage) +"zN" = (/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled/steel_ridged,/area/stellardelight/deck2/starboard) +"zO" = (/obj/machinery/light{dir = 8},/obj/effect/floor_decal/milspec/color/green/half{dir = 8},/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore) +"zP" = (/obj/machinery/light{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 8},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/stellardelight/deck2/port) +"zQ" = (/obj/machinery/door/firedoor/glass,/obj/machinery/atmospherics/pipe/simple/hidden/cyan,/obj/structure/cable/white{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/door/airlock/angled_bay/standard/glass{door_color = "#ffffff"; name = "Medbay Storage"; req_access = list(5); stripe_color = "#5a96bb"},/turf/simulated/floor/tiled/steel_ridged,/area/medical/cmostore) +"zR" = (/obj/effect/floor_decal/milspec/color/orange/corner{dir = 8},/turf/simulated/floor/tiled,/area/stellardelight/deck2/aftport) +"zS" = (/obj/machinery/light{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 4},/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/stellardelight/deck2/starboard) +"zT" = (/obj/machinery/shieldgen,/obj/machinery/camera/network/engineering,/turf/simulated/floor/plating,/area/engineering/storage) +"zU" = (/obj/machinery/oxygen_pump/anesthetic,/turf/simulated/wall/bay/white,/area/medical/surgery) +"zV" = (/obj/structure/cable/orange{icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/turf/simulated/floor/tiled/techfloor,/area/stellardelight/deck2/fuelstorage) +"zW" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/obj/random/trash_pile,/obj/effect/landmark{name = "morphspawn"},/turf/simulated/floor,/area/maintenance/stellardelight/deck2/starboardaft) +"zX" = (/obj/machinery/alarm/angled{dir = 8},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/stellardelight/deck2/triage) +"zY" = (/obj/machinery/atmospherics/pipe/manifold/hidden/fuel,/turf/simulated/floor/tiled/techfloor,/area/stellardelight/deck2/fuelstorage) +"zZ" = (/obj/structure/closet/emergsuit_wall{dir = 8; pixel_x = -27},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 8},/turf/simulated/floor/tiled,/area/stellardelight/deck2/starboard) +"Aa" = (/obj/machinery/light/small{dir = 1},/obj/structure/closet/emcloset,/obj/machinery/camera/network/halls{dir = 8},/turf/simulated/floor/tiled/eris/white/danger,/area/stellardelight/deck2/port) +"Ab" = (/obj/machinery/atmospherics/pipe/simple/visible/red,/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos/monitoring) +"Ad" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/blue{icon_state = "1-2"},/obj/machinery/papershredder,/turf/simulated/floor/wood,/area/stellardelight/deck2/briefingroom) +"Ae" = (/obj/effect/floor_decal/industrial/outline,/obj/effect/floor_decal/steeldecal/steel_decals9,/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 8},/obj/machinery/vending/loadout/uniform,/obj/machinery/atmospherics/unary/vent_scrubber/on,/turf/simulated/floor/tiled/dark,/area/crew_quarters/locker) +"Af" = (/obj/structure/table/reinforced,/obj/item/device/retail_scanner/engineering,/turf/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/workshop) +"Ag" = (/obj/machinery/atmospherics/pipe/simple/hidden/red{dir = 10},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/monitoring) +"Ah" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/angled_bay/external/glass{dir = 4},/obj/effect/map_helper/airlock/door/simple,/turf/simulated/floor/tiled/steel_ridged,/area/stellardelight/deck2/starboardescape) +"Ai" = (/obj/machinery/atmospherics/pipe/simple/visible/black{dir = 9},/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos/storage) +"Aj" = (/obj/structure/closet/emcloset,/turf/simulated/floor/tiled,/area/stellardelight/deck2/starboard) +"Ak" = (/obj/structure/table/standard,/obj/item/weapon/material/knife/butch,/obj/item/weapon/material/kitchen/rollingpin,/turf/simulated/floor/tiled/eris/cafe,/area/crew_quarters/kitchen) +"Al" = (/obj/structure/table/fancyblack,/obj/item/weapon/paper_bin{pixel_y = 5},/obj/item/weapon/pen,/turf/simulated/floor/carpet/sblucarpet,/area/stellardelight/deck2/briefingroom) +"Am" = (/obj/machinery/portable_atmospherics/powered/scrubber,/obj/machinery/atmospherics/portables_connector{dir = 4},/turf/simulated/floor,/area/engineering/atmos/monitoring) +"An" = (/obj/machinery/meter,/obj/machinery/atmospherics/pipe/simple/visible/cyan{dir = 6},/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos/monitoring) +"Ao" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals5,/turf/simulated/floor/tiled,/area/stellardelight/deck2/aftport) +"Ap" = (/obj/machinery/atmospherics/portables_connector{dir = 8},/obj/effect/floor_decal/industrial/outline/blue,/turf/simulated/floor,/area/stellardelight/deck2/combustionworkshop) +"Ar" = (/obj/machinery/power/pointdefense{id_tag = "sd_pd"},/obj/effect/floor_decal/industrial/warning/full,/obj/structure/cable/green{icon_state = "0-4"},/turf/simulated/floor/airless,/area/stellardelight/deck2/exterior) +"As" = (/obj/machinery/atmospherics/binary/pump/on{dir = 1; name = "Scrubber to Waste"},/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos/storage) +"At" = (/turf/simulated/floor/tiled/eris/dark/gray_platform,/area/engineering/workshop) +"Au" = (/obj/structure/lattice,/obj/machinery/atmospherics/pipe/simple/heat_exchanging{dir = 6},/turf/space,/area/space) +"Av" = (/obj/structure/disposalpipe/segment,/obj/structure/closet/secure_closet/atmos_personal,/turf/simulated/floor/tiled/techfloor,/area/stellardelight/deck2/o2production) +"Aw" = (/obj/machinery/light{dir = 8},/obj/structure/sign/directions/engineering/atmospherics{dir = 8; pixel_x = -32; pixel_y = -12},/obj/structure/sign/directions/cargo{dir = 10; pixel_x = -32},/obj/structure/sign/directions/engineering{dir = 4; pixel_x = -32; pixel_y = -6},/obj/structure/sign/directions/medical{dir = 1; pixel_x = -32; pixel_y = 6},/turf/simulated/floor/tiled/steel_grid,/area/stellardelight/deck2/aftstarboard) +"Ax" = (/obj/effect/floor_decal/spline/plain{dir = 1},/obj/structure/cable/green{icon_state = "1-2"},/obj/machinery/vending/wallmed1/public{pixel_x = 29},/turf/simulated/floor/lino,/area/crew_quarters/bar) +"Ay" = (/obj/structure/cable/white{icon_state = "2-8"},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/stellardelight/deck2/triage) +"Az" = (/obj/machinery/door/firedoor/glass,/obj/structure/window/bay/reinforced,/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/low_wall/bay/reinforced/brown,/turf/simulated/floor,/area/quartermaster/storage) +"AA" = (/obj/structure/cable/green{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/turf/simulated/floor/tiled,/area/stellardelight/deck2/central) +"AB" = (/obj/machinery/computer/guestpass{pixel_y = 24},/obj/effect/floor_decal/milspec/color/blue/half{dir = 1},/turf/simulated/floor/tiled,/area/stellardelight/deck2/central) +"AC" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/freezer/cold,/area/crew_quarters/kitchen) +"AD" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/turf/simulated/floor,/area/stellardelight/deck2/combustionworkshop) +"AE" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable/orange{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/turf/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/locker_room) +"AF" = (/obj/machinery/power/pointdefense{id_tag = "sd_pd"},/obj/effect/floor_decal/industrial/warning/full,/obj/structure/cable/orange{icon_state = "0-8"},/turf/simulated/floor/airless,/area/stellardelight/deck2/exterior) +"AG" = (/obj/item/clothing/suit/straight_jacket,/obj/item/clothing/mask/muzzle,/obj/structure/table/reinforced,/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/cmostore) +"AI" = (/obj/machinery/door/firedoor/glass/hidden/steel,/obj/structure/cable/green{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore) +"AK" = (/obj/machinery/power/sensor{name = "Powernet Sensor - Master Grid"; name_tag = "Master"},/obj/structure/cable{icon_state = "2-4"},/obj/structure/cable{icon_state = "0-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/turf/simulated/floor/plating,/area/engineering/storage) +"AL" = (/obj/machinery/light{dir = 4},/obj/structure/sign/directions/engineering{dir = 4; pixel_x = 32; pixel_y = -6},/obj/structure/sign/directions/engineering/atmospherics{dir = 10; pixel_x = 32; pixel_y = -12},/obj/structure/sign/directions/cargo{dir = 6; pixel_x = 32},/obj/structure/sign/directions/medical{dir = 1; pixel_x = 32; pixel_y = 6},/turf/simulated/floor/tiled/steel_grid,/area/stellardelight/deck2/aftport) +"AM" = (/obj/machinery/door/firedoor/glass,/obj/structure/window/bay/reinforced,/obj/structure/low_wall/bay/reinforced/steel,/turf/simulated/floor,/area/storage/art) +"AN" = (/obj/structure/table/marble,/obj/machinery/door/blast/shutters{dir = 8; id = "bar"; layer = 3.3; name = "Bar Shutters"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/lino,/area/crew_quarters/bar) +"AO" = (/obj/structure/table/darkglass,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/machinery/button/remote/airlock{id = "captaindoor"; pixel_x = -15; pixel_y = 2},/obj/item/weapon/stamp/captain{pixel_x = 10; pixel_y = 6},/obj/item/weapon/coin/phoron{desc = "The face of the coin shows a portrait of the explorer who discovered the Virgo-Erigone system. The back depicts a Zodiac symbol that represents Virgo."; name = "limited edition phoron coin"; pixel_x = 11; pixel_y = -3},/turf/simulated/floor/carpet/blucarpet,/area/crew_quarters/captain) +"AP" = (/obj/structure/cable/green{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/turf/simulated/floor,/area/maintenance/stellardelight/deck2/portaft) +"AR" = (/obj/machinery/light,/turf/simulated/floor/grass,/area/hydroponics) +"AS" = (/obj/structure/table/rack/steel,/obj/item/weapon/circuitboard/algae_farm{pixel_x = -3; pixel_y = 3},/obj/item/weapon/circuitboard/unary_atmos/heater,/obj/item/weapon/circuitboard/unary_atmos/cooler{pixel_x = 3; pixel_y = -3},/obj/machinery/light/small{dir = 4},/turf/simulated/floor/tiled/eris/dark/techfloor_grid,/area/storage/tech) +"AT" = (/obj/structure/cable/orange{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/turf/simulated/floor/tiled/eris/dark/techfloor_grid,/area/storage/tech) +"AU" = (/obj/structure/cable/orange{icon_state = "1-2"},/turf/simulated/floor,/area/maintenance/stellardelight/deck2/portsolars) +"AV" = (/obj/machinery/atmospherics/pipe/simple/hidden/fuel{dir = 4},/turf/simulated/wall/bay/r_wall/steel,/area/stellardelight/deck2/fuelstorage) +"AW" = (/obj/machinery/atmospherics/binary/pump{dir = 1},/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos/storage) +"AX" = (/obj/machinery/atmospherics/pipe/simple/visible/green,/obj/structure/cable/orange{icon_state = "1-2"},/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos/storage) +"AY" = (/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/eris/steel/brown_platform,/area/crew_quarters/bar) +"AZ" = (/obj/machinery/atmospherics/pipe/simple/hidden/fuel,/obj/effect/floor_decal/industrial/warning/corner{dir = 1},/obj/effect/floor_decal/industrial/warning/corner,/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable{icon_state = "1-2"},/turf/simulated/floor/tiled/eris/steel/cargo,/area/quartermaster/storage) +"Ba" = (/obj/structure/cable/white{icon_state = "1-2"},/obj/effect/floor_decal/corner_steel_grid{dir = 10},/obj/machinery/sleeper{dir = 4},/turf/simulated/floor/tiled/eris/white/cargo,/area/stellardelight/deck2/triage) +"Bb" = (/obj/structure/flora/pottedplant/minitree,/obj/structure/cable/white{icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/chemistry) +"Bc" = (/obj/effect/floor_decal/milspec/color/blue/half{dir = 8},/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore) +"Bd" = (/obj/structure/cable/orange{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/camera/network/engineering,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/turf/simulated/floor/tiled/techfloor,/area/stellardelight/deck2/fuelstorage) +"Be" = (/obj/machinery/light{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/structure/closet/secure_closet/engineering_personal,/turf/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/locker_room) +"Bf" = (/obj/structure/sign/directions/bar{dir = 1; pixel_x = 32; pixel_y = 15},/obj/machinery/camera/network/halls{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 4},/turf/simulated/floor/tiled,/area/stellardelight/deck2/port) +"Bg" = (/obj/machinery/light{dir = 8},/turf/simulated/floor/tiled/steel_grid,/area/stellardelight/deck2/aftstarboard) +"Bh" = (/obj/machinery/computer/operating,/turf/simulated/floor/tiled/white,/area/medical/surgery) +"Bi" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 4},/turf/simulated/floor/tiled,/area/storage/art) +"Bj" = (/obj/machinery/smartfridge/produce/persistent_lossy,/obj/machinery/door/firedoor/glass,/turf/simulated/floor,/area/crew_quarters/kitchen) +"Bk" = (/turf/simulated/floor/tiled/freezer/cold,/area/crew_quarters/kitchen) +"Bl" = (/obj/machinery/door/firedoor/glass,/obj/structure/cable/white{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/door/airlock/angled_bay/standard/color{dir = 8; door_color = "#ffffff"; name = "Operating Theatre 1"; req_access = list(45); stripe_color = "#5a96bb"},/turf/simulated/floor/tiled/steel_ridged,/area/medical/surgery) +"Bm" = (/obj/effect/landmark{name = "lightsout"},/turf/simulated/floor/tiled/eris/cafe,/area/crew_quarters/kitchen) +"Bn" = (/obj/structure/table/standard,/obj/machinery/reagentgrinder{pixel_y = 10},/turf/simulated/floor/tiled/eris/cafe,/area/crew_quarters/kitchen) +"Bo" = (/obj/structure/cable/green{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/effect/landmark/start/chef,/turf/simulated/floor/tiled/eris/cafe,/area/crew_quarters/kitchen) +"Bp" = (/turf/simulated/floor/carpet,/area/crew_quarters/recreation_area) +"Bq" = (/turf/simulated/floor/tiled/eris/white/danger,/area/stellardelight/deck2/starboard) +"Br" = (/obj/structure/shuttle/window,/obj/structure/grille,/obj/effect/shuttle_landmark{base_area = /area/stellardelight/deck2/exterior; base_turf = /turf/simulated/floor/airless; docking_controller = "port_escape_berth"; landmark_tag = "port_ship_berth"; name = "Stellar Delight Escape Pod Port"},/turf/simulated/floor,/area/stellardelight/deck2/portescape) +"Bs" = (/obj/machinery/field_generator{anchored = 1; state = 1},/turf/simulated/floor/airless,/area/engineering/engine_room) +"Bt" = (/obj/structure/cable/green{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/turf/simulated/floor/tiled,/area/stellardelight/deck2/aftport) +"Bu" = (/obj/machinery/door/firedoor/glass,/obj/structure/window/bay/reinforced,/obj/structure/low_wall/bay/reinforced/steel,/turf/simulated/floor,/area/maintenance/stellardelight/deck2/starboardfore) +"Bv" = (/obj/effect/floor_decal/steeldecal/steel_decals6{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals6{dir = 1},/obj/structure/cable/white{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/turf/simulated/floor/tiled/white,/area/medical/surgery2) +"Bw" = (/turf/simulated/wall/bay/r_wall/steel,/area/stellardelight/deck2/port) +"Bx" = (/obj/structure/cable{icon_state = "4-8"},/obj/effect/floor_decal/steeldecal/steel_decals5,/turf/simulated/floor/tiled,/area/stellardelight/deck2/port) +"BA" = (/obj/structure/railing/grey{dir = 8},/turf/simulated/floor/tiled/monotile,/area/stellardelight/deck2/fore) +"BB" = (/obj/structure/cable/orange{icon_state = "4-8"},/turf/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/engine_eva) +"BC" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/item/device/radio/intercom{dir = 4; pixel_x = 24},/turf/simulated/floor/carpet/turcarpet,/area/crew_quarters/recreation_area) +"BD" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/angled_bay/standard/glass{door_color = "#9c9c9c"; fill_color = null; name = "Commons"; stripe_color = "#89bd66"},/turf/simulated/floor/tiled/steel_ridged,/area/crew_quarters/recreation_area) +"BE" = (/obj/structure/cable{icon_state = "1-8"},/obj/structure/cable{icon_state = "1-4"},/turf/simulated/floor/airless,/area/stellardelight/deck2/exterior) +"BF" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/turf/simulated/floor/tiled/freezer/cold,/area/crew_quarters/kitchen) +"BG" = (/obj/machinery/atmospherics/pipe/simple/hidden/yellow,/obj/structure/cable/orange{icon_state = "1-2"},/obj/machinery/light{dir = 4},/obj/machinery/meter,/turf/simulated/floor,/area/stellardelight/deck2/combustionworkshop) +"BH" = (/obj/effect/floor_decal/milspec/color/green/half{dir = 4},/turf/simulated/floor/tiled,/area/hydroponics) +"BI" = (/obj/structure/table/standard,/obj/item/weapon/clipboard,/obj/item/weapon/stamp/qm,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/wood,/area/quartermaster/qm) +"BJ" = (/obj/machinery/hologram/holopad,/obj/structure/cable/green{icon_state = "1-2"},/turf/simulated/floor/tiled/eris/steel/brown_platform,/area/crew_quarters/bar) +"BK" = (/obj/item/weapon/stool/padded,/obj/machinery/hologram/holopad,/turf/simulated/floor/carpet,/area/crew_quarters/recreation_area) +"BL" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/effect/floor_decal/steeldecal/steel_decals5,/turf/simulated/floor/tiled,/area/stellardelight/deck2/aftport) +"BM" = (/obj/structure/table/standard,/obj/item/weapon/folder/yellow,/obj/item/weapon/stamp/denied{pixel_x = 4; pixel_y = -2},/obj/machinery/light/floortube{dir = 1; pixel_y = 6},/obj/machinery/camera/network/cargo,/obj/item/device/retail_scanner/cargo,/obj/item/weapon/stamp/accepted,/turf/simulated/floor/tiled/eris/steel/brown_platform,/area/quartermaster/storage) +"BN" = (/turf/simulated/wall/bay/r_wall/steel,/area/maintenance/stellardelight/substation/engineering) +"BO" = (/obj/structure/cable/yellow{icon_state = "4-8"},/turf/simulated/floor/tiled/eris/steel/cargo,/area/quartermaster/storage) +"BP" = (/obj/effect/floor_decal/milspec/color/blue/corner{dir = 4},/turf/simulated/floor/tiled,/area/stellardelight/deck2/port) +"BQ" = (/obj/machinery/atmospherics/portables_connector,/obj/machinery/portable_atmospherics/powered/pump/filled,/obj/machinery/status_display{pixel_y = 32},/turf/simulated/floor,/area/engineering/atmos/monitoring) +"BR" = (/obj/structure/closet/secure_closet/medical1,/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/chemistry) +"BS" = (/obj/machinery/power/apc/angled{dir = 1; name = "night shift APC"; nightshift_setting = 2},/obj/structure/cable/green{icon_state = "0-8"},/obj/machinery/light_switch{pixel_x = 9; pixel_y = 24},/turf/simulated/floor/tiled/eris/dark/cargo,/area/crew_quarters/recreation_area) +"BT" = (/turf/simulated/wall/bay/r_wall/steel,/area/engineering/atmos/storage) +"BU" = (/obj/machinery/atmospherics/pipe/simple/hidden/cyan{dir = 5},/obj/effect/floor_decal/industrial/warning{dir = 1},/obj/structure/cable/white{icon_state = "4-8"},/turf/simulated/floor/tiled/eris/white/cargo,/area/stellardelight/deck2/triage) +"BV" = (/obj/structure/table/marble,/obj/machinery/door/blast/shutters{id = "bar"; layer = 3.3; name = "Bar Shutters"},/obj/item/weapon/material/ashtray/glass,/turf/simulated/floor/lino,/area/crew_quarters/bar) +"BW" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/angled_bay/external/glass{dir = 4},/turf/simulated/floor/tiled/steel_ridged,/area/stellardelight/deck2/port) +"BX" = (/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/eris/dark/monofloor,/area/bridge) +"BY" = (/obj/machinery/atmospherics/pipe/tank/nitrogen{dir = 1},/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos/storage) +"BZ" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/portable_atmospherics/canister/oxygen,/turf/simulated/floor/tiled/techfloor,/area/stellardelight/deck2/o2production) +"Ca" = (/obj/machinery/atmospherics/pipe/simple/hidden/yellow{dir = 6},/obj/structure/cable{icon_state = "4-8"},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/monitoring) +"Cb" = (/obj/structure/cable/green{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/status_display{pixel_x = -32},/turf/simulated/floor/tiled/eris/white/danger,/area/stellardelight/deck2/port) +"Cc" = (/obj/structure/cable{icon_state = "1-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/junction,/turf/simulated/floor,/area/maintenance/stellardelight/deck2/starboardsolars) +"Cd" = (/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/eris/white/bluecorner,/area/stellardelight/deck2/triage) +"Ce" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/angled_bay/double/glass/common{dir = 8; name = "Escape Pod"},/turf/simulated/floor/tiled/steel_ridged,/area/stellardelight/deck2/port) +"Cf" = (/obj/structure/cable{icon_state = "4-8"},/turf/simulated/floor/airless,/area/stellardelight/deck2/exterior) +"Cg" = (/obj/structure/sign/painting/public{pixel_y = -30},/obj/machinery/light{dir = 4},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/turf/simulated/floor/tiled,/area/storage/art) +"Ch" = (/obj/machinery/atmospherics/pipe/tank/oxygen{dir = 1},/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos/storage) +"Ci" = (/obj/machinery/door/firedoor/glass,/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/reception) +"Cj" = (/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 4},/turf/simulated/floor/tiled,/area/stellardelight/deck2/port) +"Ck" = (/obj/machinery/atmospherics/pipe/simple/hidden/green{dir = 5},/obj/structure/disposalpipe/segment,/obj/structure/cable/orange{icon_state = "1-4"},/obj/structure/cable/orange{icon_state = "1-2"},/turf/simulated/floor/tiled/techfloor,/area/stellardelight/deck2/o2production) +"Cl" = (/obj/structure/cable/orange{icon_state = "2-8"},/turf/simulated/wall/bay/r_wall/steel,/area/engineering/storage) +"Cm" = (/obj/effect/floor_decal/industrial/warning/corner{dir = 8},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/eris/steel/cargo,/area/quartermaster/storage) +"Cn" = (/obj/machinery/atmospherics/pipe/simple/hidden/green{dir = 1},/obj/structure/cable/orange{icon_state = "4-8"},/obj/effect/landmark{name = "lightsout"},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/monitoring) +"Co" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled,/area/stellardelight/deck2/starboard) +"Cp" = (/obj/structure/cable{icon_state = "0-8"},/obj/structure/cable{icon_state = "0-4"},/obj/machinery/power/solar,/turf/simulated/floor/airless,/area/stellardelight/deck2/exterior) +"Cq" = (/obj/structure/cable{icon_state = "0-4"},/obj/structure/cable{icon_state = "0-8"},/obj/machinery/power/solar,/turf/simulated/floor/airless,/area/stellardelight/deck2/exterior) +"Cr" = (/obj/machinery/alarm/angled{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/turf/simulated/floor/tiled/eris/dark/techfloor_grid,/area/storage/tech) +"Ct" = (/obj/machinery/light,/obj/effect/floor_decal/milspec/color/black/corner,/obj/effect/floor_decal/milspec/color/silver/corner{dir = 8},/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore) +"Cu" = (/obj/structure/cable/green{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor,/area/maintenance/stellardelight/deck2/portfore) +"Cv" = (/obj/machinery/gear_painter,/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 4},/turf/simulated/floor/tiled,/area/crew_quarters/locker) +"Cw" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/blue{icon_state = "1-2"},/turf/simulated/floor/tiled/eris/dark/monofloor,/area/bridge) +"Cx" = (/obj/structure/cable{icon_state = "2-4"},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/turf/simulated/floor/tiled,/area/stellardelight/deck2/aftstarboard) +"Cy" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/eris/dark/cargo,/area/crew_quarters/recreation_area) +"Cz" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/camera/network/engineering,/obj/structure/cable{icon_state = "2-4"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/monitoring) +"CA" = (/obj/structure/cable{icon_state = "1-4"},/turf/simulated/floor,/area/maintenance/stellardelight/deck2/portsolars) +"CB" = (/obj/machinery/atmospherics/pipe/simple/hidden/green{dir = 6},/obj/structure/cable{icon_state = "4-8"},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/monitoring) +"CC" = (/turf/simulated/floor/tiled,/area/stellardelight/deck2/starboard) +"CD" = (/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 4},/turf/simulated/floor/tiled,/area/stellardelight/deck2/aftport) +"CE" = (/obj/structure/cable/green{icon_state = "4-8"},/turf/simulated/floor/tiled/eris/cafe,/area/crew_quarters/kitchen) +"CF" = (/obj/structure/cable/green{icon_state = "2-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 8},/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/crew_quarters/locker) +"CG" = (/obj/machinery/computer/ship/helm,/obj/effect/floor_decal/milspec/color/green/half,/turf/simulated/floor/tiled/eris/dark/gray_platform,/area/bridge) +"CH" = (/obj/machinery/atmospherics/pipe/simple/visible/red{dir = 10},/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos/storage) +"CI" = (/obj/structure/table/woodentable,/obj/item/weapon/reagent_containers/food/condiment/small/peppermill{pixel_x = 2; pixel_y = 7},/obj/item/weapon/reagent_containers/food/condiment/small/saltshaker{pixel_x = -3; pixel_y = 4},/turf/simulated/floor/tiled/eris/steel/brown_platform,/area/crew_quarters/bar) +"CJ" = (/obj/structure/cable/green{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/turf/simulated/floor/tiled,/area/stellardelight/deck2/port) +"CK" = (/obj/structure/table/fancyblack,/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/obj/item/weapon/toy/desk/stellardelight{pixel_x = -11; pixel_y = -8},/turf/simulated/floor/carpet/sblucarpet,/area/stellardelight/deck2/briefingroom) +"CL" = (/obj/structure/table/reinforced,/obj/random/maintenance/clean,/obj/random/powercell,/obj/machinery/light{dir = 8},/turf/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/workshop) +"CM" = (/obj/structure/cable/orange{icon_state = "4-8"},/obj/machinery/atmospherics/unary/vent_pump/on,/obj/structure/cable/orange{icon_state = "1-8"},/obj/effect/landmark/vermin,/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/monitoring) +"CO" = (/obj/structure/cable/orange{icon_state = "4-8"},/turf/simulated/wall/bay/r_wall/steel,/area/maintenance/stellardelight/deck2/portsolars) +"CP" = (/obj/structure/cable/orange{icon_state = "2-8"},/turf/simulated/floor/airless,/area/stellardelight/deck2/exterior) +"CQ" = (/obj/machinery/power/pointdefense{id_tag = "sd_pd"},/obj/effect/floor_decal/industrial/warning/full,/obj/structure/cable/orange{icon_state = "0-4"},/turf/simulated/floor/airless,/area/stellardelight/deck2/exterior) +"CR" = (/obj/machinery/atmospherics/pipe/simple/visible/green,/obj/structure/cable/orange{icon_state = "1-2"},/obj/effect/landmark{name = "lightsout"},/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos/storage) +"CS" = (/obj/structure/bed/chair/office/dark{dir = 8},/obj/effect/landmark/start/cargo,/turf/simulated/floor/tiled/eris/steel/brown_platform,/area/quartermaster/storage) +"CT" = (/obj/machinery/atmospherics/pipe/tank/nitrogen,/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos/storage) +"CU" = (/obj/structure/cable/orange{icon_state = "1-2"},/turf/simulated/wall/bay/r_wall/steel,/area/maintenance/stellardelight/deck2/starboardsolars) +"CV" = (/obj/effect/floor_decal/industrial/outline,/obj/effect/floor_decal/steeldecal/steel_decals9,/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 8},/obj/machinery/vending/loadout/clothing,/obj/machinery/alarm/angled,/turf/simulated/floor/tiled/dark,/area/crew_quarters/locker) +"CW" = (/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 8},/turf/simulated/floor/tiled,/area/stellardelight/deck2/starboard) +"CY" = (/obj/structure/table/woodentable,/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/obj/item/weapon/reagent_containers/food/condiment/small/saltshaker{pixel_x = -3; pixel_y = 4},/obj/item/weapon/reagent_containers/food/condiment/small/peppermill{pixel_x = 2; pixel_y = 7},/turf/simulated/floor/tiled/eris/steel/brown_platform,/area/crew_quarters/bar) +"CZ" = (/obj/machinery/power/pointdefense{id_tag = "sd_pd"},/obj/effect/floor_decal/industrial/warning/full,/obj/structure/cable/green{icon_state = "2-4"},/obj/structure/cable/green{icon_state = "0-2"},/turf/simulated/floor/airless,/area/stellardelight/deck2/exterior) +"Da" = (/obj/structure/cable/green{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled,/area/stellardelight/deck2/central) +"Dc" = (/obj/machinery/atmospherics/pipe/simple/visible/green,/obj/structure/cable/orange{icon_state = "1-2"},/obj/effect/landmark/start/atmostech,/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos/storage) +"Dd" = (/obj/structure/table/standard,/obj/random/tech_supply,/obj/random/tech_supply,/obj/random/tech_supply,/obj/random/tech_supply,/obj/structure/symbol/sa{pixel_y = 32},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/turf/simulated/floor/tiled/techmaint,/area/storage/primary) +"De" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/item/device/radio/intercom{dir = 8; pixel_x = -24},/obj/structure/flora/pottedplant/decorative,/turf/simulated/floor/tiled/eris/dark/cargo,/area/crew_quarters/recreation_area) +"Df" = (/obj/machinery/atmospherics/unary/freezer{dir = 8},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/cmostore) +"Dg" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/obj/machinery/portable_atmospherics/canister/nitrogen,/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/monitoring) +"Dh" = (/obj/machinery/computer/med_data,/obj/machinery/status_display{pixel_y = 32},/obj/effect/floor_decal/milspec/color/white/half,/turf/simulated/floor/tiled/eris/dark/monofloor,/area/bridge) +"Di" = (/obj/structure/cable/green{icon_state = "1-4"},/turf/simulated/floor/airless,/area/stellardelight/deck2/exterior) +"Dj" = (/obj/machinery/smartfridge/drinks,/turf/simulated/floor/lino,/area/crew_quarters/bar) +"Dk" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/angled_bay/double/glass{door_color = "#ffffff"; id_tag = "MedbayFoyer W"; name = "Medbay Foyer"; req_access = list(5); req_one_access = list(5); stripe_color = "#5a96bb"},/turf/simulated/floor/tiled/steel_ridged,/area/stellardelight/deck2/triage) +"Dl" = (/obj/structure/bed/chair/bay/comfy/brown,/turf/simulated/floor/carpet,/area/crew_quarters/recreation_area) +"Dm" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/monitoring) +"Dn" = (/turf/simulated/floor/wood,/area/medical/psych) +"Do" = (/obj/machinery/seed_storage/garden,/obj/effect/floor_decal/milspec/color/green,/turf/simulated/floor/tiled,/area/hydroponics) +"Dq" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/hydroponics) +"Dr" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/cable/yellow{icon_state = "4-8"},/turf/simulated/floor/wood,/area/quartermaster/qm) +"Ds" = (/obj/structure/cable/orange{icon_state = "2-4"},/turf/simulated/floor/airless,/area/stellardelight/deck2/exterior) +"Dt" = (/obj/machinery/atmospherics/pipe/simple/heat_exchanging/junction,/obj/structure/cable/orange{icon_state = "1-2"},/turf/simulated/floor/airless,/area/stellardelight/deck2/exterior) +"Du" = (/obj/effect/floor_decal/industrial/outline,/obj/effect/floor_decal/steeldecal/steel_decals9,/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 8},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/obj/structure/undies_wardrobe,/obj/effect/landmark/vermin,/turf/simulated/floor/tiled/dark,/area/crew_quarters/locker) +"Dv" = (/obj/structure/cable/white{icon_state = "2-4"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/chemistry) +"Dw" = (/obj/machinery/atmospherics/unary/engine/bigger{dir = 1},/turf/simulated/floor/airless,/area/engineering/engine_eva) +"Dx" = (/obj/structure/table/woodentable,/obj/item/device/flashlight/lamp/green{pixel_x = -5; pixel_y = 4},/obj/item/weapon/clipboard,/turf/simulated/floor/carpet/blue,/area/medical/psych) +"Dy" = (/obj/structure/table/standard,/obj/item/device/defib_kit/loaded,/obj/item/weapon/reagent_containers/spray/cleaner{desc = "Someone has crossed out the Space from Space Cleaner and written in Surgery. 'Do not remove under punishment of death!!!' is scrawled on the back."; name = "Surgery Cleaner"; pixel_x = 2; pixel_y = 2},/obj/item/device/radio/intercom/department/medbay{dir = 4; pixel_x = 24},/turf/simulated/floor/tiled/white,/area/medical/surgery) +"Dz" = (/obj/machinery/door/firedoor,/obj/structure/cable/white{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/door/airlock/angled_bay/standard/glass{door_color = "#ffffff"; name = "Chemistry"; req_access = list(33); stripe_color = "#5a96bb"},/turf/simulated/floor/tiled/steel_ridged,/area/medical/chemistry) +"DA" = (/obj/machinery/light{dir = 4},/turf/simulated/floor/tiled/steel_grid,/area/stellardelight/deck2/aftport) +"DB" = (/turf/simulated/floor,/area/maintenance/stellardelight/deck2/atmos) +"DC" = (/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 4},/obj/machinery/firealarm/angled{dir = 4},/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore) +"DD" = (/obj/machinery/atmospherics/unary/vent_pump/on,/obj/machinery/alarm/freezer{pixel_y = 24},/turf/simulated/floor/tiled/freezer/cold,/area/crew_quarters/kitchen) +"DE" = (/obj/machinery/atmospherics/pipe/simple/hidden/green,/obj/machinery/alarm/angled{dir = 8},/turf/simulated/floor/tiled/techfloor,/area/stellardelight/deck2/o2production) +"DF" = (/obj/machinery/atmospherics/portables_connector/fuel,/obj/machinery/light/small{dir = 4},/obj/effect/floor_decal/industrial/outline/red,/turf/simulated/floor,/area/stellardelight/deck2/fuelstorage) +"DG" = (/obj/machinery/power/apc/angled{dir = 8},/obj/structure/cable/blue{icon_state = "0-2"},/turf/simulated/floor/wood,/area/crew_quarters/captain) +"DH" = (/obj/structure/cable/green{icon_state = "1-4"},/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/structure/cable{icon_state = "2-8"},/turf/simulated/floor,/area/maintenance/stellardelight/deck2/portsolars) +"DI" = (/obj/machinery/camera/network/civilian{dir = 1},/turf/simulated/floor/tiled/eris/steel/brown_platform,/area/crew_quarters/bar) +"DJ" = (/obj/machinery/portable_atmospherics/canister/oxygen/prechilled,/obj/machinery/atmospherics/portables_connector{dir = 8},/obj/machinery/power/apc/angled{dir = 1},/obj/structure/cable/white{icon_state = "0-8"},/turf/simulated/floor,/area/medical/cryo) +"DL" = (/turf/simulated/floor/carpet/turcarpet,/area/crew_quarters/recreation_area) +"DM" = (/obj/structure/cable/yellow{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor/tiled/eris/steel/brown_platform,/area/quartermaster/storage) +"DN" = (/obj/structure/window/reinforced{dir = 4; pixel_x = 4},/obj/machinery/light{dir = 1},/obj/structure/bed/chair/comfy/brown,/turf/simulated/floor/glass/reinforced,/area/stellardelight/deck2/fore) +"DO" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/item/device/radio/intercom{dir = 4; pixel_x = 24},/obj/structure/flora/pottedplant/decorative,/turf/simulated/floor/tiled/eris/dark/cargo,/area/crew_quarters/recreation_area) +"DP" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/turf/simulated/floor/tiled/freezer/cold,/area/crew_quarters/kitchen) +"DQ" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/disposalpipe/sortjunction/flipped{dir = 1; name = "Atmospherics"; sortType = "Atmospherics"},/turf/simulated/floor/tiled,/area/stellardelight/deck2/aftport) +"DR" = (/obj/machinery/light/small{dir = 4},/obj/machinery/atmospherics/pipe/tank/phoron/full{dir = 8},/turf/simulated/floor,/area/stellardelight/deck2/fuelstorage) +"DS" = (/obj/structure/bed/chair/bay/comfy/brown,/obj/effect/landmark/start/clown,/turf/simulated/floor/carpet,/area/crew_quarters/recreation_area) +"DT" = (/obj/machinery/hologram/holopad,/turf/simulated/floor/tiled/eris/dark/techfloor_grid,/area/engineering/storage) +"DV" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/sign/department/cargo{pixel_y = -32},/turf/simulated/floor/tiled/eris/steel/brown_platform,/area/quartermaster/storage) +"DW" = (/obj/structure/cable/green{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/effect/landmark{name = "lightsout"},/obj/machinery/hologram/holopad,/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore) +"DX" = (/obj/machinery/atmospherics/pipe/simple/hidden/yellow{dir = 9},/obj/structure/cable{icon_state = "2-8"},/turf/simulated/floor,/area/stellardelight/deck2/combustionworkshop) +"DY" = (/obj/machinery/atmospherics/pipe/simple/hidden/green{dir = 5},/obj/structure/cable/orange{icon_state = "1-4"},/obj/structure/cable/orange{icon_state = "4-8"},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/monitoring) +"DZ" = (/obj/effect/floor_decal/industrial/warning{dir = 4},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/eris/steel/cargo,/area/quartermaster/storage) +"Ea" = (/obj/machinery/atmospherics/unary/vent_pump/high_volume{dir = 8; frequency = 1379; id_tag = "d2_starmaint_airpump"},/obj/machinery/embedded_controller/radio/airlock/airlock_controller{id_tag = "d2_starmaint_airlock"; pixel_y = 24; req_one_access = list(13); tag_airpump = "d2_starmaint_airpump"; tag_chamber_sensor = "d2_starmaint_sensor"; tag_exterior_door = "d2_starmaint_exterior"; tag_interior_door = "d2_starmaint_interior"},/obj/machinery/airlock_sensor{dir = 1; id_tag = "d2_starmaint_sensor"; pixel_y = -24; req_access = list(13)},/obj/machinery/light/small,/obj/structure/cable/orange{icon_state = "1-2"},/obj/structure/cable{icon_state = "4-8"},/turf/simulated/floor,/area/maintenance/stellardelight/deck2/starboardsolars) +"Ec" = (/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 1},/turf/simulated/floor/tiled,/area/stellardelight/deck2/port) +"Ed" = (/obj/machinery/light,/obj/structure/table/reinforced,/obj/item/weapon/packageWrap,/obj/item/weapon/hand_labeler,/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/obj/item/weapon/tape_roll,/obj/item/weapon/clipboard,/obj/machinery/recharger{pixel_y = 4},/turf/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/engineering_monitoring) +"Ee" = (/obj/machinery/optable,/turf/simulated/floor/tiled/white,/area/medical/surgery) +"Ef" = (/turf/simulated/open,/area/stellardelight/deck2/aftport) +"Eg" = (/obj/structure/cable/orange{icon_state = "2-4"},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/turf/simulated/floor/tiled/eris/dark/gray_platform,/area/engineering/workshop) +"Eh" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/bed/chair/office/dark{dir = 4},/turf/simulated/floor/tiled/eris/steel/cargo,/area/quartermaster/storage) +"Ei" = (/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/hidden/green{dir = 4},/obj/effect/landmark/start/atmostech,/turf/simulated/floor/tiled/techfloor,/area/stellardelight/deck2/o2production) +"Ej" = (/obj/machinery/door/firedoor/glass/hidden/steel,/obj/structure/cable/green{icon_state = "1-2"},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 8},/obj/structure/sign/directions/stairs_down{dir = 1; pixel_x = -32; pixel_y = 6},/obj/structure/sign/directions/stairs_up{pixel_x = -32},/turf/simulated/floor/tiled,/area/stellardelight/deck2/aftstarboard) +"Ek" = (/obj/machinery/atmospherics/pipe/simple/visible/red,/obj/machinery/meter,/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos/monitoring) +"El" = (/obj/structure/cable/orange{icon_state = "1-4"},/turf/simulated/wall/bay/r_wall/steel,/area/maintenance/stellardelight/deck2/starboardsolars) +"Em" = (/obj/machinery/portable_atmospherics/powered/scrubber,/obj/machinery/atmospherics/portables_connector{dir = 4},/obj/structure/sign/poster{dir = 1},/turf/simulated/floor,/area/engineering/atmos/monitoring) +"En" = (/obj/structure/cable/blue{icon_state = "2-4"},/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/turf/simulated/floor/tiled,/area/stellardelight/deck2/starboard) +"Eo" = (/obj/effect/floor_decal/corner_steel_grid{dir = 10},/obj/machinery/sleep_console{dir = 4},/turf/simulated/floor/tiled/eris/white/cargo,/area/stellardelight/deck2/triage) +"Ep" = (/obj/structure/bed/chair/bay/comfy/brown,/obj/effect/landmark/start/mime,/turf/simulated/floor/carpet,/area/crew_quarters/recreation_area) +"Eq" = (/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos/monitoring) +"Er" = (/obj/effect/floor_decal/industrial/danger{dir = 5},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/monitoring) +"Es" = (/obj/structure/cable/green{icon_state = "1-4"},/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/machinery/hologram/holopad,/turf/simulated/floor/tiled,/area/stellardelight/deck2/port) +"Et" = (/obj/machinery/portable_atmospherics/powered/scrubber,/obj/machinery/atmospherics/portables_connector{dir = 4},/obj/machinery/light{dir = 8},/turf/simulated/floor,/area/engineering/atmos/monitoring) +"Eu" = (/obj/effect/shuttle_landmark{base_area = /area/quartermaster/storage; base_turf = /turf/simulated/floor/reinforced; docking_controller = "cargo_bay"; landmark_tag = "supply_station"; name = "Ship Cargo Bay"},/turf/simulated/floor/reinforced,/area/quartermaster/storage) +"Ev" = (/obj/structure/cable/green{icon_state = "4-8"},/obj/structure/cable/green{icon_state = "1-4"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor,/area/maintenance/stellardelight/deck2/portfore) +"Ew" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/angled_bay/double/glass/common{dir = 8; name = "Escape Pod"},/turf/simulated/floor/tiled/steel_ridged,/area/stellardelight/deck2/starboard) +"Ex" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/angled_bay/hatch{door_color = "#ffffff"; name = "Gas Storage"; req_one_access = list(5,24); stripe_color = "#5a96bb"},/turf/simulated/floor/tiled/steel_ridged,/area/medical/cryo) +"Ey" = (/obj/machinery/door/firedoor/glass,/obj/structure/window/bay/reinforced,/obj/structure/low_wall/bay/reinforced/steel,/turf/simulated/floor,/area/storage/primary) +"Ez" = (/obj/structure/table/woodentable,/obj/item/weapon/gun/projectile/shotgun/doublebarrel,/obj/item/weapon/paper{info = "This permit signifies that the Bartender is permitted to posess this firearm in the bar, and ONLY the bar. Failure to adhere to this permit will result in confiscation of the weapon and possibly arrest."; name = "Shotgun permit"},/obj/item/ammo_magazine/ammo_box/b12g/beanbag,/turf/simulated/floor/wood,/area/stellardelight/deck2/barbackroom) +"EA" = (/obj/machinery/light/floortube{dir = 8; pixel_x = -6},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/monotile,/area/hydroponics) +"EC" = (/obj/structure/table/woodentable,/obj/item/weapon/paper_bin{pixel_y = 4},/obj/item/weapon/pen{pixel_y = 4},/turf/simulated/floor/carpet/blue,/area/medical/psych) +"ED" = (/obj/machinery/photocopier/faxmachine{department = "Captain's Office"},/obj/structure/table/darkglass,/obj/structure/sign/painting/library_secure{pixel_x = 30},/turf/simulated/floor/wood,/area/crew_quarters/captain) +"EE" = (/obj/effect/floor_decal/milspec/color/silver/corner{dir = 4},/obj/effect/floor_decal/milspec/color/black/corner{dir = 1},/obj/machinery/newscaster{pixel_y = 28},/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore) +"EF" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/wall/bay/r_wall/orange,/area/stellardelight/deck2/o2production) +"EG" = (/obj/structure/cable/green{icon_state = "2-4"},/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/turf/simulated/floor,/area/maintenance/stellardelight/deck2/portaft) +"EH" = (/obj/effect/floor_decal/industrial/outline/yellow,/obj/structure/closet/crate,/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/obj/machinery/camera/network/cargo{dir = 4},/turf/simulated/floor/tiled/eris/steel/cargo,/area/quartermaster/storage) +"EI" = (/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 8},/obj/structure/closet/emergsuit_wall{dir = 8; pixel_x = -27},/turf/simulated/floor/tiled,/area/stellardelight/deck2/port) +"EJ" = (/obj/machinery/computer/crew{dir = 4},/obj/item/device/radio/intercom{dir = 8; pixel_x = -24},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/reception) +"EK" = (/obj/effect/floor_decal/industrial/outline/yellow,/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/eris/steel/cargo,/area/quartermaster/storage) +"EL" = (/obj/structure/table/standard,/obj/item/device/healthanalyzer,/obj/machinery/light{dir = 4},/obj/machinery/atmospherics/unary/vent_scrubber/on,/turf/simulated/floor/tiled/white,/area/medical/surgery) +"EM" = (/obj/structure/cable/yellow{icon_state = "2-4"},/obj/machinery/light{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/turf/simulated/floor/tiled/eris/steel/brown_platform,/area/quartermaster/storage) +"EN" = (/obj/effect/floor_decal/emblem/stellardelight{dir = 6},/obj/effect/floor_decal/milspec/color/blue/half,/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore) +"EO" = (/obj/structure/bed/double/padded,/obj/item/weapon/bedsheet/captaindouble,/obj/structure/curtain/black,/obj/effect/landmark/start/captain,/turf/simulated/floor/wood,/area/crew_quarters/captain) +"EP" = (/obj/structure/cable/yellow{icon_state = "4-8"},/turf/simulated/floor/airless,/area/engineering/engine_room) +"EQ" = (/obj/machinery/atmospherics/pipe/tank/phoron/full{dir = 4},/turf/simulated/floor,/area/stellardelight/deck2/fuelstorage) +"ER" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/angled_bay/standard/glass{dir = 4; door_color = "#e6ab22"; name = "Engineering Hard Storage"; req_access = list(11); stripe_color = "#913013"},/obj/structure/cable{icon_state = "4-8"},/turf/simulated/floor/tiled/steel_ridged,/area/engineering/storage) +"ES" = (/obj/machinery/portable_atmospherics/hydroponics,/obj/effect/floor_decal/milspec/color/green/half{dir = 9},/turf/simulated/floor/tiled,/area/hydroponics) +"ET" = (/obj/effect/floor_decal/industrial/warning,/obj/machinery/conveyor{id = "cargoload"},/turf/simulated/floor/tiled/eris/steel/cargo,/area/quartermaster/storage) +"EU" = (/obj/structure/table/glass,/obj/random/medical{pixel_x = -4; pixel_y = 5},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/stellardelight/deck2/triage) +"EV" = (/obj/item/weapon/stool/padded{dir = 8},/turf/simulated/floor/tiled/eris/steel/brown_platform,/area/crew_quarters/bar) +"EW" = (/obj/structure/cable/green{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/turf/simulated/floor/tiled,/area/stellardelight/deck2/aftport) +"EX" = (/obj/random/trash_pile,/turf/simulated/floor,/area/maintenance/stellardelight/deck2/starboardaft) +"EZ" = (/obj/machinery/vending/tool,/obj/machinery/camera/network/civilian,/turf/simulated/floor/tiled/techmaint,/area/storage/primary) +"Fa" = (/obj/structure/cable{icon_state = "1-2"},/turf/simulated/floor,/area/stellardelight/deck2/combustionworkshop) +"Fb" = (/obj/structure/cable/green{icon_state = "1-8"},/turf/simulated/floor/tiled/eris/steel/brown_platform,/area/crew_quarters/bar) +"Fc" = (/obj/structure/cable/green{icon_state = "4-8"},/obj/structure/cable/green{icon_state = "1-8"},/obj/structure/cable/green{icon_state = "1-4"},/obj/machinery/light/small,/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor,/area/maintenance/stellardelight/deck2/portfore) +"Fd" = (/obj/structure/cable/orange{icon_state = "2-4"},/obj/structure/cable/orange{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled/eris/dark/gray_platform,/area/engineering/workshop) +"Fe" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden,/obj/structure/cable{icon_state = "1-2"},/obj/structure/cable{icon_state = "4-8"},/obj/structure/sign/vacuum{pixel_x = -32},/turf/simulated/floor,/area/maintenance/stellardelight/deck2/portsolars) +"Ff" = (/obj/machinery/door/firedoor/glass,/obj/structure/window/bay/reinforced,/obj/machinery/door/blast/angled/open{dir = 4; id = "atmoswindowlockdown"},/obj/structure/low_wall/bay/reinforced/steel,/turf/simulated/floor,/area/stellardelight/deck2/combustionworkshop) +"Fg" = (/obj/structure/cable/orange{icon_state = "2-4"},/turf/simulated/wall/bay/r_wall/steel,/area/maintenance/stellardelight/deck2/starboardsolars) +"Fh" = (/obj/structure/cable/orange{icon_state = "1-2"},/obj/structure/cable/orange{icon_state = "1-4"},/obj/structure/cable/orange{icon_state = "2-4"},/turf/simulated/floor/airless,/area/stellardelight/deck2/exterior) +"Fi" = (/obj/machinery/atmospherics/pipe/simple/hidden/fuel{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/machinery/embedded_controller/radio/simple_docking_controller{frequency = 1380; id_tag = "cargo_bay"; pixel_y = 24; req_one_access = null; tag_door = null},/obj/structure/cable{icon_state = "4-8"},/turf/simulated/floor/tiled/eris/steel/cargo,/area/quartermaster/storage) +"Fk" = (/obj/structure/bed/chair/comfy/blue{dir = 1},/turf/simulated/floor/carpet/sblucarpet,/area/stellardelight/deck2/briefingroom) +"Fl" = (/obj/machinery/atmospherics/pipe/manifold/hidden/red{dir = 4},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/monitoring) +"Fm" = (/obj/structure/closet/secure_closet/freezer/fridge,/obj/machinery/power/apc/angled{dir = 1},/obj/structure/cable/green{icon_state = "0-2"},/turf/simulated/floor/tiled/eris/cafe,/area/crew_quarters/kitchen) +"Fn" = (/obj/structure/cable{icon_state = "1-2"},/turf/simulated/floor/wood,/area/quartermaster/qm) +"Fo" = (/obj/machinery/power/solar_control{dir = 4},/obj/structure/cable{icon_state = "0-4"},/obj/structure/cable{icon_state = "1-2"},/turf/simulated/floor,/area/maintenance/stellardelight/deck2/portsolars) +"Fq" = (/obj/structure/table/standard,/obj/item/device/healthanalyzer,/obj/machinery/light{dir = 8},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/turf/simulated/floor/tiled/white,/area/medical/surgery) +"Fr" = (/obj/structure/table/woodentable,/obj/item/weapon/folder/white,/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/turf/simulated/floor/carpet/blue,/area/medical/psych) +"Fs" = (/obj/machinery/alarm/angled{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/structure/cable/cyan{icon_state = "1-2"},/turf/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/locker_room) +"Ft" = (/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/chemistry) +"Fv" = (/obj/machinery/atmospherics/pipe/simple/hidden/green,/obj/structure/disposalpipe/segment,/obj/structure/cable/orange{icon_state = "1-2"},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/monitoring) +"Fw" = (/obj/structure/table/gamblingtable,/obj/machinery/light/floortube{pixel_y = -6},/obj/item/weapon/material/ashtray/glass,/turf/simulated/floor/carpet,/area/crew_quarters/recreation_area) +"Fx" = (/obj/machinery/atmospherics/pipe/simple/hidden/yellow{dir = 10},/obj/machinery/button/ignition{id = "castfireball"; pixel_y = 28},/obj/machinery/light{dir = 4},/obj/machinery/button/remote/blast_door{id = "burnchamberlockdown"; name = "Window Lockdown"; pixel_x = -9; pixel_y = 31},/obj/machinery/button/remote/blast_door{id = "burnchamberlockvent"; name = "Chamber Vent"; pixel_x = -1; pixel_y = 37},/obj/machinery/computer/general_air_control/supermatter_core{input_tag = "cooling_in"; name = "Engine Cooling Control"; output_tag = "cooling_out"; sensors = list("burn_chamber" = "Burn Chamber"); throwpass = 1},/turf/simulated/floor,/area/stellardelight/deck2/combustionworkshop) +"Fy" = (/obj/item/weapon/stool/padded{dir = 1},/turf/simulated/floor/tiled/eris/dark/cargo,/area/crew_quarters/recreation_area) +"Fz" = (/obj/structure/cable/orange{icon_state = "1-2"},/turf/simulated/wall/bay/r_wall/steel,/area/maintenance/stellardelight/deck2/portsolars) +"FA" = (/obj/machinery/light{dir = 4},/obj/machinery/vending/nifsoft_shop,/obj/machinery/item_bank{pixel_y = 28},/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore) +"FB" = (/obj/structure/cable/green{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/turf/simulated/floor/wood,/area/stellardelight/deck2/barbackroom) +"FC" = (/obj/structure/closet/secure_closet/bar,/obj/machinery/alarm/angled{dir = 4},/turf/simulated/floor/wood,/area/stellardelight/deck2/barbackroom) +"FD" = (/obj/machinery/atmospherics/unary/outlet_injector{dir = 4; frequency = 1441; id = "atmos_out"; use_power = 1},/turf/simulated/floor/airless,/area/stellardelight/deck2/exterior) +"FE" = (/obj/machinery/sleep_console{dir = 4},/obj/effect/floor_decal/corner_steel_grid{dir = 10},/turf/simulated/floor/tiled/eris/white/cargo,/area/stellardelight/deck2/triage) +"FF" = (/obj/structure/particle_accelerator/particle_emitter/center{dir = 4},/turf/simulated/floor/tiled/eris/dark/danger,/area/engineering/engine_room) +"FG" = (/obj/effect/floor_decal/industrial/warning/corner{dir = 4},/obj/structure/cable/white{icon_state = "4-8"},/turf/simulated/floor/tiled/eris/white/cargo,/area/stellardelight/deck2/triage) +"FH" = (/obj/structure/medical_stand,/turf/simulated/floor/tiled/eris/white/bluecorner,/area/stellardelight/deck2/triage) +"FI" = (/obj/structure/cable/green{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/effect/mouse_hole_spawner{dir = 4},/turf/simulated/floor,/area/maintenance/stellardelight/deck2/portaft) +"FJ" = (/obj/machinery/door/firedoor/glass,/obj/structure/cable/green{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/door/airlock/angled_bay/standard/glass{door_color = "#9c9c9c"; name = "Bar"; stripe_color = "#89bd66"},/turf/simulated/floor/tiled/steel_ridged,/area/crew_quarters/bar) +"FK" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/obj/structure/cable/orange{icon_state = "1-8"},/obj/structure/table/rack,/obj/random/maintenance/cargo,/obj/random/maintenance/engineering,/obj/random/maintenance/engineering,/obj/random/maintenance/engineering,/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/monitoring) +"FL" = (/obj/machinery/atmospherics/pipe/manifold/hidden/cyan,/obj/structure/cable/orange{icon_state = "4-8"},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/monitoring) +"FM" = (/obj/item/weapon/stool/padded{dir = 8},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/eris/steel/brown_platform,/area/crew_quarters/bar) +"FN" = (/obj/structure/table/rack/steel,/obj/item/weapon/circuitboard/grinder{pixel_x = -4; pixel_y = 4},/obj/item/weapon/circuitboard/grill{pixel_x = -3; pixel_y = 3},/obj/item/weapon/circuitboard/fryer{pixel_x = -2; pixel_y = 2},/obj/item/weapon/circuitboard/oven{pixel_x = -1; pixel_y = 1},/obj/item/weapon/circuitboard/microwave,/obj/item/weapon/circuitboard/cerealmaker{pixel_x = 1; pixel_y = -1},/obj/item/weapon/circuitboard/candymachine{pixel_x = 2; pixel_y = -2},/obj/item/weapon/circuitboard/biogenerator{pixel_x = 3; pixel_y = -3},/obj/machinery/power/apc/angled{dir = 4},/obj/structure/cable/orange{icon_state = "0-8"},/turf/simulated/floor/tiled/eris/dark/techfloor_grid,/area/storage/tech) +"FP" = (/obj/machinery/light,/obj/effect/floor_decal/steeldecal/steel_decals5,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/stellardelight/deck2/port) +"FQ" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled,/area/stellardelight/deck2/starboard) +"FR" = (/obj/effect/floor_decal/industrial/outline,/obj/effect/floor_decal/steeldecal/steel_decals9,/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 8},/obj/machinery/vending/loadout/overwear,/obj/machinery/camera/network/civilian,/turf/simulated/floor/tiled/dark,/area/crew_quarters/locker) +"FS" = (/obj/structure/cable/green{icon_state = "0-8"},/obj/machinery/power/apc/angled{dir = 1; name = "night shift APC"; nightshift_setting = 2},/turf/simulated/floor,/area/maintenance/stellardelight/deck2/portaft) +"FT" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/orange{icon_state = "2-4"},/turf/simulated/floor,/area/maintenance/stellardelight/deck2/starboardsolars) +"FU" = (/obj/structure/cable/green{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals_central5{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore) +"FV" = (/obj/machinery/light{dir = 4},/turf/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/engine_eva) +"FW" = (/obj/effect/floor_decal/industrial/warning{dir = 1},/obj/machinery/light/floortube{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/eris/steel/cargo,/area/quartermaster/storage) +"FX" = (/turf/simulated/floor/tiled,/area/stellardelight/deck2/aftport) +"FY" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/obj/structure/closet/crate/bin{anchored = 1},/turf/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/engine_eva) +"FZ" = (/obj/machinery/light/small{dir = 8},/obj/structure/cable/green{icon_state = "2-4"},/obj/machinery/alarm/angled{dir = 8},/obj/structure/cable/green{icon_state = "1-2"},/turf/simulated/floor,/area/maintenance/stellardelight/deck2/starboardfore) +"Ga" = (/obj/structure/closet/emergsuit_wall{dir = 8; pixel_x = -27},/obj/effect/floor_decal/milspec/color/black/corner{dir = 1},/obj/effect/floor_decal/milspec/color/silver/corner{dir = 8},/obj/effect/landmark/vines,/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore) +"Gb" = (/obj/structure/window/reinforced{dir = 8; pixel_x = -4},/obj/structure/bed/chair/comfy/brown{dir = 1},/turf/simulated/floor/glass/reinforced,/area/stellardelight/deck2/fore) +"Gc" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/item/device/radio/intercom{dir = 8; pixel_x = -24},/turf/simulated/floor/tiled,/area/stellardelight/deck2/port) +"Gd" = (/obj/structure/cable/blue{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/effect/floor_decal/milspec/color/blue/half{dir = 8},/turf/simulated/floor/tiled,/area/stellardelight/deck2/starboard) +"Ge" = (/obj/effect/floor_decal/steeldecal/steel_decals6{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals6{dir = 1},/obj/structure/cable/white{icon_state = "1-2"},/turf/simulated/floor/tiled/white,/area/medical/surgery) +"Gf" = (/turf/simulated/wall/bay/orange,/area/maintenance/stellardelight/substation/engineering) +"Gg" = (/obj/structure/bed/chair/comfy/blue{dir = 8},/turf/simulated/floor/carpet/sblucarpet,/area/stellardelight/deck2/briefingroom) +"Gh" = (/obj/machinery/atmospherics/binary/pump{name = "CO2 to O2 Generators"},/obj/structure/cable/orange{icon_state = "1-2"},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/monitoring) +"Gi" = (/obj/structure/cable/green{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 6},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 1},/turf/simulated/floor/tiled/eris/cafe,/area/crew_quarters/kitchen) +"Gj" = (/obj/effect/floor_decal/milspec/color/black/corner{dir = 1},/obj/effect/floor_decal/milspec/color/silver/corner{dir = 4},/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore) +"Gl" = (/obj/machinery/light/small{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/structure/cable/orange{icon_state = "1-2"},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/monitoring) +"Gn" = (/obj/structure/table/woodentable,/turf/simulated/floor/tiled/eris/steel/brown_platform,/area/crew_quarters/bar) +"Go" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/cable/orange{icon_state = "4-8"},/turf/simulated/floor/airless,/area/stellardelight/deck2/exterior) +"Gp" = (/obj/structure/cable{icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/machinery/hologram/holopad,/turf/simulated/floor/tiled,/area/stellardelight/deck2/starboard) +"Gq" = (/obj/structure/lattice,/obj/machinery/door/firedoor/glass,/turf/simulated/open,/area/maintenance/stellardelight/deck2/portfore) +"Gr" = (/obj/structure/cable/white{icon_state = "4-8"},/obj/machinery/light{dir = 1},/turf/simulated/floor/carpet/blue,/area/medical/psych) +"Gs" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/angled_bay/standard/glass{dir = 4; name = "glass airlock"},/turf/simulated/floor/tiled/steel_ridged,/area/stellardelight/deck2/aftport) +"Gt" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/status_display{pixel_x = 32},/turf/simulated/floor/tiled/eris/white/danger,/area/stellardelight/deck2/starboard) +"Gu" = (/obj/structure/cable/cyan{icon_state = "4-8"},/turf/simulated/floor/airless,/area/engineering/engine_room) +"Gv" = (/obj/structure/cable/green{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/turf/simulated/floor,/area/maintenance/stellardelight/deck2/portfore) +"Gw" = (/obj/effect/floor_decal/industrial/warning{dir = 1},/obj/machinery/hologram/holopad,/obj/structure/cable/white{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/white,/area/medical/surgery2) +"Gx" = (/obj/structure/sign/deck2{pixel_y = 32},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/obj/item/device/radio/intercom{dir = 4; pixel_x = 24},/obj/structure/flora/pottedplant/decorative,/turf/simulated/floor/tiled,/area/stellardelight/deck2/aftport) +"Gy" = (/obj/structure/table/steel_reinforced,/obj/machinery/door/firedoor/glass,/obj/machinery/door/blast/angled_shutter{id = "kitchenhallway"; layer = 3.3; name = "Kitchen Shutters"},/turf/simulated/floor/tiled/eris/cafe,/area/crew_quarters/kitchen) +"Gz" = (/obj/machinery/computer/general_air_control{frequency = 1443; level = 3; name = "Distribution and Waste Monitor"; sensors = list("dist_main_meter" = "Surface - Distribution Loop", "scrub_main_meter" = "Surface - Scrubbers Loop", "mair_main_meter" = "Surface - Mixed Air Tank", "dist_aux_meter" = "Station - Distribution Loop", "scrub_aux_meter" = "Station - Scrubbers Loop", "mair_aux_meter" = "Station - Mixed Air Tank", "mair_mining_meter" = "Mining Outpost - Mixed Air Tank")},/obj/machinery/power/apc/angled{dir = 1},/obj/structure/cable/orange{icon_state = "0-2"},/turf/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/engineering_monitoring) +"GA" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/effect/floor_decal/steeldecal/steel_decals6{dir = 4},/turf/simulated/floor/tiled/eris/dark/cargo,/area/crew_quarters/recreation_area) +"GB" = (/obj/structure/cable/green{icon_state = "2-8"},/obj/structure/cable/green{icon_state = "2-4"},/turf/simulated/floor/tiled/eris/cafe,/area/crew_quarters/kitchen) +"GD" = (/obj/machinery/door/firedoor/glass,/obj/machinery/atmospherics/pipe/simple/hidden/green,/obj/structure/disposalpipe/segment,/obj/structure/cable/orange{icon_state = "1-2"},/obj/machinery/door/airlock/angled_bay/standard/glass{door_color = "#e6ab22"; name = "O2 Production"; req_access = list(24); stripe_color = "#2ebfbd"},/turf/simulated/floor/tiled/steel_ridged,/area/stellardelight/deck2/o2production) +"GE" = (/obj/effect/floor_decal/industrial/outline/yellow,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/turf/simulated/floor/tiled/eris/steel/brown_platform,/area/quartermaster/storage) +"GF" = (/obj/machinery/atmospherics/pipe/simple/hidden/cyan,/obj/structure/cable/white{icon_state = "1-2"},/obj/effect/floor_decal/steeldecal/steel_decals10{dir = 8},/turf/simulated/floor/tiled/eris/white/cargo,/area/stellardelight/deck2/triage) +"GG" = (/obj/structure/cable/green{icon_state = "2-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/structure/cable/green{icon_state = "4-8"},/turf/simulated/floor/tiled/techmaint,/area/storage/primary) +"GH" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/turf/simulated/floor/tiled/eris/dark/gray_platform,/area/engineering/workshop) +"GI" = (/obj/effect/landmark{name = "Observer-Start"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/effect/floor_decal/emblem/stellardelight/center,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore) +"GJ" = (/obj/structure/cable/orange{icon_state = "1-2"},/turf/simulated/wall/bay/r_wall/steel,/area/maintenance/stellardelight/deck2/atmos) +"GK" = (/obj/structure/closet,/obj/machinery/atmospherics/pipe/simple/hidden,/obj/structure/cable/orange{icon_state = "4-8"},/turf/simulated/floor,/area/maintenance/stellardelight/deck2/portsolars) +"GL" = (/obj/machinery/status_display{pixel_y = 32},/obj/structure/closet/crate/bin{anchored = 1},/turf/simulated/floor/tiled/eris/dark/cargo,/area/crew_quarters/recreation_area) +"GM" = (/obj/machinery/portable_atmospherics/hydroponics,/obj/effect/floor_decal/milspec/color/green/half{dir = 5},/turf/simulated/floor/tiled,/area/hydroponics) +"GN" = (/obj/structure/bed/chair/bay/shuttle{dir = 4},/obj/machinery/alarm/angled,/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck2/starboardescape) +"GO" = (/obj/machinery/atmospherics/pipe/simple/hidden,/obj/machinery/power/terminal{dir = 8},/obj/structure/cable,/turf/simulated/floor,/area/maintenance/stellardelight/deck2/portsolars) +"GP" = (/obj/structure/cable/blue{icon_state = "2-4"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,/obj/structure/cable/blue{icon_state = "4-8"},/turf/simulated/floor/tiled/eris/dark/gray_platform,/area/bridge) +"GQ" = (/obj/structure/cable/blue{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/obj/structure/closet/firecloset,/obj/random/snack,/turf/simulated/floor,/area/maintenance/stellardelight/deck2/starboardfore) +"GR" = (/obj/structure/cable/orange{icon_state = "1-8"},/turf/simulated/wall/bay/r_wall/steel,/area/maintenance/stellardelight/deck2/starboardsolars) +"GS" = (/obj/effect/floor_decal/emblem/stellardelight{dir = 10},/obj/effect/floor_decal/milspec/color/blue/half,/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore) +"GT" = (/obj/structure/cable/white{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 10},/obj/effect/floor_decal/steeldecal/steel_decals4,/turf/simulated/floor/tiled/eris/white/bluecorner,/area/stellardelight/deck2/triage) +"GU" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/turf/simulated/floor/tiled/techfloor,/area/stellardelight/deck2/fuelstorage) +"GV" = (/obj/structure/bed/chair/comfy/blue{dir = 4},/turf/simulated/floor/carpet/sblucarpet,/area/stellardelight/deck2/briefingroom) +"GW" = (/obj/machinery/power/apc/angled{dir = 4},/obj/structure/cable/blue,/obj/structure/table/steel_reinforced,/obj/item/weapon/paper_bin{pixel_y = 5},/obj/item/weapon/pen,/turf/simulated/floor/tiled/eris/dark/monofloor,/area/bridge) +"GX" = (/obj/structure/cable/green{icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/lino,/area/crew_quarters/bar) +"GY" = (/obj/machinery/door/firedoor/glass/hidden/steel,/obj/effect/floor_decal/milspec/color/green/half{dir = 8},/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore) +"GZ" = (/obj/machinery/computer/security/engineering{dir = 1},/obj/machinery/light/floortube{pixel_y = -6},/turf/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/engineering_monitoring) +"Ha" = (/obj/machinery/icecream_vat,/turf/simulated/floor/tiled/freezer/cold,/area/crew_quarters/kitchen) +"Hb" = (/obj/item/modular_computer/console/preset/command,/obj/machinery/camera/network/command,/obj/effect/floor_decal/milspec/color/blue/half,/turf/simulated/floor/tiled/eris/dark/gray_platform,/area/bridge) +"Hc" = (/obj/structure/table/reinforced,/obj/item/weapon/reagent_containers/glass/beaker/large,/obj/item/weapon/reagent_containers/dropper,/obj/machinery/light,/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/chemistry) +"Hd" = (/turf/simulated/wall/bay/r_wall/steel,/area/stellardelight/deck2/starboard) +"He" = (/obj/effect/floor_decal/industrial/outline/yellow,/obj/vehicle/train/engine{dir = 1},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/obj/effect/landmark/vermin,/turf/simulated/floor/tiled/eris/steel/cargo,/area/quartermaster/storage) +"Hf" = (/obj/machinery/power/emitter{anchored = 1; icon_state = "emitter1"; state = 1},/obj/structure/cable/cyan{icon_state = "4-8"},/obj/structure/cable/cyan{icon_state = "0-4"},/turf/simulated/floor/airless,/area/engineering/engine_room) +"Hg" = (/obj/machinery/light{dir = 4},/turf/simulated/floor/tiled/steel_grid,/area/stellardelight/deck2/central) +"Hh" = (/obj/machinery/alarm/angled,/obj/effect/floor_decal/milspec/color/blue/half{dir = 1},/turf/simulated/floor/tiled,/area/stellardelight/deck2/central) +"Hi" = (/obj/structure/table/marble,/obj/machinery/chemical_dispenser/bar_alc/full{dir = 1},/obj/machinery/camera/network/civilian{dir = 8},/turf/simulated/floor/lino,/area/crew_quarters/bar) +"Hj" = (/obj/machinery/atm{pixel_y = 30},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 1},/turf/simulated/floor/tiled,/area/stellardelight/deck2/aftport) +"Hk" = (/obj/machinery/camera/network/halls{dir = 4},/obj/effect/floor_decal/milspec/color/green/half{dir = 8},/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore) +"Hl" = (/obj/machinery/camera/network/halls{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals5,/turf/simulated/floor/tiled,/area/stellardelight/deck2/aftport) +"Hm" = (/turf/simulated/wall/bay/r_wall/orange,/area/engineering/atmos/monitoring) +"Ho" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/effect/floor_decal/steeldecal/steel_decals6{dir = 1},/turf/simulated/floor/tiled/eris/dark/cargo,/area/crew_quarters/recreation_area) +"Hp" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/table/standard,/obj/item/weapon/paper_bin{pixel_x = -3; pixel_y = 7},/obj/item/device/megaphone,/turf/simulated/floor/wood,/area/quartermaster/qm) +"Hq" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/angled_bay/hatch{door_color = "#e6ab22"; name = "Engineering Substation"; req_one_access = list(10); stripe_color = "#e6ab22"},/turf/simulated/floor/tiled/steel_ridged,/area/maintenance/stellardelight/substation/engineering) +"Hr" = (/turf/simulated/wall/bay/white,/area/medical/surgery) +"Hs" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/machinery/firealarm/angled{dir = 4},/obj/structure/cable{icon_state = "1-2"},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/monitoring) +"Ht" = (/obj/structure/table/standard,/obj/item/weapon/storage/firstaid/surgery,/obj/item/device/radio/intercom{dir = 8; pixel_x = -24},/turf/simulated/floor/tiled/white,/area/medical/surgery) +"Hu" = (/obj/structure/table/standard,/obj/structure/disposalpipe/tagger{dir = 8; name = "package tagger - Trash"; sort_tag = "Trash"},/turf/simulated/floor/tiled/eris/steel/cargo,/area/quartermaster/storage) +"Hv" = (/obj/machinery/door/firedoor/glass,/obj/structure/window/bay/reinforced,/obj/structure/sign/securearea{desc = "A warning sign which reads 'HIGH VOLTAGE'"; icon_state = "shock"; name = "\improper HIGH VOLTAGE"; pixel_y = 32},/obj/structure/low_wall/bay/reinforced/steel,/turf/simulated/floor,/area/engineering/engine_room) +"Hw" = (/obj/effect/floor_decal/industrial/warning{dir = 1},/obj/structure/cable/white{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/white,/area/medical/surgery2) +"Hx" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/obj/item/device/radio/intercom{dir = 8; pixel_x = -24},/turf/simulated/floor/plating,/area/engineering/storage) +"Hy" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore) +"Hz" = (/obj/machinery/door/firedoor/glass,/obj/structure/cable/green{icon_state = "1-2"},/obj/structure/disposalpipe/junction{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/door/airlock/angled_bay/hatch{name = "maintenance access"; stripe_color = "#454545"},/turf/simulated/floor/tiled/steel_ridged,/area/stellardelight/deck2/port) +"HA" = (/obj/item/device/radio/intercom{dir = 1; pixel_y = 24},/obj/machinery/light{dir = 1},/obj/structure/table/glass,/obj/machinery/recharger,/obj/item/weapon/tool/screwdriver,/turf/simulated/floor/tiled/eris/white/cargo,/area/stellardelight/deck2/triage) +"HB" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/wood,/area/medical/psych) +"HC" = (/obj/machinery/atmospherics/pipe/manifold/hidden/green{dir = 1},/obj/structure/cable{icon_state = "4-8"},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/monitoring) +"HD" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/eris/white/danger,/area/stellardelight/deck2/starboard) +"HE" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/item/device/radio/intercom{dir = 8; pixel_x = -24},/turf/simulated/floor/carpet/turcarpet,/area/crew_quarters/recreation_area) +"HF" = (/obj/effect/floor_decal/industrial/outline/yellow,/obj/structure/closet/crate/medical,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/eris/steel/cargo,/area/quartermaster/storage) +"HG" = (/obj/machinery/door/firedoor/glass/hidden/steel,/obj/structure/cable{icon_state = "1-2"},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 8},/obj/machinery/station_map{dir = 4; pixel_x = -32},/turf/simulated/floor/tiled,/area/stellardelight/deck2/aftport) +"HH" = (/obj/machinery/light,/obj/structure/cable/white{icon_state = "1-8"},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/reception) +"HI" = (/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/manifold/hidden/green,/obj/effect/landmark/start/atmostech,/turf/simulated/floor/tiled/techfloor,/area/stellardelight/deck2/o2production) +"HJ" = (/turf/simulated/wall/bay/steel,/area/crew_quarters/kitchen) +"HK" = (/turf/simulated/wall/bay/orange,/area/engineering/locker_room) +"HL" = (/obj/structure/bed/chair/bay/comfy/captain{dir = 1},/turf/simulated/floor/tiled/eris/dark/gray_platform,/area/bridge) +"HM" = (/obj/structure/table/reinforced,/obj/structure/sign/poster{dir = 8},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/stellardelight/deck2/triage) +"HN" = (/obj/effect/floor_decal/industrial/warning{dir = 8},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/eris/steel/cargo,/area/quartermaster/storage) +"HO" = (/obj/machinery/camera/network/halls{dir = 1},/obj/effect/floor_decal/milspec/color/black/corner,/obj/effect/floor_decal/milspec/color/silver/corner{dir = 8},/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore) +"HP" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/angled_bay/double/glass{dir = 8; name = "Primary Tool Storage"},/obj/structure/cable/green{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/steel_ridged,/area/storage/primary) +"HQ" = (/turf/simulated/wall/bay/r_wall/steel,/area/crew_quarters/bar) +"HR" = (/obj/machinery/camera/network/halls{dir = 8},/obj/effect/floor_decal/milspec/color/black/corner,/obj/effect/floor_decal/milspec/color/silver/corner{dir = 4},/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore) +"HS" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/obj/structure/closet/emergsuit_wall{dir = 8; pixel_x = -27},/turf/simulated/floor,/area/maintenance/stellardelight/deck2/starboardsolars) +"HT" = (/obj/structure/cable/yellow{icon_state = "0-2"},/obj/machinery/power/terminal{dir = 1},/turf/simulated/floor/plating,/area/engineering/storage) +"HV" = (/obj/machinery/washing_machine,/turf/simulated/floor/tiled/dark,/area/crew_quarters/locker) +"HW" = (/obj/machinery/door/firedoor/glass,/obj/structure/window/bay/reinforced,/obj/structure/low_wall/bay/reinforced/steel,/turf/simulated/floor,/area/crew_quarters/locker) +"HX" = (/obj/machinery/atmospherics/pipe/manifold4w/visible/cyan,/obj/machinery/meter,/obj/structure/cable/orange{icon_state = "2-4"},/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos/storage) +"HY" = (/obj/machinery/status_display{pixel_y = 32},/obj/effect/floor_decal/emblem/stellardelight{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 1},/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore) +"HZ" = (/obj/structure/bed/chair{dir = 8},/turf/simulated/floor/tiled/eris/steel/brown_platform,/area/quartermaster/storage) +"Ia" = (/obj/item/clothing/accessory/stethoscope,/obj/item/clothing/accessory/stethoscope,/obj/item/clothing/accessory/stethoscope,/obj/item/weapon/storage/box/syringes{pixel_y = 9},/obj/item/weapon/storage/box/syringes{pixel_y = 9},/obj/random/medical,/obj/item/weapon/storage/box/beakers{pixel_x = 14; pixel_y = 10},/obj/structure/table/reinforced,/obj/item/device/radio/intercom{dir = 8; pixel_x = -24},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/cmostore) +"Ib" = (/obj/machinery/camera/network/halls{dir = 1},/obj/effect/floor_decal/milspec/color/white/half,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/stellardelight/deck2/central) +"Id" = (/obj/structure/sink{dir = 4; pixel_x = 12},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/cmostore) +"Ie" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/turf/simulated/floor,/area/maintenance/stellardelight/deck2/starboardsolars) +"If" = (/obj/structure/grille,/obj/structure/window/phoronreinforced/full,/obj/structure/window/phoronreinforced,/obj/structure/window/phoronreinforced{dir = 8},/obj/structure/window/phoronreinforced{dir = 1},/obj/structure/window/phoronreinforced{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/red,/obj/machinery/door/blast/angled/open{dir = 2; id = "burnchamberlockdown"},/turf/simulated/floor,/area/stellardelight/deck2/combustionworkshop) +"Ig" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/cable{icon_state = "1-8"},/obj/structure/cable{icon_state = "1-4"},/turf/simulated/floor/airless,/area/stellardelight/deck2/exterior) +"Ih" = (/obj/structure/cable/white{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 6},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 1},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/stellardelight/deck2/triage) +"Ii" = (/obj/structure/cable/orange{icon_state = "1-4"},/obj/structure/cable/orange{icon_state = "1-2"},/turf/simulated/floor/airless,/area/stellardelight/deck2/exterior) +"Ij" = (/obj/item/weapon/computer_hardware/battery_module,/obj/item/weapon/computer_hardware/battery_module,/obj/item/weapon/computer_hardware/battery_module/nano,/obj/item/weapon/computer_hardware/hard_drive,/obj/item/weapon/computer_hardware/hard_drive,/obj/item/weapon/computer_hardware/hard_drive/micro,/obj/item/weapon/computer_hardware/network_card,/obj/item/weapon/computer_hardware/network_card,/obj/item/weapon/computer_hardware/network_card/wired,/obj/item/weapon/computer_hardware/processor_unit,/obj/item/weapon/computer_hardware/processor_unit,/obj/item/weapon/computer_hardware/processor_unit/small,/obj/item/weapon/computer_hardware/tesla_link,/obj/item/weapon/computer_hardware/nano_printer,/obj/item/weapon/computer_hardware/hard_drive/portable,/obj/item/weapon/computer_hardware/hard_drive/portable,/obj/item/device/multitool,/obj/item/clothing/gloves/yellow,/obj/item/weapon/storage/toolbox/electrical{pixel_x = 1; pixel_y = -1},/obj/machinery/light/small{dir = 1},/obj/structure/table/steel,/turf/simulated/floor/tiled/eris/dark/techfloor_grid,/area/storage/tech) +"Ik" = (/obj/structure/cable/green{icon_state = "2-4"},/obj/random/vendordrink,/obj/machinery/atmospherics/unary/vent_pump/on,/obj/machinery/firealarm/angled,/obj/effect/landmark/vermin,/turf/simulated/floor/tiled,/area/stellardelight/deck2/aftstarboard) +"Il" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/structure/cable{icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/hidden/fuel{dir = 4},/turf/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/engine_eva) +"Im" = (/obj/structure/window/reinforced{dir = 8; pixel_x = -4},/obj/structure/table/wooden_reinforced,/turf/simulated/floor/glass/reinforced,/area/stellardelight/deck2/fore) +"In" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/recharge_station,/turf/simulated/floor/tiled/techfloor,/area/stellardelight/deck2/o2production) +"Io" = (/obj/machinery/alarm/angled{dir = 4},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/obj/structure/table/steel_reinforced,/obj/item/device/retail_scanner/command,/obj/effect/landmark/vermin,/turf/simulated/floor/tiled/eris/dark/monofloor,/area/bridge) +"Ip" = (/obj/structure/stairs/spawner/north,/obj/structure/window/reinforced{dir = 8},/turf/simulated/floor,/area/stellardelight/deck2/aftport) +"Iq" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/item/device/radio/intercom{dir = 8; pixel_x = -24},/turf/simulated/floor/tiled/techfloor,/area/stellardelight/deck2/fuelstorage) +"Ir" = (/obj/structure/cable{icon_state = "2-8"},/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/structure/cable{icon_state = "0-8"},/obj/machinery/power/apc/angled{dir = 1; name = "night shift APC"; nightshift_setting = 2},/turf/simulated/floor,/area/maintenance/stellardelight/deck2/starboardaft) +"Is" = (/obj/structure/cable/green{icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/monotile,/area/hydroponics) +"It" = (/obj/structure/cable/yellow{icon_state = "1-2"},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/turf/simulated/floor/tiled/eris/dark/techfloor_grid,/area/engineering/storage) +"Iu" = (/obj/structure/table/glass,/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/obj/machinery/recharger,/turf/simulated/floor/tiled/eris/white/bluecorner,/area/stellardelight/deck2/triage) +"Iv" = (/obj/effect/floor_decal/milspec/color/blue/half{dir = 8},/obj/machinery/station_map{dir = 4; pixel_x = -32},/turf/simulated/floor/tiled,/area/stellardelight/deck2/starboard) +"Iw" = (/obj/structure/cable/green{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/turf/simulated/floor,/area/maintenance/stellardelight/deck2/portfore) +"Ix" = (/obj/structure/cable/cyan{icon_state = "4-8"},/obj/structure/sign/securearea{desc = "A warning sign which reads 'RADIOACTIVE AREA'"; icon_state = "radiation"; name = "\improper RADIOACTIVE AREA"; pixel_y = -32},/obj/machinery/camera/network/engine{dir = 1},/turf/simulated/floor/airless,/area/engineering/engine_room) +"Iz" = (/obj/item/stack/cable_coil/yellow,/turf/simulated/floor/airless,/area/stellardelight/deck2/exterior) +"IA" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/manifold/hidden/red,/turf/simulated/floor/tiled/techfloor,/area/stellardelight/deck2/o2production) +"IB" = (/obj/structure/cable/green{icon_state = "1-2"},/obj/structure/cable/green{icon_state = "2-8"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled,/area/stellardelight/deck2/port) +"IC" = (/obj/structure/cable{icon_state = "2-8"},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 8},/turf/simulated/floor/tiled,/area/stellardelight/deck2/port) +"ID" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/turf/simulated/floor/tiled/eris/steel/cargo,/area/quartermaster/storage) +"IE" = (/obj/effect/landmark{name = "lightsout"},/turf/simulated/floor/glass/reinforced,/area/crew_quarters/recreation_area) +"IF" = (/obj/machinery/atmospherics/pipe/manifold/hidden/cyan{dir = 8},/turf/simulated/floor,/area/stellardelight/deck2/combustionworkshop) +"IG" = (/obj/machinery/light{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/effect/floor_decal/milspec/color/blue/half{dir = 1},/obj/structure/sign/poster{dir = 1},/turf/simulated/floor/tiled,/area/stellardelight/deck2/central) +"IH" = (/obj/structure/cable/orange{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/monitoring) +"II" = (/obj/machinery/door/firedoor/glass,/obj/structure/cable{icon_state = "4-8"},/obj/machinery/door/airlock/angled_bay/standard/glass{dir = 4; door_color = "#e6ab22"; name = "Engineering Glass"; req_access = list(10); stripe_color = "#913013"},/turf/simulated/floor/tiled/steel_ridged,/area/engineering/locker_room) +"IJ" = (/obj/structure/reagent_dispensers/beerkeg,/turf/simulated/floor/wood,/area/stellardelight/deck2/barbackroom) +"IK" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore) +"IL" = (/obj/structure/table/steel_reinforced,/obj/machinery/keycard_auth{pixel_y = 2},/obj/effect/floor_decal/milspec/color/blue/half{dir = 10},/turf/simulated/floor/tiled/eris/dark/gray_platform,/area/bridge) +"IN" = (/obj/machinery/atmospherics/binary/pump/on{name = "Air to Distro"},/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos/storage) +"IO" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/turf/simulated/floor/tiled/eris/steel/cargo,/area/quartermaster/storage) +"IQ" = (/obj/structure/table/glass,/obj/machinery/door/window/southright{dir = 1; req_access = list(5)},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/reception) +"IR" = (/obj/effect/floor_decal/industrial/outline/yellow,/obj/vehicle/train/trolley{dir = 1},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/obj/machinery/camera/network/cargo{dir = 8},/turf/simulated/floor/tiled/eris/steel/cargo,/area/quartermaster/storage) +"IT" = (/obj/machinery/vending/wardrobe/chemdrobe,/obj/machinery/light{dir = 1},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/cmostore) +"IU" = (/obj/machinery/door/firedoor/glass,/obj/structure/window/bay/reinforced,/obj/machinery/door/blast/angled/open{dir = 4; id = "atmoswindowlockdown"},/obj/structure/low_wall/bay/reinforced/steel,/turf/simulated/floor,/area/stellardelight/deck2/o2production) +"IV" = (/turf/simulated/floor/wood,/area/crew_quarters/captain) +"IW" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/eris/cafe,/area/crew_quarters/kitchen) +"IX" = (/obj/machinery/alarm/angled{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 4},/turf/simulated/floor/tiled,/area/stellardelight/deck2/starboard) +"IY" = (/obj/machinery/firealarm/angled,/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 1},/turf/simulated/floor/tiled,/area/stellardelight/deck2/starboard) +"IZ" = (/obj/effect/floor_decal/industrial/warning{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals4,/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 10},/obj/structure/cable/white{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/machinery/light_switch{dir = 8; pixel_x = 24; pixel_y = -24},/turf/simulated/floor/tiled/white,/area/medical/surgery) +"Ja" = (/obj/structure/table/rack/steel,/obj/item/weapon/stock_parts/matter_bin,/obj/item/weapon/stock_parts/matter_bin,/obj/item/weapon/stock_parts/matter_bin,/obj/item/weapon/stock_parts/manipulator,/obj/item/weapon/stock_parts/console_screen,/obj/item/weapon/circuitboard/partslathe,/turf/simulated/floor/tiled/eris/dark/techfloor_grid,/area/storage/tech) +"Jb" = (/obj/machinery/shield_capacitor,/turf/simulated/floor/plating,/area/engineering/storage) +"Jd" = (/obj/machinery/door/firedoor/glass,/obj/structure/window/bay/reinforced,/obj/machinery/door/blast/angled/open{dir = 2; id = "atmoswindowlockdown"},/obj/structure/low_wall/bay/reinforced/steel,/turf/simulated/floor,/area/stellardelight/deck2/combustionworkshop) +"Je" = (/obj/structure/sign/directions/bar{dir = 1; pixel_y = 25},/obj/effect/floor_decal/milspec/color/silver/corner{dir = 4},/obj/effect/floor_decal/milspec/color/black/corner{dir = 1},/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore) +"Jf" = (/obj/structure/railing/grey{dir = 8},/obj/structure/railing/grey,/turf/simulated/open,/area/maintenance/stellardelight/deck2/starboardaft) +"Jg" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/eris/dark/techfloor_grid,/area/storage/tech) +"Jh" = (/turf/space,/area/space) +"Ji" = (/obj/machinery/computer/arcade/orion_trail,/obj/machinery/atmospherics/unary/vent_scrubber/on,/turf/simulated/floor/tiled/eris/dark/cargo,/area/crew_quarters/recreation_area) +"Jj" = (/obj/structure/disposalpipe/segment,/obj/structure/cable/yellow{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/eris/steel/cargo,/area/quartermaster/storage) +"Jk" = (/obj/machinery/atmospherics/pipe/simple/hidden/fuel{dir = 6},/turf/simulated/wall/bay/r_wall/steel,/area/engineering/engine_eva) +"Jl" = (/obj/effect/landmark{name = "lightsout"},/turf/simulated/floor/tiled/eris/steel/brown_platform,/area/crew_quarters/bar) +"Jm" = (/obj/machinery/atmospherics/pipe/simple/heat_exchanging,/obj/structure/cable/orange{icon_state = "1-2"},/turf/simulated/floor/airless,/area/stellardelight/deck2/exterior) +"Jn" = (/obj/structure/cable/green{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/turf/simulated/floor/tiled,/area/stellardelight/deck2/aftstarboard) +"Jo" = (/obj/machinery/atmospherics/pipe/simple/hidden/fuel{dir = 6},/turf/simulated/wall/bay/r_wall/orange,/area/stellardelight/deck2/fuelstorage) +"Jp" = (/obj/machinery/camera/network/civilian{dir = 1},/turf/simulated/floor/grass,/area/hydroponics) +"Jq" = (/turf/simulated/floor/tiled/steel_grid,/area/stellardelight/deck2/fore) +"Jr" = (/obj/effect/floor_decal/industrial/outline/yellow,/obj/structure/closet/crate/internals,/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/turf/simulated/floor/tiled/eris/steel/cargo,/area/quartermaster/storage) +"Js" = (/obj/machinery/atmospherics/pipe/manifold/hidden/fuel{dir = 1},/obj/machinery/meter,/turf/simulated/floor/tiled/techfloor,/area/stellardelight/deck2/fuelstorage) +"Jt" = (/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable/orange{icon_state = "1-2"},/turf/simulated/floor/tiled/techfloor,/area/stellardelight/deck2/o2production) +"Jv" = (/obj/effect/floor_decal/industrial/outline/yellow,/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/eris/steel/cargo,/area/quartermaster/storage) +"Jw" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/effect/mouse_hole_spawner{dir = 8},/turf/simulated/floor,/area/maintenance/stellardelight/deck2/starboardsolars) +"Jx" = (/obj/structure/sign/securearea{desc = "A warning sign which reads 'RADIOACTIVE AREA'"; icon_state = "radiation"; name = "\improper RADIOACTIVE AREA"; pixel_x = -32},/obj/effect/floor_decal/industrial/warning/full,/obj/structure/cable/orange{icon_state = "0-2"},/obj/structure/cable/orange{icon_state = "0-8"},/obj/machinery/power/pointdefense{id_tag = "sd_pd"},/turf/simulated/floor/airless,/area/stellardelight/deck2/exterior) +"Jy" = (/obj/structure/cable/white{icon_state = "4-8"},/obj/structure/cable/white{icon_state = "1-4"},/obj/structure/cable/white{icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/eris/white/bluecorner,/area/stellardelight/deck2/triage) +"JB" = (/obj/machinery/door/firedoor/glass,/obj/structure/cable/green{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/steel_ridged,/area/storage/art) +"JC" = (/obj/structure/sign/department/cargo{pixel_x = 32},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 4},/turf/simulated/floor/tiled,/area/stellardelight/deck2/aftport) +"JD" = (/obj/machinery/computer/power_monitor{dir = 1},/turf/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/engineering_monitoring) +"JE" = (/turf/simulated/floor/tiled/eris/dark/techfloor_grid,/area/engineering/engine_room) +"JF" = (/obj/structure/sign/directions/bar{dir = 1; pixel_x = -32; pixel_y = 15},/obj/machinery/camera/network/halls{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 8},/turf/simulated/floor/tiled,/area/stellardelight/deck2/starboard) +"JG" = (/obj/effect/floor_decal/steeldecal/steel_decals5,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/stellardelight/deck2/starboard) +"JH" = (/obj/effect/floor_decal/industrial/outline/yellow,/obj/structure/cable/green{icon_state = "0-2"},/obj/structure/cable/green{icon_state = "16-0"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/door/firedoor/glass,/turf/simulated/floor,/area/maintenance/stellardelight/deck2/portfore) +"JI" = (/obj/effect/floor_decal/milspec/color/green/half,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/hydroponics) +"JJ" = (/obj/structure/cable/orange{icon_state = "1-4"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/turf/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/engine_eva) +"JK" = (/obj/structure/cable/blue{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/eris/dark/monofloor,/area/bridge) +"JL" = (/obj/effect/floor_decal/milspec/color/black/corner,/obj/effect/floor_decal/milspec/color/silver/corner{dir = 8},/obj/item/device/radio/beacon,/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore) +"JM" = (/obj/machinery/power/apc/angled{dir = 1},/obj/structure/cable/orange{icon_state = "0-4"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/turf/simulated/floor/tiled/techfloor,/area/stellardelight/deck2/fuelstorage) +"JN" = (/obj/effect/floor_decal/milspec/cargo,/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor/tiled/eris/steel/brown_platform,/area/quartermaster/storage) +"JP" = (/obj/structure/cable/green{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/table/rack,/obj/random/maintenance/engineering,/obj/random/maintenance/engineering,/obj/random/maintenance/engineering,/obj/random/maintenance/engineering,/obj/random/snack,/turf/simulated/floor,/area/maintenance/stellardelight/deck2/portsolars) +"JQ" = (/turf/simulated/floor/tiled/eris/dark/gray_platform,/area/bridge) +"JR" = (/obj/machinery/door/firedoor/glass,/obj/structure/cable/green{icon_state = "1-2"},/obj/machinery/door/airlock/angled_bay/standard/glass{door_color = "#9c9c9c"; fill_color = null; name = "Commons"; stripe_color = "#89bd66"},/turf/simulated/floor/tiled/steel_ridged,/area/crew_quarters/recreation_area) +"JS" = (/obj/machinery/atmospherics/pipe/manifold4w/visible/black,/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos/storage) +"JT" = (/obj/machinery/reagentgrinder,/obj/structure/table/woodentable,/turf/simulated/floor/wood,/area/stellardelight/deck2/barbackroom) +"JV" = (/obj/structure/bed/chair/office/dark{dir = 8},/obj/effect/landmark/start/chemist,/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/chemistry) +"JW" = (/obj/structure/cable/green{icon_state = "1-2"},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/stellardelight/deck2/starboard) +"JX" = (/obj/machinery/shield_gen,/turf/simulated/floor/plating,/area/engineering/storage) +"JY" = (/turf/simulated/wall/bay/r_wall/steel,/area/storage/art) +"JZ" = (/obj/machinery/door/firedoor/glass,/obj/structure/window/bay/reinforced,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/door/blast/angled/open{dir = 2; id = "qmwindows"; name = "Privacy Shutters"},/obj/structure/low_wall/bay/reinforced/brown,/turf/simulated/floor,/area/quartermaster/qm) +"Ka" = (/obj/effect/floor_decal/steeldecal/steel_decals5,/turf/simulated/floor/tiled,/area/stellardelight/deck2/starboard) +"Kb" = (/obj/structure/cable/green{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor,/area/maintenance/stellardelight/deck2/portaft) +"Kc" = (/obj/structure/reagent_dispensers/watertank,/obj/item/weapon/reagent_containers/glass/bucket,/obj/effect/floor_decal/milspec/color/green/half,/turf/simulated/floor/tiled,/area/hydroponics) +"Kd" = (/obj/machinery/atmospherics/pipe/manifold/hidden/yellow{dir = 8},/obj/structure/cable/orange{icon_state = "1-4"},/turf/simulated/floor,/area/stellardelight/deck2/combustionworkshop) +"Ke" = (/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled/steel_ridged,/area/storage/primary) +"Kf" = (/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/cmostore) +"Kg" = (/obj/structure/table/glass,/obj/item/device/defib_kit/loaded,/turf/simulated/floor/tiled/eris/white/cargo,/area/stellardelight/deck2/triage) +"Kh" = (/obj/structure/cable{icon_state = "0-4"},/obj/structure/cable{icon_state = "1-4"},/obj/machinery/power/solar,/turf/simulated/floor/airless,/area/stellardelight/deck2/exterior) +"Ki" = (/obj/machinery/atmospherics/pipe/simple/visible/cyan,/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos/storage) +"Kj" = (/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 4},/obj/machinery/vending/event,/turf/simulated/floor/tiled,/area/crew_quarters/locker) +"Kk" = (/obj/structure/cable/orange{icon_state = "1-2"},/obj/structure/closet/secure_closet/atmos_personal,/turf/simulated/floor/tiled/techfloor,/area/stellardelight/deck2/o2production) +"Kl" = (/obj/machinery/hologram/holopad,/turf/simulated/floor/tiled/monotile,/area/stellardelight/deck2/triage) +"Km" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/reception) +"Kn" = (/obj/effect/floor_decal/milspec/color/black/corner{dir = 1},/obj/effect/floor_decal/milspec/color/silver/corner{dir = 8},/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore) +"Ko" = (/obj/machinery/firealarm/angled,/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 1},/turf/simulated/floor/tiled,/area/stellardelight/deck2/port) +"Kp" = (/obj/machinery/atmospherics/pipe/simple/heat_exchanging/junction{dir = 4},/turf/simulated/floor/airless,/area/stellardelight/deck2/exterior) +"Kq" = (/obj/machinery/atmospherics/pipe/simple/hidden/red{dir = 10},/obj/machinery/light{dir = 1},/obj/machinery/vending/wardrobe/atmosdrobe,/turf/simulated/floor/tiled/techfloor,/area/stellardelight/deck2/o2production) +"Kr" = (/obj/machinery/atmospherics/pipe/manifold/hidden/fuel,/turf/simulated/wall/bay/r_wall/steel,/area/engineering/engine_eva) +"Ks" = (/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 8},/obj/effect/landmark/start/medical,/turf/simulated/floor/tiled/eris/white/cargo,/area/stellardelight/deck2/triage) +"Kt" = (/obj/structure/table/glass,/obj/structure/window/reinforced{dir = 1},/obj/item/weapon/backup_implanter{pixel_y = 9},/obj/item/weapon/backup_implanter{pixel_y = 2},/obj/item/weapon/backup_implanter{pixel_y = -5},/obj/item/weapon/backup_implanter{pixel_y = -12},/obj/machinery/alarm/angled{dir = 4},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/reception) +"Ku" = (/obj/structure/cable/orange{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/engineering_monitoring) +"Kv" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/locker_room) +"Kw" = (/obj/structure/closet/secure_closet/medical2,/obj/machinery/firealarm/angled{dir = 4},/turf/simulated/floor/tiled/white,/area/medical/surgery2) +"Kx" = (/obj/structure/table/woodentable,/obj/item/clothing/head/that{pixel_x = 4; pixel_y = 6},/obj/item/weapon/tool/screwdriver,/obj/item/weapon/reagent_containers/food/drinks/shaker{pixel_x = -7; pixel_y = 11},/obj/item/weapon/flame/lighter/zippo{pixel_x = 2},/obj/item/clothing/mask/smokable/cigarette/cigar/cohiba,/obj/item/weapon/reagent_containers/food/drinks/metaglass,/obj/item/weapon/reagent_containers/food/drinks/metaglass,/obj/item/weapon/reagent_containers/food/drinks/metaglass,/obj/item/weapon/reagent_containers/food/drinks/metaglass,/obj/machinery/power/apc/angled{dir = 4},/obj/structure/cable/green{icon_state = "0-8"},/turf/simulated/floor/wood,/area/stellardelight/deck2/barbackroom) +"Ky" = (/obj/structure/cable/white{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/chemistry) +"Kz" = (/obj/machinery/door/airlock/angled_bay/external/glass{dir = 4; frequency = 1379; id_tag = "d2_starmaint_interior"; locked = 1; name = "Exterior Airlock"},/obj/machinery/access_button{command = "cycle_interior"; dir = 8; frequency = 1379; master_tag = "d2_starmaint_airlock"; name = "interior access button"; pixel_y = 32; req_one_access = list(13)},/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4},/obj/machinery/door/firedoor/glass,/obj/structure/cable{icon_state = "4-8"},/turf/simulated/floor/tiled/steel_ridged,/area/maintenance/stellardelight/deck2/starboardsolars) +"KA" = (/obj/structure/cable/green{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/turf/simulated/floor/tiled,/area/stellardelight/deck2/aftstarboard) +"KB" = (/obj/structure/cable/orange{icon_state = "2-8"},/turf/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/engine_eva) +"KD" = (/obj/structure/cable/green{icon_state = "1-2"},/obj/machinery/light/small{dir = 4},/obj/structure/disposalpipe/segment,/obj/structure/cable/green{icon_state = "2-8"},/obj/machinery/alarm/angled{dir = 4},/turf/simulated/floor,/area/maintenance/stellardelight/deck2/portfore) +"KE" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 8},/turf/simulated/floor/tiled,/area/storage/art) +"KG" = (/obj/structure/cable/green{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/light_switch{dir = 4; pixel_x = -24; pixel_y = 24},/turf/simulated/floor/wood,/area/stellardelight/deck2/barbackroom) +"KH" = (/obj/structure/cable/green{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore) +"KI" = (/obj/machinery/alarm/angled{dir = 8},/obj/machinery/power/emitter,/turf/simulated/floor/plating,/area/engineering/storage) +"KJ" = (/obj/effect/catwalk_plated,/turf/simulated/floor,/area/stellardelight/deck2/starboard) +"KK" = (/turf/simulated/wall/bay/r_wall/green,/area/hydroponics) +"KL" = (/turf/simulated/wall/bay/r_wall/steel,/area/maintenance/stellardelight/deck2/portfore) +"KM" = (/obj/machinery/the_singularitygen/tesla{anchored = 1},/turf/simulated/floor/airless,/area/engineering/engine_room) +"KN" = (/obj/structure/table/reinforced,/obj/random/tech_supply,/obj/random/tech_supply,/obj/machinery/light{dir = 4},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/turf/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/engine_eva) +"KP" = (/obj/structure/cable/cyan{icon_state = "2-8"},/obj/machinery/light/small{dir = 1},/turf/simulated/floor/airless,/area/engineering/engine_room) +"KQ" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/obj/structure/cable/orange{icon_state = "2-4"},/obj/structure/table/rack,/obj/random/maintenance/cargo,/obj/random/maintenance/engineering,/obj/random/maintenance/engineering,/obj/random/maintenance/engineering,/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/monitoring) +"KR" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/turf/simulated/floor/tiled/eris/steel/brown_platform,/area/quartermaster/storage) +"KS" = (/obj/machinery/door/firedoor/glass,/obj/structure/cable/white{icon_state = "4-8"},/obj/machinery/door/airlock/angled_bay/standard/glass{dir = 4; door_color = "#ffffff"; name = "Medbay Foyer"; req_access = list(5); stripe_color = "#5a96bb"},/turf/simulated/floor/tiled/steel_ridged,/area/stellardelight/deck2/triage) +"KT" = (/obj/machinery/vending/medical,/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/turf/simulated/floor/tiled/eris/white/cargo,/area/stellardelight/deck2/triage) +"KU" = (/obj/machinery/vending/coffee,/obj/structure/sign/poster{dir = 1},/turf/simulated/floor/tiled/steel_ridged,/area/stellardelight/deck2/starboard) +"KV" = (/obj/structure/table/glass,/obj/machinery/recharger,/obj/machinery/light{dir = 8},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/stellardelight/deck2/triage) +"KW" = (/obj/machinery/alarm/angled{dir = 8},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/orange{icon_state = "1-2"},/turf/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/engineering_monitoring) +"KX" = (/obj/structure/cable/orange{icon_state = "4-8"},/obj/structure/cable/orange{icon_state = "2-8"},/turf/simulated/wall/bay/r_wall/steel,/area/engineering/storage) +"KY" = (/obj/structure/table/reinforced,/obj/machinery/alarm/angled,/obj/machinery/atmospherics/unary/vent_pump/on,/obj/machinery/camera/network/medbay{dir = 8},/obj/effect/landmark/vermin,/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/chemistry) +"La" = (/obj/machinery/light,/turf/simulated/floor/tiled/eris/white/cargo,/area/stellardelight/deck2/triage) +"Lb" = (/obj/structure/table/wooden_reinforced,/turf/simulated/floor/carpet/turcarpet,/area/crew_quarters/recreation_area) +"Lc" = (/obj/structure/table/reinforced,/obj/item/device/floor_painter,/obj/item/device/t_scanner,/obj/item/device/multitool{pixel_x = 5},/obj/item/weapon/reagent_containers/spray/cleaner,/obj/machinery/camera/network/engineering{dir = 4},/turf/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/workshop) +"Ld" = (/obj/item/modular_computer/console/preset/medical{dir = 4},/obj/effect/floor_decal/milspec/color/white/half{dir = 6},/turf/simulated/floor/tiled/eris/dark/monofloor,/area/bridge) +"Le" = (/obj/structure/cable/orange{icon_state = "1-2"},/turf/simulated/floor/airless,/area/stellardelight/deck2/exterior) +"Lf" = (/obj/structure/cable/orange{icon_state = "2-8"},/turf/simulated/floor,/area/maintenance/stellardelight/deck2/portsolars) +"Lg" = (/obj/structure/cable/orange{icon_state = "2-8"},/obj/structure/cable/orange{icon_state = "1-2"},/obj/structure/cable/orange{icon_state = "1-8"},/turf/simulated/floor/airless,/area/stellardelight/deck2/exterior) +"Lh" = (/obj/machinery/computer/operating,/turf/simulated/floor/tiled/white,/area/medical/surgery2) +"Li" = (/obj/machinery/floodlight,/obj/structure/cable/orange{icon_state = "0-8"},/obj/machinery/power/apc/angled{dir = 4},/obj/structure/cable/orange{icon_state = "4-8"},/turf/simulated/floor/plating,/area/engineering/storage) +"Lk" = (/obj/machinery/atmospherics/pipe/simple/hidden/cyan{dir = 4},/obj/structure/cable/orange{icon_state = "4-8"},/obj/structure/cable/orange{icon_state = "2-4"},/obj/structure/cable/orange{icon_state = "1-4"},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/monitoring) +"Ll" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/stellardelight/deck2/triage) +"Lm" = (/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor/tiled/eris/steel/cargo,/area/quartermaster/storage) +"Ln" = (/obj/structure/table/reinforced,/obj/item/weapon/reagent_containers/spray/cleaner{desc = "Someone has crossed out the 'Space' from Space Cleaner and written in Chemistry. Scrawled on the back is, 'Okay, whoever filled this with polytrinic acid, it was only funny the first time. It was hard enough replacing the CMO's first cat!'"; name = "Chemistry Cleaner"},/obj/item/weapon/hand_labeler,/obj/item/weapon/packageWrap,/obj/item/device/mass_spectrometer/adv,/obj/item/device/mass_spectrometer/adv,/obj/item/clothing/glasses/science,/obj/item/clothing/glasses/science,/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/chemistry) +"Lp" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/turf/simulated/floor/tiled/eris/dark/techfloor_grid,/area/engineering/engine_room) +"Lq" = (/obj/machinery/computer/security/telescreen/entertainment{desc = "Look's like it's set to the info station... I wonder what else is on?"; pixel_x = -32; pixel_y = -32},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/eris/dark/cargo,/area/crew_quarters/recreation_area) +"Lr" = (/obj/machinery/door/firedoor/glass/hidden/steel{dir = 8},/obj/effect/floor_decal/milspec/color/orange/half{dir = 4},/turf/simulated/floor/tiled,/area/stellardelight/deck2/aftstarboard) +"Ls" = (/obj/machinery/alarm/angled,/obj/effect/floor_decal/milspec/color/silver/corner{dir = 4},/obj/effect/floor_decal/milspec/color/black/corner{dir = 1},/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore) +"Lt" = (/obj/structure/table/reinforced,/obj/item/weapon/storage/belt/utility,/obj/item/weapon/storage/belt/utility,/obj/item/stack/cable_coil{pixel_x = 3; pixel_y = 3},/obj/item/stack/cable_coil{pixel_x = 3; pixel_y = 3},/obj/item/weapon/storage/box/nifsofts_engineering,/turf/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/workshop) +"Lu" = (/obj/structure/table/steel_reinforced,/obj/machinery/door/window/northright{dir = 2; name = "Cargo Ordering"; req_access = list(50)},/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled/monotile,/area/quartermaster/storage) +"Lv" = (/obj/structure/bed/chair,/obj/machinery/light{dir = 8},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/reception) +"Lw" = (/obj/machinery/atmospherics/pipe/simple/hidden/fuel{dir = 4},/turf/simulated/wall/bay/r_wall/steel,/area/engineering/engine_eva) +"Lx" = (/obj/structure/flora/pottedplant/orientaltree,/obj/effect/floor_decal/milspec/color/orange/corner{dir = 8},/turf/simulated/floor/tiled/eris/dark/monofloor,/area/bridge) +"Ly" = (/obj/structure/cable/green{icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/structure/cable/green{icon_state = "2-8"},/turf/simulated/floor/wood,/area/stellardelight/deck2/barbackroom) +"Lz" = (/obj/structure/sink{dir = 8; pixel_x = -12; pixel_y = 2},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/effect/floor_decal/milspec/color/green/half{dir = 8},/turf/simulated/floor/tiled,/area/hydroponics) +"LB" = (/obj/machinery/power/solar_control{dir = 8},/obj/structure/cable{icon_state = "0-8"},/obj/structure/cable{icon_state = "1-2"},/turf/simulated/floor,/area/maintenance/stellardelight/deck2/starboardsolars) +"LC" = (/obj/machinery/computer/crew{dir = 8},/obj/machinery/firealarm/angled{dir = 4},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/reception) +"LD" = (/obj/structure/table/reinforced,/obj/machinery/light{dir = 1},/obj/item/weapon/storage/toolbox/mechanical{pixel_y = 5},/obj/item/weapon/storage/toolbox/electrical,/obj/machinery/atmospherics/unary/vent_scrubber/on,/turf/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/workshop) +"LE" = (/turf/simulated/wall/bay/r_wall/steel,/area/quartermaster/storage) +"LF" = (/obj/structure/table/standard,/obj/item/weapon/packageWrap,/obj/fiftyspawner/cardboard,/obj/machinery/atmospherics/unary/vent_pump/on,/turf/simulated/floor/tiled/eris/steel/brown_platform,/area/quartermaster/storage) +"LG" = (/obj/machinery/atmospherics/pipe/simple/hidden/fuel{dir = 9},/turf/simulated/floor/tiled/techfloor,/area/stellardelight/deck2/fuelstorage) +"LH" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals_central5{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/stellardelight/deck2/starboard) +"LI" = (/turf/simulated/wall/bay/orange,/area/engineering/engineering_monitoring) +"LK" = (/obj/structure/cable{icon_state = "4-8"},/obj/effect/floor_decal/steeldecal/steel_decals5,/turf/simulated/floor/tiled,/area/stellardelight/deck2/aftstarboard) +"LL" = (/obj/machinery/door/window/brigdoor/northleft{name = "Bar"; req_access = list(25)},/obj/machinery/light{dir = 4},/obj/structure/cable/green{icon_state = "1-2"},/turf/simulated/floor/lino,/area/crew_quarters/bar) +"LM" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/angled_bay/external/glass{dir = 4},/obj/effect/map_helper/airlock/door/simple,/turf/simulated/floor/tiled/steel_ridged,/area/stellardelight/deck2/portescape) +"LN" = (/obj/structure/bed/chair/comfy{dir = 1},/obj/machinery/firealarm/angled{dir = 8},/obj/effect/landmark/start/bartender,/turf/simulated/floor/wood,/area/stellardelight/deck2/barbackroom) +"LO" = (/obj/machinery/light/floortube{dir = 4; pixel_x = 6},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/effect/floor_decal/milspec/color/green/half{dir = 8},/obj/item/device/radio/intercom{dir = 8; pixel_x = -24},/turf/simulated/floor/tiled,/area/hydroponics) +"LP" = (/obj/structure/table/woodentable,/obj/machinery/light/floortube{dir = 1; pixel_y = 6},/obj/machinery/camera/network/civilian,/obj/item/weapon/reagent_containers/food/condiment/small/saltshaker{pixel_x = -3; pixel_y = 4},/obj/item/weapon/reagent_containers/food/condiment/small/peppermill{pixel_x = 2; pixel_y = 7},/obj/item/weapon/material/ashtray/glass,/turf/simulated/floor/tiled/eris/steel/brown_platform,/area/crew_quarters/bar) +"LQ" = (/obj/structure/cable/white{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/cmostore) +"LR" = (/obj/structure/cable/green{icon_state = "1-2"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/turf/simulated/floor/tiled/eris/steel/brown_platform,/area/crew_quarters/bar) +"LS" = (/mob/living/simple_mob/animal/passive/chicken,/turf/simulated/floor/grass,/area/hydroponics) +"LT" = (/obj/machinery/disposal/wall{dir = 8},/obj/structure/disposalpipe/trunk{dir = 2},/obj/machinery/firealarm/angled,/turf/simulated/floor/tiled/eris/steel/brown_platform,/area/crew_quarters/bar) +"LU" = (/obj/machinery/atmospherics/pipe/simple/visible/universal{name = "Distro Loop Drain"},/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{dir = 4},/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos/monitoring) +"LV" = (/obj/structure/table/glass,/obj/structure/sign/department/operational{pixel_x = 32},/obj/random/medical,/obj/random/medical,/turf/simulated/floor/tiled/eris/white/bluecorner,/area/stellardelight/deck2/triage) +"LW" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals4,/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 10},/turf/simulated/floor/tiled/freezer/cold,/area/crew_quarters/kitchen) +"LX" = (/obj/effect/floor_decal/industrial/warning,/obj/machinery/conveyor_switch/oneway{id = "cargounload"},/turf/simulated/floor/tiled/eris/steel/cargo,/area/quartermaster/storage) +"LY" = (/turf/simulated/wall/bay/brown,/area/engineering/engine_eva) +"LZ" = (/obj/structure/cable/white{icon_state = "1-4"},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/stellardelight/deck2/triage) +"Ma" = (/obj/structure/table/standard,/obj/item/device/taperecorder,/obj/item/stack/cable_coil/random,/obj/item/weapon/hand_labeler,/obj/item/stack/cable_coil/random,/obj/item/device/floor_painter,/obj/machinery/camera/network/civilian,/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 1},/turf/simulated/floor/tiled,/area/storage/art) +"Mb" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/stellardelight/deck2/triage) +"Mc" = (/obj/structure/closet/emergsuit_wall{dir = 8; pixel_x = -27},/obj/structure/cable{icon_state = "1-2"},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 8},/turf/simulated/floor/tiled,/area/stellardelight/deck2/aftport) +"Md" = (/obj/structure/cable/green{icon_state = "2-4"},/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor,/area/maintenance/stellardelight/deck2/portfore) +"Me" = (/obj/structure/cable/yellow{icon_state = "1-2"},/obj/machinery/light{dir = 8},/turf/simulated/floor/tiled/eris/steel/cargo,/area/quartermaster/storage) +"Mf" = (/obj/machinery/atmospherics/omni/atmos_filter{name = "Phoron Filter"; tag_north = 2; tag_south = 1; tag_west = 6},/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos/storage) +"Mg" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/eris/dark/danger,/area/engineering/engine_room) +"Mh" = (/obj/structure/table/rack/steel,/obj/item/weapon/circuitboard/rdserver{pixel_x = -3; pixel_y = 3},/obj/item/weapon/circuitboard/protolathe{pixel_x = -2; pixel_y = 2},/obj/item/weapon/circuitboard/destructive_analyzer{pixel_x = -1; pixel_y = 1},/obj/item/weapon/circuitboard/rdconsole,/obj/item/weapon/circuitboard/autolathe{pixel_x = 1; pixel_y = -1},/obj/item/weapon/circuitboard/mechfab{pixel_x = 2; pixel_y = -2},/obj/item/weapon/circuitboard/prosthetics{pixel_x = 3; pixel_y = -3},/turf/simulated/floor/tiled/eris/dark/techfloor_grid,/area/storage/tech) +"Mi" = (/obj/structure/cable/green{icon_state = "1-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore) +"Mj" = (/obj/effect/floor_decal/milspec/color/blue/half{dir = 1},/turf/simulated/floor/tiled,/area/stellardelight/deck2/central) +"Mk" = (/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 4},/turf/simulated/floor/tiled,/area/stellardelight/deck2/starboard) +"Ml" = (/turf/simulated/floor/tiled/steel_grid,/area/stellardelight/deck2/aftstarboard) +"Mm" = (/obj/structure/cable/blue{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals_central5{dir = 4},/turf/simulated/floor/tiled,/area/stellardelight/deck2/starboard) +"Mn" = (/obj/machinery/beehive,/obj/effect/floor_decal/milspec/color/green/half{dir = 1},/turf/simulated/floor/tiled,/area/hydroponics) +"Mo" = (/obj/machinery/camera/network/halls{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals5,/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/stellardelight/deck2/port) +"Mp" = (/obj/machinery/computer/arcade/battle,/turf/simulated/floor/tiled/eris/dark/cargo,/area/crew_quarters/recreation_area) +"Mq" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/reception) +"Mr" = (/obj/machinery/door/firedoor/glass,/obj/structure/window/bay/reinforced,/obj/structure/cable/cyan{icon_state = "4-8"},/obj/structure/low_wall/bay/reinforced/orange,/turf/simulated/floor,/area/engineering/storage) +"Ms" = (/obj/structure/cable/green{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/stellardelight/deck2/port) +"Mt" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable/blue{icon_state = "1-8"},/obj/machinery/keycard_auth{pixel_x = 32},/obj/machinery/light_switch{dir = 8; pixel_x = 24; pixel_y = 9},/turf/simulated/floor/wood,/area/stellardelight/deck2/briefingroom) +"Mu" = (/obj/machinery/atmospherics/pipe/simple/visible/black{dir = 10},/obj/structure/sign/atmos/n2{pixel_y = 26},/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos/storage) +"Mv" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/turf/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/locker_room) +"Mw" = (/obj/structure/table/steel_reinforced,/obj/item/device/radio/intercom{dir = 1},/obj/effect/floor_decal/milspec/color/blue/corner{dir = 8},/turf/simulated/floor/tiled/eris/dark/gray_platform,/area/bridge) +"Mx" = (/obj/structure/cable{icon_state = "0-8"},/obj/machinery/power/solar,/turf/simulated/floor/airless,/area/stellardelight/deck2/exterior) +"My" = (/obj/structure/table/rack,/obj/random/maintenance/engineering,/obj/random/maintenance/engineering,/obj/random/maintenance/engineering,/obj/random/maintenance/clean,/obj/random/maintenance/cargo,/obj/random/maintenance/cargo,/obj/random/contraband,/obj/random/drinkbottle,/turf/simulated/floor,/area/maintenance/stellardelight/deck2/portsolars) +"Mz" = (/obj/machinery/door/firedoor/glass,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/door/airlock/angled_bay/secure{name = "Secure Tech Storage"; req_access = list(19,23)},/turf/simulated/floor/tiled/techfloor/grid,/area/storage/tech) +"MA" = (/obj/structure/sign/directions/evac{pixel_x = 32; pixel_y = -6},/obj/structure/sign/directions/evac{dir = 8; pixel_x = 32},/turf/simulated/floor/glass/reinforced,/area/stellardelight/deck2/port) +"MB" = (/obj/structure/cable/orange{icon_state = "1-4"},/turf/simulated/wall/bay/r_wall/steel,/area/engineering/storage) +"MC" = (/obj/machinery/atmospherics/pipe/simple/visible/black{dir = 8},/turf/simulated/wall/bay/r_wall/steel,/area/maintenance/stellardelight/deck2/portsolars) +"MD" = (/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 8},/turf/simulated/floor/tiled,/area/stellardelight/deck2/port) +"ME" = (/obj/structure/cable/yellow{icon_state = "2-4"},/obj/structure/closet/emergsuit_wall{pixel_y = 29},/obj/item/device/radio/intercom{dir = 8; pixel_x = -24},/turf/simulated/floor/tiled/steel_grid,/area/quartermaster/storage) +"MF" = (/obj/machinery/firealarm/angled{dir = 8},/turf/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/locker_room) +"MG" = (/obj/machinery/atmospherics/pipe/manifold/hidden/fuel,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/turf/simulated/floor/tiled/techfloor,/area/stellardelight/deck2/fuelstorage) +"MH" = (/obj/structure/cable/white{icon_state = "2-8"},/turf/simulated/floor/tiled/eris/white/cargo,/area/stellardelight/deck2/triage) +"MJ" = (/obj/machinery/atmospherics/pipe/simple/hidden/fuel{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable/orange{icon_state = "1-2"},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/monitoring) +"MK" = (/obj/structure/bed/chair/backed_red{dir = 1},/turf/simulated/floor/tiled/eris/steel/brown_platform,/area/crew_quarters/bar) +"MM" = (/obj/structure/table/standard,/obj/machinery/recharger{pixel_y = 5},/obj/machinery/light/floortube{pixel_y = -4},/turf/simulated/floor/tiled/eris/steel/brown_platform,/area/quartermaster/storage) +"MN" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/cable{icon_state = "1-4"},/obj/structure/cable{icon_state = "1-8"},/turf/simulated/floor/airless,/area/stellardelight/deck2/exterior) +"MP" = (/obj/machinery/atmospherics/binary/pump/fuel{name = "Direct Injector"},/obj/effect/floor_decal/industrial/outline/red,/turf/simulated/floor,/area/stellardelight/deck2/fuelstorage) +"MQ" = (/obj/machinery/atmospherics/pipe/simple/hidden/yellow{dir = 10},/obj/machinery/alarm/angled{dir = 8},/obj/machinery/power/apc/angled{dir = 1},/obj/structure/cable/orange{icon_state = "0-8"},/obj/machinery/portable_atmospherics/canister/phoron,/turf/simulated/floor,/area/stellardelight/deck2/combustionworkshop) +"MR" = (/obj/machinery/door/firedoor/glass/hidden/steel{dir = 8},/obj/structure/cable/green{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/turf/simulated/floor/tiled,/area/stellardelight/deck2/aftport) +"MS" = (/obj/structure/cable/white{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/chemistry) +"MT" = (/obj/machinery/power/grounding_rod,/obj/structure/cable/cyan{icon_state = "1-2"},/turf/simulated/floor/airless,/area/engineering/engine_room) +"MU" = (/turf/simulated/wall/bay/green,/area/hydroponics) +"MV" = (/obj/machinery/door/firedoor/glass/hidden/steel{dir = 2},/obj/structure/cable/green{icon_state = "1-2"},/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore) +"MW" = (/obj/structure/table/rack{dir = 8; layer = 2.9},/obj/item/weapon/circuitboard/crew{pixel_x = -3; pixel_y = 3},/obj/item/weapon/circuitboard/card,/obj/item/weapon/circuitboard/communications{pixel_x = 3; pixel_y = -3},/obj/machinery/atmospherics/unary/vent_scrubber/on,/turf/simulated/floor/tiled/eris/dark/techfloor_grid,/area/storage/tech) +"MX" = (/obj/structure/cable/orange{icon_state = "2-4"},/obj/structure/cable/orange{icon_state = "1-4"},/turf/simulated/floor/airless,/area/stellardelight/deck2/exterior) +"MY" = (/obj/structure/cable/green{icon_state = "1-2"},/obj/structure/disposalpipe/sortjunction{dir = 1; name = "Medical"; sortType = "Medical"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled,/area/stellardelight/deck2/port) +"MZ" = (/obj/machinery/vending/boozeomat,/turf/simulated/floor/lino,/area/crew_quarters/bar) +"Na" = (/obj/machinery/atmospherics/pipe/simple/hidden/green,/obj/machinery/atmospherics/pipe/simple/hidden/red{dir = 4},/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/obj/structure/cable/orange{icon_state = "1-2"},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/monitoring) +"Nb" = (/obj/structure/cable/green{icon_state = "1-4"},/turf/simulated/floor,/area/maintenance/stellardelight/deck2/starboardfore) +"Nc" = (/obj/structure/bed/chair/backed_red{dir = 4},/turf/simulated/floor/tiled/eris/steel/brown_platform,/area/crew_quarters/bar) +"Nd" = (/obj/structure/cable/green{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/stellardelight/deck2/starboard) +"Ne" = (/obj/structure/lattice,/obj/structure/disposalpipe/down{dir = 8},/obj/machinery/atmospherics/pipe/zpipe/down/scrubbers,/obj/machinery/atmospherics/pipe/zpipe/down/supply,/obj/machinery/door/firedoor/glass,/turf/simulated/open,/area/maintenance/stellardelight/deck2/starboardfore) +"Nf" = (/obj/machinery/door/firedoor/glass,/obj/structure/window/bay/reinforced,/obj/machinery/door/blast/angled/open{dir = 4; id = "qmwindows"; name = "Privacy Shutters"},/obj/structure/low_wall/bay/reinforced/brown,/turf/simulated/floor,/area/quartermaster/qm) +"Ng" = (/obj/structure/cable/green{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/table/steel_reinforced,/obj/machinery/door/firedoor/glass,/obj/machinery/door/blast/angled_shutter{id = "kitchenhallway"; layer = 3.3; name = "Kitchen Shutters"},/turf/simulated/floor/tiled/eris/cafe,/area/crew_quarters/kitchen) +"Nh" = (/obj/structure/closet/crate/bin{anchored = 1},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/reception) +"Nj" = (/obj/structure/bed/chair{dir = 8},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/turf/simulated/floor/tiled/eris/steel/brown_platform,/area/quartermaster/storage) +"Nk" = (/obj/item/device/radio/intercom{dir = 1; pixel_y = 24},/turf/simulated/floor/tiled/eris/steel/brown_platform,/area/crew_quarters/bar) +"Nl" = (/obj/machinery/atmospherics/pipe/simple/visible/black{dir = 4},/obj/machinery/atmospherics/pipe/simple/visible/black,/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos/storage) +"Nm" = (/obj/structure/noticeboard{pixel_x = -32},/obj/effect/landmark/start/engineer,/turf/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/locker_room) +"Nn" = (/obj/machinery/computer/ship/engines,/obj/effect/floor_decal/milspec/color/green/half,/turf/simulated/floor/tiled/eris/dark/gray_platform,/area/bridge) +"No" = (/obj/machinery/atmospherics/pipe/simple/hidden/fuel{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/turf/simulated/floor/tiled/techfloor,/area/stellardelight/deck2/fuelstorage) +"Np" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/orange{icon_state = "1-2"},/turf/simulated/floor,/area/maintenance/stellardelight/deck2/starboardsolars) +"Nq" = (/obj/machinery/suit_cycler/engineering,/turf/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/engine_eva) +"Nr" = (/obj/machinery/door/firedoor/glass/hidden/steel{dir = 8},/obj/structure/cable/green{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled,/area/stellardelight/deck2/central) +"Ns" = (/turf/simulated/floor/tiled,/area/storage/art) +"Nt" = (/obj/structure/table/rack{dir = 8; layer = 2.6},/obj/item/clothing/shoes/magboots,/obj/item/clothing/shoes/magboots,/obj/machinery/door/window/northleft{name = "Engineering Hardsuits"; req_access = list(11)},/obj/structure/window/reinforced{dir = 8},/obj/item/clothing/mask/breath,/obj/item/clothing/mask/breath,/obj/item/clothing/suit/space/void/engineering,/obj/item/clothing/suit/space/void/engineering,/obj/item/clothing/head/helmet/space/void/engineering,/obj/item/clothing/head/helmet/space/void/engineering,/turf/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/engine_eva) +"Nu" = (/obj/structure/bed/chair/office/dark{dir = 4},/obj/machinery/button/remote/blast_door{dir = 1; id = "psychshutter"; name = "Shutter Control"; pixel_x = -15; pixel_y = -28},/obj/effect/landmark/start/psych,/turf/simulated/floor/carpet/blue,/area/medical/psych) +"Nv" = (/obj/structure/cable/orange{icon_state = "4-8"},/turf/simulated/wall/bay/r_wall/steel,/area/maintenance/stellardelight/deck2/starboardsolars) +"Nw" = (/obj/effect/floor_decal/industrial/outline/yellow,/obj/machinery/atmospherics/pipe/zpipe/up/supply,/obj/machinery/atmospherics/pipe/zpipe/up/scrubbers,/obj/machinery/door/firedoor/glass,/obj/structure/disposalpipe/sortjunction{dir = 8; name = "Kitchen/Botany"; sortType = "Kitchen/Botany"},/turf/simulated/floor,/area/maintenance/stellardelight/deck2/portfore) +"Nx" = (/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 8},/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/stellardelight/deck2/starboard) +"Ny" = (/obj/machinery/atmospherics/portables_connector{dir = 1},/obj/effect/floor_decal/industrial/outline/red,/obj/item/device/radio/intercom{dir = 4; name = "Station Intercom (General)"; pixel_x = 24},/turf/simulated/floor,/area/stellardelight/deck2/combustionworkshop) +"Nz" = (/obj/machinery/computer/atmos_alert,/turf/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/engineering_monitoring) +"NA" = (/obj/machinery/door/airlock/angled_bay/external/glass{dir = 4; frequency = 1379; id_tag = "d2_starmaint_exterior"; locked = 1; name = "Exterior Airlock"},/obj/machinery/access_button{command = "cycle_exterior"; dir = 4; frequency = 1379; master_tag = "d2_starmaint_airlock"; name = "exterior access button"; pixel_y = 32; req_one_access = list(13)},/obj/machinery/door/firedoor/glass,/obj/structure/cable{icon_state = "4-8"},/turf/simulated/floor/tiled/steel_ridged,/area/maintenance/stellardelight/deck2/starboardsolars) +"NB" = (/obj/structure/closet/emergsuit_wall{dir = 4; pixel_x = 27},/obj/item/clothing/gloves/yellow,/turf/simulated/floor,/area/maintenance/stellardelight/deck2/portsolars) +"NC" = (/obj/structure/cable/orange{icon_state = "1-2"},/turf/simulated/floor/tiled/eris/dark/techfloor_grid,/area/storage/tech) +"ND" = (/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 8},/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore) +"NE" = (/obj/structure/reagent_dispensers/foam,/obj/machinery/light,/turf/simulated/floor/tiled/techmaint,/area/storage/primary) +"NF" = (/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/chemistry) +"NG" = (/obj/structure/sign/directions/medical{dir = 1; pixel_x = 32; pixel_y = 35},/obj/structure/sign/directions/bridge{dir = 1; pixel_x = 32; pixel_y = 41},/obj/structure/sign/directions/engineering{dir = 4; pixel_x = 32; pixel_y = 23},/obj/structure/sign/directions/cargo{pixel_x = 32; pixel_y = 29},/turf/simulated/floor/tiled,/area/stellardelight/deck2/port) +"NH" = (/obj/machinery/atmospherics/pipe/simple/hidden/yellow{dir = 5},/obj/machinery/light{dir = 8},/turf/simulated/floor,/area/stellardelight/deck2/combustionworkshop) +"NJ" = (/obj/machinery/firealarm/angled{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 8},/turf/simulated/floor/tiled,/area/storage/art) +"NK" = (/obj/machinery/atmospherics/pipe/tank/carbon_dioxide{dir = 1},/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos/storage) +"NL" = (/turf/simulated/floor/airless,/area/stellardelight/deck2/exterior) +"NM" = (/obj/structure/closet/crate,/obj/item/weapon/circuitboard/smes,/obj/item/weapon/circuitboard/smes,/obj/item/weapon/smes_coil,/obj/item/weapon/smes_coil,/obj/item/weapon/smes_coil/super_capacity,/obj/item/weapon/smes_coil/super_capacity,/obj/item/weapon/smes_coil/super_io,/obj/item/weapon/smes_coil/super_io,/obj/effect/floor_decal/industrial/outline/yellow,/obj/structure/cable/yellow{icon_state = "1-2"},/turf/simulated/floor/plating,/area/engineering/storage) +"NN" = (/obj/machinery/door/firedoor/glass,/obj/structure/window/bay/reinforced,/obj/structure/low_wall/bay/reinforced/brown,/turf/simulated/floor,/area/quartermaster/storage) +"NO" = (/obj/structure/extinguisher_cabinet{dir = 8; pixel_x = 27},/obj/item/device/radio/intercom{dir = 4; pixel_x = 24; pixel_y = 32},/turf/simulated/floor/wood,/area/quartermaster/qm) +"NP" = (/obj/structure/cable/white{icon_state = "1-4"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/stellardelight/deck2/triage) +"NQ" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/angled_bay/standard/glass{dir = 4; door_color = "#ffffff"; name = "Medbay Foyer"; req_access = list(5); stripe_color = "#5a96bb"},/turf/simulated/floor/tiled/steel_ridged,/area/stellardelight/deck2/triage) +"NS" = (/obj/structure/table/rack/steel,/obj/item/instrument/violin,/obj/item/instrument/piano_synth,/obj/item/instrument/recorder,/turf/simulated/floor/tiled/dark,/area/crew_quarters/recreation_area) +"NU" = (/obj/effect/floor_decal/industrial/warning/full,/obj/structure/cable/orange{icon_state = "1-2"},/obj/structure/cable/orange{icon_state = "0-2"},/obj/machinery/power/pointdefense{id_tag = "sd_pd"},/turf/simulated/floor/airless,/area/stellardelight/deck2/exterior) +"NW" = (/obj/structure/stairs/spawner/north,/obj/structure/railing/grey{dir = 8},/turf/simulated/floor,/area/stellardelight/deck2/aftstarboard) +"NX" = (/obj/machinery/atmospherics/portables_connector{dir = 1},/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos/storage) +"NY" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable/green{icon_state = "1-4"},/turf/simulated/floor/wood,/area/stellardelight/deck2/barbackroom) +"NZ" = (/obj/structure/cable/orange{icon_state = "2-4"},/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/effect/landmark{name = "lightsout"},/obj/machinery/hologram/holopad,/turf/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/engineering_monitoring) +"Oa" = (/obj/structure/table/standard,/obj/machinery/photocopier/faxmachine{department = "Quartermaster-Office"},/obj/machinery/atmospherics/unary/vent_pump/on,/turf/simulated/floor/wood,/area/quartermaster/qm) +"Ob" = (/obj/structure/table/gamblingtable,/obj/random/coin/sometimes,/turf/simulated/floor/carpet,/area/crew_quarters/recreation_area) +"Od" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/wall/bay/r_wall/orange,/area/stellardelight/deck2/fuelstorage) +"Og" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/wood,/area/stellardelight/deck2/barbackroom) +"Oh" = (/obj/effect/landmark{name = "carpspawn"},/turf/space,/area/space) +"Oi" = (/obj/machinery/firealarm/angled,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 1},/turf/simulated/floor/tiled,/area/stellardelight/deck2/aftport) +"Oj" = (/obj/structure/table/standard,/obj/item/weapon/reagent_containers/spray/cleaner{desc = "Someone has crossed out the Space from Space Cleaner and written in Surgery. 'Do not remove under punishment of death!!!' is scrawled on the back."; name = "Surgery Cleaner"; pixel_x = 2; pixel_y = 2},/obj/item/device/radio/intercom/department/medbay{dir = 8; pixel_x = -24},/turf/simulated/floor/tiled/white,/area/medical/surgery) +"Ok" = (/obj/structure/cable/green{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 8},/turf/simulated/floor/tiled,/area/storage/art) +"Ol" = (/obj/effect/floor_decal/industrial/warning{dir = 4},/obj/machinery/status_display{pixel_y = 32},/obj/structure/filingcabinet/medical,/turf/simulated/floor/tiled/eris/white/cargo,/area/stellardelight/deck2/triage) +"Om" = (/obj/effect/floor_decal/industrial/warning{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/turf/simulated/floor/tiled/white,/area/medical/surgery) +"On" = (/obj/structure/table/marble,/obj/machinery/door/blast/shutters{id = "bar"; layer = 3.3; name = "Bar Shutters"},/turf/simulated/floor/lino,/area/crew_quarters/bar) +"Oo" = (/obj/structure/cable/green{icon_state = "2-8"},/obj/structure/table/rack,/obj/random/maintenance/medical,/obj/random/maintenance/medical,/obj/random/maintenance/medical,/obj/random/maintenance/medical,/obj/random/maintenance/engineering,/obj/random/maintenance,/obj/item/weapon/disk/nifsoft/compliance,/obj/random/drinkbottle,/turf/simulated/floor,/area/maintenance/stellardelight/deck2/starboardfore) +"Op" = (/obj/effect/floor_decal/industrial/loading{dir = 8},/obj/structure/cable/white{icon_state = "1-2"},/turf/simulated/floor/tiled/white,/area/medical/surgery2) +"Oq" = (/obj/machinery/power/apc/angled{cell_type = /obj/item/weapon/cell/super; dir = 8},/obj/structure/cable/cyan{icon_state = "0-2"},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/obj/structure/cable/cyan{icon_state = "2-4"},/turf/simulated/floor/tiled/eris/dark/techfloor_grid,/area/engineering/engine_room) +"Or" = (/obj/structure/table/reinforced,/obj/machinery/chemical_dispenser/full,/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/chemistry) +"Os" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/obj/structure/cable{icon_state = "2-8"},/turf/simulated/floor/tiled/eris/dark/techfloor_grid,/area/engineering/storage) +"Ot" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/turf/simulated/floor,/area/maintenance/stellardelight/deck2/starboardfore) +"Ou" = (/obj/effect/floor_decal/milspec/color/orange/half{dir = 4},/turf/simulated/floor/tiled,/area/stellardelight/deck2/aftstarboard) +"Ov" = (/obj/machinery/atmospherics/binary/pump,/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/structure/cable{icon_state = "1-2"},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/monitoring) +"Ow" = (/turf/simulated/floor/carpet/blucarpet,/area/crew_quarters/captain) +"Ox" = (/obj/structure/extinguisher_cabinet{dir = 8; pixel_x = 27},/obj/structure/cable/white{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/eris/white/bluecorner,/area/stellardelight/deck2/triage) +"Oz" = (/obj/machinery/atmospherics/unary/vent_pump/on,/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 1},/turf/simulated/floor/tiled,/area/stellardelight/deck2/aftstarboard) +"OA" = (/obj/structure/closet/secure_closet/freezer/meat,/obj/machinery/light{dir = 8},/obj/machinery/atmospherics/unary/vent_pump/on,/obj/machinery/status_display{pixel_y = 32},/obj/effect/landmark{name = "verminstart"},/turf/simulated/floor/tiled/eris/cafe,/area/crew_quarters/kitchen) +"OC" = (/obj/structure/closet/crate/bin{anchored = 1},/obj/structure/extinguisher_cabinet{dir = 1; pixel_y = -30},/turf/simulated/floor/tiled/white,/area/medical/surgery) +"OD" = (/obj/machinery/camera/network/command{dir = 10},/obj/item/device/radio/intercom{dir = 8; pixel_x = -24},/turf/simulated/floor/carpet/sblucarpet,/area/stellardelight/deck2/briefingroom) +"OE" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/stellardelight/deck2/triage) +"OF" = (/turf/simulated/wall/bay/r_wall/orange,/area/engineering/engine_room) +"OG" = (/obj/machinery/oxygen_pump/anesthetic,/turf/simulated/wall/bay/white,/area/medical/surgery2) +"OH" = (/obj/machinery/atmospherics/binary/pump,/obj/structure/cable/orange{icon_state = "1-2"},/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos/storage) +"OI" = (/obj/structure/cable/orange{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/locker_room) +"OJ" = (/obj/structure/table/standard,/obj/random/tech_supply,/obj/random/tech_supply,/obj/random/tech_supply,/obj/random/tech_supply,/obj/machinery/alarm/angled,/turf/simulated/floor/tiled/techmaint,/area/storage/primary) +"OK" = (/obj/machinery/atmospherics/pipe/simple/hidden/red{dir = 10},/turf/simulated/floor/tiled/techfloor,/area/stellardelight/deck2/o2production) +"OL" = (/turf/simulated/floor/wood,/area/stellardelight/deck2/briefingroom) +"OM" = (/obj/structure/foodcart,/turf/simulated/floor/tiled/freezer/cold,/area/crew_quarters/kitchen) +"ON" = (/turf/simulated/floor/tiled,/area/stellardelight/deck2/aftstarboard) +"OO" = (/obj/structure/table/standard,/obj/item/weapon/storage/box/beakers{name = "box of measuring cups"; pixel_x = 2; pixel_y = 3; starts_with = list(/obj/item/weapon/reagent_containers/glass/beaker/measuring_cup = 7)},/turf/simulated/floor/tiled/eris/cafe,/area/crew_quarters/kitchen) +"OP" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/obj/effect/landmark/vines,/turf/simulated/floor/tiled/eris/steel/brown_platform,/area/quartermaster/storage) +"OQ" = (/obj/machinery/power/apc/angled{dir = 1; name = "night shift APC"; nightshift_setting = 2},/obj/structure/cable/green{icon_state = "0-2"},/turf/simulated/floor,/area/maintenance/stellardelight/deck2/portfore) +"OR" = (/obj/machinery/atmospherics/pipe/simple/hidden/fuel{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/structure/cable{icon_state = "4-8"},/turf/simulated/floor/tiled/eris/steel/cargo,/area/quartermaster/storage) +"OS" = (/obj/structure/cable{icon_state = "4-8"},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 10},/obj/effect/floor_decal/steeldecal/steel_decals4,/obj/effect/floor_decal/milspec/color/orange/half{dir = 4},/turf/simulated/floor/tiled,/area/stellardelight/deck2/aftstarboard) +"OT" = (/obj/effect/floor_decal/industrial/danger{dir = 8},/obj/machinery/requests_console/preset/atmos{pixel_y = 30},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/monitoring) +"OU" = (/obj/effect/floor_decal/industrial/warning{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 6},/obj/structure/cable/white{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/machinery/light_switch{dir = 4; pixel_x = -24; pixel_y = -24},/turf/simulated/floor/tiled/white,/area/medical/surgery2) +"OV" = (/obj/structure/cable/green{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 4},/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore) +"OW" = (/obj/structure/cable/green{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals_central5{dir = 1; pixel_y = 1},/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore) +"OX" = (/obj/structure/extinguisher_cabinet{dir = 1; pixel_y = -30},/obj/structure/closet/crate/bin{anchored = 1},/turf/simulated/floor/tiled/white,/area/medical/surgery2) +"OY" = (/obj/machinery/atmospherics/pipe/simple/hidden/green{dir = 4},/obj/effect/floor_decal/industrial/danger/corner{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/monitoring) +"OZ" = (/obj/structure/closet/toolcloset,/obj/item/weapon/pickaxe,/turf/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/locker_room) +"Pb" = (/obj/machinery/atmospherics/pipe/simple/hidden/cyan{dir = 6},/obj/structure/cable/white{icon_state = "1-2"},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/cmostore) +"Pc" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/eris/steel/brown_platform,/area/crew_quarters/bar) +"Pd" = (/obj/structure/particle_accelerator/fuel_chamber{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/eris/dark/danger,/area/engineering/engine_room) +"Pe" = (/obj/structure/table/woodentable,/obj/structure/cable/green{icon_state = "1-2"},/obj/machinery/recharger{pixel_y = 5},/turf/simulated/floor/tiled/eris/steel/brown_platform,/area/crew_quarters/bar) +"Pf" = (/obj/structure/sign/directions/evac{dir = 4; pixel_x = -32},/obj/structure/sign/directions/evac{pixel_x = -32; pixel_y = -6},/turf/simulated/floor/glass/reinforced,/area/stellardelight/deck2/starboard) +"Pg" = (/obj/structure/cable/green{icon_state = "4-8"},/obj/structure/table/standard,/obj/item/weapon/book/manual/cook_guide,/turf/simulated/floor/tiled/eris/cafe,/area/crew_quarters/kitchen) +"Ph" = (/obj/structure/bed/chair/office/dark,/obj/effect/landmark/start/engineer,/turf/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/engineering_monitoring) +"Pi" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor,/area/maintenance/stellardelight/deck2/starboardfore) +"Pj" = (/obj/machinery/conveyor{dir = 1; id = "packageSort1"},/obj/structure/disposalpipe/trunk,/obj/structure/disposaloutlet{dir = 1},/turf/simulated/floor/tiled/eris/steel/cargo,/area/quartermaster/storage) +"Pk" = (/obj/structure/cable/orange{icon_state = "1-8"},/turf/simulated/wall/bay/r_wall/steel,/area/maintenance/stellardelight/deck2/portsolars) +"Pl" = (/obj/structure/table/steel_reinforced,/obj/machinery/firealarm/angled{dir = 4},/obj/structure/flora/pottedplant/smallcactus{pixel_y = 14},/turf/simulated/floor/wood,/area/stellardelight/deck2/briefingroom) +"Pm" = (/obj/machinery/atmospherics/pipe/simple/hidden/green{dir = 5},/turf/simulated/floor/tiled/techfloor,/area/stellardelight/deck2/o2production) +"Pn" = (/obj/structure/table/steel_reinforced,/obj/machinery/door/firedoor/glass,/obj/machinery/door/blast/angled_shutter{dir = 4; id = "kitchen"; layer = 3.3; name = "Kitchen Shutters"},/turf/simulated/floor/tiled/eris/cafe,/area/crew_quarters/kitchen) +"Po" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/angled_bay/external/glass{dir = 4},/turf/simulated/floor/tiled/steel_ridged,/area/stellardelight/deck2/starboard) +"Pp" = (/obj/effect/landmark{name = "droppod_landing"},/turf/space,/area/space) +"Pq" = (/obj/machinery/atmospherics/pipe/simple/hidden/red{dir = 9},/obj/structure/cable{icon_state = "1-8"},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/monitoring) +"Pr" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/structure/table/glass,/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/reception) +"Ps" = (/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 1},/obj/machinery/disposal/wall,/obj/structure/disposalpipe/trunk,/turf/simulated/floor/tiled,/area/stellardelight/deck2/starboard) +"Pt" = (/obj/machinery/alarm/angled,/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 1},/turf/simulated/floor/tiled,/area/stellardelight/deck2/aftport) +"Pu" = (/obj/machinery/atmospherics/pipe/simple/heat_exchanging{dir = 4},/turf/simulated/floor/airless,/area/stellardelight/deck2/exterior) +"Pv" = (/obj/machinery/door/firedoor/glass,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/door/airlock/angled_bay/standard/glass{door_color = "#ffffff"; name = "Medbay Storage"; req_access = list(5); stripe_color = "#5a96bb"},/turf/simulated/floor/tiled/steel_ridged,/area/medical/cmostore) +"Pw" = (/obj/machinery/sparker{id = "castfireball"; pixel_x = 20},/turf/simulated/floor/reinforced/airless,/area/stellardelight/deck2/combustionworkshop) +"Px" = (/obj/machinery/door/airlock/angled_bay/external/glass{dir = 4; frequency = 1379; id_tag = "d2_portmaint_interior"; locked = 1; name = "Exterior Airlock"},/obj/machinery/access_button{command = "cycle_interior"; dir = 4; frequency = 1379; master_tag = "d2_portmaint_airlock"; name = "interior access button"; pixel_y = 32; req_one_access = list(13)},/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4},/obj/machinery/door/firedoor/glass,/obj/structure/cable{icon_state = "4-8"},/turf/simulated/floor/tiled/steel_ridged,/area/maintenance/stellardelight/deck2/portsolars) +"Py" = (/obj/machinery/alarm/angled,/obj/machinery/vending/nifsoft_shop,/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 1},/turf/simulated/floor/tiled,/area/stellardelight/deck2/aftstarboard) +"Pz" = (/obj/machinery/atmospherics/portables_connector{dir = 8},/obj/machinery/portable_atmospherics/canister/oxygen/prechilled,/obj/machinery/alarm/angled{dir = 8},/turf/simulated/floor,/area/medical/cryo) +"PA" = (/obj/structure/sign/deck2{pixel_y = 32},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 1},/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore) +"PB" = (/obj/machinery/atmospherics/pipe/manifold/hidden/fuel,/turf/simulated/wall/bay/r_wall/steel,/area/stellardelight/deck2/fuelstorage) +"PC" = (/obj/machinery/conveyor{dir = 1; id = "packageSort1"},/turf/simulated/floor/tiled/eris/steel/cargo,/area/quartermaster/storage) +"PD" = (/obj/structure/cable/yellow{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/turf/simulated/floor/wood,/area/quartermaster/qm) +"PE" = (/turf/simulated/wall/bay/white,/area/medical/reception) +"PF" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled,/area/stellardelight/deck2/aftstarboard) +"PG" = (/obj/structure/cable/green{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/eris/white/danger,/area/stellardelight/deck2/port) +"PH" = (/obj/structure/disposalpipe/junction{dir = 1},/turf/simulated/floor/tiled/eris/steel/cargo,/area/quartermaster/storage) +"PI" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/turf/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/engine_eva) +"PJ" = (/obj/machinery/atmospherics/pipe/manifold/hidden/green,/obj/structure/cable/orange{icon_state = "1-2"},/obj/effect/landmark/start/atmostech,/turf/simulated/floor/tiled/techfloor,/area/stellardelight/deck2/o2production) +"PK" = (/obj/structure/cable/green{icon_state = "1-2"},/obj/effect/floor_decal/steeldecal/steel_decals5,/obj/effect/floor_decal/steeldecal/steel_decals_central5,/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore) +"PL" = (/obj/machinery/conveyor{dir = 1; id = "packageSort1"},/obj/structure/sign/department/mail{pixel_x = -32},/turf/simulated/floor/tiled/eris/steel/cargo,/area/quartermaster/storage) +"PM" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/table/standard,/obj/item/weapon/hand_labeler,/obj/item/weapon/folder/yellow,/obj/item/weapon/stamp{pixel_x = -3; pixel_y = 3},/obj/machinery/atmospherics/unary/vent_scrubber/on,/turf/simulated/floor/tiled/eris/steel/cargo,/area/quartermaster/storage) +"PO" = (/obj/structure/cable/green{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/effect/landmark{name = "lightsout"},/obj/machinery/hologram/holopad,/turf/simulated/floor/tiled,/area/stellardelight/deck2/central) +"PP" = (/turf/simulated/floor/carpet/sblucarpet,/area/stellardelight/deck2/briefingroom) +"PQ" = (/obj/structure/cable{icon_state = "2-8"},/turf/simulated/wall/bay/r_wall/steel,/area/maintenance/stellardelight/deck2/starboardsolars) +"PR" = (/obj/machinery/door/firedoor/glass,/obj/structure/window/bay/reinforced,/obj/machinery/door/blast/angled/open{dir = 2; id = "barlockdown"},/obj/structure/cable/green{icon_state = "1-2"},/obj/structure/low_wall/bay/reinforced/steel,/turf/simulated/floor,/area/crew_quarters/bar) +"PS" = (/obj/machinery/atmospherics/pipe/simple/hidden/fuel{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/conveyor{dir = 1; id = "cargounload"},/obj/structure/cable{icon_state = "4-8"},/turf/simulated/floor/tiled/eris/steel/cargo,/area/quartermaster/storage) +"PT" = (/obj/machinery/atmospherics/pipe/simple/hidden,/obj/structure/table/rack,/obj/random/maintenance/cargo,/obj/random/maintenance/engineering,/obj/random/maintenance/engineering,/obj/structure/cable/orange{icon_state = "4-8"},/obj/random/snack,/obj/random/coin/sometimes,/turf/simulated/floor,/area/maintenance/stellardelight/deck2/starboardsolars) +"PU" = (/obj/machinery/atmospherics/pipe/simple/hidden,/obj/structure/cable{icon_state = "1-2"},/obj/structure/cable{icon_state = "1-8"},/turf/simulated/floor,/area/maintenance/stellardelight/deck2/portsolars) +"PV" = (/obj/structure/stairs/spawner/north,/obj/structure/railing/grey{dir = 8},/turf/simulated/floor,/area/maintenance/stellardelight/deck2/starboardaft) +"PW" = (/obj/machinery/atmospherics/pipe/simple/visible/black{dir = 8},/obj/structure/table/rack,/obj/random/maintenance/engineering,/obj/random/maintenance/engineering,/obj/random/maintenance/engineering,/obj/random/maintenance/clean,/obj/random/maintenance/cargo,/obj/random/maintenance/cargo,/turf/simulated/floor,/area/maintenance/stellardelight/deck2/portsolars) +"PY" = (/obj/machinery/atmospherics/pipe/simple/hidden/cyan{dir = 5},/obj/machinery/light/small{dir = 8},/turf/simulated/floor,/area/medical/cryo) +"PZ" = (/obj/structure/cable/green{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/effect/floor_decal/milspec/color/green/half{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 6},/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore) +"Qa" = (/obj/effect/floor_decal/industrial/warning{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/eris/steel/cargo,/area/quartermaster/storage) +"Qc" = (/obj/machinery/atmospherics/pipe/simple/hidden/cyan{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/hologram/holopad,/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/cmostore) +"Qd" = (/obj/structure/sign/directions/evac{pixel_x = -32; pixel_y = -32},/obj/structure/disposalpipe/junction{dir = 4},/turf/simulated/floor/tiled,/area/stellardelight/deck2/starboard) +"Qe" = (/obj/effect/floor_decal/milspec/color/green/half{dir = 8},/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore) +"Qf" = (/obj/machinery/door/firedoor/glass/hidden/steel{dir = 2},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 1},/turf/simulated/floor/tiled,/area/stellardelight/deck2/aftport) +"Qg" = (/obj/structure/cable/orange{icon_state = "1-8"},/turf/simulated/floor,/area/maintenance/stellardelight/deck2/atmos) +"Qh" = (/obj/structure/flora/pottedplant/minitree,/obj/machinery/light{dir = 8},/obj/machinery/atmospherics/unary/vent_scrubber/on,/obj/machinery/camera/network/medbay,/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/reception) +"Qi" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 5},/turf/simulated/floor/tiled/eris/white/cargo,/area/stellardelight/deck2/triage) +"Qj" = (/obj/machinery/atmospherics/pipe/simple/hidden/fuel{dir = 6},/obj/effect/floor_decal/industrial/warning{dir = 8},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/structure/cable{icon_state = "2-4"},/obj/machinery/camera/network/cargo{dir = 4},/turf/simulated/floor/tiled/eris/steel/cargo,/area/quartermaster/storage) +"Qk" = (/obj/machinery/computer/rcon{dir = 1},/obj/machinery/light/floortube{pixel_y = -6},/obj/machinery/camera/network/engineering{dir = 1},/turf/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/engineering_monitoring) +"Ql" = (/obj/item/weapon/stock_parts/manipulator,/obj/item/weapon/stock_parts/manipulator,/obj/item/weapon/stock_parts/matter_bin,/obj/item/weapon/stock_parts/micro_laser,/obj/item/weapon/stock_parts/capacitor,/obj/item/weapon/stock_parts/capacitor,/obj/item/weapon/stock_parts/scanning_module,/obj/item/weapon/stock_parts/scanning_module,/obj/item/weapon/stock_parts/console_screen,/obj/item/device/pipe_painter,/obj/item/weapon/pipe_dispenser,/obj/machinery/atmospherics/unary/vent_pump/on,/obj/structure/table/steel,/obj/machinery/camera/network/engineering,/turf/simulated/floor/tiled/eris/dark/techfloor_grid,/area/storage/tech) +"Qm" = (/obj/structure/cable/orange{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/turf/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/engine_eva) +"Qn" = (/obj/machinery/power/apc/angled{dir = 8},/obj/structure/cable/green{icon_state = "0-4"},/obj/structure/cable{icon_state = "1-2"},/obj/effect/floor_decal/milspec/color/orange/corner{dir = 8},/turf/simulated/floor/tiled,/area/stellardelight/deck2/aftport) +"Qo" = (/obj/machinery/portable_atmospherics/hydroponics,/obj/effect/floor_decal/milspec/color/green/half{dir = 8},/turf/simulated/floor/tiled,/area/hydroponics) +"Qp" = (/obj/structure/table/glass,/obj/item/weapon/backup_implanter{pixel_y = 9},/obj/item/weapon/backup_implanter{pixel_y = 2},/obj/item/weapon/backup_implanter{pixel_y = -5},/obj/item/weapon/backup_implanter{pixel_y = -12},/obj/structure/sign/department/operational{pixel_x = -32},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/stellardelight/deck2/triage) +"Qq" = (/obj/structure/bed/chair,/obj/machinery/light{dir = 4},/obj/machinery/atmospherics/unary/vent_pump/on,/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/reception) +"Qr" = (/obj/machinery/atmospherics/pipe/simple/visible/green,/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{dir = 6},/obj/structure/cable/orange{icon_state = "1-2"},/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos/monitoring) +"Qt" = (/obj/structure/cable/orange{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled/eris/dark/techfloor_grid,/area/storage/tech) +"Qu" = (/obj/machinery/atmospherics/pipe/manifold/hidden/green,/turf/simulated/floor/tiled/techfloor,/area/stellardelight/deck2/o2production) +"Qv" = (/obj/structure/particle_accelerator/particle_emitter/left{dir = 4},/turf/simulated/floor/tiled/eris/dark/danger,/area/engineering/engine_room) +"Qw" = (/obj/machinery/atmospherics/pipe/simple/heat_exchanging{dir = 10},/turf/simulated/floor/airless,/area/stellardelight/deck2/exterior) +"Qx" = (/obj/structure/cable/green{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/structure/cable/green{icon_state = "2-8"},/obj/structure/cable/green{icon_state = "1-8"},/turf/simulated/floor,/area/maintenance/stellardelight/deck2/portfore) +"Qy" = (/obj/effect/floor_decal/industrial/warning{dir = 1},/obj/structure/sink{dir = 8; pixel_x = -12; pixel_y = 2},/obj/structure/closet/crate/freezer,/obj/item/weapon/reagent_containers/blood/OMinus,/obj/item/weapon/reagent_containers/blood/OMinus,/turf/simulated/floor/tiled/white,/area/medical/surgery) +"Qz" = (/obj/machinery/door/firedoor/glass,/obj/structure/cable/cyan{icon_state = "1-2"},/obj/machinery/door/airlock/angled_bay/standard/glass{door_color = "#e6ab22"; name = "Particle Accelerator"; req_access = list(10); stripe_color = "#913013"},/turf/simulated/floor/tiled/steel_ridged,/area/engineering/engine_room) +"QA" = (/obj/structure/closet/crate/solar,/obj/effect/floor_decal/industrial/outline/yellow,/turf/simulated/floor,/area/engineering/storage) +"QB" = (/obj/machinery/door/firedoor/glass,/obj/structure/window/bay/reinforced,/obj/machinery/door/blast/angled/open{dir = 4; id = "psychshutter"; name = "Privacy Shutter"},/obj/structure/low_wall/bay/reinforced/white,/turf/simulated/floor,/area/medical/psych) +"QC" = (/obj/effect/floor_decal/industrial/danger{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/red{dir = 9},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/monitoring) +"QD" = (/obj/structure/cable/white{icon_state = "1-2"},/turf/simulated/floor/tiled/eris/white/cargo,/area/stellardelight/deck2/triage) +"QE" = (/obj/structure/cable/orange{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/fuel{dir = 5},/turf/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/engine_eva) +"QG" = (/obj/machinery/appliance/cooker/oven,/turf/simulated/floor/tiled/eris/cafe,/area/crew_quarters/kitchen) +"QH" = (/obj/machinery/atmospherics/pipe/tank/nitrous_oxide{dir = 1},/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos/storage) +"QI" = (/obj/machinery/atmospherics/pipe/simple/heat_exchanging{dir = 5},/turf/simulated/floor/airless,/area/stellardelight/deck2/exterior) +"QJ" = (/obj/machinery/computer/ship/navigation/telescreen{pixel_x = -32; pixel_y = -32},/obj/structure/table/bench/steel,/turf/simulated/floor/tiled/eris/dark/cargo,/area/crew_quarters/recreation_area) +"QK" = (/obj/machinery/atmospherics/omni/mixer{name = "Air Mixer"; tag_east = 1; tag_east_con = 0.79; tag_north = 1; tag_north_con = 0.21; tag_south = 2; tag_south_con = null; tag_west_con = null},/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos/storage) +"QN" = (/obj/structure/extinguisher_cabinet{dir = 4; pixel_x = -27},/obj/item/bodybag/cryobag{pixel_x = -2; pixel_y = -2},/obj/structure/table/reinforced,/obj/item/bodybag/cryobag,/obj/item/bodybag/cryobag{pixel_x = 2; pixel_y = 2},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/obj/machinery/status_display{pixel_y = 32},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/cmostore) +"QO" = (/obj/machinery/atmospherics/pipe/simple/hidden/green{dir = 10},/obj/machinery/meter,/turf/simulated/floor,/area/stellardelight/deck2/combustionworkshop) +"QP" = (/turf/simulated/wall/bay/white,/area/medical/cmostore) +"QQ" = (/obj/structure/cable/orange{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/obj/structure/cable/orange{icon_state = "2-8"},/turf/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/locker_room) +"QR" = (/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/turf/simulated/floor/tiled,/area/stellardelight/deck2/aftport) +"QS" = (/obj/structure/cable/green{icon_state = "1-2"},/turf/simulated/floor/tiled/eris/steel/brown_platform,/area/crew_quarters/bar) +"QT" = (/obj/structure/table/reinforced,/obj/machinery/door/window/westleft{name = "Engineering Reception Desk"; req_access = list(10)},/obj/item/weapon/folder/yellow,/turf/simulated/floor/tiled/eris/dark/gray_platform,/area/engineering/engineering_monitoring) +"QU" = (/obj/machinery/door/firedoor/glass,/obj/structure/window/bay/reinforced,/obj/structure/low_wall/bay/reinforced/orange,/turf/simulated/floor,/area/engineering/engineering_monitoring) +"QV" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/angled_bay/double/glass{dir = 8; door_color = "#9c9c9c"; name = "Commons"; stripe_color = "#89bd66"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/steel_ridged,/area/crew_quarters/recreation_area) +"QW" = (/obj/machinery/power/pointdefense{id_tag = "sd_pd"},/obj/effect/floor_decal/industrial/warning/full,/obj/structure/cable/orange{icon_state = "4-8"},/obj/structure/cable/orange{icon_state = "0-8"},/turf/simulated/floor/airless,/area/stellardelight/deck2/exterior) +"QX" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore) +"QY" = (/obj/machinery/door/firedoor/glass,/obj/structure/window/bay/reinforced,/obj/structure/low_wall/bay/reinforced/steel,/turf/simulated/floor,/area/maintenance/stellardelight/deck2/portaft) +"QZ" = (/obj/structure/window/reinforced{dir = 1; pixel_y = 4},/obj/machinery/light{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/eris/dark/cargo,/area/crew_quarters/recreation_area) +"Ra" = (/obj/machinery/door/firedoor/glass,/obj/structure/window/bay/reinforced,/obj/structure/low_wall/bay/reinforced/steel,/turf/simulated/floor,/area/storage/tech) +"Rb" = (/obj/machinery/power/tesla_coil,/obj/structure/cable/yellow{icon_state = "0-8"},/turf/simulated/floor/airless,/area/engineering/engine_room) +"Rc" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/window/eastright{dir = 8; name = "Chemistry"},/obj/machinery/door/window/westleft{dir = 4; name = "Chemistry"; req_one_access = list(33)},/obj/machinery/door/blast/shutters{dir = 8; id = "chemistry"; layer = 3.1; name = "Chemistry Shutters"},/obj/structure/table/reinforced,/turf/simulated/floor/tiled/white,/area/medical/chemistry) +"Rd" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/blast/angled/open{dir = 4; id = "bridgelockdown"},/obj/machinery/door/airlock/angled_bay/standard/glass{dir = 4; door_color = "#323d80"; name = "Bridge"; req_access = list(19); req_one_access = list(19); stripe_color = "#f7d35c"},/turf/simulated/floor/tiled/steel_ridged,/area/bridge) +"Re" = (/obj/machinery/door/firedoor/glass,/obj/structure/cable/orange{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/door/airlock/angled_bay/standard/glass{door_color = "#e6ab22"; name = "Engineering Monitoring Room"; req_access = null; req_one_access = list(11,24); stripe_color = "#913013"},/turf/simulated/floor/tiled/steel_ridged,/area/engineering/engineering_monitoring) +"Rf" = (/obj/structure/table/steel_reinforced,/obj/item/weapon/book/manual/sd_guide,/obj/effect/floor_decal/milspec/color/blue/half{dir = 6},/turf/simulated/floor/tiled/eris/dark/gray_platform,/area/bridge) +"Rh" = (/obj/structure/table/standard,/obj/item/weapon/paper_bin,/obj/item/weapon/pen/red,/obj/item/weapon/pen{pixel_x = 4; pixel_y = 4},/turf/simulated/floor/tiled/eris/steel/brown_platform,/area/quartermaster/storage) +"Ri" = (/obj/structure/table/bench/steel,/turf/simulated/floor/tiled/eris/dark/cargo,/area/crew_quarters/recreation_area) +"Rj" = (/obj/effect/floor_decal/milspec/color/blue/half{dir = 4},/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore) +"Rk" = (/obj/structure/sign/department/eng{pixel_x = 32},/obj/effect/floor_decal/milspec/color/orange/half{dir = 4},/turf/simulated/floor/tiled,/area/stellardelight/deck2/aftstarboard) +"Rl" = (/obj/machinery/atmospherics/portables_connector/fuel,/obj/effect/floor_decal/industrial/outline/red,/turf/simulated/floor,/area/stellardelight/deck2/fuelstorage) +"Rm" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled,/area/crew_quarters/locker) +"Rn" = (/obj/structure/sink{dir = 8; pixel_x = -12},/turf/simulated/floor/wood,/area/stellardelight/deck2/barbackroom) +"Ro" = (/obj/machinery/vending/wardrobe/hydrobe,/obj/machinery/light{dir = 4},/obj/effect/floor_decal/milspec/color/green/half{dir = 4},/turf/simulated/floor/tiled,/area/hydroponics) +"Rp" = (/obj/machinery/door/firedoor/glass,/obj/structure/cable/green{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/door/airlock/angled_bay/hatch{name = "maintenance access"; stripe_color = "#454545"},/turf/simulated/floor/tiled/steel_ridged,/area/stellardelight/deck2/port) +"Rq" = (/turf/simulated/open,/area/stellardelight/deck2/fore) +"Rr" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled/eris/steel/brown_platform,/area/crew_quarters/bar) +"Rs" = (/obj/machinery/power/emitter{anchored = 1; icon_state = "emitter1"; state = 1},/obj/structure/cable/cyan{icon_state = "0-4"},/turf/simulated/floor/airless,/area/engineering/engine_room) +"Ru" = (/turf/simulated/floor/glass/reinforced,/area/stellardelight/deck2/starboard) +"Rv" = (/obj/structure/sign/poster{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 1},/turf/simulated/floor/tiled,/area/stellardelight/deck2/aftport) +"Rw" = (/obj/machinery/door/firedoor/glass,/obj/machinery/atmospherics/pipe/simple/hidden/red,/obj/machinery/door/airlock/angled_bay/standard/glass{door_color = "#e6ab22"; name = "O2 Production"; req_access = list(24); stripe_color = "#2ebfbd"},/turf/simulated/floor/tiled/steel_ridged,/area/stellardelight/deck2/o2production) +"Rx" = (/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/eris/steel/cargo,/area/quartermaster/storage) +"Ry" = (/obj/machinery/particle_accelerator/control_box,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/turf/simulated/floor/tiled/eris/dark/danger,/area/engineering/engine_room) +"Rz" = (/obj/structure/cable/green{icon_state = "4-8"},/obj/machinery/light/small,/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor,/area/maintenance/stellardelight/deck2/portaft) +"RA" = (/obj/machinery/smartfridge/drying_rack,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/effect/floor_decal/milspec/color/green/half{dir = 6},/turf/simulated/floor/tiled,/area/hydroponics) +"RD" = (/obj/structure/sign/directions/kitchen{dir = 1; pixel_y = 32},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 1},/obj/effect/floor_decal/milspec/color/black/corner{dir = 1},/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore) +"RE" = (/obj/structure/stairs/spawner/north,/obj/structure/railing/grey{dir = 8},/turf/simulated/floor,/area/maintenance/stellardelight/deck2/portaft) +"RF" = (/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/reception) +"RG" = (/obj/structure/cable/cyan{icon_state = "1-2"},/obj/machinery/firealarm/angled{dir = 8},/turf/simulated/floor/tiled/eris/dark/techfloor_grid,/area/engineering/engine_room) +"RH" = (/obj/structure/cable/blue{icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/wood,/area/crew_quarters/captain) +"RI" = (/obj/structure/bed/chair/office/dark,/obj/effect/landmark/start/chemist,/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/chemistry) +"RJ" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/obj/structure/cable/cyan{icon_state = "1-8"},/turf/simulated/floor/tiled/eris/dark/techfloor_grid,/area/engineering/engine_room) +"RK" = (/obj/effect/floor_decal/steeldecal/steel_decals5,/turf/simulated/floor/tiled,/area/crew_quarters/locker) +"RL" = (/obj/machinery/atmospherics/pipe/simple/hidden/green,/obj/structure/cable/orange{icon_state = "1-2"},/obj/item/device/radio/intercom{dir = 8; pixel_x = -24},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/monitoring) +"RM" = (/obj/effect/floor_decal/steeldecal/steel_decals6,/obj/effect/floor_decal/steeldecal/steel_decals6{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/turf/simulated/floor/tiled/white,/area/medical/surgery) +"RN" = (/obj/machinery/atmospherics/binary/pump{dir = 8},/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos/storage) +"RO" = (/obj/structure/cable/yellow{icon_state = "4-8"},/mob/living/simple_mob/animal/passive/mouse/jerboa/leggy,/turf/simulated/floor/tiled/eris/steel/brown_platform,/area/quartermaster/storage) +"RP" = (/obj/structure/table/reinforced,/obj/machinery/recharger{pixel_y = 4},/turf/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/workshop) +"RQ" = (/obj/effect/floor_decal/corner_steel_grid{dir = 10},/obj/machinery/body_scanconsole{dir = 4},/turf/simulated/floor/tiled/eris/white/cargo,/area/stellardelight/deck2/triage) +"RR" = (/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/stellardelight/deck2/port) +"RS" = (/obj/structure/cable/blue{icon_state = "1-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor,/area/maintenance/stellardelight/deck2/starboardfore) +"RT" = (/obj/effect/floor_decal/milspec/color/blue/half,/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore) +"RU" = (/obj/machinery/atmospherics/pipe/simple/hidden/fuel{dir = 9},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/turf/simulated/floor/tiled/techfloor,/area/stellardelight/deck2/fuelstorage) +"RV" = (/obj/structure/cable/yellow{icon_state = "1-2"},/turf/simulated/floor/tiled/eris/dark/techfloor_grid,/area/engineering/engine_room) +"RW" = (/obj/structure/sign/painting/library_secure{pixel_x = 30},/turf/simulated/floor/wood,/area/medical/psych) +"RX" = (/obj/structure/table/standard,/obj/item/device/camera_film{pixel_x = 4; pixel_y = 11},/obj/item/device/camera_film{pixel_x = -3; pixel_y = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 8},/turf/simulated/floor/tiled,/area/storage/art) +"RY" = (/obj/structure/cable/orange{icon_state = "4-8"},/turf/simulated/wall/bay/r_wall/steel,/area/engineering/engine_room) +"Sb" = (/turf/simulated/floor/tiled/eris/dark/danger,/area/engineering/engine_room) +"Sc" = (/obj/machinery/atmospherics/binary/pump/fuel{name = "Tanks To Engines"},/obj/effect/floor_decal/industrial/outline/yellow,/turf/simulated/floor,/area/stellardelight/deck2/fuelstorage) +"Sd" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/manifold4w/hidden/fuel,/turf/simulated/floor/tiled/techfloor,/area/stellardelight/deck2/fuelstorage) +"Se" = (/obj/machinery/light/small{dir = 8},/obj/structure/cable/yellow{icon_state = "1-2"},/obj/structure/cable/yellow{icon_state = "2-4"},/turf/simulated/floor/plating,/area/engineering/storage) +"Sf" = (/obj/structure/table/standard,/obj/item/weapon/storage/firstaid/regular,/obj/machinery/alarm/angled,/turf/simulated/floor/tiled/eris/steel/cargo,/area/quartermaster/storage) +"Sg" = (/obj/machinery/atmospherics/binary/circulator{anchored = 1},/turf/simulated/floor,/area/stellardelight/deck2/combustionworkshop) +"Sh" = (/obj/machinery/disposal/wall{dir = 1},/obj/structure/disposalpipe/trunk{dir = 8},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/chemistry) +"Sj" = (/obj/machinery/power/pointdefense{id_tag = "sd_pd"},/obj/effect/floor_decal/industrial/warning/full,/obj/structure/cable/orange,/turf/simulated/floor/airless,/area/stellardelight/deck2/exterior) +"Sk" = (/obj/machinery/power/pointdefense{id_tag = "sd_pd"},/obj/effect/floor_decal/industrial/warning/full,/obj/structure/cable/orange{icon_state = "2-4"},/obj/structure/cable/orange{icon_state = "0-4"},/turf/simulated/floor/airless,/area/stellardelight/deck2/exterior) +"Sm" = (/turf/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/engine_eva) +"Sn" = (/obj/effect/floor_decal/industrial/warning/corner{dir = 1},/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor/tiled/eris/steel/cargo,/area/quartermaster/storage) +"So" = (/obj/machinery/computer/ship/navigation/telescreen{pixel_y = 32},/obj/machinery/requests_console/preset/bridge{pixel_x = -30},/obj/machinery/atmospherics/unary/vent_scrubber/on,/obj/machinery/light_switch{pixel_y = 24},/obj/effect/landmark/start/commandsecretary,/turf/simulated/floor/tiled/eris/dark/monofloor,/area/bridge) +"Sp" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/turf/simulated/floor/tiled/eris/dark/gray_platform,/area/bridge) +"Sq" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/bed/chair/office/dark{dir = 8},/obj/effect/landmark/start/qm,/turf/simulated/floor/wood,/area/quartermaster/qm) +"Sr" = (/obj/effect/floor_decal/milspec/color/green/corner{dir = 8},/obj/machinery/firealarm/angled{dir = 8},/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore) +"Ss" = (/obj/structure/table/standard,/obj/item/device/healthanalyzer,/obj/machinery/light{dir = 4},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/turf/simulated/floor/tiled/white,/area/medical/surgery2) +"St" = (/obj/structure/cable/orange{icon_state = "2-4"},/turf/simulated/floor,/area/maintenance/stellardelight/deck2/atmos) +"Su" = (/obj/machinery/atmospherics/pipe/manifold/hidden/fuel{dir = 1},/turf/simulated/floor/tiled/techfloor,/area/stellardelight/deck2/fuelstorage) +"Sv" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 5},/turf/simulated/floor/tiled/eris/steel/brown_platform,/area/quartermaster/storage) +"Sw" = (/obj/machinery/door/firedoor/glass,/obj/structure/cable/cyan{icon_state = "4-8"},/obj/machinery/access_button{command = "cycle_exterior"; frequency = 1379; master_tag = "engine_airlock"; name = "exterior access button"; pixel_y = 32; req_access = list(10,11)},/obj/machinery/door/airlock/angled_bay/external/glass{dir = 4; frequency = 1379; id_tag = "engine_exterior"; locked = 1; name = "Engine Airlock"},/turf/simulated/floor/tiled/steel_ridged,/area/engineering/engine_room) +"Sx" = (/turf/simulated/wall/bay/steel,/area/crew_quarters/bar) +"Sy" = (/obj/machinery/door/firedoor/glass,/obj/structure/cable/green{icon_state = "4-8"},/obj/machinery/door/airlock/angled_bay/standard/glass{dir = 4; name = "Hydroponics"; req_one_access = list(35,28); stripe_color = "#00ab03"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/steel_ridged,/area/hydroponics) +"Sz" = (/obj/machinery/door/firedoor/glass,/obj/structure/window/bay/reinforced,/obj/machinery/door/blast/angled/open{dir = 2; id = "atmoswindowlockdown"},/obj/structure/low_wall/bay/reinforced/steel,/turf/simulated/floor,/area/stellardelight/deck2/o2production) +"SA" = (/obj/structure/cable/orange{icon_state = "1-2"},/turf/simulated/wall/bay/r_wall/steel,/area/maintenance/stellardelight/substation/engineering) +"SD" = (/obj/machinery/door/firedoor/glass/hidden/steel,/obj/structure/cable/green{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled,/area/stellardelight/deck2/central) +"SE" = (/obj/structure/cable/green{icon_state = "4-8"},/turf/simulated/wall/bay/r_wall/steel,/area/maintenance/stellardelight/deck2/portfore) +"SF" = (/obj/machinery/computer/arcade/clawmachine,/turf/simulated/floor/tiled/eris/dark/cargo,/area/crew_quarters/recreation_area) +"SG" = (/obj/structure/table/rack/steel,/obj/item/device/slime_scanner,/obj/item/device/sleevemate,/obj/item/device/robotanalyzer,/obj/item/device/reagent_scanner,/obj/item/device/healthanalyzer,/obj/item/device/geiger,/obj/item/device/analyzer/plant_analyzer,/obj/item/device/analyzer,/obj/item/device/t_scanner,/turf/simulated/floor/tiled/eris/dark/techfloor_grid,/area/storage/tech) +"SH" = (/obj/machinery/button/remote/blast_door{dir = 8; id = "privacyshutters"; name = "Shutter Control"; pixel_x = 25},/turf/simulated/floor/wood,/area/stellardelight/deck2/briefingroom) +"SI" = (/obj/item/weapon/stool/padded{dir = 8},/turf/simulated/floor/tiled/eris/dark/cargo,/area/crew_quarters/recreation_area) +"SK" = (/turf/simulated/wall/bay/r_wall/steel,/area/engineering/atmos/monitoring) +"SL" = (/obj/machinery/hologram/holopad,/turf/simulated/floor/tiled/techmaint,/area/storage/primary) +"SM" = (/obj/structure/cable{icon_state = "1-4"},/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/turf/simulated/floor,/area/maintenance/stellardelight/deck2/starboardaft) +"SN" = (/obj/structure/closet/wardrobe/captain,/turf/simulated/floor/wood,/area/crew_quarters/captain) +"SO" = (/obj/structure/cable/orange{icon_state = "1-4"},/turf/simulated/floor/airless,/area/stellardelight/deck2/exterior) +"SP" = (/obj/machinery/atmospherics/pipe/simple/hidden/fuel{dir = 4},/turf/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/engine_eva) +"SQ" = (/obj/structure/cable{icon_state = "1-2"},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 8},/turf/simulated/floor/tiled,/area/stellardelight/deck2/aftport) +"SR" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/turf/simulated/floor,/area/maintenance/stellardelight/deck2/starboardaft) +"SS" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/structure/cable{icon_state = "4-8"},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/monitoring) +"ST" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/angled_bay/external/glass{dir = 4},/turf/simulated/floor/tiled/steel_ridged,/area/stellardelight/deck2/starboard) +"SU" = (/obj/structure/cable/green{icon_state = "1-4"},/obj/structure/cable/green{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore) +"SV" = (/obj/structure/cable{icon_state = "2-4"},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/structure/disposalpipe/sortjunction{dir = 2; name = "Bridge"; sortType = "Bridge"},/turf/simulated/floor,/area/maintenance/stellardelight/deck2/starboardfore) +"SW" = (/obj/structure/cable/orange{icon_state = "2-4"},/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/locker_room) +"SX" = (/obj/effect/floor_decal/steeldecal/steel_decals5,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/stellardelight/deck2/port) +"SY" = (/obj/machinery/light_switch{dir = 8; pixel_x = 26; pixel_y = -11},/obj/effect/floor_decal/milspec/color/green/half{dir = 4},/turf/simulated/floor/tiled,/area/hydroponics) +"SZ" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/eris/steel/cargo,/area/quartermaster/storage) +"Ta" = (/turf/simulated/floor/tiled/eris/cafe,/area/crew_quarters/kitchen) +"Tc" = (/obj/structure/cable/orange{icon_state = "1-2"},/obj/structure/bed/chair/office/dark{dir = 1},/obj/effect/landmark/start/engineer,/turf/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/engineering_monitoring) +"Td" = (/obj/structure/sign/directions/evac{dir = 10; pixel_x = 32},/obj/machinery/camera/network/halls{dir = 8},/obj/effect/floor_decal/milspec/color/orange/corner,/turf/simulated/floor/tiled,/area/stellardelight/deck2/aftstarboard) +"Te" = (/obj/machinery/power/smes/buildable/offmap_spawn/empty{RCon_tag = "Solar Array - Port"},/obj/structure/cable,/turf/simulated/floor,/area/maintenance/stellardelight/deck2/portsolars) +"Tf" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable{icon_state = "1-2"},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/monitoring) +"Tg" = (/obj/effect/floor_decal/industrial/outline/yellow,/obj/structure/cable/blue{icon_state = "0-8"},/obj/structure/cable/blue{icon_state = "16-0"},/obj/structure/disposalpipe/up{dir = 8},/obj/machinery/atmospherics/pipe/zpipe/up/scrubbers,/obj/machinery/atmospherics/pipe/zpipe/up/supply,/obj/machinery/door/firedoor/glass,/turf/simulated/floor,/area/maintenance/stellardelight/deck2/starboardfore) +"Th" = (/obj/machinery/computer/station_alert,/obj/machinery/light/floortube{dir = 1; pixel_y = 6},/obj/item/device/radio/intercom{dir = 1; pixel_y = 24},/turf/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/engineering_monitoring) +"Ti" = (/obj/structure/closet/emcloset,/obj/machinery/status_display/supply_display{pixel_y = 32},/turf/simulated/floor/tiled/eris/steel/brown_platform,/area/quartermaster/storage) +"Tj" = (/obj/machinery/vending/loadout/costume,/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 4},/turf/simulated/floor/tiled,/area/crew_quarters/locker) +"Tk" = (/obj/machinery/camera/network/halls{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 4},/turf/simulated/floor/tiled,/area/stellardelight/deck2/starboard) +"Tl" = (/obj/machinery/camera/network/halls{dir = 4},/obj/effect/floor_decal/milspec/color/black/corner{dir = 1},/obj/effect/floor_decal/milspec/color/silver/corner{dir = 8},/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore) +"Tm" = (/obj/structure/table/rack,/obj/item/roller,/obj/item/roller{pixel_y = 8},/obj/machinery/atmospherics/pipe/simple/hidden/cyan{dir = 4},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/obj/effect/landmark/vermin,/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/cmostore) +"Tn" = (/obj/machinery/chem_master,/obj/machinery/light{dir = 1},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/chemistry) +"To" = (/turf/simulated/wall/bay/orange,/area/engineering/workshop) +"Tp" = (/obj/structure/cable/white{icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/turf/simulated/floor/wood,/area/medical/psych) +"Tq" = (/obj/machinery/atmospherics/pipe/simple/visible/universal{name = "Waste to Filter"},/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos/monitoring) +"Tr" = (/obj/structure/cable{icon_state = "1-4"},/turf/simulated/floor,/area/stellardelight/deck2/combustionworkshop) +"Ts" = (/turf/simulated/shuttle/wall,/area/stellardelight/deck2/starboardescape) +"Tt" = (/obj/effect/shuttle_landmark/premade/sd/deck2/port,/turf/space,/area/space) +"Tu" = (/obj/machinery/atmospherics/binary/pump/fuel{dir = 8; name = "Tank Refuel"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/effect/floor_decal/industrial/outline/red,/turf/simulated/floor,/area/stellardelight/deck2/fuelstorage) +"Tv" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor,/area/maintenance/stellardelight/deck2/starboardaft) +"Tw" = (/obj/structure/cable/orange{icon_state = "2-8"},/turf/simulated/wall/bay/r_wall/steel,/area/maintenance/stellardelight/deck2/portsolars) +"Tx" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/machinery/camera/network/engineering{dir = 1},/turf/simulated/floor/tiled/eris/dark/techfloor_grid,/area/storage/tech) +"TA" = (/obj/machinery/atmospherics/portables_connector{dir = 1},/obj/machinery/light{dir = 4},/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos/storage) +"TB" = (/obj/structure/table/standard,/obj/item/weapon/storage/box{pixel_x = 3; pixel_y = 3},/obj/item/weapon/storage/box,/obj/item/weapon/tape_roll{pixel_x = 4; pixel_y = 4},/obj/item/weapon/tape_roll,/obj/machinery/status_display{pixel_y = 32},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 1},/turf/simulated/floor/tiled,/area/storage/art) +"TC" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/eris/steel/brown_platform,/area/crew_quarters/bar) +"TD" = (/obj/structure/table/steel,/obj/item/weapon/module/power_control,/obj/item/weapon/airlock_electronics,/obj/item/weapon/module/power_control,/obj/item/weapon/airlock_electronics,/obj/item/device/aicard,/obj/item/weapon/aiModule/reset,/obj/structure/cable/orange{icon_state = "1-4"},/obj/machinery/light/small{dir = 8},/turf/simulated/floor/tiled/eris/dark/techfloor_grid,/area/storage/tech) +"TF" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/obj/machinery/portable_atmospherics/canister/oxygen,/turf/simulated/floor/tiled/techfloor,/area/stellardelight/deck2/o2production) +"TG" = (/obj/structure/table/reinforced,/obj/machinery/firealarm/angled,/obj/item/weapon/storage/briefcase/inflatable{pixel_x = 3; pixel_y = 6},/obj/item/weapon/storage/briefcase/inflatable{pixel_y = 3},/obj/item/weapon/storage/briefcase/inflatable{pixel_x = -3},/turf/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/engine_eva) +"TH" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/turf/simulated/floor/tiled/techfloor,/area/stellardelight/deck2/o2production) +"TI" = (/obj/structure/cable{icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/stellardelight/deck2/starboard) +"TJ" = (/obj/machinery/computer/guestpass{pixel_y = 24},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 1},/turf/simulated/floor/tiled,/area/stellardelight/deck2/aftport) +"TK" = (/obj/structure/closet/secure_closet/cargotech,/obj/item/weapon/stamp/cargo,/obj/item/weapon/storage/backpack/dufflebag,/obj/machinery/power/apc/angled{dir = 4},/obj/structure/cable/yellow{icon_state = "0-8"},/turf/simulated/floor/tiled/eris/steel/cargo,/area/quartermaster/storage) +"TL" = (/obj/structure/cable/white{icon_state = "1-2"},/obj/effect/floor_decal/corner_steel_grid{dir = 10},/obj/machinery/bodyscanner{dir = 4},/turf/simulated/floor/tiled/eris/white/cargo,/area/stellardelight/deck2/triage) +"TM" = (/obj/effect/floor_decal/milspec/color/black/corner,/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore) +"TN" = (/obj/structure/cable/green{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/turf/simulated/floor/tiled,/area/stellardelight/deck2/aftstarboard) +"TO" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/fuel{dir = 4},/turf/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/engine_eva) +"TP" = (/obj/structure/flora/pottedplant/orientaltree,/obj/effect/floor_decal/milspec/color/white/corner,/turf/simulated/floor/tiled/eris/dark/monofloor,/area/bridge) +"TQ" = (/obj/structure/bed/chair/bay/shuttle{dir = 4},/obj/machinery/light/small{dir = 1},/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck2/starboardescape) +"TR" = (/obj/effect/floor_decal/steeldecal/steel_decals5,/turf/simulated/floor/tiled/eris/white/cargo,/area/stellardelight/deck2/triage) +"TS" = (/obj/structure/flora/pottedplant/tall,/obj/structure/closet/emergsuit_wall{dir = 8; pixel_x = -27},/turf/simulated/floor/tiled/eris/steel/brown_platform,/area/quartermaster/storage) +"TU" = (/obj/machinery/door/blast/angled/open{dir = 2; id = "barlockdown"},/turf/simulated/floor/airless,/area/crew_quarters/bar) +"TV" = (/obj/structure/cable/green{icon_state = "1-2"},/turf/simulated/wall/bay/r_wall/steel,/area/maintenance/stellardelight/deck2/starboardfore) +"TW" = (/obj/structure/sign/department/atmos{pixel_x = -32},/obj/effect/floor_decal/milspec/color/orange/half{dir = 10},/obj/structure/flora/pottedplant/smalltree,/turf/simulated/floor/tiled,/area/stellardelight/deck2/aftport) +"TX" = (/obj/machinery/atmospherics/pipe/simple/hidden{dir = 5},/turf/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/engine_eva) +"TY" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/turf/simulated/floor/wood,/area/stellardelight/deck2/barbackroom) +"TZ" = (/obj/structure/cable{icon_state = "1-2"},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 8},/turf/simulated/floor/tiled,/area/stellardelight/deck2/port) +"Ua" = (/obj/machinery/door/firedoor/glass/hidden/steel{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals5,/turf/simulated/floor/tiled,/area/stellardelight/deck2/aftport) +"Ub" = (/obj/structure/cable/green{icon_state = "1-8"},/obj/machinery/light/small{dir = 4},/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor,/area/maintenance/stellardelight/deck2/portfore) +"Uc" = (/turf/simulated/floor,/area/stellardelight/deck2/aftstarboard) +"Ud" = (/obj/structure/table/glass,/obj/machinery/door/window/southright{dir = 1; req_access = list(5)},/obj/structure/cable/white{icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/reception) +"Ue" = (/obj/structure/sink{dir = 4; pixel_x = 11},/obj/effect/floor_decal/milspec/color/green/half{dir = 4},/turf/simulated/floor/tiled,/area/hydroponics) +"Uf" = (/obj/structure/cable/orange{icon_state = "1-2"},/obj/effect/floor_decal/industrial/warning/full,/obj/machinery/power/pointdefense{id_tag = "sd_pd"},/obj/structure/cable/orange{icon_state = "0-2"},/turf/simulated/floor/airless,/area/stellardelight/deck2/exterior) +"Ug" = (/obj/structure/cable/orange{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/fuel,/turf/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/engine_eva) +"Uh" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/cable{icon_state = "2-4"},/obj/structure/cable{icon_state = "2-8"},/turf/simulated/floor/airless,/area/stellardelight/deck2/exterior) +"Ui" = (/turf/simulated/floor/tiled/eris/steel/cargo,/area/quartermaster/storage) +"Uj" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable/blue{icon_state = "4-8"},/turf/simulated/floor/tiled/eris/dark/gray_platform,/area/bridge) +"Uk" = (/obj/machinery/pipedispenser,/obj/machinery/light{dir = 4},/obj/structure/cable/orange{icon_state = "1-2"},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/monitoring) +"Ul" = (/obj/machinery/atmospherics/pipe/simple/hidden/green,/obj/structure/disposalpipe/segment,/obj/structure/cable/orange{icon_state = "1-2"},/obj/structure/cable{icon_state = "4-8"},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/monitoring) +"Um" = (/obj/structure/cable/yellow{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/eris/steel/brown_platform,/area/quartermaster/storage) +"Un" = (/obj/machinery/atmospherics/binary/pump/on{dir = 1; name = "Ports to Waste"},/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos/storage) +"Uo" = (/obj/machinery/portable_atmospherics/hydroponics,/obj/effect/floor_decal/milspec/color/green,/turf/simulated/floor/tiled,/area/hydroponics) +"Up" = (/obj/structure/cable/orange{icon_state = "2-8"},/obj/structure/cable/orange{icon_state = "1-8"},/turf/simulated/floor/airless,/area/stellardelight/deck2/exterior) +"Uq" = (/obj/machinery/vending/medical,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/light{dir = 1},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/cmostore) +"Ur" = (/obj/effect/floor_decal/industrial/outline/yellow,/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/obj/item/device/radio/intercom{dir = 8; pixel_x = -24},/turf/simulated/floor/tiled/eris/steel/cargo,/area/quartermaster/storage) +"Us" = (/obj/machinery/atmospherics/pipe/simple/heat_exchanging,/obj/structure/cable/orange{icon_state = "1-4"},/obj/structure/cable/orange{icon_state = "2-4"},/obj/structure/cable/orange{icon_state = "1-2"},/turf/simulated/floor/airless,/area/stellardelight/deck2/exterior) +"Ut" = (/turf/simulated/floor/glass/reinforced,/area/crew_quarters/recreation_area) +"Uu" = (/obj/machinery/door/firedoor/glass,/obj/structure/window/bay/reinforced,/obj/machinery/door/blast/angled/open{id = "privacyshutters"; name = "Privacy Shutter"},/obj/structure/low_wall/bay/reinforced/blue,/turf/simulated/floor,/area/stellardelight/deck2/briefingroom) +"Uv" = (/obj/structure/cable/green{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/angled_bay/hatch{name = "maintenance access"; stripe_color = "#454545"},/turf/simulated/floor,/area/maintenance/stellardelight/deck2/portfore) +"Ux" = (/obj/structure/bed/chair/backed_red{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/effect/landmark/start/visitor,/turf/simulated/floor/tiled/eris/steel/brown_platform,/area/crew_quarters/bar) +"Uy" = (/obj/machinery/light/floortube{dir = 8; pixel_x = -6},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/effect/landmark{name = "lightsout"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/monotile,/area/hydroponics) +"Uz" = (/obj/structure/disposalpipe/sortjunction/flipped{dir = 2; name = "Engineering"; sortType = "Engineering"},/turf/simulated/floor/tiled/eris/dark/gray_platform,/area/engineering/workshop) +"UA" = (/obj/structure/cable/green{icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/effect/landmark{name = "lightsout"},/obj/machinery/hologram/holopad,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/stellardelight/deck2/starboard) +"UB" = (/obj/machinery/power/smes/buildable{RCon_tag = "Substation - Engineering"; output_attempt = 0},/obj/structure/cable/orange{icon_state = "0-2"},/obj/structure/cable/orange,/turf/simulated/floor/plating,/area/maintenance/stellardelight/substation/engineering) +"UC" = (/turf/simulated/floor/wood,/area/stellardelight/deck2/barbackroom) +"UD" = (/obj/machinery/atmospherics/pipe/simple/hidden/green{dir = 4},/obj/effect/floor_decal/industrial/danger{dir = 1},/obj/structure/cable/orange{icon_state = "1-2"},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/monitoring) +"UE" = (/obj/effect/floor_decal/industrial/warning{dir = 8},/obj/structure/cable/cyan{icon_state = "4-8"},/turf/simulated/floor/airless,/area/engineering/engine_room) +"UF" = (/obj/structure/cable/yellow{icon_state = "1-2"},/turf/simulated/floor/airless,/area/engineering/engine_room) +"UG" = (/turf/simulated/wall/bay/r_wall/orange,/area/stellardelight/deck2/fuelstorage) +"UH" = (/obj/structure/cable/white{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/chemistry) +"UI" = (/obj/machinery/atmospherics/pipe/simple/hidden/cyan,/turf/simulated/wall/bay/r_wall/steel,/area/stellardelight/deck2/combustionworkshop) +"UJ" = (/obj/structure/cable{icon_state = "1-8"},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor,/area/maintenance/stellardelight/deck2/starboardfore) +"UK" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/effect/landmark/start/engineer,/turf/simulated/floor/tiled/eris/dark/gray_platform,/area/engineering/workshop) +"UL" = (/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable/blue{icon_state = "4-8"},/turf/simulated/floor/tiled/eris/dark/gray_platform,/area/bridge) +"UM" = (/obj/effect/floor_decal/emblem/stellardelight,/obj/effect/floor_decal/milspec/color/blue/half,/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore) +"UN" = (/obj/structure/cable/green{icon_state = "1-2"},/turf/simulated/floor/tiled,/area/storage/art) +"UO" = (/obj/machinery/conveyor{dir = 1; id = "packageSort1"},/obj/structure/plasticflaps,/turf/simulated/floor/tiled/eris/steel/cargo,/area/quartermaster/storage) +"UQ" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals_central5{dir = 1; pixel_y = 1},/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore) +"UR" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/wall/bay/r_wall/steel,/area/stellardelight/deck2/port) +"US" = (/obj/machinery/door/firedoor/glass/hidden/steel,/obj/structure/sign/directions/bar{dir = 1; pixel_x = -32},/obj/effect/floor_decal/milspec/color/black/corner{dir = 1},/obj/effect/floor_decal/milspec/color/silver/corner{dir = 8},/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore) +"UT" = (/obj/structure/cable/green{icon_state = "1-2"},/obj/structure/cable/green{icon_state = "2-8"},/turf/simulated/floor/airless,/area/stellardelight/deck2/exterior) +"UU" = (/obj/machinery/atmospherics/portables_connector,/obj/machinery/portable_atmospherics/canister/air/airlock,/obj/machinery/light{dir = 1},/turf/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/engine_eva) +"UV" = (/obj/structure/table/rack/steel,/obj/item/weapon/circuitboard/body_designer{pixel_x = -3; pixel_y = 3},/obj/item/weapon/circuitboard/resleeving_control{pixel_x = -1; pixel_y = 1},/obj/item/weapon/circuitboard/transhuman_clonepod{pixel_x = 1; pixel_y = -1},/obj/item/weapon/circuitboard/transhuman_synthprinter{pixel_x = 3; pixel_y = -3},/turf/simulated/floor/tiled/eris/dark/techfloor_grid,/area/storage/tech) +"UX" = (/obj/structure/table/gamblingtable,/turf/simulated/floor/carpet,/area/crew_quarters/recreation_area) +"UY" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/techfloor,/area/stellardelight/deck2/o2production) +"UZ" = (/obj/effect/floor_decal/industrial/outline/yellow,/obj/machinery/light{dir = 8},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/turf/simulated/floor/tiled/eris/steel/cargo,/area/quartermaster/storage) +"Vb" = (/turf/simulated/wall/bay/white,/area/stellardelight/deck2/triage) +"Vc" = (/obj/structure/cable/orange{icon_state = "1-2"},/obj/effect/floor_decal/industrial/warning/full,/obj/structure/cable/orange{icon_state = "0-2"},/obj/machinery/power/pointdefense{id_tag = "sd_pd"},/turf/simulated/floor/airless,/area/stellardelight/deck2/exterior) +"Vd" = (/obj/structure/cable/green{icon_state = "1-2"},/turf/simulated/wall/bay/r_wall/steel,/area/crew_quarters/kitchen) +"Ve" = (/turf/simulated/floor/tiled,/area/stellardelight/deck2/port) +"Vf" = (/turf/simulated/floor/airless,/area/engineering/engine_room) +"Vg" = (/obj/machinery/light,/turf/simulated/floor/wood,/area/stellardelight/deck2/briefingroom) +"Vh" = (/obj/machinery/door/firedoor/glass,/obj/structure/cable/green{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/door/airlock/angled_bay/standard/color{dir = 4; door_color = "#9c9c9c"; fill_color = "#5c5c5c"; name = "Bar Backroom"; req_access = list(25); stripe_color = "#89bd66"},/turf/simulated/floor/tiled/steel_ridged,/area/crew_quarters/bar) +"Vi" = (/obj/machinery/atmospherics/pipe/simple/hidden/fuel{dir = 4},/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable{icon_state = "4-8"},/turf/simulated/floor/tiled/eris/steel/cargo,/area/quartermaster/storage) +"Vj" = (/obj/machinery/door/firedoor/glass,/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/door/airlock/angled_bay/standard/glass{dir = 4; door_color = "#a6753d"; name = "Cargo Office"; req_access = list(31); stripe_color = "#3b2b1a"},/turf/simulated/floor/tiled/steel_ridged,/area/quartermaster/storage) +"Vk" = (/obj/structure/cable/green{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/turf/simulated/floor/tiled,/area/stellardelight/deck2/aftport) +"Vl" = (/obj/machinery/atmospherics/pipe/simple/hidden/fuel{dir = 4},/obj/structure/cable{icon_state = "1-4"},/obj/structure/disposalpipe/sortjunction/flipped{dir = 8; name = "Trash"; sortType = "Trash"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/obj/structure/cable{icon_state = "1-8"},/obj/structure/cable{icon_state = "4-8"},/turf/simulated/floor/tiled/eris/steel/cargo,/area/quartermaster/storage) +"Vm" = (/turf/simulated/floor/airless,/area/stellardelight/deck2/fuelstorage) +"Vo" = (/turf/simulated/wall/bay/r_wall/orange,/area/engineering/workshop) +"Vp" = (/obj/structure/table/standard,/obj/machinery/cell_charger,/obj/item/weapon/module/power_control,/obj/item/weapon/cell{maxcharge = 2000},/turf/simulated/floor/tiled/eris/steel/cargo,/area/quartermaster/storage) +"Vq" = (/obj/machinery/atmospherics/pipe/simple/hidden/cyan,/obj/structure/cable/white{icon_state = "1-2"},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/cmostore) +"Vr" = (/obj/structure/window/reinforced{dir = 4; pixel_x = 4},/obj/structure/flora/pottedplant/decorative,/turf/simulated/floor/glass/reinforced,/area/stellardelight/deck2/fore) +"Vt" = (/obj/effect/floor_decal/industrial/warning{dir = 1},/obj/structure/closet/crate/freezer,/obj/item/weapon/reagent_containers/blood/OMinus,/obj/item/weapon/reagent_containers/blood/OMinus,/obj/structure/sink{dir = 4; pixel_x = 11},/turf/simulated/floor/tiled/white,/area/medical/surgery2) +"Vu" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/camera/network/halls{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals5,/turf/simulated/floor/tiled,/area/stellardelight/deck2/aftstarboard) +"Vv" = (/obj/structure/cable/green{icon_state = "4-8"},/obj/structure/table/standard,/obj/item/weapon/reagent_containers/food/snacks/mint,/obj/machinery/light/floortube{pixel_y = -6},/obj/item/weapon/reagent_containers/food/condiment/small/peppermill{pixel_x = 3; pixel_y = 13},/obj/item/weapon/reagent_containers/food/condiment/small/saltshaker{pixel_x = -1; pixel_y = 10},/turf/simulated/floor/tiled/eris/cafe,/area/crew_quarters/kitchen) +"Vw" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/angled_bay/standard/glass{name = "glass airlock"},/turf/simulated/floor/tiled/steel_ridged,/area/stellardelight/deck2/port) +"Vx" = (/obj/machinery/power/grounding_rod,/obj/structure/cable/yellow{icon_state = "1-4"},/turf/simulated/floor/airless,/area/engineering/engine_room) +"Vy" = (/obj/machinery/disposal/wall{dir = 1},/obj/structure/disposalpipe/trunk{dir = 1},/turf/simulated/floor/tiled/eris/dark/monofloor,/area/bridge) +"Vz" = (/obj/structure/window/reinforced{dir = 1},/obj/effect/landmark/start/botanist,/turf/simulated/floor/grass,/area/hydroponics) +"VA" = (/obj/machinery/atmospherics/pipe/simple/hidden/green,/obj/structure/cable/orange{icon_state = "1-2"},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/monitoring) +"VB" = (/obj/machinery/atmospherics/unary/outlet_injector{frequency = 1438; id = "cooling_in"; name = "Coolant Injector"; pixel_y = 1; power_rating = 30000; use_power = 1; volume_rate = 700},/turf/simulated/floor/reinforced/airless,/area/stellardelight/deck2/combustionworkshop) +"VC" = (/obj/effect/floor_decal/spline/plain{dir = 9},/turf/simulated/floor/lino,/area/crew_quarters/bar) +"VD" = (/obj/structure/cable/green{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/effect/mouse_hole_spawner{dir = 8},/turf/simulated/floor,/area/maintenance/stellardelight/deck2/portfore) +"VE" = (/obj/structure/cable/blue{icon_state = "4-8"},/obj/machinery/light_switch{pixel_y = 25},/turf/simulated/floor/wood,/area/crew_quarters/captain) +"VF" = (/obj/machinery/door/airlock/angled_bay/standard/color{dir = 4; door_color = "#323d80"; name = "Briefing Room"; req_access = list(19); req_one_access = list(19); stripe_color = "#f7d35c"},/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled/steel_ridged,/area/stellardelight/deck2/briefingroom) +"VG" = (/obj/effect/floor_decal/milspec/color/silver/corner{dir = 4},/obj/effect/floor_decal/milspec/color/black/corner{dir = 1},/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore) +"VH" = (/obj/machinery/firealarm/angled{dir = 4},/turf/simulated/floor/tiled/freezer/cold,/area/crew_quarters/kitchen) +"VI" = (/obj/machinery/atmospherics/pipe/simple/hidden/yellow,/turf/simulated/floor,/area/stellardelight/deck2/combustionworkshop) +"VJ" = (/turf/simulated/floor/airless,/area/engineering/engine_eva) +"VK" = (/obj/structure/table/standard,/obj/item/stack/nanopaste,/obj/machinery/power/apc/angled{dir = 1},/obj/structure/cable/white{icon_state = "0-2"},/turf/simulated/floor/tiled/white,/area/medical/surgery2) +"VL" = (/obj/structure/closet/chefcloset,/obj/item/glass_jar,/obj/item/device/retail_scanner/civilian,/obj/item/weapon/soap/nanotrasen,/obj/item/device/destTagger{pixel_x = 4; pixel_y = 3},/obj/item/weapon/packageWrap,/obj/item/weapon/packageWrap,/obj/item/weapon/packageWrap,/obj/item/weapon/tool/wrench,/obj/structure/noticeboard{dir = 1; pixel_y = -32},/turf/simulated/floor/tiled/eris/cafe,/area/crew_quarters/kitchen) +"VM" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/eris/dark/cargo,/area/crew_quarters/recreation_area) +"VN" = (/turf/simulated/floor/tiled/steel_grid,/area/stellardelight/deck2/central) +"VO" = (/obj/machinery/atmospherics/pipe/simple/hidden/red,/obj/machinery/atmospherics/pipe/simple/hidden/yellow{dir = 4},/turf/simulated/floor,/area/stellardelight/deck2/combustionworkshop) +"VP" = (/turf/simulated/floor/glass/reinforced,/area/stellardelight/deck2/port) +"VS" = (/obj/structure/table/reinforced,/obj/item/weapon/storage/firstaid/toxin{pixel_x = -9; pixel_y = 10},/obj/item/weapon/storage/firstaid/toxin{pixel_x = -9; pixel_y = 1},/obj/item/weapon/storage/firstaid/o2{pixel_x = 6; pixel_y = 10},/obj/item/weapon/storage/firstaid/o2{pixel_x = 6; pixel_y = 1},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/cmostore) +"VT" = (/obj/structure/bed/chair/bay/shuttle{dir = 8},/obj/machinery/alarm/angled,/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck2/portescape) +"VU" = (/obj/effect/floor_decal/industrial/outline,/obj/effect/floor_decal/steeldecal/steel_decals9,/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 8},/obj/machinery/vending/loadout/gadget,/turf/simulated/floor/tiled/dark,/area/crew_quarters/locker) +"VV" = (/obj/structure/cable/orange{icon_state = "4-8"},/obj/machinery/atmospherics/unary/vent_scrubber/on,/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/monitoring) +"VW" = (/obj/machinery/atmospherics/pipe/manifold/hidden/green{dir = 1},/obj/machinery/meter,/obj/effect/floor_decal/industrial/danger{dir = 1},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/monitoring) +"VX" = (/obj/machinery/atmospherics/pipe/simple/hidden,/obj/structure/table/rack,/obj/random/contraband,/obj/random/maintenance/cargo,/obj/random/maintenance/engineering,/obj/random/maintenance/engineering,/obj/structure/cable{icon_state = "1-2"},/obj/structure/cable{icon_state = "4-8"},/obj/structure/sign/vacuum{pixel_x = 32},/turf/simulated/floor,/area/maintenance/stellardelight/deck2/starboardsolars) +"VY" = (/obj/machinery/computer/timeclock/premade/north,/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 1},/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore) +"VZ" = (/obj/effect/floor_decal/milspec/color/white/half,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/stellardelight/deck2/central) +"Wa" = (/obj/structure/kitchenspike,/turf/simulated/floor/tiled/freezer/cold,/area/crew_quarters/kitchen) +"Wb" = (/obj/structure/lattice,/turf/space,/area/space) +"Wc" = (/obj/item/device/radio/intercom{dir = 4; pixel_x = 24},/obj/machinery/computer/stockexchange{dir = 8},/turf/simulated/floor/tiled/eris/steel/cargo,/area/quartermaster/storage) +"We" = (/obj/effect/floor_decal/industrial/hatch/yellow,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/turf/simulated/floor/tiled/eris/steel/brown_platform,/area/quartermaster/storage) +"Wf" = (/obj/effect/floor_decal/industrial/outline/yellow,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/eris/steel/cargo,/area/quartermaster/storage) +"Wg" = (/obj/structure/closet/firecloset,/turf/simulated/floor,/area/maintenance/stellardelight/deck2/starboardsolars) +"Wh" = (/obj/structure/table/reinforced,/obj/machinery/cell_charger,/obj/item/weapon/cell/high{charge = 100; maxcharge = 15000},/obj/item/weapon/tool/wrench,/obj/item/weapon/cell/high{charge = 100; maxcharge = 15000},/obj/item/weapon/cell/high{charge = 100; maxcharge = 15000},/turf/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/workshop) +"Wi" = (/obj/machinery/computer/crew,/obj/effect/floor_decal/milspec/color/white/half,/turf/simulated/floor/tiled/eris/dark/monofloor,/area/bridge) +"Wj" = (/obj/machinery/atmospherics/pipe/tank/phoron/full{dir = 8},/turf/simulated/floor,/area/stellardelight/deck2/fuelstorage) +"Wk" = (/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 1},/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore) +"Wl" = (/obj/machinery/vending/assist,/obj/machinery/status_display{pixel_y = 32},/turf/simulated/floor/tiled/techmaint,/area/storage/primary) +"Wm" = (/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 1},/turf/simulated/floor/tiled,/area/crew_quarters/locker) +"Wn" = (/obj/machinery/power/pointdefense{id_tag = "sd_pd"},/obj/effect/floor_decal/industrial/warning/full,/obj/structure/cable/green{icon_state = "0-8"},/turf/simulated/floor/airless,/area/stellardelight/deck2/exterior) +"Wo" = (/obj/structure/cable/orange{icon_state = "1-2"},/turf/simulated/floor,/area/maintenance/stellardelight/deck2/atmos) +"Wp" = (/obj/machinery/atmospherics/unary/vent_pump/on,/obj/effect/floor_decal/milspec/color/green/half{dir = 8},/turf/simulated/floor/tiled,/area/hydroponics) +"Wq" = (/obj/structure/window/reinforced{dir = 4; pixel_x = 4},/obj/structure/bed/chair/comfy/brown{dir = 1},/turf/simulated/floor/glass/reinforced,/area/stellardelight/deck2/fore) +"Wr" = (/obj/structure/cable/green{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled,/area/stellardelight/deck2/central) +"Ws" = (/obj/structure/cable/green{icon_state = "1-8"},/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/structure/cable/green{icon_state = "4-8"},/turf/simulated/floor,/area/maintenance/stellardelight/deck2/portaft) +"Wu" = (/obj/machinery/atmospherics/pipe/simple/hidden/cyan{dir = 10},/obj/effect/floor_decal/industrial/warning/corner{dir = 1},/obj/structure/cable/white{icon_state = "4-8"},/obj/structure/cable/white{icon_state = "2-8"},/turf/simulated/floor/tiled/eris/white/cargo,/area/stellardelight/deck2/triage) +"Wv" = (/obj/machinery/atmospherics/binary/pump{dir = 4},/obj/machinery/camera/network/engineering,/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos/storage) +"Ww" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable/cyan{icon_state = "1-2"},/turf/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/locker_room) +"Wx" = (/obj/machinery/atmospherics/pipe/simple/visible/green{dir = 4},/obj/machinery/atmospherics/pipe/simple/visible/black,/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos/storage) +"Wy" = (/obj/structure/sign/painting/public{pixel_x = 30},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 4},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/stellardelight/deck2/starboard) +"Wz" = (/obj/machinery/door/firedoor/glass,/obj/structure/window/bay/reinforced,/obj/structure/low_wall/bay/reinforced/white,/turf/simulated/floor,/area/medical/reception) +"WA" = (/obj/machinery/door/firedoor/glass,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/cyan,/obj/machinery/door/airlock/angled_bay/standard/color{dir = 4; door_color = "#e6ab22"; fill_color = "#877242"; name = "Atmospherics"; req_access = list(24); stripe_color = "#2ebfbd"},/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/steel_ridged,/area/engineering/atmos/monitoring) +"WB" = (/obj/structure/table/glass,/mob/living/simple_mob/animal/passive/cat/jones,/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/reception) +"WC" = (/obj/machinery/alarm/angled,/turf/simulated/floor/tiled/eris/dark/cargo,/area/crew_quarters/recreation_area) +"WE" = (/obj/machinery/firealarm/angled{dir = 4},/obj/structure/closet/crate/bin{anchored = 1},/turf/simulated/floor/tiled/eris/steel/cargo,/area/quartermaster/storage) +"WF" = (/obj/structure/sign/directions/medical{dir = 4; pixel_x = -32; pixel_y = 35},/obj/structure/sign/directions/cargo{pixel_x = -32; pixel_y = 29},/obj/structure/sign/directions/bridge{dir = 1; pixel_x = -32; pixel_y = 41},/obj/structure/sign/directions/bar{dir = 1; pixel_x = -32; pixel_y = 47},/obj/structure/sign/directions/engineering/atmospherics{dir = 10; pixel_x = -32; pixel_y = 23},/turf/simulated/floor/tiled,/area/stellardelight/deck2/port) +"WG" = (/obj/structure/railing/grey,/turf/simulated/open,/area/quartermaster/storage) +"WH" = (/obj/machinery/door/firedoor/glass/hidden/steel{dir = 2},/obj/structure/cable/green{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore) +"WI" = (/obj/structure/bed/chair/backed_red{dir = 8},/obj/structure/cable/green{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/effect/landmark/start/visitor,/turf/simulated/floor/tiled/eris/steel/brown_platform,/area/crew_quarters/bar) +"WJ" = (/obj/machinery/atmospherics/pipe/manifold/hidden/red{dir = 1},/turf/simulated/floor/tiled/techfloor,/area/stellardelight/deck2/o2production) +"WK" = (/obj/structure/closet/emcloset,/obj/structure/cable{icon_state = "1-4"},/turf/simulated/floor/tiled,/area/stellardelight/deck2/port) +"WL" = (/obj/structure/closet/emergsuit_wall{dir = 8; pixel_x = -27},/obj/effect/floor_decal/milspec/color/blue/half{dir = 8},/turf/simulated/floor/tiled,/area/stellardelight/deck2/starboard) +"WM" = (/obj/machinery/atmospherics/pipe/simple/hidden/green{dir = 9},/turf/simulated/floor/tiled/techfloor,/area/stellardelight/deck2/o2production) +"WN" = (/obj/structure/window/reinforced{dir = 1},/turf/simulated/floor/grass,/area/hydroponics) +"WO" = (/obj/structure/cable/green{icon_state = "1-2"},/turf/simulated/floor,/area/maintenance/stellardelight/deck2/starboardfore) +"WP" = (/turf/simulated/shuttle/wall,/area/stellardelight/deck2/portescape) +"WQ" = (/obj/structure/cable/white{icon_state = "4-8"},/obj/machinery/camera/network/medbay{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 6},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/reception) +"WR" = (/obj/structure/table/wooden_reinforced,/obj/random/paicard,/turf/simulated/floor/tiled/eris/dark/cargo,/area/crew_quarters/recreation_area) +"WS" = (/obj/machinery/atmospherics/pipe/simple/visible/red{dir = 6},/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos/storage) +"WT" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/eris/dark/techfloor_grid,/area/engineering/storage) +"WU" = (/obj/machinery/door/firedoor/glass,/obj/structure/cable/orange{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/door/airlock/angled_bay/standard/color{door_color = "#e6ab22"; fill_color = "#877242"; name = "Fuel Storage"; req_access = list(24); stripe_color = "#2ebfbd"},/turf/simulated/floor/tiled/steel_ridged,/area/stellardelight/deck2/fuelstorage) +"WV" = (/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 8},/obj/effect/mouse_hole_spawner{dir = 8},/turf/simulated/floor/tiled,/area/stellardelight/deck2/port) +"WW" = (/obj/machinery/power/apc/angled{dir = 8},/obj/structure/cable/orange{icon_state = "1-2"},/obj/structure/cable/orange{icon_state = "0-2"},/obj/machinery/atmospherics/pipe/simple/hidden/fuel,/turf/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/engine_eva) +"WX" = (/obj/structure/bed/chair/office/dark{dir = 1},/obj/effect/landmark/start/captain,/turf/simulated/floor/carpet/blucarpet,/area/crew_quarters/captain) +"WY" = (/obj/structure/table/glass,/obj/random/medical{pixel_x = -4; pixel_y = 5},/obj/machinery/camera/network/medbay{dir = 8},/obj/machinery/injector_maker{pixel_x = 29},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/stellardelight/deck2/triage) +"WZ" = (/obj/machinery/firealarm/angled{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 8},/turf/simulated/floor/tiled,/area/crew_quarters/locker) +"Xa" = (/turf/simulated/wall/bay/r_wall/white,/area/medical/chemistry) +"Xb" = (/obj/structure/cable/white{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/reception) +"Xc" = (/obj/machinery/shipsensors{dir = 1},/obj/machinery/door/blast/angled/open{dir = 2; id = "barlockdown"},/turf/simulated/floor/airless,/area/crew_quarters/bar) +"Xd" = (/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 1},/turf/simulated/floor/tiled,/area/stellardelight/deck2/starboard) +"Xe" = (/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals6{dir = 4},/obj/effect/landmark/vines,/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore) +"Xf" = (/obj/structure/table/reinforced,/obj/item/weapon/tool/crowbar,/obj/item/clothing/gloves/black,/obj/item/weapon/storage/box/lights/mixed,/obj/machinery/light{dir = 8},/turf/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/workshop) +"Xg" = (/obj/structure/bed/chair/office/dark{dir = 1},/obj/effect/landmark/start/chemist,/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/chemistry) +"Xh" = (/obj/effect/floor_decal/industrial/loading{dir = 4},/turf/simulated/floor/tiled/white,/area/medical/surgery2) +"Xi" = (/obj/structure/cable/green{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore) +"Xj" = (/obj/structure/closet/crate,/obj/item/stack/material/phoron{amount = 25},/obj/effect/floor_decal/industrial/outline/yellow,/obj/structure/cable/yellow{icon_state = "2-8"},/turf/simulated/floor/plating,/area/engineering/storage) +"Xk" = (/turf/simulated/wall/bay/r_wall/steel,/area/crew_quarters/kitchen) +"Xl" = (/obj/machinery/firealarm/angled,/obj/effect/floor_decal/milspec/color/black/corner{dir = 1},/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore) +"Xm" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/machinery/alarm/angled{dir = 4},/turf/simulated/floor,/area/maintenance/stellardelight/deck2/portsolars) +"Xo" = (/obj/machinery/light/small{dir = 8},/turf/simulated/floor/airless,/area/engineering/engine_room) +"Xp" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/turf/simulated/floor,/area/maintenance/stellardelight/deck2/starboardaft) +"Xq" = (/obj/item/weapon/stool/padded{dir = 4},/obj/effect/floor_decal/spline/plain{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/lino,/area/crew_quarters/bar) +"Xr" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden,/turf/simulated/floor,/area/maintenance/stellardelight/deck2/starboardsolars) +"Xs" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/structure/cable/blue{icon_state = "2-4"},/turf/simulated/floor/tiled/eris/dark/gray_platform,/area/bridge) +"Xt" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/table/glass,/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/reception) +"Xu" = (/obj/machinery/atmospherics/unary/freezer{dir = 1},/turf/simulated/floor,/area/engineering/atmos/monitoring) +"Xv" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/angled_bay/standard/glass{name = "glass airlock"},/turf/simulated/floor/tiled/steel_ridged,/area/stellardelight/deck2/starboard) +"Xx" = (/obj/machinery/hologram/holopad,/turf/simulated/floor/tiled/dark,/area/crew_quarters/recreation_area) +"Xy" = (/turf/simulated/floor/tiled/techmaint,/area/storage/primary) +"Xz" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/structure/table/reinforced,/obj/random/tech_supply,/obj/random/tech_supply,/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/item/weapon/cell/high{charge = 100; maxcharge = 15000},/turf/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/engine_eva) +"XB" = (/obj/structure/table/rack{dir = 8; layer = 2.9},/obj/item/weapon/circuitboard/transhuman_resleever{pixel_x = -3; pixel_y = 3},/obj/item/weapon/circuitboard/circuit_imprinter{pixel_x = -1; pixel_y = 1},/obj/item/weapon/circuitboard/aiupload{pixel_x = 1; pixel_y = -1},/obj/item/weapon/circuitboard/borgupload{pixel_x = 3; pixel_y = -3},/obj/machinery/atmospherics/unary/vent_pump/on,/turf/simulated/floor/tiled/eris/dark/techfloor_grid,/area/storage/tech) +"XC" = (/obj/structure/cable/green{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore) +"XD" = (/obj/structure/easel,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 4},/turf/simulated/floor/tiled,/area/storage/art) +"XE" = (/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 4},/obj/effect/mouse_hole_spawner{dir = 4},/turf/simulated/floor/tiled,/area/stellardelight/deck2/starboard) +"XF" = (/obj/structure/table/reinforced,/obj/item/weapon/storage/firstaid/adv{name = "human repair kit"; pixel_x = -9; pixel_y = 9},/obj/item/weapon/storage/firstaid/adv{pixel_x = -9; pixel_y = 1},/obj/item/weapon/storage/firstaid/fire{pixel_x = 6; pixel_y = 9},/obj/item/weapon/storage/firstaid/fire{pixel_x = 6; pixel_y = 1},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/cmostore) +"XG" = (/obj/machinery/atmospherics/binary/algae_farm/filled{dir = 1},/obj/structure/cable/orange{icon_state = "1-2"},/turf/simulated/floor/tiled/techfloor,/area/stellardelight/deck2/o2production) +"XH" = (/obj/machinery/power/breakerbox/activated{RCon_tag = "Engineering Substation Bypass"},/turf/simulated/floor/plating,/area/maintenance/stellardelight/substation/engineering) +"XI" = (/obj/machinery/atmospherics/pipe/simple/hidden/cyan{dir = 5},/obj/structure/cable/orange{icon_state = "4-8"},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/monitoring) +"XJ" = (/obj/machinery/autolathe,/turf/simulated/floor/tiled/eris/steel/brown_platform,/area/quartermaster/storage) +"XK" = (/obj/machinery/atmospherics/pipe/simple/visible/green,/obj/structure/cable/orange{icon_state = "1-2"},/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos/monitoring) +"XL" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/angled_bay/standard/glass{dir = 4; name = "glass airlock"},/turf/simulated/floor/tiled/steel_ridged,/area/stellardelight/deck2/aftstarboard) +"XM" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/embedded_controller/radio/simple_docking_controller/escape_pod_berth{dir = 8; frequency = 1380; id_tag = "starboard_escape_berth"; pixel_x = 24},/turf/simulated/floor/tiled/eris/white/danger,/area/stellardelight/deck2/starboard) +"XN" = (/obj/machinery/computer/supplycomp{dir = 4},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/obj/machinery/camera/network/cargo{dir = 4},/turf/simulated/floor/tiled/eris/steel/brown_platform,/area/quartermaster/storage) +"XO" = (/obj/structure/cable/green{icon_state = "1-2"},/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore) +"XP" = (/obj/machinery/status_display{pixel_y = 32},/obj/machinery/recharge_station,/turf/simulated/floor/tiled/eris/dark/cargo,/area/crew_quarters/recreation_area) +"XQ" = (/obj/structure/cable{icon_state = "2-4"},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals5,/turf/simulated/floor/tiled,/area/stellardelight/deck2/aftstarboard) +"XR" = (/obj/machinery/suit_cycler/captain,/turf/simulated/floor/wood,/area/crew_quarters/captain) +"XS" = (/obj/effect/floor_decal/industrial/danger/corner{dir = 4},/obj/machinery/computer/security/engineering,/obj/structure/noticeboard{pixel_y = 32},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/monitoring) +"XT" = (/obj/machinery/door/firedoor/glass,/obj/structure/window/bay/reinforced,/obj/structure/low_wall/bay/reinforced/steel,/turf/simulated/floor,/area/maintenance/stellardelight/deck2/starboardaft) +"XU" = (/obj/item/weapon/stool/padded{dir = 4},/obj/effect/floor_decal/spline/plain{dir = 8},/turf/simulated/floor/lino,/area/crew_quarters/bar) +"XV" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/obj/structure/cable{icon_state = "1-2"},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/monitoring) +"XW" = (/obj/structure/cable/orange{icon_state = "1-2"},/obj/machinery/power/apc/angled{dir = 4; name = "night shift APC"; nightshift_setting = 2},/obj/structure/cable/orange,/turf/simulated/floor,/area/maintenance/stellardelight/deck2/atmos) +"XX" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/table/standard,/obj/item/weapon/cartridge/quartermaster{pixel_x = -4; pixel_y = 7},/obj/item/weapon/cartridge/quartermaster{pixel_x = 6; pixel_y = 5},/obj/item/weapon/cartridge/quartermaster,/turf/simulated/floor/wood,/area/quartermaster/qm) +"XY" = (/obj/effect/landmark/start/medical,/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/cmostore) +"XZ" = (/obj/structure/bookcase,/obj/item/weapon/book/manual/anomaly_spectroscopy,/obj/item/weapon/book/manual/anomaly_testing,/obj/item/weapon/book/manual/materials_chemistry_analysis,/obj/item/weapon/book/manual/resleeving,/obj/item/weapon/book/manual/standard_operating_procedure,/obj/item/weapon/book/manual/security_space_law,/obj/item/weapon/book/manual/command_guide,/obj/item/weapon/book/manual,/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/turf/simulated/floor/wood,/area/medical/psych) +"Ya" = (/obj/machinery/atmospherics/pipe/simple/visible/universal{name = "Air to Distro"},/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{dir = 4},/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos/monitoring) +"Yb" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable{icon_state = "1-8"},/obj/machinery/light/small,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor,/area/maintenance/stellardelight/deck2/starboardfore) +"Yc" = (/obj/structure/musician/piano{dir = 4},/turf/simulated/floor/tiled/eris/dark/cargo,/area/crew_quarters/recreation_area) +"Yd" = (/obj/item/device/suit_cooling_unit,/obj/item/device/suit_cooling_unit,/obj/structure/table/reinforced,/turf/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/engine_eva) +"Ye" = (/obj/machinery/door/firedoor/glass/hidden/steel{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 4},/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore) +"Yf" = (/obj/machinery/door/firedoor/glass,/obj/structure/window/bay/reinforced,/obj/machinery/door/blast/angled/open{dir = 2; id = "barlockdown"},/obj/structure/low_wall/bay/reinforced/steel,/turf/simulated/floor,/area/stellardelight/deck2/barbackroom) +"Yg" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/wall/bay/brown,/area/quartermaster/storage) +"Yh" = (/obj/structure/cable/green{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor,/area/maintenance/stellardelight/deck2/portaft) +"Yi" = (/turf/simulated/wall/bay/r_wall/steel,/area/stellardelight/deck2/barbackroom) +"Yj" = (/obj/structure/table/standard,/obj/item/device/retail_scanner/civilian,/turf/simulated/floor/tiled/eris/cafe,/area/crew_quarters/kitchen) +"Yk" = (/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled/steel_ridged,/area/stellardelight/deck2/port) +"Yl" = (/obj/machinery/firealarm/angled,/turf/simulated/floor/tiled/eris/dark/cargo,/area/crew_quarters/recreation_area) +"Ym" = (/obj/structure/cable/green{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/door/firedoor/glass,/turf/simulated/floor,/area/maintenance/stellardelight/deck2/portsolars) +"Yn" = (/obj/machinery/button/remote/blast_door{desc = "A remote control-switch for shutters."; dir = 4; id = "chemistry"; name = "Chemistry Shutters"; pixel_x = -24; pixel_y = -30; req_access = list(5)},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/chemistry) +"Yo" = (/obj/machinery/atmospherics/unary/heater{dir = 1},/turf/simulated/floor,/area/engineering/atmos/monitoring) +"Yp" = (/obj/structure/cable/green{icon_state = "1-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/eris/cafe,/area/crew_quarters/kitchen) +"Yq" = (/obj/effect/floor_decal/industrial/warning{dir = 4},/obj/structure/cable/cyan{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden{dir = 9},/turf/simulated/floor/tiled/eris/dark/monofloor,/area/engineering/engine_room) +"Yr" = (/obj/structure/cable/orange{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/turf/simulated/floor/tiled/eris/dark/techfloor_grid,/area/engineering/storage) +"Ys" = (/obj/structure/table/reinforced,/obj/machinery/chemical_dispenser/full,/obj/structure/extinguisher_cabinet{dir = 1; pixel_y = -30},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/chemistry) +"Yu" = (/obj/structure/table/steel_reinforced,/obj/machinery/door/firedoor/glass,/obj/structure/cable/green{icon_state = "4-8"},/obj/machinery/door/blast/angled_shutter{dir = 4; id = "kitchen"; layer = 3.3; name = "Kitchen Shutters"},/turf/simulated/floor/tiled/eris/cafe,/area/crew_quarters/kitchen) +"Yv" = (/obj/machinery/atmospherics/pipe/simple/visible/black{dir = 6},/obj/structure/sign/atmos/n2o{pixel_y = 26},/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos/storage) +"Yw" = (/obj/structure/cable/green{icon_state = "1-4"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/turf/simulated/floor/tiled/monotile,/area/hydroponics) +"Yx" = (/obj/structure/sign/deck2{pixel_x = -32},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 8},/turf/simulated/floor/tiled,/area/stellardelight/deck2/aftstarboard) +"Yy" = (/obj/machinery/atmospherics/unary/vent_pump/on,/obj/machinery/alarm/angled,/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 1},/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore) +"Yz" = (/obj/machinery/light{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 8},/turf/simulated/floor/tiled,/area/stellardelight/deck2/starboard) +"YA" = (/obj/structure/grille,/obj/structure/shuttle/window,/turf/simulated/floor,/area/stellardelight/deck2/starboardescape) +"YB" = (/turf/simulated/wall/bay/r_wall/steel,/area/maintenance/stellardelight/deck2/starboardaft) +"YC" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/effect/landmark/start/chef,/turf/simulated/floor/tiled/eris/cafe,/area/crew_quarters/kitchen) +"YD" = (/obj/structure/noticeboard{pixel_y = 32},/turf/simulated/floor/tiled/eris/steel/brown_platform,/area/crew_quarters/bar) +"YE" = (/obj/machinery/meter,/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{dir = 4},/obj/structure/cable/orange{icon_state = "1-2"},/turf/simulated/floor/tiled/techmaint,/area/engineering/atmos/monitoring) +"YF" = (/obj/structure/sign/painting/public{pixel_y = -30},/obj/machinery/light{dir = 8},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/turf/simulated/floor/tiled,/area/storage/art) +"YG" = (/obj/effect/floor_decal/industrial/outline/yellow,/obj/effect/landmark{name = "lightsout"},/turf/simulated/floor/tiled/eris/dark/gray_platform,/area/engineering/workshop) +"YH" = (/obj/machinery/beehive,/obj/machinery/camera/network/civilian{dir = 8},/obj/effect/floor_decal/milspec/color/green/half{dir = 4},/turf/simulated/floor/tiled,/area/hydroponics) +"YI" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/reception) +"YJ" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/effect/floor_decal/milspec/color/green/half{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 6},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 1},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/hydroponics) +"YK" = (/obj/effect/floor_decal/milspec/color/green/half{dir = 9},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/obj/structure/sign/poster{dir = 8},/turf/simulated/floor/tiled,/area/hydroponics) +"YL" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/effect/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled/eris/dark/gray_platform,/area/engineering/workshop) +"YM" = (/obj/structure/table/woodentable,/obj/machinery/light/small,/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/turf/simulated/floor/wood,/area/stellardelight/deck2/barbackroom) +"YN" = (/obj/item/weapon/stool/padded{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/camera/network/civilian{dir = 5},/turf/simulated/floor/tiled/eris/dark/cargo,/area/crew_quarters/recreation_area) +"YO" = (/obj/structure/table/gamblingtable,/obj/machinery/recharger{pixel_y = 5},/turf/simulated/floor/carpet,/area/crew_quarters/recreation_area) +"YP" = (/obj/structure/disposalpipe/junction{dir = 8},/obj/structure/cable/yellow{icon_state = "4-8"},/turf/simulated/floor/tiled/eris/steel/cargo,/area/quartermaster/storage) +"YQ" = (/obj/random/vendorfood,/obj/machinery/atmospherics/unary/vent_scrubber/on,/turf/simulated/floor/tiled/steel_ridged,/area/stellardelight/deck2/port) +"YR" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/obj/structure/closet/crate/bin{anchored = 1},/turf/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/engineering_monitoring) +"YS" = (/obj/structure/cable/green{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled,/area/stellardelight/deck2/aftport) +"YT" = (/obj/machinery/atmospherics/pipe/simple/hidden/yellow{dir = 5},/obj/structure/cable{icon_state = "4-8"},/turf/simulated/floor,/area/stellardelight/deck2/combustionworkshop) +"YU" = (/turf/simulated/floor/tiled/eris/steel/brown_platform,/area/crew_quarters/bar) +"YV" = (/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/stellardelight/deck2/port) +"YW" = (/obj/random/vendordrink,/obj/machinery/atmospherics/unary/vent_pump/on,/obj/effect/landmark/vermin,/turf/simulated/floor/tiled/steel_ridged,/area/stellardelight/deck2/starboard) +"YX" = (/obj/structure/cable/green{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled,/area/stellardelight/deck2/starboard) +"YY" = (/turf/simulated/wall/bay/brown,/area/quartermaster/qm) +"YZ" = (/obj/machinery/light/small{dir = 1},/obj/structure/ladder/up,/turf/simulated/floor,/area/maintenance/stellardelight/deck2/starboardfore) +"Za" = (/obj/machinery/alarm/angled{dir = 8},/turf/simulated/floor,/area/maintenance/stellardelight/deck2/starboardaft) +"Zb" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/angled_bay/standard/color{dir = 8; fill_color = "#ffffff"; name = "Kitchen Cold Room"; req_access = list(28)},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/turf/simulated/floor/tiled/steel_ridged,/area/crew_quarters/kitchen) +"Zc" = (/obj/structure/bed/chair/bay/shuttle{dir = 8},/obj/machinery/embedded_controller/radio/simple_docking_controller/escape_pod{frequency = 1380; id_tag = "port_escape_pod"; pixel_y = 24},/turf/simulated/floor/tiled/techmaint,/area/stellardelight/deck2/portescape) +"Zd" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/turf/simulated/floor/tiled/eris/dark/gray_platform,/area/engineering/workshop) +"Ze" = (/turf/simulated/floor/tiled/eris/white/cargo,/area/stellardelight/deck2/triage) +"Zf" = (/obj/machinery/power/apc/angled{dir = 8},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/obj/structure/cable/orange{icon_state = "0-4"},/obj/structure/table/reinforced,/obj/item/device/radio/off{pixel_y = 6},/obj/item/device/radio/off{pixel_x = -6; pixel_y = 4},/obj/item/device/radio/off{pixel_x = 6; pixel_y = 4},/obj/item/device/radio/off,/turf/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/locker_room) +"Zh" = (/obj/structure/cable/orange{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled/eris/dark/orangecorner,/area/engineering/engine_eva) +"Zi" = (/obj/structure/table/rack,/obj/item/clothing/suit/radiation,/obj/item/clothing/head/radiation,/obj/item/bodybag/cryobag{pixel_x = 1; pixel_y = 1},/obj/item/weapon/storage/toolbox/emergency{pixel_x = 2; pixel_y = 1},/obj/item/weapon/storage/box/lights/mixed{pixel_y = 4},/obj/item/weapon/storage/toolbox/mechanical{pixel_x = -2; pixel_y = -2},/obj/machinery/light{dir = 8},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/cmostore) +"Zj" = (/turf/simulated/floor/tiled/eris/dark/monofloor,/area/bridge) +"Zk" = (/obj/machinery/door/firedoor/glass,/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/door/airlock/angled_bay/hatch{name = "maintenance access"; stripe_color = "#454545"},/turf/simulated/floor/tiled/steel_ridged,/area/stellardelight/deck2/starboard) +"Zl" = (/obj/machinery/door/firedoor/glass,/obj/structure/window/bay/reinforced,/obj/machinery/door/blast/angled/open{dir = 2; id = "kitchenlockdown"},/obj/structure/low_wall/bay/reinforced/steel,/turf/simulated/floor,/area/crew_quarters/kitchen) +"Zm" = (/obj/machinery/camera/network/halls{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 4},/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore) +"Zo" = (/obj/machinery/light{dir = 8},/obj/effect/floor_decal/milspec/color/black/corner{dir = 1},/obj/effect/floor_decal/milspec/color/silver/corner{dir = 4},/obj/effect/floor_decal/milspec/color/silver/corner{dir = 8},/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore) +"Zp" = (/obj/machinery/atmospherics/pipe/simple/hidden/green{dir = 10},/obj/structure/cable{icon_state = "1-2"},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/monitoring) +"Zq" = (/obj/effect/floor_decal/industrial/danger{dir = 1},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/monitoring) +"Zr" = (/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 4},/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore) +"Zs" = (/turf/simulated/floor,/area/stellardelight/deck2/combustionworkshop) +"Zt" = (/obj/machinery/light/small{dir = 8},/obj/machinery/atmospherics/pipe/tank/phoron/full{dir = 4},/turf/simulated/floor,/area/stellardelight/deck2/fuelstorage) +"Zu" = (/obj/structure/cable/green{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/turf/simulated/floor/tiled,/area/storage/art) +"Zv" = (/obj/structure/closet/walllocker_double/medical/north,/obj/item/weapon/storage/box/rxglasses{pixel_x = 7; pixel_y = 7},/obj/item/weapon/storage/box/rxglasses,/obj/item/device/glasses_kit,/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/cmostore) +"Zw" = (/obj/machinery/camera/network/medbay{dir = 8},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/medical/cmostore) +"Zx" = (/obj/item/modular_computer/console/preset/engineering{dir = 8},/obj/effect/floor_decal/milspec/color/orange/half{dir = 10},/turf/simulated/floor/tiled/eris/dark/monofloor,/area/bridge) +"Zy" = (/obj/structure/cable/green{icon_state = "1-4"},/turf/simulated/wall/bay/r_wall/steel,/area/crew_quarters/kitchen) +"ZA" = (/obj/structure/table/standard,/obj/random/tech_supply,/obj/random/tech_supply,/obj/random/tech_supply,/obj/random/tech_supply,/obj/machinery/firealarm/angled{dir = 8},/obj/machinery/atmospherics/unary/vent_scrubber/on,/turf/simulated/floor/tiled/techmaint,/area/storage/primary) +"ZC" = (/obj/item/weapon/stool/padded{dir = 8},/obj/structure/cable/green{icon_state = "4-8"},/turf/simulated/floor/tiled/eris/steel/brown_platform,/area/crew_quarters/bar) +"ZD" = (/obj/structure/table/reinforced,/obj/item/roller,/obj/item/roller{pixel_y = 8},/obj/item/roller{pixel_y = 16},/obj/machinery/light{dir = 8},/turf/simulated/floor/tiled/eris/white/bluecorner,/area/stellardelight/deck2/triage) +"ZE" = (/obj/machinery/atmospherics/pipe/simple/hidden/fuel{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/fuel,/turf/simulated/floor/tiled/techfloor,/area/stellardelight/deck2/fuelstorage) +"ZF" = (/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals_central5{dir = 1; pixel_y = 1},/turf/simulated/floor/tiled,/area/stellardelight/deck2/aftport) +"ZG" = (/obj/structure/cable/orange{icon_state = "4-8"},/turf/simulated/floor/airless,/area/stellardelight/deck2/exterior) +"ZH" = (/obj/machinery/computer/guestpass{dir = 8; pixel_x = 25},/obj/effect/floor_decal/milspec/color/orange/half{dir = 4},/turf/simulated/floor/tiled,/area/stellardelight/deck2/aftstarboard) +"ZI" = (/obj/effect/floor_decal/industrial/outline/yellow,/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/turf/simulated/floor/tiled/eris/steel/cargo,/area/quartermaster/storage) +"ZJ" = (/obj/machinery/atmospherics/portables_connector{dir = 1},/obj/machinery/portable_atmospherics/canister/air/airlock,/turf/simulated/floor,/area/maintenance/stellardelight/deck2/portsolars) +"ZK" = (/obj/effect/floor_decal/steeldecal/steel_decals10,/turf/simulated/floor/tiled/eris/white/cargo,/area/stellardelight/deck2/triage) +"ZL" = (/obj/structure/cable/green{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/eris/cafe,/area/crew_quarters/kitchen) +"ZM" = (/obj/structure/cable/green{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled,/area/stellardelight/deck2/fore) +"ZN" = (/obj/machinery/atmospherics/pipe/simple/hidden/green{dir = 10},/obj/machinery/power/apc/angled{dir = 4},/obj/structure/cable/orange{icon_state = "0-8"},/obj/machinery/vending/engivend,/turf/simulated/floor/tiled/techfloor,/area/stellardelight/deck2/o2production) +"ZO" = (/obj/structure/table/marble,/obj/machinery/chemical_dispenser/bar_coffee/full{dir = 1},/obj/item/device/radio/intercom{pixel_y = -24},/obj/machinery/light/small,/turf/simulated/floor/lino,/area/crew_quarters/bar) +"ZP" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/obj/structure/cable/yellow{icon_state = "1-2"},/turf/simulated/floor/tiled/eris/dark/techfloor_grid,/area/engineering/engine_room) +"ZQ" = (/obj/machinery/light{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 4},/turf/simulated/floor/tiled,/area/stellardelight/deck2/port) +"ZR" = (/obj/structure/table/reinforced,/obj/item/weapon/paper_bin{pixel_x = -3; pixel_y = 7},/obj/machinery/door/window/westright{name = "Engineering Reception Desk"; req_access = list(10)},/obj/item/weapon/pen/blue{pixel_x = 4; pixel_y = 4},/obj/item/weapon/pen/red,/turf/simulated/floor/tiled/eris/dark/gray_platform,/area/engineering/engineering_monitoring) +"ZS" = (/obj/machinery/atmospherics/pipe/simple/hidden/green,/obj/structure/cable/orange{icon_state = "1-2"},/obj/structure/closet/crate/bin{anchored = 1},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/monitoring) +"ZT" = (/obj/machinery/atmospherics/pipe/simple/hidden/green{dir = 4},/obj/structure/cable/orange{icon_state = "4-8"},/obj/machinery/button/remote/blast_door{id = "atmoswindowlockdown"; name = "Window Lockdown"; pixel_y = 56},/turf/simulated/floor/tiled/techfloor,/area/engineering/atmos/monitoring) +"ZU" = (/obj/machinery/computer/ship/sensors,/obj/effect/floor_decal/milspec/color/green/half,/turf/simulated/floor/tiled/eris/dark/gray_platform,/area/bridge) +"ZV" = (/turf/simulated/floor,/area/stellardelight/deck2/aftport) +"ZW" = (/obj/machinery/portable_atmospherics/hydroponics,/obj/machinery/camera/network/civilian{dir = 5},/obj/effect/floor_decal/milspec/color/green,/turf/simulated/floor/tiled,/area/hydroponics) +"ZX" = (/obj/machinery/power/smes/buildable/offmap_spawn/empty{RCon_tag = "Solar Array - Starboard"},/obj/structure/cable,/turf/simulated/floor,/area/maintenance/stellardelight/deck2/starboardsolars) +"ZY" = (/obj/machinery/atmospherics/pipe/simple/hidden/fuel{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/conveyor{id = "cargoload"},/obj/structure/cable{icon_state = "4-8"},/turf/simulated/floor/tiled/eris/steel/cargo,/area/quartermaster/storage) +"ZZ" = (/obj/structure/bed/chair/sofa/corp/corner{dir = 8},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/turf/simulated/floor/carpet/turcarpet,/area/crew_quarters/recreation_area) + +(1,1,1) = {" +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhOhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhOhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhOhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhOhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhNLJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhNLJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhNLNLNLJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhNLNLNLJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhNLNLbDNLWbJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhWbseWnNLNLJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhNLNLseyKjxjxlZJhJhJhNLbDJhJhJhJhJhJhJhJhJhJhJhbDNLJhJhJhsejxyKjxjxlZNLJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhNLNLsenPNLWbJhDilZWbNLNLdkJhJhJhJhWbJhWbJhJhJhJhdkNLNLWbsenPJhWbNLNLdkNLNLJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhNLNLsenPNLWbWbJhJhDijxjxjxdMJhJhJhWbTUXcTUWbJhJhJhDijxtjjxnPJhJhWbWbNLdkNLNLNLJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhNLCZnPNLWbWbJhJhJhWbNLNLHQiroJoJoJHQoJoJoJHQoJoJoJHQHQdkNLWbJhJhJhWbWbDijxurNLJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhNLdkNLJhJhWbJhJhJhXkXkXkHQpnGnwGGnNkGnLPGnbOGnwGGnLTHQPRoJHQJhJhJhWbJhJhNLdkNLJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhNLdkJhJhXkXkXkZlZlXkiCiFYDQSMKMKMKYUMKzwMKYUMKMKzwaspWPemJHQHQYfYfYiYiJhJhdkNLJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhOhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhWbdkJhXkXkOAnCQGgrcWTaPnEVQSYUYUYUYUYUJloBlUfififiuXsPbpsPvgSxrGUCcBYiYiJhdkWbJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhdkXkXkrndmTaBmTagjTaPnEVQSNcGnicYUNcGnwqasVCdwdwdwdwdwdwAxSxbVTYUCIJYiiQdkJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhVdXkFmoOYCBnAkOOpzTaPnEVBJNcCYlsqeUxCIwqasXUOnBVOnOnOnOnLLSxLNOgyMKxYiiQTVJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhKLhOZykXkiCElzyfPgVvBoGBYuZCFbdUGnoFYUxDiTWIRrsrrdpyhYpypywVGXVhKGFBLyEzYiYZTVBuiQJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhKLKLMdoDGiYpIWhZIWIWIWcwzJnUFMTCTCTCTCTCPcTCLRAYXqANfpfpfpfpaKuZSxRnUCNYgPcQdegkOoiQiQJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhbDJhhOMdUbchwLuWVLlrYjrrpITaZLPnEVDIYUYUaYYUfBkubyYUqSsLmnMZDjZOnQHiSxFCJTYMpRYioGoGNbhbBuJhbDJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhseyKjxSEQxchchchchhliNBjhlGyGyNgHJSxSxrVrVbxSxiXSxFJSxSxrVrVSxSxSxSxSxSxflflflflaNaNaNaNrieAjxyZlZJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhNLdkNLWbKLGvchBkDDgQhlYKmlMUZoGjglRDpojrVGlTVGVGUQJeOWLsEElTVGXlpoVYaCiyFAflAeCVFRxIVUmdaNWOiQWbNLdkNLJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhNLNLdkNLJhaTGvchWaavcuhlgGBHjoNDjCaBKHtdKHKHKHKHKHkSDWpGKHKHKHKHKHAIKHKHmVZrHWRmWmWmWmyniVaNWOiQJhNLdkNLNLJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhNLNLNLdkJhJhaTGvchvhACVHhlbqBHjoNDXCTMzzjFzzHOCtzzzzPKJLcozzzzCtHOzzjFzzjPXCsjflWZtWHVHVeMTjHWWOBuJhJhdkNLNLNLJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhTtJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhNLNLNLdkJhJhaTGvchWaDPLWZbYJjMajauXCHRntntntntntntntJRntBDntntntntntntntTlrQFUrXCFeYtJeYrzCvHWWOBuJhJhdkNLNLNLJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhobJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhNLNLNLdkJhJhKLGvchOMBFHahlufBHjoNDXCofntJiMpGLWCmtycxABSudycfEYlXPSFfLntpHxThBflwttWHVHVRmKjHWWOBuJhJhdkNLNLNLJhJhJhJhJhJhJhJhJhOhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhPpJhJhNLNLNLdkJhJhaTGvchhlhlhlhlbtYHMUSrXCcPntYNdYmtmtBpDlDSDlEpDlBpmtmtFymUnteXxTZrHWhTRKRKRKpVrIsDWOiQJhJhdkNLNLNLJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhNLNLArUTNLWbKLGvKKrOpNafMnDqRoMUzOXCyhntDecCmtmtoSUXUXYOUXUXiomtmtcCDOntGaxTvjflhPevevmGevDuaNWOiQWbNLhkWnNLNLJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhNLNLNLcTjxjxSEKDKKsVyvdQojIssEMUQeXCaHntQZiOmtmtoSUXBpBKBpUXiomtmtiOkpntaPxTpZflflflflflflflaNFZeAjxjxgiNLNLNLJhJhPpJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhsejxjxnPNLJhKLGvKKZWUoDoifhhbcjoQeXCXekEHomtmtmtoSUXObFwUXUXiomtmtmtGAkEzsxTDCeCZAvuEZWlOJrErxWOiQJhNLDijxjxlZJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhdkNLNLNLJhJhaTGvkRWpiZiZvPhHUejoQeihqoQVaECyCyjvBpvStsvStsvSBphmlOlOfKlJlSkdZrKezmXySLXyXyxKEyWOBuJhJhNLNLNLdkJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhdkNLNLNLJhJhaTGvkRLOESGMUyiYSYMUhEZMekntQJmtmtctmtmtUtUtUtmtmtVMmtRiijnteVSUOVHPGGwvwvwvwvawsNaxBuJhJhNLNLNLdkJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhdkNLNLJhJhJhaTGvkRrtealfapYwzrSyPZbNmNntWRYcSILqmtmtUtIEUtmtmtuJmtsHsHntKnxTZrhqgRramFNEoTDdrxoGiQJhJhJhNLNLdkJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhdkNLNLJhJhJhKLGvKKLzQomzzbiZbSMUGYMVkVntntntntctmtmtUtUtUtmtmtVMntntntntUSWHYemTmTmTmTmTmTmTJYoGiQJhJhJhNLNLdkJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhdkNLJhJhJhJhaTGvkRbbpXsAEAiZaSgxQeXOZrDNRqRqntHEDLDLDLXxDLDLDLBCntRqRqdvNDxTZrmTqsmXTBMamQfHJYoGiQJhJhJhJhNLdkJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhdkNLJhJhJhJhaTGvkRkGiZiZwPiZaGlIQeXOZrxPRqRqntxELbLbtbNShDLbLblGntRqRqImNDxTZrAMRXNsNsNsUNBiAMoGBuJhJhJhJhNLdkJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhdkJhJhJhJhJhKLGvKKsdejiiJIKcRAMUHkXOZrWqRqlQntyGixscrgmLwfscixZZntlYRqGbNDxTZmmTtnNsNsNsUNXDAMoGBuJhJhJhJhJhdkJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhbwJhJhJhJhJhaTGvkRVzWNWNfaWNqpjoQeXOZrVraAgAntntntntntntntntntntntBAaAklNDxgOVJBOkZupPZuwyjjJYoGiQJhJhJhJhJhbwJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhaTGvkRozokokaJokdFjoQeXOsOWkJqJqPAkrrHyFdGHYpayFYyysPAJqJqWksOjJZroMKEwJwJwJwJuyAMoGBuJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhaTGvkRpddPLSrPdPshyXQehdXiXiXiXiXiMiQXuEwKGIrjuEHyIKIKIKIKIKIKljZrmTNJmTmTmTmTuyAMoGBuJhlMJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhOhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhKLGvKKuAARJprPARmSjoQeuTuaRTRTkFcYRTRTRTGSUMENRTRTRTcYkFRTRTjyjisjmTYFcIcIcIcICgJYoGiQJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhKLUvKKKKKKKKhfKKKKKKnSuTRjnKnKnKnKnKjUjUjUjUjUjUjUnKnKnKnKnKBcjiZrJYJYJYJYJYJYJYJYySiQJhJhJhJhJhOhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhKLVDOQGqsiJHNwbPmYBwVwjwVwnKfVnKnKxBkcLxewHbMwTPWiDhnKnKfVnKyrXvyrHdzKGQTgatNegvfdrliQJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhKLyzEvCupSFcIwkKqyBweLRRminKnKnKSoZjruZxRfHLILLdhclooZnKnKnKoiEnMmanRSSVOtYbOtUJPiepiQJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhKLKLKLhOhOKLKLHzURURzPYVbARdzHRdlDSpXsULUjnDUjUjGPlBgCyJuCyJGdjklvHdHdZkHdiQBuBuiQiQiQJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhWPWPWPWPWPwnBwgmAapwVPVPMAxdxdxdxdIoCwBXZUCGNnfynvGWrNrNrNrNPfRuRurZrMXMHdfeTsTsTsTsTsJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhBrZcypVTLMsWBWPGsgYkVPVPtLxdmHPlxdkJCwVyJQwoJQZjJKfMrNSNlgrNwWRuRuzNBqHDSTKJAhGNTQfciLJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhhgfXbIfXLMsWBWPGsgCeVPVPVPugAdOLxdxdkDxdnKnKrNrNnurNrNDGEOrNRuRuRuEwBqHDPoKJrDpQbCpQYAJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhOhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhWPWPWPWPWPwnBwCbprpwMDVebAugrFcJcgdZMtxdnKnKrNryRHVEfSvKEDrNnLCCMkrZzkGtHdfeTsTsTsTsTsJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhiUJhJhJhJhJhJhJhJhrRrRrRQYQYrRrRRpBwBweLVebAugGVcbCKeritxdbLuQrNsBkyocuPuPforNWLCCMkHdHdZkHdYBXTXTYBYBYBJhJhJhJhJhJhJhJhiUJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhLeJhJhJhJhJhJhJhJhrRrREGKbKbRzKbWsFSBwpAVebAugGVAlcbGgSHxdwixyrNcZAOxvIVIVXRrNWLCClvHdpJSMSRunSRSRIrYBYBJhJhJhJhJhJhJhJhLeJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhLeNLJhJhJhJhJhJhJhrRREYhBwBwBwBwBwyPBwEIVembxdODFkFkPPVgVFVNHgrNlCWXOwIVsXgnrNIvCCMkHdEXHdHdHdHdHdTvPVYBJhJhJhJhJhJhJhNLLeJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhLeNLJhJhJhJhJhJhJhrRumYhBwYQvXmgBwBwBwMDVebAxdxdUuUuxdxdxdsSosrNrNrNrNrNrNrNrNiuCCMkHdHdHdYWKUusHdTvjBYBJhJhJhJhJhJhJhNLLeJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhLeNLNLJhJhJhJhJhJhQYizYhBwGcEcpLdnKoEcWFVeBPoHMjMjlldpABrkMjemMjzoHhIGuFmkweoHecCCuqXdIYPsrhXdaLHdTvpJXTJhJhJhJhJhJhNLNLLeJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhLeNLNLJhJhJhJhJhJhQYsnAPBwdXkICJMswFwFwFwFwFSDDaDaxZDaDaDaDaPOWrWrWrAAdBeZdBNrYXYXYXYXYXbaxXUAzSHdphXpXTJhJhJhJhJhJhNLNLLeJhJhJhJhJhJhJhJhJhJhJhJhJhJhOhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhVcNLNLyyJhJhJhJhJhrRkgFIBwfrtihrMoSXSXSXSXFPfvvHIbxnVZVZVZVZwlVZVZVZrcaFVZfIfvvRJGJGJGJGdyQdwbWyHdTvZaYBJhJhJhJhJhyyNLNLUfJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhLeNLNLuKJhJhJhJhJhrRizYhBwMDtiCjxpxpipipipxpxpPEPEPEPEWzxQvNCivNxQWzXaXasqsqsqXasqsqsqXaXaNxJWxhHdTvpJYBJhJhJhJhJhuKNLNLLeJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhFhZGZGbHCPJhJhJhJhrRdCYhBwoxtiCjxpqnsoGrmPkexpQhpMdKPELvlWRFzGRFwSQqXaeJvOxJjfTnOrLnBRKYXaCWNdXEHdTvJfYBJhJhJhJhDsGoZGZGcGJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhLeyHiHmZLeJhJhJhJhrRcVuLBwMDtiCjQBhCNudhTplcxHbiXbmekZRFRFRFwXRFRFKmRcJVFtfhjcXgFtckFtjcsqCWNdMkHdvQzWYBJhJhJhJhLeKhiHMxLeJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhDskLyHUhMxSOCPJhJhJhrRaVYhBwzpIBCjQBDxECFrHBDnxpNhhpgHyaYImoXtPrwasvMqtfYnDvMSdgKyKyKyKyBbsqCWmmfsHdTvqaYBJhJhJhDskLyHUhMxSOCPJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhLeNLyHUhCqqGSOCPJhWbieqCYmBweLtiCjQByowswsfbRWxpVbDkkbVbKtIQeSqjeSUdxLXaHcolNFShFtRIadFtUHsqCWcSTkHdaIgdxcWbJhDskLwrCpUhMxNLLeJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhOhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhLeNLyHUhCqUhMxSOZGZGTwzvqYBwfrtiCjxpXZvatvjIjXxpZDdsiWVbEJefjGldWBggLCXaXaDzqQXavOYsmWvYhLXaCWcSyuHdqhmjFgZGhzkLyHUhCpUhMxNLLeJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhLeNLyHUhCqUhMxNLWbJhFzXmfwBwvUtiZQHrHrHrHrHrHrHrHMhxuhKSWQxOiPrCrCHHyQNQzcrmexqfqfqfqfqfqfqfYzcSIXHdIehaCUJhWbNLyHUhCpUhMxNLLeJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhwgNLyHUhCqUhMxNLieaaPkeEucBwWVtiCjHrOjhwzUdDDyHrFHhxOxVbVbVbVbVbVbVbVbVbujhjzXndxYhMOGVKoKndCWcSMkHdHSXrElsMxcNLyHUhCpUhMxNLNUJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhLeNLNLNLNLNLNLCfzIebPxpkJPBwMDqItPHrHthVEesKuvHrbuAyfOKTwhfPKgHAOlwTwTqmLlkCvfndohXhhoOphQndcAcSgzHdamtwKzEaNACfNLNLNLNLNLNLLeJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhLeNLyHIgCqIgMxNLieFzsaFeDHbhfRxetUHrFqRMBhGeELHrQpLZJywzwzvewzwzFGBUzDWudrvILVndbsvLLhBvSsndCWTILHvpCcVXPQCUxcNLyHIgCpMNMxNLLeJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhLeIzyHIgCqIgMxNLJhFzFoPUCAwBICMYjdHrQyOmiDyUIZBlIhbJnTZKRQTLfxTRZKRQikGFhxNPGTmKOUHwGwcDVtndzZCoMkHdJwgpLBCUJhNLyHIgCpMNMxNLLeJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhLeNLyHIgCqIgMxNLWbFzTeGONBBwTZtihvHrwdztcaxjOCHrKVLlykZeZeQDzCKlKsZeZehRhxCdlPndOXfggJhFKwndCWCofCHdaMtpZXCUWbNLyHIgCpMNMxNLLeJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhLeNLyHIgCqIgMxNLWbjLCOGKLfBwcntiBfHrHrHrHrHrHrHrjKhxMbnjEoBafxviZKFEogfutTOEWYndndndndndndndJFCoMkHdFTPTNvGRWbNLyHIgCpMNMxNLLeJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhSOCPyHBECqBEMxJhJhWbuxZJdOBwTZtiNGEcGsjtxmnBHrHrVbEUwwQihAjpMHZeZeLahAdcIuEUVbndndIkqDPyXLXdrYCoXEHdpjvtjTWbJhJhyHBECpsCMxDskLJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhMXZGCPNLWbWbJhJhJhuxMyAUBwdREscOcOydgKdjcjOiGxQPQPQPPvQPQPLZAyhxQPQPzQQPQPQPuzjzTNCxPFwOFQFQGplvHdNpjnjTJhJhJhWbWbNLDsZGUpJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhLeNLLeJhWbWbWbJhFDMCPWdxbgWKteBxBxpvePYSFXbYDAQPQNUqlLguQPVbqZVbQPsJfFITlRQPBgMldIhJONXLKayxdEAjHdNpWgxcNLJhWbWbWbJhLeNLLeJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhSjWbLeJhJhWbBTBTBTBTeqlhbFeqeqeqeqeqyYYSCDaUbmQPZiKfcRKftVVbbnVbkknJaXLQjqQPbrbveNhJTdLIQUQUQULImOyimOtKtKtKtKWbJhJhLeWbSjJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhWbLeJhJhmIBTcxcxYvWvgMWxRNMuCTCTeqfnYSCDktEfQPtMKfeeKfIdVbbfVbxVkjQcnVZwQPfJeneNhJOuQUThNznsGzbZKWmOcmzTeltKtKJhJhLeWbJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhWbLeJhmImIeqezJSxuxioehNgYxuJSkQeqHGuleDwYwYQPkoXFcRKfyVVbVbVbjWPbTmftDfQPyWyWEjhyLrZRPhrqrqTcrqnfmOpecmelgStKtKJhLeWbJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhOhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhWbLemImIfQeqQHQHoAoQAXqgqgoABYBYeqbkYSCDIpdLQPIaVSyIKfKfhiZvvGKfVqhnhnhnhnNWabeNhJOuQTrqivNZuDiSkhoIYrYrtXwDLisyKXkLWbJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhWbrWsxuRtheqeqeqoooQDcacacTAeqeqeqMcYSCDZVqTQPXYXYXYXYXYXYKfKfKfkOpfzLDJhniEUceNhJOuQUGZEdKuYRQkJDmOHxAKOsehcdcpMBClWbJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhNLGJDBDBWoeqqlqlxWzMheWxvBsUcEcEeqMcYSFXbYALQPpgpgpgpgpgpgsZwCAGyEhnPYPzhnAwMldIhJRkLILILIReLILILImOdbdfddDTdlpxpxbTNLJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhNLNLGJrsDBXWeqezJSxuMfCRezNlxuJSuOeqfDYSFXFXsIQPQPQPQPQPQPQPQPQPQPQPhnExhnhnYxONdIfWkvHKaifkOIfmBeqdMrcciGddgUoRpxKIbTNLNLJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhDsZGZGvJDBStQgeqmBmBoAoQAXacwIoAChCheqSQYSgwFXFXeicsRvQfjNtATJHjcKPtjNQfZFeOOzONONeThJZHHKMFSWdaKvmMnaqrHTHTWTlugVJbJbbTNLNLNLJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhDskLNLtcmIDBWoeqeqeqeqmAoQAXQKAiNXeqeqeqnXdzcicizlBtciciMRcicicilnVkciciqbciJnKAJnJnnNbXOSIIgTAEiwdSnxoYERqVItgEnMoRJXJbbTtcNLNLNLJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhSkuuovovovovHmbReqnEnEnykWwAheffRNxlmfmfeqSQYSFXHlAoeBeBeBUaeBeBeBxCBLeBeBUaeBzhXQLKVuupjSgLHKZfQQdWvbfUrpqrSeoPqrqrqrqrqrMBRYRYRYRYJxJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhLeoyubcqPwwpHmxriAJSJSxueIahAXnGtFHXsboLnrymEWJCdodododododoOPdqdqxGKRrvgqYYcXcXJZcXtadAdAdAToTorwToNmMvFsqrNMQAqrVfVfRsGusYGuHfKPniLeJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhLeovVBubgswpHmGheqNKNKoAWSueaoCHINOHwZwZylQngfzfdoMEbGWGWGdoTSzjzjzjwHzjHZNfedOaHpxotaLtRPLDtBxMjYToeoOZWwqrqvXjqrVfVfVfVfVfVfVfMTniLeJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhLeovvVyNIfwpwpnWeqeqeqooUnAsAXAWKizdeqeqylnwDQCDdoblLmHugbdoXNWeGEGESvDVNjNfduttSqNOtaXfAtZdEgqzeQVoOFtgkaqrqrfZqrXoibEPgWEPRbVfcrHvLeJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhLeovNHgZVOFxwpRLbeszXSErAbTqQrLUYaYEOTCzWAxxQRpqVjhUYPakkxdoNNLuNNdoskdoNNYYdJBIXXcHtaLcbdYGqHUzuUVoOqxbRJkfvzZPbjVfUFBsVfVfVfBscraQLeJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhLeFfZsaqkPziaDDYZTtokMlaAboUagjavFlytyHsclTWzRczdododoMeRxTiouCSBMiBgNEMaelemEPDDrkYtakAUKYLbMvcfTVogcSbngSbQvRVyjVflxVfVfVfVfVfcraQLeJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhhIxRQOZskPBGwpHmHmdTZSlaEkxNXKEqAngoltknpTHmHmHmHmvCAzarJjDMvyvqROvqUmuYgtYYbQedFnbUtagDAtGHFdoVywVoRGxzPduwFFzyzaEPsQVfVfKMVfVfcrmrLeJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhNLDtovkzlFkPKdMQHmEmAgVAtzQCZqqNVWuBUDOYZpvxBQwMvxHmUONNuIPHJNmwRhplXJwRhSWEYYYYcXJZYYtaCLWhvojYAfiIVolNMgRySbrBJEyjVfiRVfVfVfVfVfcraQLeNLJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhNLJmovdHopSgVIvWHmAmFlkmeuuNVVCMCnXILknZdtFLFLFLboHmPCquSnwEhSmwgOLFMMwRhSUixkcenFPMSftaToToTohsToToVoisqJcLhXswLpfNVfUFBsVfVfVfBscraQLeNLJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhNLJmFfzuTrYTDXNyHmEtspNaiggyetqwmDimoqDmOvgBgBeHUkHmPLrewkeshSjDvqoCnzfzbWBOBOBOBOwNTKLYjmeFTGnbUUxqqrOFtgQzOFOFOFOFXoVxEPgWEPRbVfcrjOLeNLJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhNLJmFfIFpBApFavwHmAmhKUltNSSCaiJvDvnomCBalHCyBcMxtHmPCpcCmRxzjzjhShShSbBzjUiUiUiUirKkqLYyqtlSmfATXoXnHgIcftmOFsmcNOFpuVfVfVfVfVfVfMTniLeNLJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhNLJmovvksFADjEnAmunRPqFvmxDgYoXuqLqFIHqFqFfGqFXVtIHmUONNQjVidNPSdNdNdNORZYdNdNdNcyVlvAuMTOIlpUxaQmaWBBKBTXazlVbzYqSwUEGumCGuIxGumClAniLeNLJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhOhJhJhJhJhJhJhJhJhJhiUJmovUIJdovukEFoERwoEGDoEoEUGUGUGUGWUUGUGUGUGTfgaHmPjNNAZpDpDcULXpDsufYETpDpDpDtuqkVpLYFYnoYdUgaOXztEgXKNnOOFOFOFOFOFOFOFOFnininininilqAFJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhSOsRWbuiKpQwIUIneUodKqCktDZNUGdiJMBdzVRlotDFUGaZqxHmsGYghtjQjQjQjQjQjQjQjQjQjQjQHNEhWcoaGfHqGflmNqNqqPlKjgnOilQlIjqXowMWghXBRaNLNLWbWbLeNLJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhNLJmAuPuPumaIUhuTHUYgeJtUYpYOdIqGUNoTuSdMGRUJoxUMJpKpbFiyejQjQjQjQjQjQjQjQjQjQjQHNSZkBoaXHtQGfWWSmSmSmJJZhkTQtzqsleKowCrkHTxRaNLNLNLWbLeNLJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJmQIPuPuQwukBZqOWJIAutOKDEUGEQSuzYJsZESuWjegjVGlHmJrEKDZjQjQjQjQjQjQjQjQjQjQjQHNJvHeoaUBvMGfQESPSPmvPIFVnOonNCJgliowowMzowrTNLNLNLNLLeJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJmtZPuPumaukTFpOpOeGXGpOsTUGZtLGygScMPayDRegKQFKHmUreRDZEujQjQjQjQjQjQjQjQjQjQHNjZaRoanpkNuocFNtlkqWjAlXnOSGNCJgtCMhqAJgASrTNLNLNLNLLeJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJmQIPuPuQwukukPmHIEiPJQuWMcvqMAVAVPBPBwmAVtkeyqqSKEHEKDZjQjQjQjQjQjQjQjQjQjQjQHNppIRBNBNSABNJkLwLwKrLwyAnqrTTDATvdvdvdpCFNrTNLNLNLNLLeJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJmtZPuPumaNLukukAvjsKkfjfqcvVmVmcvNLcvVmVmcvLeWbLEyTqtDZjQjQjQjQjQjQjQjQjQjQjQHNyRxwLEWbLenqVJVJnqNLnqVJVJrTJaiKUVlwbKksrTrTNLNLNLNLLeJhJhJhJhJhJhJhJhJhJhJhOhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJmQIPuPuPuPuQwukdVukrbSzSzcvmqVmcvNLcvmqVmcvLeWbLEUZWfDZjQjQjQjQjQjQjQjQjQjQjQHNHFZILEWbLenqDwVJnqNLnqDwVJrTrTrTRaRaRarTrTNLNLNLNLNLLeJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhUseWwuwuwuwumsZGmhZGmRZGQWCPWbWbDsZGCPWbWbDsgFNLLEyCIDinQaQaQaQaQaFWQaQaQaQaQanmIOhWLENLuGCPWbWbDsZGCPWbWbDsqiZGZGZGZGZGZGZGZGZGZGZGLgJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJmQIPuPuPuPuQwNLJhJhJhJhJhSOZGZGkLJhSOZGZGkLIiCPLELEbEbEbEbEbEbEbEbEbEbEbEbEbEbEbELELENLLeSOZGZGkLJhSOZGZGkLJhJhJhJhJhNLNLNLNLNLNLNLLeJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhNLnIPuPuPuPuPumaJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhSjSOZGZGZGZGZGZGZGZGCPJhNLNLWbWbJhWbWbNLNLNLSjJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhNLNLNLNLNLNLLeNLJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhCQkLJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhSOAFNLJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhSOAFJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhPpJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhOhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhOhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhOhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +>>>>>>> 5e30d29614... Merge pull request #14566 from Heroman3003/wall-locker-color "} diff --git a/maps/stellar_delight/stellar_delight3.dmm b/maps/stellar_delight/stellar_delight3.dmm index 858a172317..eaa129474d 100644 --- a/maps/stellar_delight/stellar_delight3.dmm +++ b/maps/stellar_delight/stellar_delight3.dmm @@ -1,4 +1,5 @@ <<<<<<< HEAD +<<<<<<< HEAD ======= //MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE "aa" = ( @@ -34331,5 +34332,1695 @@ Jh Jh Jh Jh +======= +"aa" = (/obj/effect/landmark{name = "morphspawn"},/turf/simulated/floor,/area/maintenance/stellardelight/deck3/aftstarroom) +"ab" = (/obj/structure/railing/grey{dir = 8},/turf/simulated/floor/tiled/monotile,/area/stellardelight/deck3/commandhall) +"ac" = (/obj/effect/landmark{name = "morphspawn"},/turf/simulated/floor/tiled/techfloor/grid,/area/maintenance/stellardelight/deck3/forestarroomb) +"ad" = (/turf/simulated/wall/bay/r_wall/blue,/area/tcommsat/chamber) +"ae" = (/obj/structure/railing/grey{dir = 4},/turf/simulated/floor/tiled/monotile,/area/stellardelight/deck3/commandhall) +"af" = (/obj/structure/cable/green{icon_state = "1-2"},/turf/simulated/floor/airless,/area/stellardelight/deck3/exterior) +"ag" = (/turf/simulated/floor/tiled/monotile,/area/stellardelight/deck3/aft) +"ah" = (/obj/structure/sign/directions/stairs_down{pixel_x = 32; pixel_y = 18},/obj/structure/sign/directions/medical{pixel_x = 32; pixel_y = 12},/obj/structure/sign/directions/engineering{pixel_x = 32; pixel_y = 6},/obj/structure/sign/directions/cargo{pixel_x = 32},/obj/structure/railing/grey{dir = 4},/turf/simulated/floor/tiled/monotile,/area/stellardelight/deck3/aft) +"ai" = (/obj/machinery/door/firedoor/glass,/obj/structure/window/bay/reinforced,/obj/structure/low_wall/bay/reinforced/steel,/turf/simulated/floor,/area/stellardelight/deck3/portdock) +"aj" = (/obj/effect/landmark/free_ai_shell,/turf/simulated/floor/carpet/turcarpet,/area/ai) +"ak" = (/obj/structure/sign/directions/stairs_down{pixel_x = -32; pixel_y = 18},/obj/structure/sign/directions/medical{pixel_x = -32; pixel_y = 12},/obj/structure/sign/directions/engineering{pixel_x = -32; pixel_y = 6},/obj/structure/sign/directions/cargo{pixel_x = -32},/obj/structure/railing/grey{dir = 8},/turf/simulated/floor/tiled/monotile,/area/stellardelight/deck3/aft) +"al" = (/obj/machinery/power/terminal{dir = 8},/obj/structure/cable{icon_state = "0-4"},/turf/simulated/floor,/area/maintenance/stellardelight/substation/command) +"am" = (/obj/machinery/door/airlock/angled_bay/hatch{dir = 4; name = "maintenance access"; stripe_color = "#454545"},/obj/machinery/door/firedoor/glass,/obj/structure/cable/green{icon_state = "4-8"},/turf/simulated/floor/tiled/steel_ridged,/area/maintenance/stellardelight/deck3/forestarrooma) +"an" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/techfloor/grid,/area/ai_cyborg_station) +"ao" = (/obj/machinery/computer/HolodeckControl{dir = 4},/obj/item/device/radio/intercom{dir = 8; pixel_x = -24},/turf/simulated/floor/tiled,/area/holodeck_control) +"ap" = (/obj/machinery/vending/altevian,/turf/simulated/floor,/area/maintenance/stellardelight/deck3/forestarroomb) +"aq" = (/obj/structure/closet/walllocker_double/emergency_engi/south,/turf/simulated/floor,/area/stellardelight/deck2/fore) +"ar" = (/obj/structure/closet/walllocker_double/command/ce{dir = 4; pixel_x = 32},/turf/simulated/floor/tiled,/area/crew_quarters/heads/chief) +"as" = (/obj/structure/closet/walllocker_double/command/cmo{dir = 8; pixel_x = -32},/turf/simulated/floor/tiled/eris/white/cargo,/area/crew_quarters/heads/cmo) +"at" = (/obj/structure/table/darkglass,/turf/simulated/floor/tiled/dark,/area/lawoffice) +"au" = (/obj/item/weapon/book/manual/command_guide,/obj/item/weapon/book/manual/standard_operating_procedure,/obj/item/weapon/book/manual/security_space_law,/obj/structure/closet/walllocker_double/command/hos{dir = 4; pixel_x = 32},/turf/simulated/floor/tiled/dark,/area/crew_quarters/heads/hos) +"av" = (/obj/item/device/taperecorder{pixel_x = -3},/obj/item/weapon/circuitboard/aicore{pixel_x = -2; pixel_y = 4},/obj/item/weapon/circuitboard/teleporter,/obj/structure/closet/walllocker_double/command/rd{dir = 8; pixel_x = -32},/turf/simulated/floor/tiled/techfloor,/area/crew_quarters/heads/hor) +"aw" = (/obj/structure/cable/green{icon_state = "1-2"},/turf/simulated/floor,/area/maintenance/stellardelight/deck3/aftstarroom) +"ax" = (/obj/item/weapon/book/manual/command_guide,/obj/item/weapon/book/manual/command_guide,/obj/item/weapon/book/manual/standard_operating_procedure,/obj/item/weapon/book/manual/standard_operating_procedure,/obj/item/weapon/book/manual/security_space_law,/obj/item/weapon/book/manual/security_space_law,/obj/structure/closet/walllocker_double/command/iaa{dir = 4; pixel_x = 32},/turf/simulated/floor/tiled/dark,/area/lawoffice) +"ay" = (/obj/item/weapon/book/manual/command_guide,/obj/item/weapon/book/manual/command_guide,/obj/item/weapon/book/manual/standard_operating_procedure,/obj/item/weapon/book/manual/standard_operating_procedure,/obj/item/weapon/book/manual/security_space_law,/obj/item/weapon/book/manual/security_space_law,/obj/structure/closet/walllocker_double/command/iaa{dir = 8; pixel_x = -32},/turf/simulated/floor/tiled/dark,/area/lawoffice) +"az" = (/obj/item/device/megaphone,/obj/item/weapon/book/manual/standard_operating_procedure,/obj/item/weapon/book/manual/command_guide,/obj/structure/table/reinforced,/obj/item/weapon/folder/red,/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/obj/structure/closet/walllocker_double/command/north,/turf/simulated/floor/carpet,/area/crew_quarters/heads/hop) +"aA" = (/turf/simulated/wall/bay/r_wall/steel,/area/stellardelight/deck3/transitgateway) +"aB" = (/obj/machinery/door/firedoor/glass,/obj/structure/window/bay/reinforced,/obj/structure/low_wall/bay/reinforced/steel,/turf/simulated/floor,/area/maintenance/stellardelight/deck3/starboardcent) +"aC" = (/obj/structure/lattice,/obj/structure/closet/walllocker_double/emergency_engi/east,/turf/simulated/open,/area/stellardelight/deck2/starboard) +"aD" = (/obj/structure/table/steel,/turf/simulated/floor,/area/maintenance/stellardelight/deck3/forestarrooma) +"aE" = (/obj/structure/lattice,/obj/structure/closet/walllocker_double/emergency_engi/south,/turf/simulated/open,/area/stellardelight/deck2/port) +"aF" = (/obj/structure/lattice,/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable/green{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/structure/closet/walllocker_double/emergency_engi/south,/turf/simulated/open,/area/stellardelight/deck2/port) +"aG" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/turf/simulated/floor/tiled,/area/stellardelight/deck3/aft) +"aH" = (/obj/machinery/account_database{dir = 8},/obj/structure/sign/painting/library_secure{pixel_x = 30},/turf/simulated/floor/tiled,/area/crew_quarters/heads/hop) +"aJ" = (/obj/machinery/door/firedoor/glass,/obj/structure/window/bay/reinforced,/obj/structure/low_wall/bay/reinforced/steel,/turf/simulated/floor,/area/stellardelight/deck2/starboard) +"aK" = (/obj/structure/cable/blue{icon_state = "1-4"},/obj/machinery/camera/network/command{dir = 10},/turf/simulated/floor/tiled,/area/crew_quarters/heads/hop) +"aM" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/turf/simulated/floor,/area/stellardelight/deck2/central) +"aN" = (/obj/structure/lattice,/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/obj/structure/cable/blue{icon_state = "1-2"},/turf/simulated/open,/area/stellardelight/deck2/starboard) +"aP" = (/obj/structure/bed/chair/shuttle{dir = 1},/obj/structure/closet/emergsuit_wall{dir = 1; pixel_y = -32},/obj/machinery/alarm{dir = 4; pixel_x = -28},/obj/effect/floor_decal/fancy_shuttle{fancy_shuttle_tag = "sdboat"},/turf/simulated/floor/tiled,/area/shuttle/sdboat/aft{base_turf = /turf/simulated/floor/reinforced/airless}) +"aQ" = (/turf/simulated/floor/tiled/eris/dark/gray_platform,/area/stellardelight/deck3/commandhall) +"aS" = (/turf/simulated/floor,/area/maintenance/stellardelight/deck3/forestarrooma) +"aX" = (/obj/structure/sign/deck3{pixel_x = 32},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 4},/turf/simulated/floor/tiled,/area/stellardelight/deck3/aft) +"ba" = (/obj/machinery/atmospherics/unary/vent_pump/on,/obj/effect/landmark/vines,/turf/simulated/open,/area/stellardelight/deck2/fore) +"bb" = (/obj/effect/floor_decal/techfloor/orange{dir = 8},/obj/machinery/atmospherics/unary/vent_pump/on,/turf/simulated/floor/tiled/techfloor,/area/stellardelight/deck3/transitgateway) +"bd" = (/obj/structure/closet,/turf/simulated/floor,/area/maintenance/stellardelight/deck3/portaft) +"be" = (/obj/machinery/door/firedoor/glass/hidden/shuttle,/obj/machinery/door/blast/shuttle/open{dir = 4; id = "shuttleshutter"},/obj/structure/window/fancy_shuttle{fancy_shuttle_tag = "sdboat"},/turf/simulated/floor/reinforced/airless,/area/shuttle/sdboat/fore{base_turf = /turf/simulated/floor/reinforced/airless}) +"bg" = (/obj/machinery/door/firedoor/glass,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/door/airlock/angled_bay/standard/color{dir = 4; door_color = "#323d80"; fill_color = "#313866"; id_tag = "hopdoor"; name = "Head of Personnel"; req_access = list(57); stripe_color = "#a3d1d1"},/turf/simulated/floor/tiled/steel_ridged,/area/crew_quarters/heads/hop) +"bh" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/angled_bay/hatch{dir = 4; door_color = "#e6ab22"; name = "Command Substation"; req_one_access = list(10); stripe_color = "#e6ab22"},/turf/simulated/floor/tiled/steel_ridged,/area/maintenance/stellardelight/deck3/starboardfore) +"bj" = (/obj/structure/flora/pottedplant/stoutbush,/turf/simulated/floor/tiled/dark,/area/lawoffice) +"bl" = (/obj/structure/lattice,/obj/structure/cable/green{icon_state = "32-2"},/obj/machinery/door/firedoor/glass,/turf/simulated/open,/area/maintenance/stellardelight/deck3/portcent) +"bm" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable{icon_state = "1-4"},/turf/simulated/floor,/area/maintenance/stellardelight/substation/command) +"bn" = (/obj/structure/lattice,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/turf/simulated/open,/area/stellardelight/deck2/fore) +"bp" = (/obj/effect/floor_decal/industrial/warning{dir = 4},/obj/structure/cable/green{icon_state = "2-8"},/turf/simulated/floor/airless,/area/stellardelight/deck3/exterior) +"br" = (/obj/structure/lattice,/obj/structure/cable{icon_state = "32-2"},/obj/structure/disposalpipe/down,/obj/machinery/door/firedoor/glass,/turf/simulated/open,/area/maintenance/stellardelight/deck3/starboardcent) +"bs" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/turf/simulated/floor/tiled/techfloor/grid,/area/ai) +"bx" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/carpet/purcarpet,/area/crew_quarters/heads/hor) +"by" = (/turf/simulated/wall/bay/r_wall/steel,/area/maintenance/stellardelight/deck3/starboardaft) +"bB" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor,/area/maintenance/stellardelight/deck3/starboardcent) +"bC" = (/obj/structure/closet/crate,/obj/random/maintenance,/obj/random/maintenance,/obj/random/maintenance,/obj/random/maintenance,/obj/random/maintenance,/obj/random/maintenance/medical,/obj/random/maintenance/medical,/turf/simulated/floor,/area/maintenance/stellardelight/deck3/portfore) +"bE" = (/turf/simulated/floor/glass/reinforced,/area/stellardelight/deck3/commandhall) +"bI" = (/obj/structure/lattice,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/structure/cable/blue{icon_state = "2-4"},/turf/simulated/open,/area/stellardelight/deck2/fore) +"bJ" = (/obj/structure/table/steel,/obj/item/weapon/flame/candle,/turf/simulated/floor/tiled/techfloor/grid,/area/maintenance/stellardelight/deck3/forestarrooma) +"bK" = (/obj/machinery/camera/network/command,/turf/simulated/floor/bluegrid,/area/ai) +"bL" = (/obj/machinery/media/jukebox/hacked,/obj/machinery/status_display{pixel_y = 32},/turf/simulated/floor/tiled/techfloor/grid,/area/ai) +"bM" = (/obj/effect/floor_decal/emblem/nt1,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/turf/simulated/floor/tiled/techfloor/grid,/area/ai_upload) +"bO" = (/obj/structure/table/darkglass,/obj/item/weapon/clipboard,/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/turf/simulated/floor/tiled/dark,/area/lawoffice) +"bP" = (/obj/machinery/atmospherics/pipe/manifold/hidden,/turf/simulated/floor,/area/maintenance/stellardelight/deck3/portcent) +"bQ" = (/obj/structure/cable/blue{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/turf/simulated/floor/tiled/techfloor/grid,/area/ai_cyborg_station) +"bS" = (/obj/structure/cable{icon_state = "2-4"},/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/turf/simulated/floor,/area/maintenance/stellardelight/deck3/starboardcent) +"bT" = (/obj/machinery/door/firedoor/glass,/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor,/area/stellardelight/deck2/central) +"bU" = (/turf/simulated/wall/bay{desc = "It has a blue stripe! A huge chunk of metal used to seperate rooms."; stripe_color = "#2e2aa1"},/area/stellardelight/deck3/commandhall) +"bV" = (/obj/machinery/alarm/angled,/turf/simulated/open,/area/crew_quarters/bar) +"bW" = (/obj/structure/table/standard,/obj/item/toy/plushie/ipc/toaster,/obj/machinery/atmospherics/unary/vent_pump/on,/turf/simulated/floor/bluegrid,/area/ai_cyborg_station) +"bY" = (/obj/structure/table/woodentable,/obj/machinery/door/blast/shutters{dir = 4; id = "cafe"; layer = 3.1; name = "Cafe Shutters"},/turf/simulated/floor/lino,/area/stellardelight/deck3/cafe) +"bZ" = (/obj/machinery/ntnet_relay,/turf/simulated/floor/tiled/dark{nitrogen = 100; oxygen = 0; temperature = 80},/area/tcommsat/chamber) +"ca" = (/obj/structure/lattice,/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/obj/effect/landmark/vines,/turf/simulated/open,/area/crew_quarters/bar) +"cb" = (/turf/simulated/wall/bay/r_wall/blue,/area/crew_quarters/heads/chief) +"cc" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/turf/simulated/floor/tiled/techfloor/grid,/area/tcommsat/computer) +"ch" = (/obj/machinery/vending/wardrobe/mimedrobe,/turf/simulated/floor/carpet/bcarpet,/area/stellardelight/deck3/clownmimeoffice) +"ci" = (/obj/machinery/door/firedoor/glass,/obj/structure/cable/blue{icon_state = "4-8"},/obj/machinery/door/airlock/angled_bay/secure{dir = 4; name = "Robotic Storage"; req_access = list(16)},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/turf/simulated/floor/tiled/steel_ridged,/area/ai_cyborg_station) +"ck" = (/obj/structure/cable/green{icon_state = "2-8"},/obj/structure/cable/green{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/structure/sign/painting/public{pixel_y = 30},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 1},/turf/simulated/floor/tiled,/area/stellardelight/deck3/aft) +"cm" = (/obj/machinery/exonet_node{anchored = 1},/turf/simulated/floor/tiled/dark{nitrogen = 100; oxygen = 0; temperature = 80},/area/tcommsat/chamber) +"cn" = (/obj/structure/cable/green{icon_state = "2-8"},/obj/structure/cable/green{icon_state = "4-8"},/obj/effect/floor_decal/fancy_shuttle{fancy_shuttle_tag = "sdboat"},/turf/simulated/floor/tiled,/area/shuttle/sdboat/aft{base_turf = /turf/simulated/floor/reinforced/airless}) +"cp" = (/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4},/obj/machinery/light/small,/turf/simulated/floor,/area/maintenance/stellardelight/deck3/portaft) +"cq" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden{dir = 1},/obj/structure/cable/green{icon_state = "1-2"},/turf/simulated/floor/tiled,/area/stellardelight/deck3/aft) +"cs" = (/obj/structure/bed/chair{dir = 8},/turf/simulated/floor/glass/reinforced,/area/stellardelight/deck3/aft) +"ct" = (/obj/machinery/door/firedoor/glass,/obj/structure/cable/blue{icon_state = "4-8"},/obj/machinery/door/airlock/angled_bay/secure{dir = 4; name = "AI Storage"; req_access = list(16)},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/steel_ridged,/area/ai_cyborg_station) +"cu" = (/obj/structure/sign/directions/evac{pixel_x = -32},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 8},/obj/structure/flora/pottedplant/smalltree,/turf/simulated/floor/tiled,/area/stellardelight/deck3/aft) +"cw" = (/obj/structure/cable/blue{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/techfloor/grid,/area/ai_upload) +"cx" = (/obj/machinery/computer/timeclock/premade/north,/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 1},/turf/simulated/floor/tiled,/area/stellardelight/deck3/aft) +"cy" = (/obj/machinery/recharge_station,/obj/structure/closet/emergsuit_wall{pixel_y = 29},/turf/simulated/floor/tiled,/area/stellardelight/deck3/starboarddock) +"cz" = (/obj/structure/cable{icon_state = "1-8"},/turf/simulated/wall/bay/r_wall/blue,/area/ai_cyborg_station) +"cA" = (/obj/structure/bed/chair{dir = 8},/obj/machinery/light,/turf/simulated/floor/glass/reinforced,/area/stellardelight/deck3/aft) +"cH" = (/obj/machinery/power/apc/angled{dir = 8; name = "night shift APC"; nightshift_setting = 2},/obj/structure/cable/green{icon_state = "0-4"},/turf/simulated/floor,/area/maintenance/stellardelight/deck3/foreportroomb) +"cI" = (/obj/effect/floor_decal/techfloor{dir = 8},/obj/structure/cable/green{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/techfloor,/area/stellardelight/deck3/cryo) +"cK" = (/obj/structure/cable/green{icon_state = "2-4"},/turf/simulated/floor,/area/maintenance/stellardelight/deck3/portfore) +"cL" = (/obj/structure/cable/blue{icon_state = "1-2"},/obj/structure/cable/blue{icon_state = "2-4"},/turf/simulated/floor,/area/maintenance/stellardelight/deck3/starboardfore) +"cO" = (/obj/machinery/holoplant,/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/obj/machinery/status_display{pixel_x = 32},/turf/simulated/floor/tiled/techfloor/grid,/area/tcommsat/computer) +"cP" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled,/area/crew_quarters/heads/hop) +"cS" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/turf/simulated/floor,/area/maintenance/stellardelight/deck3/portcent) +"cW" = (/obj/machinery/atmospherics/unary/vent_pump{external_pressure_bound = 140; external_pressure_bound_default = 140; icon_state = "map_vent_out"; pressure_checks = 0; pressure_checks_default = 0; use_power = 1},/turf/simulated/floor/bluegrid{name = "Mainframe Base"; nitrogen = 100; oxygen = 0; temperature = 80},/area/tcommsat/chamber) +"cY" = (/obj/machinery/telecomms/broadcaster/preset_right/sd,/turf/simulated/floor/tiled/dark{nitrogen = 100; oxygen = 0; temperature = 80},/area/tcommsat/chamber) +"cZ" = (/obj/machinery/light/small{dir = 8},/turf/simulated/floor,/area/maintenance/stellardelight/deck3/foreportrooma) +"db" = (/obj/structure/lattice,/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/turf/simulated/open,/area/stellardelight/deck2/starboard) +"df" = (/obj/structure/cable/green{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden{dir = 1},/turf/simulated/floor/tiled,/area/stellardelight/deck3/starboarddock) +"dh" = (/obj/effect/floor_decal/industrial/warning/corner{dir = 8},/turf/simulated/floor/airless,/area/stellardelight/deck3/exterior) +"dj" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals_central5{dir = 1; pixel_y = 1},/turf/simulated/floor/tiled,/area/stellardelight/deck3/aft) +"dk" = (/obj/machinery/atmospherics/unary/vent_pump/high_volume{dir = 4; frequency = 1379; id_tag = "starmaint_airpump"},/obj/machinery/camera/network/civilian,/turf/simulated/floor/airless,/area/maintenance/stellardelight/deck3/starboardcent) +"dn" = (/obj/item/device/radio/intercom{dir = 8; pixel_x = -24},/turf/simulated/floor/tiled/techfloor/grid,/area/ai_server_room) +"do" = (/obj/machinery/papershredder,/turf/simulated/floor/tiled,/area/crew_quarters/heads/hop) +"dr" = (/obj/machinery/light{dir = 4},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/turf/simulated/floor/tiled,/area/stellardelight/deck3/aft) +"du" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/angled_bay/hatch{dir = 4; name = "maintenance access"; stripe_color = "#454545"},/obj/structure/cable/blue{icon_state = "4-8"},/turf/simulated/floor/tiled/steel_ridged,/area/maintenance/stellardelight/deck3/forestarrooma) +"dw" = (/obj/structure/cable/green{icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden{dir = 1},/obj/structure/cable/green{icon_state = "1-2"},/turf/simulated/floor/tiled,/area/stellardelight/deck3/portdock) +"dx" = (/turf/simulated/wall/bay/steel,/area/maintenance/stellardelight/deck3/forestarroomb) +"dy" = (/obj/effect/floor_decal/industrial/warning,/obj/structure/cable/blue{icon_state = "2-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,/turf/simulated/floor/tiled/techfloor/grid,/area/tcommsat/computer) +"dB" = (/obj/effect/floor_decal/industrial/warning/corner{dir = 4},/obj/structure/cable/green{icon_state = "1-4"},/turf/simulated/floor/airless,/area/stellardelight/deck3/exterior) +"dD" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/turf/simulated/floor/carpet,/area/crew_quarters/heads/hos) +"dE" = (/turf/simulated/floor,/area/maintenance/stellardelight/deck3/portaft) +"dF" = (/obj/structure/cable/green{icon_state = "4-8"},/obj/effect/floor_decal/emblem/nt1,/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4},/turf/simulated/floor/tiled,/area/stellardelight/deck3/aft) +"dH" = (/obj/structure/table/steel_reinforced,/obj/machinery/recharger{pixel_y = 4},/obj/machinery/light,/turf/simulated/floor/tiled/dark,/area/crew_quarters/heads/hos) +"dL" = (/obj/structure/cable/green{icon_state = "4-8"},/obj/structure/table/steel,/turf/simulated/floor/tiled/techfloor/grid,/area/maintenance/stellardelight/deck3/foreportroomb) +"dM" = (/obj/structure/closet/firecloset,/turf/simulated/floor,/area/maintenance/stellardelight/deck3/portaft) +"dN" = (/obj/machinery/door/firedoor/glass,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/door/airlock/angled_bay/hatch{name = "maintenance access"; stripe_color = "#454545"},/turf/simulated/floor/tiled/steel_ridged,/area/crew_quarters/bar) +"dQ" = (/obj/machinery/door/firedoor/glass/hidden/shuttle,/obj/machinery/door/blast/shuttle/open{id = "shuttleshutter"},/obj/structure/window/fancy_shuttle{fancy_shuttle_tag = "sdboat"},/turf/simulated/floor/reinforced/airless,/area/shuttle/sdboat/aft{base_turf = /turf/simulated/floor/reinforced/airless}) +"dS" = (/obj/machinery/camera/network/command{dir = 4},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/turf/simulated/floor/carpet/turcarpet,/area/ai) +"dT" = (/obj/machinery/light/small{dir = 8},/turf/simulated/open,/area/stellardelight/deck2/port) +"dU" = (/turf/simulated/wall/bay/blue,/area/lawoffice) +"dV" = (/obj/effect/floor_decal/industrial/warning/corner{dir = 8},/obj/machinery/holoplant,/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/obj/machinery/light_switch{dir = 8; pixel_x = 24},/turf/simulated/floor/tiled/techfloor/grid,/area/tcommsat/computer) +"dY" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/carpet,/area/crew_quarters/heads/hos) +"dZ" = (/obj/machinery/light_switch{dir = 8; pixel_x = 24; pixel_y = 24},/turf/simulated/floor/tiled/dark,/area/lawoffice) +"ea" = (/obj/structure/table/bench/padded,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/wood,/area/stellardelight/deck3/cafe) +"eb" = (/obj/machinery/atmospherics/unary/vent_pump/high_volume{dir = 4; frequency = 1379; id_tag = "starmaint_airpump"},/turf/simulated/floor/airless,/area/maintenance/stellardelight/deck3/starboardcent) +"ed" = (/obj/structure/closet,/obj/random/firstaid,/turf/simulated/floor,/area/maintenance/stellardelight/deck3/portaft) +"eg" = (/obj/machinery/porta_turret/ai_defense,/obj/structure/cable/blue{icon_state = "1-2"},/turf/simulated/floor/bluegrid,/area/ai) +"eh" = (/obj/structure/cable/green{icon_state = "2-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/turf/simulated/floor,/area/maintenance/stellardelight/deck3/portcent) +"ei" = (/obj/machinery/light{dir = 4},/turf/simulated/floor/tiled/steel_grid,/area/stellardelight/deck3/aft) +"ej" = (/obj/effect/floor_decal/techfloor/orange{dir = 1},/obj/structure/closet/emergsuit_wall{pixel_y = 29},/turf/simulated/floor/tiled/techfloor,/area/stellardelight/deck3/transitgateway) +"ek" = (/obj/machinery/camera/network/halls{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 4},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/obj/structure/cable{icon_state = "1-8"},/turf/simulated/floor/tiled,/area/stellardelight/deck3/portdock) +"el" = (/obj/machinery/pda_multicaster/prebuilt,/turf/simulated/floor/tiled/dark{nitrogen = 100; oxygen = 0; temperature = 80},/area/tcommsat/chamber) +"em" = (/obj/structure/cable/blue{icon_state = "4-8"},/turf/simulated/floor,/area/maintenance/stellardelight/deck3/forestarrooma) +"en" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden{dir = 1},/obj/structure/cable/green{icon_state = "1-2"},/turf/simulated/floor/tiled,/area/stellardelight/deck3/aft) +"eo" = (/obj/machinery/power/apc/angled{dir = 4},/obj/structure/cable/blue{icon_state = "0-2"},/turf/simulated/floor/bluegrid{name = "Mainframe Base"; nitrogen = 100; oxygen = 0; temperature = 80},/area/tcommsat/chamber) +"ep" = (/obj/structure/cable{icon_state = "2-4"},/turf/simulated/floor,/area/ai_cyborg_station) +"et" = (/obj/effect/floor_decal/industrial/warning{dir = 8},/obj/machinery/light/small,/turf/simulated/floor/airless,/area/stellardelight/deck3/portdock) +"eu" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/bluegrid,/area/ai) +"ev" = (/obj/machinery/door/firedoor/glass,/obj/structure/cable/blue{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/door/airlock/angled_bay/standard/color{dir = 4; door_color = "#323d80"; fill_color = "#313866"; id_tag = "rddoor"; name = "Research Director"; req_access = list(30); stripe_color = "#5a19a8"},/turf/simulated/floor/tiled/steel_ridged,/area/crew_quarters/heads/hor) +"ew" = (/obj/structure/cable/green{icon_state = "1-2"},/obj/structure/cable/green{icon_state = "2-8"},/turf/simulated/floor/airless,/area/stellardelight/deck3/exterior) +"ex" = (/obj/structure/cable/green{icon_state = "1-2"},/obj/machinery/light{dir = 8},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 8},/turf/simulated/floor/tiled,/area/stellardelight/deck3/starboarddock) +"ey" = (/obj/structure/cable/green{icon_state = "4-8"},/turf/simulated/floor/tiled/techfloor/grid,/area/maintenance/stellardelight/deck3/foreportroomb) +"ez" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/angled_bay/double{name = "maintenance access"; stripe_color = "#454545"},/turf/simulated/floor,/area/maintenance/stellardelight/deck3/starboardfore) +"eC" = (/obj/machinery/telecomms/receiver/preset_right/sd,/turf/simulated/floor/tiled/dark{nitrogen = 100; oxygen = 0; temperature = 80},/area/tcommsat/chamber) +"eD" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/turf/simulated/floor/tiled,/area/crew_quarters/heads/hop) +"eE" = (/obj/machinery/alarm/angled{dir = 4},/obj/structure/table/rack,/obj/random/maintenance,/obj/random/drinkbottle,/obj/random/snack,/turf/simulated/floor,/area/maintenance/stellardelight/deck3/forestarroomb) +"eF" = (/obj/structure/table/rack,/obj/random/maintenance,/obj/random/maintenance,/obj/random/maintenance/clean,/obj/random/maintenance/clean,/obj/random/maintenance/engineering,/obj/random/maintenance/medical,/turf/simulated/floor,/area/maintenance/stellardelight/deck3/portfore) +"eI" = (/obj/structure/cable/green{icon_state = "1-4"},/turf/simulated/wall/bay/r_wall/steel,/area/crew_quarters/bar) +"eJ" = (/turf/simulated/wall/fancy_shuttle/nondense{fancy_shuttle_tag = "sdboat"},/area/shuttle/sdboat/fore{base_turf = /turf/simulated/floor/reinforced/airless}) +"eK" = (/obj/machinery/atmospherics/unary/vent_pump{external_pressure_bound = 0; external_pressure_bound_default = 0; icon_state = "map_vent_in"; initialize_directions = 1; internal_pressure_bound = 4000; internal_pressure_bound_default = 4000; pressure_checks = 2; pressure_checks_default = 2; pump_direction = 0; use_power = 1},/turf/simulated/floor/bluegrid{name = "Mainframe Base"; nitrogen = 100; oxygen = 0; temperature = 80},/area/tcommsat/chamber) +"eL" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/obj/machinery/camera/network/command{dir = 4},/turf/simulated/floor/tiled/eris/dark/gray_platform,/area/stellardelight/deck3/commandhall) +"eN" = (/obj/structure/cable/green{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled,/area/stellardelight/deck3/aft) +"eP" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/angled_bay/standard/color/common{dir = 4; name = "Holodeck"},/turf/simulated/floor/tiled/steel_ridged,/area/holodeck_control) +"eQ" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/turf/simulated/open,/area/stellardelight/deck2/starboard) +"eR" = (/obj/structure/table/steel,/turf/simulated/floor/tiled/techfloor/grid,/area/maintenance/stellardelight/deck3/forestarrooma) +"eS" = (/obj/structure/cable/blue{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/techfloor/grid,/area/ai_cyborg_station) +"eU" = (/obj/structure/table/woodentable,/obj/machinery/door/blast/shutters{dir = 2; id = "cafe"; layer = 3.1; name = "Cafe Shutters"},/turf/simulated/floor/lino,/area/stellardelight/deck3/cafe) +"eV" = (/obj/structure/lattice,/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/obj/structure/cable/green{icon_state = "4-8"},/turf/simulated/open,/area/crew_quarters/bar) +"eX" = (/obj/structure/cable/green{icon_state = "1-8"},/turf/simulated/floor/airless,/area/stellardelight/deck3/exterior) +"eY" = (/obj/structure/lattice,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/open,/area/stellardelight/deck2/starboard) +"fa" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/carpet/oracarpet,/area/crew_quarters/heads/chief) +"fb" = (/obj/structure/cable/blue{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/turf/simulated/floor/tiled/techfloor/grid,/area/ai_server_room) +"fd" = (/obj/item/weapon/reagent_containers/food/drinks/cup{pixel_x = 8; pixel_y = 8},/obj/item/weapon/reagent_containers/food/drinks/cup{pixel_x = -4; pixel_y = 8},/obj/item/weapon/reagent_containers/food/drinks/cup{pixel_x = 8; pixel_y = -4},/obj/item/weapon/reagent_containers/food/drinks/cup{pixel_x = -4; pixel_y = -4},/obj/item/weapon/reagent_containers/food/drinks/cup{pixel_x = 8},/obj/item/weapon/reagent_containers/food/drinks/cup{pixel_x = -4},/obj/item/weapon/reagent_containers/food/drinks/cup{pixel_x = 8; pixel_y = 12},/obj/item/weapon/reagent_containers/food/drinks/cup{pixel_x = -4; pixel_y = 12},/obj/structure/table/woodentable,/obj/item/weapon/hand_labeler,/obj/machinery/alarm/angled,/obj/machinery/status_display{pixel_x = -32},/turf/simulated/floor/lino,/area/stellardelight/deck3/cafe) +"ff" = (/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4},/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/angled_bay/hatch{dir = 4; name = "maintenance access"; stripe_color = "#454545"},/obj/structure/cable/green{icon_state = "4-8"},/turf/simulated/floor/tiled/steel_ridged,/area/maintenance/stellardelight/deck3/starboardaft) +"fg" = (/obj/structure/handrail{dir = 1},/obj/machinery/alarm{dir = 1; pixel_y = -28},/obj/effect/floor_decal/fancy_shuttle{fancy_shuttle_tag = "sdboat"},/turf/simulated/floor/tiled,/area/shuttle/sdboat/aft{base_turf = /turf/simulated/floor/reinforced/airless}) +"fh" = (/obj/structure/cable/green{icon_state = "4-8"},/obj/structure/cable/green{icon_state = "2-8"},/turf/simulated/floor/tiled/techfloor/grid,/area/maintenance/stellardelight/deck3/foreportroomb) +"fj" = (/obj/structure/table/woodentable,/obj/item/toy/figure/clown,/obj/item/weapon/pen/crayon/marker/rainbow,/obj/item/weapon/pen/crayon/rainbow,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/turf/simulated/floor/carpet/gaycarpet,/area/stellardelight/deck3/clownmimeoffice) +"fk" = (/obj/machinery/telecomms/server/presets/common,/turf/simulated/floor/tiled/dark{nitrogen = 100; oxygen = 0; temperature = 80},/area/tcommsat/chamber) +"fs" = (/obj/structure/cable/green{icon_state = "2-8"},/turf/simulated/wall/bay/r_wall/steel,/area/crew_quarters/bar) +"fv" = (/obj/machinery/holoplant,/obj/machinery/power/apc/angled{dir = 4},/obj/structure/cable/blue{icon_state = "0-8"},/turf/simulated/floor/tiled/techfloor/grid,/area/ai_upload) +"fz" = (/obj/effect/floor_decal/techfloor/orange,/obj/effect/landmark{name = "JoinLateGateway"},/turf/simulated/floor/tiled/techfloor,/area/stellardelight/deck3/transitgateway) +"fD" = (/obj/structure/table/rack,/obj/random/maintenance,/obj/random/maintenance/engineering,/obj/random/maintenance/engineering,/turf/simulated/floor,/area/maintenance/stellardelight/deck3/forestarroomb) +"fE" = (/obj/structure/lattice,/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/turf/simulated/open,/area/stellardelight/deck2/starboard) +"fG" = (/obj/structure/cable/green{icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/machinery/atmospherics/pipe/manifold/hidden{dir = 1},/turf/simulated/floor,/area/maintenance/stellardelight/deck3/portcent) +"fM" = (/obj/machinery/power/terminal{dir = 8},/obj/structure/cable,/turf/simulated/floor,/area/ai_cyborg_station) +"fO" = (/obj/structure/cable/blue{icon_state = "2-4"},/obj/machinery/light{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/turf/simulated/floor/tiled,/area/crew_quarters/heads/hop) +"fP" = (/obj/machinery/space_heater,/turf/simulated/floor,/area/maintenance/stellardelight/deck3/portaft) +"fS" = (/turf/simulated/wall/bay/steel,/area/crew_quarters/heads/hop) +"fT" = (/obj/machinery/light_switch{dir = 4; pixel_x = -24; pixel_y = 24},/turf/simulated/floor/tiled/dark,/area/lawoffice) +"fW" = (/obj/structure/cable/green{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden{dir = 1},/turf/simulated/floor/tiled,/area/stellardelight/deck3/starboarddock) +"gb" = (/obj/structure/table/steel_reinforced,/obj/item/weapon/folder/red_hos,/turf/simulated/floor/carpet,/area/crew_quarters/heads/hos) +"gc" = (/obj/machinery/atmospherics/unary/vent_pump/high_volume{dir = 4; frequency = 1379; id_tag = "portmaint_airpump"},/turf/simulated/floor/airless,/area/maintenance/stellardelight/deck3/portcent) +"gg" = (/obj/structure/lattice,/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/obj/effect/mouse_hole_spawner{dir = 4},/turf/simulated/open,/area/crew_quarters/bar) +"gh" = (/obj/machinery/telecomms/server/presets/command,/turf/simulated/floor/tiled/dark{nitrogen = 100; oxygen = 0; temperature = 80},/area/tcommsat/chamber) +"gi" = (/obj/machinery/atmospherics/pipe/simple/hidden/fuel,/turf/simulated/wall/fancy_shuttle{fancy_shuttle_tag = "sdboat"},/area/shuttle/sdboat/aft{base_turf = /turf/simulated/floor/reinforced/airless}) +"gj" = (/obj/structure/table/rack/shelf,/obj/item/weapon/disk/nifsoft/compliance,/obj/random/contraband,/obj/random/contraband,/obj/random/contraband,/obj/random/maintenance,/obj/random/maintenance,/obj/random/maintenance,/obj/random/maintenance,/obj/random/maintenance,/obj/random/snack,/turf/simulated/floor/tiled/techfloor/grid,/area/maintenance/stellardelight/deck3/foreportroomb) +"gk" = (/obj/structure/table/woodentable,/obj/random/paicard,/turf/simulated/floor/wood,/area/stellardelight/deck3/cafe) +"gl" = (/obj/structure/bed/chair/shuttle{dir = 1},/obj/structure/closet/emergsuit_wall{pixel_y = 32},/obj/effect/floor_decal/fancy_shuttle{fancy_shuttle_tag = "sdboat"},/turf/simulated/floor/tiled,/area/shuttle/sdboat/aft{base_turf = /turf/simulated/floor/reinforced/airless}) +"gm" = (/obj/structure/lattice,/obj/structure/cable/blue{icon_state = "4-8"},/turf/simulated/open,/area/stellardelight/deck2/fore) +"gq" = (/obj/effect/floor_decal/spline/plain{dir = 4},/obj/structure/closet/hydrant{pixel_y = 28},/turf/simulated/floor/lino,/area/stellardelight/deck3/cafe) +"gs" = (/obj/machinery/requests_console/preset/rd{pixel_x = 30},/turf/simulated/floor/carpet/purcarpet,/area/crew_quarters/heads/hor) +"gw" = (/obj/structure/cable/green{icon_state = "1-2"},/obj/structure/cable/green{icon_state = "1-4"},/turf/simulated/floor/airless,/area/stellardelight/deck3/exterior) +"gy" = (/obj/structure/closet/secure_closet/engineering_chief,/obj/item/device/radio/intercom{dir = 1; name = "Station Intercom (General)"; pixel_y = 24},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/item/device/retail_scanner/engineering,/turf/simulated/floor/tiled,/area/crew_quarters/heads/chief) +"gA" = (/obj/structure/cable/green{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable/green{icon_state = "1-4"},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/turf/simulated/floor,/area/maintenance/stellardelight/deck3/portcent) +"gB" = (/obj/machinery/power/pointdefense{id_tag = "sd_pd"},/obj/effect/floor_decal/industrial/warning/full,/obj/structure/cable/green{icon_state = "0-4"},/obj/structure/cable/green{icon_state = "0-8"},/turf/simulated/floor/airless,/area/stellardelight/deck3/exterior) +"gE" = (/obj/structure/table/darkglass,/obj/item/weapon/stamp/denied{pixel_x = 6; pixel_y = 6},/obj/item/weapon/stamp/internalaffairs,/turf/simulated/floor/carpet/blue2,/area/lawoffice) +"gG" = (/obj/structure/lattice,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable/green{icon_state = "4-8"},/turf/simulated/open,/area/stellardelight/deck2/fore) +"gH" = (/turf/simulated/floor,/area/ai_cyborg_station) +"gJ" = (/obj/structure/cable/green{icon_state = "4-8"},/obj/structure/cable/green{icon_state = "2-8"},/obj/structure/cable/green{icon_state = "2-4"},/turf/simulated/floor/airless,/area/stellardelight/deck3/exterior) +"gL" = (/obj/item/weapon/bedsheet/hosdouble,/obj/structure/bed/double/padded,/obj/structure/curtain/black{color = "#631915"},/obj/effect/landmark/start/hos,/turf/simulated/floor/carpet,/area/crew_quarters/heads/hos) +"gM" = (/obj/machinery/atmospherics/pipe/simple/hidden{dir = 1},/turf/simulated/wall/bay/r_wall/steel,/area/stellardelight/deck3/aft) +"gN" = (/obj/structure/cable/blue{icon_state = "2-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/turf/simulated/floor/tiled/techfloor/grid,/area/ai) +"gO" = (/obj/structure/lattice,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/structure/cable/blue{icon_state = "4-8"},/turf/simulated/open,/area/stellardelight/deck2/fore) +"gQ" = (/obj/machinery/power/smes/buildable{charge = 5e+006; input_attempt = 1; input_level = 200000; output_level = 200000},/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced{dir = 4},/obj/structure/cable/cyan{icon_state = "0-4"},/obj/machinery/light{dir = 8},/turf/simulated/floor/bluegrid,/area/ai) +"gR" = (/obj/effect/floor_decal/techfloor/orange{dir = 6},/obj/machinery/light{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/techfloor,/area/stellardelight/deck3/transitgateway) +"gS" = (/obj/structure/cable/cyan{icon_state = "2-8"},/turf/simulated/floor/tiled/techfloor/grid,/area/ai) +"gU" = (/obj/machinery/atmospherics/pipe/simple/hidden/black{dir = 5},/turf/simulated/floor/bluegrid{name = "Mainframe Base"; nitrogen = 100; oxygen = 0; temperature = 80},/area/tcommsat/chamber) +"gV" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/angled_bay/double/glass{name = "glass airlock"},/obj/structure/cable{icon_state = "1-2"},/turf/simulated/floor/tiled/steel_ridged,/area/stellardelight/deck3/aft) +"gW" = (/obj/machinery/atmospherics/pipe/simple/hidden/black{dir = 10},/turf/simulated/floor/bluegrid{name = "Mainframe Base"; nitrogen = 100; oxygen = 0; temperature = 80},/area/tcommsat/chamber) +"hb" = (/obj/structure/cable/green{icon_state = "1-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/wood,/area/stellardelight/deck3/cafe) +"hc" = (/obj/machinery/requests_console/preset/hos{pixel_x = -30},/turf/simulated/floor/carpet,/area/crew_quarters/heads/hos) +"hd" = (/obj/structure/cable/green{icon_state = "4-8"},/turf/simulated/floor,/area/maintenance/stellardelight/deck3/portaft) +"he" = (/obj/machinery/button/remote/airlock{id = "readingroom1"; name = "Room 1 Lock"; pixel_y = 24; specialfunctions = 4},/obj/machinery/button/remote/blast_door{id = "readingroom1"; name = "Window Lockdown"; pixel_x = -10; pixel_y = 24},/turf/simulated/floor/carpet,/area/stellardelight/deck3/readingroom) +"hf" = (/obj/structure/sign/warning/docking_area{pixel_x = -32},/turf/simulated/floor/reinforced/airless,/area/stellardelight/deck3/exterior) +"hg" = (/obj/effect/fancy_shuttle/sd_shuttle{dir = 1; fancy_shuttle_tag = "sdboat"},/obj/effect/fancy_shuttle_floor_preview/sd_shuttle{dir = 1},/turf/simulated/wall/fancy_shuttle{fancy_shuttle_tag = "sdboat"},/area/shuttle/sdboat/aft{base_turf = /turf/simulated/floor/reinforced/airless}) +"hj" = (/obj/machinery/portable_atmospherics/hydroponics,/turf/simulated/floor/tiled/techfloor/grid,/area/maintenance/stellardelight/deck3/foreportroomb) +"hk" = (/obj/effect/floor_decal/industrial/warning,/obj/structure/sign/warning/docking_area{pixel_y = 32},/turf/simulated/floor/airless,/area/stellardelight/deck3/exterior) +"hp" = (/obj/structure/table/glass,/obj/machinery/computer/med_data/laptop{dir = 4; pixel_y = 6},/turf/simulated/floor/carpet/tealcarpet,/area/crew_quarters/heads/cmo) +"hr" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/light/small{dir = 1},/turf/simulated/floor,/area/maintenance/stellardelight/substation/command) +"ht" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/techfloor/grid,/area/ai_upload) +"hu" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/carpet/blue2,/area/lawoffice) +"hw" = (/obj/machinery/telecomms/processor/preset_one,/turf/simulated/floor/tiled/dark{nitrogen = 100; oxygen = 0; temperature = 80},/area/tcommsat/chamber) +"hy" = (/obj/machinery/atmospherics/pipe/simple/hidden,/turf/simulated/floor/airless,/area/maintenance/stellardelight/deck3/starboardcent) +"hz" = (/obj/structure/cable/blue{icon_state = "1-2"},/turf/simulated/floor/tiled/techfloor/grid,/area/maintenance/stellardelight/deck3/forestarroomb) +"hB" = (/obj/structure/cable{icon_state = "1-2"},/turf/simulated/floor,/area/maintenance/stellardelight/deck3/starboardcent) +"hC" = (/obj/machinery/light/small{dir = 4},/turf/simulated/open,/area/stellardelight/deck2/fore) +"hD" = (/turf/simulated/wall/bay/r_wall/steel,/area/maintenance/stellardelight/deck3/foreportrooma) +"hE" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/door/firedoor/glass,/turf/simulated/floor,/area/maintenance/stellardelight/deck3/starboardcent) +"hF" = (/obj/machinery/holoplant,/obj/machinery/light_switch{dir = 8; pixel_x = 24},/turf/simulated/floor/bluegrid,/area/ai_cyborg_station) +"hG" = (/obj/structure/sign/poster{dir = 4},/turf/simulated/floor,/area/stellardelight/deck2/port) +"hK" = (/obj/machinery/light{dir = 4},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/turf/simulated/floor/tiled/techfloor/grid,/area/ai_upload) +"hN" = (/obj/machinery/door/firedoor/glass,/obj/structure/window/bay/reinforced,/obj/structure/cable/green{icon_state = "1-2"},/obj/structure/low_wall/bay/reinforced/steel,/turf/simulated/floor,/area/stellardelight/deck3/portdock) +"hO" = (/obj/machinery/power/breakerbox/activated{RCon_tag = "Command Substation Bypass"},/turf/simulated/floor,/area/maintenance/stellardelight/substation/command) +"hP" = (/obj/structure/lattice,/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable{icon_state = "2-4"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/turf/simulated/open,/area/stellardelight/deck2/starboard) +"hQ" = (/turf/simulated/wall/bay/r_wall/steel,/area/maintenance/stellardelight/deck3/aftstarroom) +"hR" = (/obj/structure/cable/green{icon_state = "1-8"},/obj/effect/floor_decal/fancy_shuttle{fancy_shuttle_tag = "sdboat"},/turf/simulated/floor/tiled,/area/shuttle/sdboat/aft{base_turf = /turf/simulated/floor/reinforced/airless}) +"hT" = (/obj/structure/cable/blue{icon_state = "4-8"},/turf/simulated/wall/bay/r_wall/steel,/area/maintenance/stellardelight/deck3/starboardfore) +"hU" = (/obj/structure/sign/painting/library_secure{pixel_x = 30},/turf/simulated/floor/carpet/purcarpet,/area/crew_quarters/heads/hor) +"hX" = (/turf/simulated/floor/carpet/oracarpet,/area/crew_quarters/heads/chief) +"hY" = (/obj/structure/cable/green{icon_state = "4-8"},/turf/simulated/floor,/area/stellardelight/deck2/port) +"hZ" = (/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 4},/obj/structure/sign/vacuum{pixel_x = 32; plane = -34},/turf/simulated/floor/tiled,/area/stellardelight/deck3/starboarddock) +"ib" = (/obj/machinery/atmospherics/pipe/simple/hidden/black{dir = 9},/turf/simulated/floor/bluegrid{name = "Mainframe Base"; nitrogen = 100; oxygen = 0; temperature = 80},/area/tcommsat/chamber) +"if" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor,/area/maintenance/stellardelight/deck3/starboardaft) +"ii" = (/turf/simulated/floor,/area/maintenance/stellardelight/substation/command) +"ij" = (/obj/structure/bed/chair/office/dark{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/turf/simulated/floor/tiled,/area/crew_quarters/heads/hop) +"il" = (/turf/simulated/floor,/area/maintenance/stellardelight/deck3/foreportrooma) +"im" = (/obj/structure/cable/green{icon_state = "1-2"},/obj/structure/cable/green{icon_state = "1-8"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/turf/simulated/floor/tiled,/area/stellardelight/deck3/aft) +"in" = (/turf/simulated/wall/bay/r_wall/blue,/area/crew_quarters/heads/hop) +"ip" = (/obj/structure/cable{icon_state = "4-8"},/turf/simulated/floor/carpet/gaycarpet,/area/stellardelight/deck3/clownmimeoffice) +"ir" = (/obj/structure/cable/blue{icon_state = "4-8"},/turf/simulated/floor/tiled/techfloor/grid,/area/maintenance/stellardelight/deck3/forestarroomb) +"is" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/angled_bay/secure{name = "AI/Telecoms"; req_access = list(16)},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/steel_ridged,/area/ai_upload) +"iv" = (/obj/machinery/alarm/angled{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/turf/simulated/floor,/area/maintenance/stellardelight/deck3/starboardaft) +"iw" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable/green{icon_state = "1-2"},/obj/effect/floor_decal/fancy_shuttle{fancy_shuttle_tag = "sdboat"},/obj/machinery/atmospherics/pipe/simple/hidden/fuel{dir = 4},/turf/simulated/floor/tiled,/area/shuttle/sdboat/aft{base_turf = /turf/simulated/floor/reinforced/airless}) +"iy" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/monotile,/area/stellardelight/deck3/commandhall) +"iz" = (/obj/structure/cable/green{icon_state = "1-2"},/obj/structure/bed/chair/sofa/corp/right{dir = 4},/obj/effect/landmark{name = "morphspawn"},/turf/simulated/floor,/area/maintenance/stellardelight/deck3/portfore) +"iC" = (/obj/structure/cryofeed{dir = 4},/obj/effect/floor_decal/corner_techfloor_grid{dir = 5},/obj/effect/floor_decal/corner_techfloor_grid{dir = 10},/turf/simulated/floor/tiled/techfloor,/area/stellardelight/deck3/cryo) +"iE" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/angled_bay/hatch{door_color = "#e6ab22"; name = "Shield Generator"; req_access = null; req_one_access = list(11,24); stripe_color = "#e6ab22"},/turf/simulated/floor/tiled/steel_ridged,/area/stellardelight/deck3/commandhall) +"iI" = (/obj/structure/cable/blue{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/closet/emergsuit_wall{dir = 4; pixel_x = 27},/turf/simulated/floor/tiled/eris/dark/gray_platform,/area/stellardelight/deck3/commandhall) +"iJ" = (/obj/machinery/cryopod/robot,/obj/machinery/light{dir = 8},/turf/simulated/floor/bluegrid,/area/ai_cyborg_station) +"iK" = (/obj/machinery/power/terminal{dir = 1},/obj/structure/cable/blue{icon_state = "0-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/item/device/radio/intercom{dir = 8; pixel_x = -24},/turf/simulated/floor/tiled/techfloor/grid,/area/ai) +"iL" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/techfloor/grid,/area/tcommsat/computer) +"iN" = (/obj/structure/lattice,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable/green{icon_state = "4-8"},/turf/simulated/open,/area/crew_quarters/bar) +"iP" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled,/area/crew_quarters/heads/hop) +"iQ" = (/obj/machinery/light/small{dir = 8},/turf/simulated/open,/area/stellardelight/deck2/fore) +"iR" = (/obj/structure/cable/cyan{icon_state = "1-2"},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/turf/simulated/floor/tiled/techfloor/grid,/area/ai) +"iS" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor,/area/maintenance/stellardelight/deck3/starboardaft) +"iV" = (/obj/structure/railing/grey{dir = 4},/turf/simulated/open,/area/stellardelight/deck3/commandhall) +"iW" = (/obj/structure/cable/green{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 8},/turf/simulated/floor/tiled,/area/stellardelight/deck3/aft) +"iY" = (/obj/machinery/power/pointdefense{id_tag = "sd_pd"},/obj/effect/floor_decal/industrial/warning/full,/obj/structure/cable/blue,/turf/simulated/floor/airless,/area/stellardelight/deck3/exterior) +"iZ" = (/obj/effect/floor_decal/industrial/warning{dir = 4},/obj/machinery/light/small,/turf/simulated/floor/airless,/area/stellardelight/deck3/starboarddock) +"ja" = (/obj/structure/lattice,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/structure/cable/green{icon_state = "4-8"},/turf/simulated/open,/area/crew_quarters/bar) +"jc" = (/obj/machinery/computer/ship/sensors/adv,/obj/effect/floor_decal/fancy_shuttle{fancy_shuttle_tag = "sdboat"},/turf/simulated/floor/tiled,/area/shuttle/sdboat/fore{base_turf = /turf/simulated/floor/reinforced/airless}) +"jd" = (/obj/structure/cable/green{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/turf/simulated/floor/tiled,/area/stellardelight/deck3/transitgateway) +"jg" = (/obj/machinery/door/firedoor/glass,/obj/structure/window/bay/reinforced,/obj/structure/low_wall/bay/reinforced/steel,/turf/simulated/floor,/area/stellardelight/deck3/starboarddock) +"jh" = (/obj/structure/closet/secure_closet/hop2,/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/obj/machinery/alarm/angled{dir = 8; pixel_x = 30},/turf/simulated/floor/tiled,/area/crew_quarters/heads/hop) +"jm" = (/obj/structure/cable/green{icon_state = "1-2"},/obj/structure/table/woodentable,/obj/machinery/door/blast/shutters{dir = 2; id = "cafe"; layer = 3.1; name = "Cafe Shutters"},/turf/simulated/floor/lino,/area/stellardelight/deck3/cafe) +"jn" = (/obj/machinery/door/firedoor/glass,/obj/structure/cable/blue{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/door/airlock/angled_bay/standard/color{dir = 4; door_color = "#323d80"; fill_color = "#858585"; id_tag = "cedoor"; name = "Chief Engineer"; req_access = list(56); stripe_color = "#e6ab22"},/turf/simulated/floor/tiled/steel_ridged,/area/crew_quarters/heads/chief) +"jo" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/effect/mouse_hole_spawner{dir = 8},/turf/simulated/floor,/area/maintenance/stellardelight/deck3/starboardaft) +"jp" = (/obj/structure/closet,/obj/random/contraband,/obj/random/maintenance,/obj/random/maintenance,/obj/random/maintenance/cargo,/turf/simulated/floor,/area/maintenance/stellardelight/deck3/aftstarroom) +"jy" = (/obj/structure/window/bay/reinforced,/obj/structure/low_wall/bay/reinforced/steel,/obj/machinery/door/firedoor/glass,/obj/machinery/door/blast/angled/open{dir = 4; id = "clownmimeoffice"},/turf/simulated/floor,/area/stellardelight/deck3/clownmimeoffice) +"jC" = (/obj/structure/lattice,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/turf/simulated/open,/area/crew_quarters/bar) +"jD" = (/obj/structure/bed/double/padded,/obj/item/weapon/bedsheet/hopdouble,/obj/structure/curtain/black,/obj/effect/landmark/start/hop,/obj/machinery/requests_console{announcementConsole = 1; department = "Bridge"; departmentType = 5; name = "Bridge RC"; pixel_y = 28},/turf/simulated/floor/tiled,/area/crew_quarters/heads/hop) +"jE" = (/obj/machinery/light{dir = 1},/turf/simulated/floor/bluegrid{name = "Mainframe Base"; nitrogen = 100; oxygen = 0; temperature = 80},/area/tcommsat/chamber) +"jK" = (/obj/machinery/alarm/angled{dir = 4},/turf/simulated/floor/tiled/eris/dark/gray_platform,/area/stellardelight/deck3/commandhall) +"jL" = (/obj/structure/lattice,/obj/structure/cable/green{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/turf/simulated/open,/area/stellardelight/deck2/port) +"jM" = (/obj/item/modular_computer/console/preset/command,/obj/structure/sign/poster{dir = 4},/obj/machinery/newscaster{pixel_y = 28},/turf/simulated/floor/tiled/techfloor,/area/crew_quarters/heads/hor) +"jO" = (/obj/machinery/station_map{dir = 4; pixel_x = -32},/turf/simulated/floor/tiled/eris/dark/gray_platform,/area/stellardelight/deck3/commandhall) +"jP" = (/obj/machinery/alarm/angled,/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 1},/turf/simulated/floor/tiled,/area/stellardelight/deck3/aft) +"jT" = (/obj/structure/lattice,/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/turf/simulated/open,/area/stellardelight/deck2/port) +"jV" = (/obj/structure/cable/green{icon_state = "1-2"},/obj/machinery/light{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 4},/turf/simulated/floor/tiled,/area/stellardelight/deck3/portdock) +"jY" = (/obj/structure/lattice,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/open,/area/stellardelight/deck2/central) +"ka" = (/obj/structure/table/darkglass,/obj/item/weapon/storage/briefcase{pixel_x = -2; pixel_y = -5},/turf/simulated/floor/tiled/dark,/area/lawoffice) +"kb" = (/obj/machinery/atmospherics/pipe/simple/hidden/black{dir = 4},/obj/structure/cable/blue{icon_state = "4-8"},/turf/simulated/floor/bluegrid{name = "Mainframe Base"; nitrogen = 100; oxygen = 0; temperature = 80},/area/tcommsat/chamber) +"kc" = (/obj/machinery/telecomms/server/presets/medical,/turf/simulated/floor/tiled/dark{nitrogen = 100; oxygen = 0; temperature = 80},/area/tcommsat/chamber) +"ki" = (/obj/machinery/door/firedoor/glass,/obj/structure/window/bay/reinforced,/obj/structure/low_wall/bay/reinforced/steel,/turf/simulated/floor,/area/maintenance/stellardelight/deck3/portaft) +"kj" = (/obj/structure/lattice,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/turf/simulated/open,/area/stellardelight/deck2/starboard) +"kk" = (/obj/effect/floor_decal/industrial/warning/corner{dir = 4},/obj/structure/cable/green{icon_state = "4-8"},/turf/simulated/floor/airless,/area/stellardelight/deck3/exterior) +"kl" = (/obj/machinery/keycard_auth{pixel_y = 28},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/machinery/alarm/angled{dir = 8},/turf/simulated/floor/tiled,/area/crew_quarters/heads/chief) +"ko" = (/obj/structure/cable/green{icon_state = "2-8"},/turf/simulated/floor/airless,/area/stellardelight/deck3/exterior) +"kp" = (/obj/structure/cable{icon_state = "2-8"},/obj/machinery/alarm/angled,/turf/simulated/floor,/area/maintenance/stellardelight/substation/command) +"kr" = (/obj/structure/cable/green{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/turf/simulated/floor/tiled,/area/stellardelight/deck3/aft) +"ks" = (/obj/machinery/telecomms/server/presets/security,/turf/simulated/floor/tiled/dark{nitrogen = 100; oxygen = 0; temperature = 80},/area/tcommsat/chamber) +"kt" = (/obj/machinery/light{dir = 8},/turf/simulated/floor/tiled/steel_grid,/area/stellardelight/deck3/aft) +"ku" = (/obj/structure/barricade/cutout/mime,/turf/simulated/floor/carpet/bcarpet,/area/stellardelight/deck3/clownmimeoffice) +"kw" = (/obj/machinery/light{dir = 8},/turf/simulated/floor/bluegrid{name = "Mainframe Base"; nitrogen = 100; oxygen = 0; temperature = 80},/area/tcommsat/chamber) +"kz" = (/obj/machinery/airlock_sensor/airlock_exterior/shuttle{dir = 6; pixel_x = 7; pixel_y = 26},/obj/effect/map_helper/airlock/sensor/ext_sensor,/obj/effect/map_helper/airlock/door/ext_door,/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/glass_external,/obj/effect/floor_decal/fancy_shuttle{fancy_shuttle_tag = "sdboat"},/obj/machinery/atmospherics/pipe/simple/hidden/fuel{dir = 10},/obj/structure/cable{icon_state = "4-8"},/turf/simulated/floor/tiled,/area/shuttle/sdboat/aft{base_turf = /turf/simulated/floor/reinforced/airless}) +"kB" = (/obj/machinery/porta_turret/ai_defense,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/turf/simulated/floor/bluegrid,/area/ai) +"kF" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/turf/simulated/floor/tiled/techfloor/grid,/area/tcommsat/computer) +"kN" = (/obj/structure/sign/painting/library_secure{pixel_x = 30},/obj/structure/closet/secure_closet/hop,/obj/item/clothing/glasses/omnihud,/obj/item/weapon/paper/dockingcodes/sd,/obj/item/device/retail_scanner/command,/obj/item/weapon/storage/box/PDAs,/turf/simulated/floor/tiled,/area/crew_quarters/heads/hop) +"kO" = (/obj/machinery/door/firedoor/glass,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor,/area/stellardelight/deck2/fore) +"kP" = (/turf/simulated/wall/bay/r_wall/steel,/area/maintenance/stellardelight/deck3/portfore) +"kQ" = (/obj/structure/cable/green{icon_state = "1-2"},/turf/simulated/wall/bay/r_wall/steel,/area/maintenance/stellardelight/deck3/foreportrooma) +"kT" = (/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/turf/simulated/floor/tiled,/area/crew_quarters/heads/hop) +"kU" = (/obj/structure/lattice,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/structure/cable/green{icon_state = "4-8"},/turf/simulated/open,/area/crew_quarters/bar) +"kV" = (/obj/structure/bed/chair/office/dark{dir = 8},/turf/simulated/floor/tiled/techfloor/grid,/area/maintenance/stellardelight/deck3/foreportroomb) +"kW" = (/obj/machinery/camera/network/halls{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 8},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/turf/simulated/floor/tiled,/area/stellardelight/deck3/starboarddock) +"kX" = (/obj/structure/cable/blue{icon_state = "2-4"},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/turf/simulated/floor/tiled/techfloor/grid,/area/ai_cyborg_station) +"kY" = (/obj/effect/floor_decal/techfloor{dir = 10},/obj/effect/landmark{name = "JoinLateCryo"},/obj/machinery/camera/network/civilian{dir = 1},/turf/simulated/floor/tiled/techfloor,/area/stellardelight/deck3/cryo) +"kZ" = (/obj/structure/handrail{dir = 1},/obj/machinery/airlock_sensor{dir = 8; pixel_x = 29; pixel_y = 2},/obj/effect/map_helper/airlock/sensor/int_sensor,/obj/effect/floor_decal/fancy_shuttle{fancy_shuttle_tag = "sdboat"},/obj/structure/closet/emergsuit_wall{dir = 1; pixel_y = -32},/turf/simulated/floor/tiled,/area/shuttle/sdboat/aft{base_turf = /turf/simulated/floor/reinforced/airless}) +"la" = (/obj/structure/cable/green{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/effect/floor_decal/shuttles,/turf/simulated/floor/tiled,/area/stellardelight/deck3/portdock) +"lc" = (/obj/structure/fuel_port{dir = 8; pixel_x = -32},/obj/effect/floor_decal/fancy_shuttle{fancy_shuttle_tag = "sdboat"},/obj/machinery/atmospherics/binary/pump/fuel{dir = 1},/turf/simulated/floor/tiled,/area/shuttle/sdboat/aft{base_turf = /turf/simulated/floor/reinforced/airless}) +"le" = (/obj/structure/railing/grey{dir = 8},/obj/structure/railing/grey,/turf/simulated/open,/area/maintenance/stellardelight/deck3/starboardaft) +"lh" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/angled_bay/hatch{dir = 4; name = "maintenance access"; stripe_color = "#454545"},/obj/structure/cable/green{icon_state = "4-8"},/turf/simulated/floor/tiled/steel_ridged,/area/maintenance/stellardelight/deck3/foreportroomb) +"li" = (/obj/machinery/telecomms/hub/preset/sd,/turf/simulated/floor/tiled/dark{nitrogen = 100; oxygen = 0; temperature = 80},/area/tcommsat/chamber) +"lj" = (/obj/structure/lattice,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/structure/cable/green{icon_state = "4-8"},/turf/simulated/open,/area/stellardelight/deck2/fore) +"lk" = (/obj/structure/filingcabinet/medical,/obj/machinery/status_display{pixel_y = 32},/turf/simulated/floor/tiled/eris/white/cargo,/area/crew_quarters/heads/cmo) +"lm" = (/obj/machinery/light{dir = 8},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/obj/structure/closet/emcloset,/turf/simulated/floor/tiled,/area/stellardelight/deck3/aft) +"lo" = (/obj/machinery/telecomms/server/presets/engineering,/turf/simulated/floor/tiled/dark{nitrogen = 100; oxygen = 0; temperature = 80},/area/tcommsat/chamber) +"lq" = (/turf/simulated/floor,/area/maintenance/stellardelight/deck3/aftstarroom) +"lt" = (/obj/structure/bed/chair,/obj/machinery/atmospherics/unary/vent_pump/on,/obj/structure/sign/poster{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 1},/turf/simulated/floor/tiled,/area/stellardelight/deck3/aft) +"lu" = (/obj/machinery/camera/network/command,/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/turf/simulated/floor/tiled/techfloor/grid,/area/ai_cyborg_station) +"lv" = (/obj/structure/cable/green{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/light/small{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 6},/turf/simulated/floor/tiled,/area/stellardelight/deck3/aft) +"lw" = (/obj/machinery/telecomms/server/presets/science,/turf/simulated/floor/tiled/dark{nitrogen = 100; oxygen = 0; temperature = 80},/area/tcommsat/chamber) +"lx" = (/obj/machinery/telecomms/processor/preset_two,/turf/simulated/floor/tiled/dark{nitrogen = 100; oxygen = 0; temperature = 80},/area/tcommsat/chamber) +"lA" = (/obj/structure/table/rack,/obj/random/contraband,/obj/random/maintenance,/obj/random/maintenance/engineering,/obj/random/maintenance/engineering,/turf/simulated/floor/tiled/techfloor/grid,/area/maintenance/stellardelight/deck3/forestarroomb) +"lB" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/glass,/obj/effect/floor_decal/fancy_shuttle{fancy_shuttle_tag = "sdboat"},/obj/structure/cable/green{icon_state = "1-2"},/turf/simulated/floor/tiled,/area/shuttle/sdboat/aft{base_turf = /turf/simulated/floor/reinforced/airless}) +"lC" = (/obj/machinery/power/apc/angled{dir = 4},/obj/structure/cable/green{icon_state = "0-8"},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 4},/turf/simulated/floor/tiled,/area/stellardelight/deck3/starboarddock) +"lD" = (/obj/structure/cable/green{icon_state = "1-2"},/obj/effect/landmark/start/bartender,/turf/simulated/floor/lino,/area/stellardelight/deck3/cafe) +"lE" = (/obj/machinery/telecomms/bus/preset_two/sd,/turf/simulated/floor/tiled/dark{nitrogen = 100; oxygen = 0; temperature = 80},/area/tcommsat/chamber) +"lF" = (/obj/machinery/atmospherics/pipe/simple/hidden/universal,/obj/structure/cable/green{icon_state = "1-2"},/turf/simulated/floor,/area/maintenance/stellardelight/deck3/starboardaft) +"lH" = (/obj/machinery/telecomms/server/presets/service/sd,/turf/simulated/floor/tiled/dark{nitrogen = 100; oxygen = 0; temperature = 80},/area/tcommsat/chamber) +"lJ" = (/obj/structure/cable/green{icon_state = "2-4"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden{dir = 1},/obj/structure/cable/green{icon_state = "1-2"},/turf/simulated/floor/tiled,/area/stellardelight/deck3/aft) +"lL" = (/obj/structure/cable/blue{icon_state = "1-2"},/obj/machinery/light{dir = 4},/turf/simulated/floor/tiled/techfloor/grid,/area/ai_cyborg_station) +"lP" = (/obj/structure/table/woodentable,/obj/item/device/radio/intercom{dir = 4; name = "Station Intercom (General)"; pixel_x = 24},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/turf/simulated/floor/carpet/turcarpet,/area/ai) +"lQ" = (/obj/machinery/light,/turf/simulated/floor/tiled/techfloor/grid,/area/ai) +"lT" = (/obj/effect/floor_decal/techfloor/orange{dir = 4},/obj/machinery/atmospherics/unary/vent_scrubber/on,/obj/machinery/alarm/angled{dir = 8},/turf/simulated/floor/tiled/techfloor,/area/stellardelight/deck3/transitgateway) +"lU" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/angled_bay/standard/color{dir = 4; door_color = "#9c9c9c"; fill_color = "#5c5c5c"; id_tag = "readingroom1"; name = "Room 1"; stripe_color = "#89bd66"},/turf/simulated/floor/tiled/steel_ridged,/area/stellardelight/deck3/readingroom) +"lV" = (/obj/machinery/light/small{dir = 8},/turf/simulated/floor/carpet/bcarpet,/area/stellardelight/deck3/clownmimeoffice) +"lY" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/turf/simulated/open,/area/stellardelight/deck2/central) +"ma" = (/obj/structure/cable/green{icon_state = "4-8"},/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/angled_bay/external/glass{dir = 4; frequency = 1379; id_tag = "portmaint_exterior"; locked = 1; name = "Exterior Airlock"},/turf/simulated/floor/tiled/steel_ridged,/area/maintenance/stellardelight/deck3/portcent) +"mb" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden{dir = 9},/obj/structure/cable/green{icon_state = "1-2"},/turf/simulated/floor/tiled,/area/stellardelight/deck3/portdock) +"md" = (/obj/machinery/button/remote/airlock{id = "readingroom3"; name = "Room 3 Lock"; pixel_y = 24; specialfunctions = 4},/obj/machinery/button/remote/blast_door{id = "readingroom3"; name = "Window Lockdown"; pixel_x = -10; pixel_y = 24},/turf/simulated/floor/carpet,/area/stellardelight/deck3/readingroom) +"me" = (/turf/simulated/wall/bay/r_wall/steel,/area/maintenance/stellardelight/deck3/starboardcent) +"mf" = (/obj/effect/shuttle_landmark/premade/sd/deck3/portairlock,/turf/space,/area/space) +"mg" = (/obj/structure/lattice,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/open,/area/stellardelight/deck2/central) +"mh" = (/obj/structure/table/steel_reinforced,/obj/item/device/radio/intercom{dir = 4; pixel_x = 1; pixel_y = 1},/obj/structure/closet/emergsuit_wall{dir = 1; pixel_y = -32},/obj/machinery/alarm{pixel_y = 28},/obj/machinery/light{dir = 4},/obj/effect/floor_decal/fancy_shuttle{fancy_shuttle_tag = "sdboat"},/turf/simulated/floor/tiled,/area/shuttle/sdboat/fore{base_turf = /turf/simulated/floor/reinforced/airless}) +"mi" = (/obj/machinery/shipsensors/fancy_shuttle,/turf/simulated/wall/fancy_shuttle/nondense{fancy_shuttle_tag = "sdboat"},/area/shuttle/sdboat/fore{base_turf = /turf/simulated/floor/reinforced/airless}) +"mj" = (/obj/structure/lattice,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable/blue{icon_state = "4-8"},/turf/simulated/open,/area/stellardelight/deck2/fore) +"mm" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/structure/cable/green{icon_state = "1-8"},/turf/simulated/floor,/area/stellardelight/deck2/fore) +"mn" = (/obj/effect/floor_decal/techfloor{dir = 4},/obj/effect/landmark{name = "JoinLateCryo"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/techfloor,/area/stellardelight/deck3/cryo) +"mo" = (/obj/structure/cable/green{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/door/firedoor/glass,/obj/machinery/atmospherics/pipe/simple/hidden{dir = 1},/turf/simulated/floor/tiled/steel_ridged,/area/stellardelight/deck3/starboarddock) +"mp" = (/obj/structure/lattice,/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/structure/cable/blue{icon_state = "4-8"},/turf/simulated/open,/area/stellardelight/deck2/fore) +"mq" = (/obj/structure/bed/chair{dir = 4},/obj/machinery/alarm/angled{dir = 4},/turf/simulated/floor/tiled,/area/stellardelight/deck3/starboarddock) +"mr" = (/obj/structure/table/bench/padded,/obj/effect/landmark/start/visitor,/turf/simulated/floor/wood,/area/stellardelight/deck3/cafe) +"ms" = (/obj/structure/reagent_dispensers/watertank,/turf/simulated/floor,/area/maintenance/stellardelight/deck3/portfore) +"mv" = (/obj/effect/map_helper/airlock/atmos/pump_out_external,/obj/machinery/atmospherics/unary/vent_pump/high_volume{dir = 1; frequency = 1380; id_tag = "sdboat_docker_pump_out_external"},/turf/simulated/wall/fancy_shuttle/low{fancy_shuttle_tag = "sdboat"},/area/shuttle/sdboat/aft{base_turf = /turf/simulated/floor/reinforced/airless}) +"mA" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/turf/simulated/floor/bluegrid,/area/ai) +"mC" = (/obj/machinery/telecomms/server/presets/supply,/obj/machinery/atmospherics/pipe/simple/hidden/black,/turf/simulated/floor/tiled/dark{nitrogen = 100; oxygen = 0; temperature = 80},/area/tcommsat/chamber) +"mD" = (/obj/structure/table/steel_reinforced,/obj/machinery/photocopier/faxmachine{department = "Head of Security"},/turf/simulated/floor/tiled/dark,/area/crew_quarters/heads/hos) +"mF" = (/turf/simulated/floor/carpet/bcarpet,/area/stellardelight/deck3/clownmimeoffice) +"mI" = (/obj/structure/cable/blue{icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/light_switch{dir = 4; pixel_x = -24; pixel_y = 24},/turf/simulated/floor/tiled/eris/white/cargo,/area/crew_quarters/heads/cmo) +"mK" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/light/small{dir = 8},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/turf/simulated/floor,/area/maintenance/stellardelight/deck3/starboardaft) +"mM" = (/obj/structure/cable/green{icon_state = "1-4"},/obj/structure/cable/green{icon_state = "1-2"},/turf/simulated/floor/airless,/area/stellardelight/deck3/exterior) +"mO" = (/obj/structure/table/alien{name = "fancy table"},/obj/machinery/computer/skills{dir = 4; pixel_y = 6},/turf/simulated/floor/carpet/purcarpet,/area/crew_quarters/heads/hor) +"mQ" = (/obj/machinery/door/firedoor/glass,/obj/structure/window/bay/reinforced,/obj/structure/low_wall/bay/reinforced/steel,/turf/simulated/floor,/area/maintenance/stellardelight/deck3/portfore) +"mR" = (/obj/structure/cable/green{icon_state = "4-8"},/turf/simulated/floor,/area/maintenance/stellardelight/deck3/forestarrooma) +"mS" = (/obj/structure/lattice,/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/open,/area/stellardelight/deck2/starboard) +"mT" = (/obj/machinery/space_heater,/turf/simulated/floor,/area/maintenance/stellardelight/deck3/starboardcent) +"mX" = (/obj/structure/bed/chair{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 8},/obj/structure/cable{icon_state = "1-2"},/turf/simulated/floor/tiled,/area/stellardelight/deck3/portdock) +"na" = (/obj/machinery/door/firedoor/glass,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable/blue{icon_state = "4-8"},/turf/simulated/floor,/area/stellardelight/deck2/fore) +"nd" = (/obj/structure/cable/blue{icon_state = "4-8"},/obj/machinery/light,/turf/simulated/floor/tiled/techfloor/grid,/area/ai) +"ne" = (/obj/machinery/light/small{dir = 1},/turf/simulated/open,/area/stellardelight/deck2/fore) +"nf" = (/obj/structure/cable/blue{icon_state = "4-8"},/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/angled_bay/external/glass{dir = 4; frequency = 1379; id_tag = "starmaint_exterior"; locked = 1; name = "Exterior Airlock"},/turf/simulated/floor/tiled/steel_ridged,/area/maintenance/stellardelight/deck3/starboardcent) +"nh" = (/obj/effect/floor_decal/industrial/warning{dir = 8},/obj/structure/cable/green{icon_state = "1-2"},/turf/simulated/floor/airless,/area/stellardelight/deck3/exterior) +"nj" = (/obj/machinery/door/firedoor/glass,/obj/structure/cable/green{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/door/airlock/angled_bay/hatch{dir = 4; name = "maintenance access"; stripe_color = "#454545"},/turf/simulated/floor/tiled/steel_ridged,/area/stellardelight/deck3/cafe) +"nk" = (/obj/machinery/light,/obj/structure/table/bench/padded,/obj/effect/landmark/start/visitor,/turf/simulated/floor/wood,/area/stellardelight/deck3/cafe) +"nm" = (/obj/machinery/telecomms/server/presets/unused,/turf/simulated/floor/tiled/dark{nitrogen = 100; oxygen = 0; temperature = 80},/area/tcommsat/chamber) +"np" = (/obj/structure/cable/blue{icon_state = "1-2"},/obj/machinery/camera/network/command{dir = 4},/turf/simulated/floor/tiled/techfloor/grid,/area/ai) +"nr" = (/obj/effect/floor_decal/techfloor/orange{dir = 5},/obj/structure/closet/emergsuit_wall{pixel_y = 29},/obj/structure/closet/emergsuit_wall{dir = 4; pixel_x = 27},/turf/simulated/floor/tiled/techfloor,/area/stellardelight/deck3/transitgateway) +"ns" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/turf/simulated/floor/carpet/oracarpet,/area/crew_quarters/heads/chief) +"nt" = (/obj/machinery/status_display{pixel_x = 32},/turf/simulated/floor/tiled/monotile,/area/stellardelight/deck3/commandhall) +"nu" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/obj/structure/cable/blue{icon_state = "4-8"},/obj/machinery/alarm/angled{dir = 8},/turf/simulated/floor,/area/maintenance/stellardelight/deck3/starboardcent) +"nv" = (/obj/item/weapon/reagent_containers/glass/bucket/wood,/obj/structure/closet/crate,/obj/item/weapon/material/minihoe,/obj/item/seeds/reishimycelium,/obj/item/seeds/random,/obj/item/seeds/random,/obj/item/seeds/random,/obj/item/seeds/random,/obj/item/seeds/random,/obj/item/seeds/ambrosiavulgarisseed,/turf/simulated/floor/tiled/techfloor/grid,/area/maintenance/stellardelight/deck3/foreportroomb) +"nw" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/angled_bay/double{dir = 8; name = "maintenance access"; stripe_color = "#454545"},/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4},/turf/simulated/floor,/area/maintenance/stellardelight/deck3/portcent) +"nx" = (/turf/simulated/open,/area/stellardelight/deck2/central) +"nz" = (/obj/machinery/camera/network/civilian{dir = 1},/turf/simulated/floor/wood,/area/stellardelight/deck3/cafe) +"nB" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/angled_bay/external/glass{dir = 4; frequency = 1380; id_tag = null; locked = 1; name = "Docking Port Airlock"},/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4},/obj/effect/map_helper/airlock/door/int_door,/obj/machinery/access_button{command = "cycle_interior"; dir = 4; frequency = 1380; master_tag = "sd_escape_starboard"; pixel_y = 32; req_one_access = list(13)},/turf/simulated/floor/tiled/steel_ridged,/area/stellardelight/deck3/starboarddock) +"nC" = (/obj/machinery/telecomms/bus/preset_four,/turf/simulated/floor/tiled/dark{nitrogen = 100; oxygen = 0; temperature = 80},/area/tcommsat/chamber) +"nD" = (/obj/machinery/power/apc/angled{dir = 4; name = "night shift APC"; nightshift_setting = 2},/obj/structure/cable{icon_state = "0-8"},/obj/structure/cable/green{icon_state = "1-2"},/obj/structure/table/rack,/obj/random/contraband,/obj/random/maintenance/clean,/obj/random/maintenance,/obj/random/maintenance/engineering,/obj/random/maintenance/engineering,/turf/simulated/floor,/area/maintenance/stellardelight/deck3/starboardaft) +"nF" = (/obj/structure/table/woodentable,/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/obj/item/device/radio/intercom{dir = 8; pixel_x = -24},/turf/simulated/floor/wood,/area/stellardelight/deck3/cafe) +"nH" = (/obj/structure/table/steel_reinforced,/obj/item/device/flashlight/lamp/green{pixel_x = -4; pixel_y = 12},/obj/item/weapon/stamp/hos,/obj/item/weapon/book/manual/sd_guide,/turf/simulated/floor/carpet,/area/crew_quarters/heads/hos) +"nL" = (/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 8},/obj/machinery/item_bank{dir = 4; pixel_x = -26},/turf/simulated/floor/tiled,/area/stellardelight/deck3/aft) +"nM" = (/obj/structure/cable/blue{icon_state = "1-2"},/obj/item/device/radio/intercom{dir = 8; pixel_x = -24},/turf/simulated/floor/tiled/techfloor/grid,/area/ai) +"nN" = (/obj/machinery/cryopod/robot,/turf/simulated/floor/bluegrid,/area/ai_cyborg_station) +"nO" = (/obj/structure/closet/crate,/obj/random/contraband,/obj/random/maintenance,/obj/random/maintenance,/obj/random/maintenance,/obj/random/maintenance,/obj/random/maintenance,/turf/simulated/floor,/area/maintenance/stellardelight/deck3/foreportrooma) +"nP" = (/turf/simulated/wall/bay/purple,/area/crew_quarters/heads/hor) +"nS" = (/obj/machinery/hologram/holopad,/turf/simulated/floor/tiled/techfloor/grid,/area/ai_server_room) +"nT" = (/obj/machinery/smartfridge/drinks,/turf/simulated/floor,/area/maintenance/stellardelight/deck3/aftstarroom) +"nV" = (/obj/structure/table/rack,/obj/random/contraband,/obj/random/maintenance,/obj/random/maintenance,/turf/simulated/floor,/area/maintenance/stellardelight/deck3/portaft) +"nW" = (/turf/simulated/wall/bay/steel,/area/stellardelight/deck3/cafe) +"nX" = (/obj/structure/cable/green{icon_state = "1-2"},/turf/simulated/floor/tiled/techfloor/grid,/area/maintenance/stellardelight/deck3/foreportroomb) +"nZ" = (/obj/machinery/door/firedoor/glass/hidden/steel{dir = 2},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 1},/turf/simulated/floor/tiled,/area/stellardelight/deck3/aft) +"ob" = (/obj/structure/lattice,/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/turf/simulated/open,/area/stellardelight/deck2/port) +"od" = (/obj/machinery/atmospherics/unary/vent_pump/high_volume{dir = 8; frequency = 1379; id_tag = "starmaint_airpump"},/obj/machinery/light/small{dir = 1},/turf/simulated/floor/airless,/area/maintenance/stellardelight/deck3/starboardcent) +"og" = (/obj/structure/bed/chair{dir = 4},/turf/simulated/floor/tiled/techfloor/grid,/area/maintenance/stellardelight/deck3/foreportrooma) +"ok" = (/obj/structure/lattice,/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4},/obj/structure/cable/green{icon_state = "4-8"},/turf/simulated/open,/area/stellardelight/deck2/starboard) +"ol" = (/obj/structure/table/alien{name = "fancy table"},/obj/item/weapon/stamp/rd,/obj/item/weapon/book/manual/sd_guide,/turf/simulated/floor/carpet/purcarpet,/area/crew_quarters/heads/hor) +"op" = (/obj/structure/cable/green{icon_state = "1-4"},/obj/structure/cable/green{icon_state = "1-8"},/turf/simulated/floor,/area/maintenance/stellardelight/deck3/portcent) +"oq" = (/obj/effect/landmark/arrivals,/turf/simulated/floor/glass/reinforced,/area/stellardelight/deck3/aft) +"os" = (/obj/machinery/door/firedoor/glass,/obj/machinery/atmospherics/pipe/simple/hidden{dir = 6},/obj/machinery/door/airlock/angled_bay/external/glass{frequency = 1380; id_tag = null; locked = 1; name = "Docking Port Airlock"},/obj/effect/map_helper/airlock/door/int_door,/obj/machinery/access_button{command = "cycle_interior"; dir = 1; frequency = 1380; master_tag = "sd_escape_center_right"; pixel_x = 32; req_one_access = list(13)},/turf/simulated/floor/tiled/steel_ridged,/area/stellardelight/deck3/aft) +"ou" = (/obj/machinery/atmospherics/unary/vent_pump/high_volume{dir = 1; frequency = 1380; id_tag = null},/obj/machinery/embedded_controller/radio/airlock/docking_port_multi{dir = 8; frequency = 1380; id_tag = "sd_escape_center_right"; master_tag = "escape_dock"; pixel_x = 24; req_one_access = list(13); tag_airpump = null; tag_chamber_sensor = null; tag_exterior_door = null; tag_interior_door = null},/obj/machinery/airlock_sensor{dir = 4; frequency = 1380; id_tag = null; pixel_x = -25},/obj/effect/map_helper/airlock/atmos/chamber_pump,/obj/effect/map_helper/airlock/sensor/chamber_sensor,/turf/simulated/floor/tiled,/area/stellardelight/deck3/aft) +"ov" = (/obj/structure/closet/crate/bin{anchored = 1},/turf/simulated/floor,/area/maintenance/stellardelight/deck3/forestarroomb) +"ow" = (/turf/simulated/open,/area/stellardelight/deck2/starboard) +"oy" = (/obj/machinery/door/firedoor/glass/hidden/steel,/obj/structure/cable/green{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4},/turf/simulated/floor/tiled,/area/stellardelight/deck3/aft) +"oA" = (/obj/machinery/telecomms/processor/preset_four,/turf/simulated/floor/tiled/dark{nitrogen = 100; oxygen = 0; temperature = 80},/area/tcommsat/chamber) +"oC" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/turf/simulated/floor,/area/maintenance/stellardelight/deck3/starboardcent) +"oD" = (/obj/item/modular_computer/console/preset/command,/obj/structure/sign/poster{dir = 4},/obj/machinery/newscaster{pixel_y = 28},/turf/simulated/floor/tiled/eris/white/cargo,/area/crew_quarters/heads/cmo) +"oE" = (/obj/machinery/hologram/holopad,/turf/simulated/floor/wood,/area/stellardelight/deck3/readingroom) +"oI" = (/obj/structure/lattice,/obj/machinery/atmospherics/pipe/zpipe/down/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/zpipe/down/supply{dir = 4},/obj/machinery/door/firedoor/glass,/turf/simulated/open,/area/maintenance/stellardelight/deck3/portcent) +"oM" = (/obj/structure/cable/green{icon_state = "1-2"},/obj/machinery/light/small{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor,/area/maintenance/stellardelight/deck3/portaft) +"oN" = (/obj/machinery/teleport/hub{dir = 2},/turf/simulated/floor/tiled/techfloor/grid,/area/ai_cyborg_station) +"oO" = (/obj/machinery/door/firedoor/glass,/obj/structure/cable{icon_state = "1-2"},/turf/simulated/floor/tiled/steel_ridged,/area/stellardelight/deck3/portdock) +"oP" = (/obj/structure/lattice,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/open,/area/crew_quarters/bar) +"oR" = (/obj/machinery/newscaster/security_unit{pixel_x = -32; pixel_y = 32},/obj/item/device/radio/intercom/locked/ai_private{dir = 4; pixel_x = 32},/obj/item/device/radio/intercom{broadcasting = 1; dir = 8; name = "Common Channel"; pixel_x = -21},/obj/item/device/radio/intercom{dir = 1; name = "Station Intercom (General)"; pixel_y = 21},/obj/machinery/requests_console/preset/ai{pixel_x = 32; pixel_y = 32},/obj/effect/landmark/start/ai,/turf/simulated/floor/bluegrid,/area/ai) +"oS" = (/obj/structure/cryofeed,/obj/effect/floor_decal/corner_techfloor_grid{dir = 5},/obj/effect/floor_decal/corner_techfloor_grid{dir = 10},/turf/simulated/floor/tiled/techfloor,/area/stellardelight/deck3/cryo) +"oT" = (/obj/structure/cable/blue{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/obj/item/device/radio/intercom{dir = 4; pixel_x = 24},/turf/simulated/floor/tiled/techfloor/grid,/area/ai_cyborg_station) +"oU" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 4},/turf/simulated/floor/tiled,/area/stellardelight/deck3/starboarddock) +"oV" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/obj/machinery/camera/network/halls{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 8},/turf/simulated/floor/tiled,/area/stellardelight/deck3/aft) +"oW" = (/turf/simulated/open,/area/stellardelight/deck2/port) +"oX" = (/obj/structure/lattice,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/blue{icon_state = "1-2"},/turf/simulated/open,/area/stellardelight/deck2/fore) +"oY" = (/obj/machinery/door/firedoor/glass,/obj/structure/cable/blue{icon_state = "1-2"},/obj/machinery/door/airlock/angled_bay/hatch{name = "Telecoms Control Room"; req_access = list(61)},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/steel_ridged,/area/tcommsat/computer) +"oZ" = (/turf/simulated/wall/bay/steel,/area/stellardelight/deck3/readingroom) +"pb" = (/obj/structure/cable/green{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 5},/turf/simulated/floor/tiled,/area/stellardelight/deck3/aft) +"pc" = (/turf/simulated/floor/tiled,/area/stellardelight/deck3/aft) +"pd" = (/obj/machinery/power/apc/angled{dir = 8},/obj/structure/cable/blue{icon_state = "0-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/eris/white/cargo,/area/crew_quarters/heads/cmo) +"pf" = (/obj/structure/cable/green{icon_state = "4-8"},/obj/structure/cable/green{icon_state = "1-8"},/turf/simulated/floor,/area/maintenance/stellardelight/deck3/portfore) +"pk" = (/obj/structure/table/steel,/obj/random/drinkbottle,/turf/simulated/floor/tiled/techfloor/grid,/area/maintenance/stellardelight/deck3/foreportrooma) +"pl" = (/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 4},/obj/item/device/radio/intercom{dir = 4; pixel_x = 24},/turf/simulated/floor/tiled,/area/stellardelight/deck3/starboarddock) +"pm" = (/obj/structure/table/darkglass,/obj/item/device/radio/intercom{dir = 1; name = "Station Intercom (General)"; pixel_y = 24},/obj/item/device/flashlight/lamp/green{pixel_x = -5; pixel_y = -5},/obj/item/weapon/paper_bin,/obj/item/weapon/pen/blade/red{pixel_x = -2; pixel_y = -2},/obj/item/weapon/pen,/obj/item/weapon/pen/blue{pixel_x = 2; pixel_y = 3},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/turf/simulated/floor/tiled/dark,/area/lawoffice) +"po" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/obj/structure/flora/pottedplant/decorative,/turf/simulated/floor/tiled/eris/dark/gray_platform,/area/stellardelight/deck3/commandhall) +"pp" = (/obj/structure/cable/green{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/turf/simulated/floor/wood,/area/stellardelight/deck3/cafe) +"pq" = (/obj/structure/cable/green{icon_state = "1-2"},/turf/simulated/floor,/area/maintenance/stellardelight/deck3/forestarrooma) +"pt" = (/obj/structure/cable{icon_state = "1-8"},/obj/structure/cable{icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/turf/simulated/floor,/area/maintenance/stellardelight/deck3/starboardcent) +"px" = (/obj/machinery/telecomms/processor/preset_three,/turf/simulated/floor/tiled/dark{nitrogen = 100; oxygen = 0; temperature = 80},/area/tcommsat/chamber) +"pz" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/angled_bay/hatch{name = "maintenance access"; stripe_color = "#454545"},/obj/structure/cable/green{icon_state = "1-2"},/turf/simulated/floor/tiled/steel_ridged,/area/maintenance/stellardelight/deck3/aftstarroom) +"pA" = (/obj/structure/bed/double/padded,/obj/item/weapon/bedsheet/cosmosdouble{icon_state = "dobulesheetcosmos"},/obj/machinery/camera/network/command,/turf/simulated/floor/carpet/turcarpet,/area/ai) +"pB" = (/obj/structure/bed/chair,/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 1},/obj/item/device/radio/intercom{dir = 1; pixel_y = 24},/turf/simulated/floor/tiled,/area/stellardelight/deck3/aft) +"pC" = (/obj/structure/cable/green{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden{dir = 1},/obj/structure/sign/warning/evac{pixel_x = 32},/obj/effect/landmark{name = "lightsout"},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 4},/turf/simulated/floor/tiled,/area/stellardelight/deck3/portdock) +"pE" = (/obj/machinery/light/small{dir = 8},/turf/simulated/floor/tiled/techfloor/grid,/area/maintenance/stellardelight/deck3/forestarrooma) +"pG" = (/obj/structure/cable/green{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/obj/effect/floor_decal/shuttles/right,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled,/area/stellardelight/deck3/starboarddock) +"pK" = (/obj/structure/cable/green{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4},/turf/simulated/floor/tiled,/area/stellardelight/deck3/aft) +"pL" = (/obj/structure/table/steel,/obj/random/snack,/turf/simulated/floor,/area/maintenance/stellardelight/deck3/forestarrooma) +"pN" = (/turf/simulated/floor,/area/maintenance/stellardelight/deck3/foreportroomb) +"pO" = (/obj/machinery/power/apc/angled{dir = 4},/obj/structure/cable/blue{icon_state = "0-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/dark,/area/crew_quarters/heads/hos) +"pS" = (/obj/structure/cable/blue{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/alarm/angled{dir = 8},/turf/simulated/floor/tiled/techfloor/grid,/area/ai_cyborg_station) +"pT" = (/obj/effect/floor_decal/industrial/warning{dir = 4},/turf/simulated/floor/airless,/area/stellardelight/deck3/exterior) +"pV" = (/obj/machinery/keycard_auth{pixel_y = 28},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/machinery/alarm/angled{dir = 4},/turf/simulated/floor/tiled/techfloor,/area/crew_quarters/heads/hor) +"pW" = (/obj/structure/cable/blue{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/turf/simulated/floor/tiled/techfloor/grid,/area/tcommsat/computer) +"pX" = (/obj/machinery/door/firedoor/glass,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/door/airlock/angled_bay/hatch{door_color = "#323d80"; name = "maintenance access"; req_one_access = list(16); stripe_color = "#323d80"},/turf/simulated/floor/tiled/steel_ridged,/area/ai_cyborg_station) +"pY" = (/obj/machinery/telecomms/bus/preset_three,/turf/simulated/floor/tiled/dark{nitrogen = 100; oxygen = 0; temperature = 80},/area/tcommsat/chamber) +"qb" = (/obj/machinery/power/pointdefense{id_tag = "sd_pd"},/obj/effect/floor_decal/industrial/warning/full,/obj/structure/cable/blue{icon_state = "0-2"},/turf/simulated/floor/airless,/area/stellardelight/deck3/exterior) +"qc" = (/obj/structure/table/bench/padded,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/wood,/area/stellardelight/deck3/cafe) +"qd" = (/obj/effect/landmark{name = "JoinLateCyborg"},/obj/effect/landmark/start/cyborg,/turf/simulated/floor/tiled/techfloor/grid,/area/ai_cyborg_station) +"qe" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/angled_bay/external/glass{dir = 4; frequency = 1380; id_tag = null; locked = 1; name = "Docking Port Airlock"},/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4},/obj/effect/map_helper/airlock/door/int_door,/obj/machinery/access_button{command = "cycle_interior"; dir = 8; frequency = 1380; master_tag = "sd_escape_port"; pixel_y = 32; req_one_access = list(13)},/turf/simulated/floor/tiled/steel_ridged,/area/stellardelight/deck3/portdock) +"qf" = (/obj/structure/cable{icon_state = "1-4"},/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable{icon_state = "1-8"},/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/turf/simulated/floor,/area/maintenance/stellardelight/deck3/starboardcent) +"qg" = (/obj/structure/table/glass,/obj/machinery/light/small{dir = 4},/obj/random/contraband,/obj/random/snack,/turf/simulated/floor/wood,/area/stellardelight/deck3/readingroom) +"qi" = (/obj/structure/lattice,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/open,/area/stellardelight/deck2/fore) +"qn" = (/obj/machinery/porta_turret/stationary,/turf/simulated/floor/bluegrid{name = "Mainframe Base"; nitrogen = 100; oxygen = 0; temperature = 80},/area/tcommsat/chamber) +"qp" = (/turf/simulated/open,/area/crew_quarters/bar) +"qq" = (/turf/simulated/wall/bay/r_wall/blue,/area/tcommsat/computer) +"qs" = (/obj/structure/table/rack,/obj/random/maintenance/clean,/obj/random/maintenance/clean,/obj/random/maintenance/clean,/obj/random/maintenance/clean,/obj/random/maintenance/security,/obj/random/maintenance/security,/obj/random/maintenance/security,/obj/random/drinkbottle,/turf/simulated/floor,/area/maintenance/stellardelight/deck3/forestarrooma) +"qv" = (/obj/structure/cable/cyan{icon_state = "4-8"},/obj/machinery/door/airlock/angled_bay/hatch{dir = 4; door_color = "#323d80"; id_tag = "AICore"; id_tint = null; locked = 1; name = "AI Core"; req_one_access = list(16); stripe_color = "#323d80"},/turf/simulated/floor/tiled/steel_ridged,/area/ai) +"qx" = (/obj/structure/table/glass,/turf/simulated/floor/wood,/area/stellardelight/deck3/readingroom) +"qy" = (/obj/structure/cable/blue{icon_state = "4-8"},/turf/simulated/floor/airless,/area/stellardelight/deck3/exterior) +"qz" = (/turf/simulated/floor/reinforced{name = "Holodeck Projector Floor"},/area/holodeck/alphadeck) +"qA" = (/obj/machinery/turretid/stun{check_synth = 1; control_area = /area/ai; name = "AI Chamber turret control"; pixel_x = -30; pixel_y = -24},/obj/machinery/flasher{id = "AI"; pixel_x = -24; pixel_y = 25},/obj/machinery/hologram/holopad,/obj/structure/cable/cyan{icon_state = "2-8"},/turf/simulated/floor/bluegrid,/area/ai) +"qC" = (/obj/structure/table/glass,/turf/simulated/floor/carpet,/area/stellardelight/deck3/readingroom) +"qE" = (/obj/effect/floor_decal/industrial/warning{dir = 4},/obj/machinery/light/small{dir = 1},/turf/simulated/floor/airless,/area/stellardelight/deck3/starboarddock) +"qF" = (/turf/simulated/open,/area/stellardelight/deck2/fore) +"qK" = (/obj/effect/landmark{name = "lightsout"},/turf/simulated/floor/tiled/techfloor/grid,/area/ai_cyborg_station) +"qL" = (/obj/structure/sign/warning/docking_area{pixel_x = 32},/turf/simulated/floor/airless,/area/stellardelight/deck3/exterior) +"qM" = (/obj/structure/table/steel,/obj/random/firstaid,/turf/simulated/floor,/area/maintenance/stellardelight/deck3/foreportrooma) +"qN" = (/obj/structure/cable/green{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 8},/turf/simulated/floor/tiled,/area/stellardelight/deck3/aft) +"qO" = (/obj/machinery/door/firedoor/glass,/obj/structure/cable/blue{icon_state = "1-2"},/obj/machinery/door/airlock/angled_bay/hatch{door_color = "#323d80"; name = "maintenance access"; req_one_access = list(16); stripe_color = "#323d80"},/turf/simulated/floor/tiled/steel_ridged,/area/ai_cyborg_station) +"qP" = (/obj/structure/lattice,/obj/structure/cable/green{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/open,/area/stellardelight/deck2/port) +"qQ" = (/obj/machinery/porta_turret/stationary,/obj/structure/cable/blue{icon_state = "2-4"},/turf/simulated/floor/bluegrid{name = "Mainframe Base"; nitrogen = 100; oxygen = 0; temperature = 80},/area/tcommsat/chamber) +"qS" = (/obj/machinery/light/small,/turf/simulated/floor,/area/maintenance/stellardelight/deck3/starboardaft) +"qU" = (/obj/machinery/light{dir = 4},/obj/structure/cable/blue{icon_state = "1-8"},/turf/simulated/floor/bluegrid{name = "Mainframe Base"; nitrogen = 100; oxygen = 0; temperature = 80},/area/tcommsat/chamber) +"qW" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/angled_bay/hatch{dir = 4; name = "maintenance access"; stripe_color = "#454545"},/obj/structure/cable/blue{icon_state = "4-8"},/turf/simulated/floor/tiled/steel_ridged,/area/maintenance/stellardelight/deck3/forestarroomb) +"qX" = (/obj/random/vendorfood,/turf/simulated/floor/tiled,/area/stellardelight/deck3/aft) +"qY" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/structure/reagent_dispensers/fueltank,/obj/machinery/alarm/angled{dir = 4},/turf/simulated/floor,/area/maintenance/stellardelight/deck3/starboardaft) +"qZ" = (/obj/structure/filingcabinet/chestdrawer,/obj/machinery/power/apc/angled{dir = 4},/obj/structure/cable/blue{icon_state = "0-8"},/turf/simulated/floor/tiled,/area/crew_quarters/heads/hop) +"rb" = (/obj/effect/floor_decal/emblem/nt3,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/techfloor/grid,/area/ai_upload) +"rc" = (/turf/simulated/wall/bay/r_wall/blue,/area/stellardelight/deck3/commandhall) +"rg" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/wood,/area/stellardelight/deck3/cafe) +"rh" = (/obj/machinery/cryopod{dir = 4},/obj/effect/floor_decal/corner_techfloor_grid{dir = 10},/obj/effect/floor_decal/corner_techfloor_grid{dir = 5},/turf/simulated/floor/tiled/techfloor,/area/stellardelight/deck3/cryo) +"ri" = (/obj/structure/handrail,/obj/effect/map_helper/airlock/atmos/chamber_pump,/obj/effect/floor_decal/fancy_shuttle{fancy_shuttle_tag = "sdboat"},/obj/machinery/atmospherics/unary/vent_pump/high_volume{dir = 4},/turf/simulated/floor/tiled,/area/shuttle/sdboat/aft{base_turf = /turf/simulated/floor/reinforced/airless}) +"rj" = (/obj/structure/cable/green{icon_state = "1-2"},/turf/simulated/floor,/area/maintenance/stellardelight/deck3/foreportroomb) +"rl" = (/obj/structure/sign/painting/library_secure{pixel_x = -30},/turf/simulated/floor/carpet/blue2,/area/lawoffice) +"rm" = (/obj/effect/floor_decal/techfloor{dir = 5},/obj/effect/landmark{name = "JoinLateCryo"},/obj/machinery/atmospherics/unary/vent_pump/on,/obj/machinery/computer/cryopod{pixel_x = 32; pixel_y = 32},/obj/item/device/radio/intercom{dir = 1; pixel_y = 24},/turf/simulated/floor/tiled/techfloor,/area/stellardelight/deck3/cryo) +"rn" = (/obj/structure/cable/green{icon_state = "1-2"},/turf/simulated/floor/tiled/techfloor,/area/stellardelight/deck3/transitgateway) +"rp" = (/obj/structure/cable/green{icon_state = "1-2"},/obj/machinery/door/firedoor/glass,/obj/machinery/atmospherics/pipe/simple/hidden,/obj/machinery/access_button{command = "cycle_interior"; frequency = 1379; master_tag = "portmaint_airlock"; name = "interior access button"; pixel_x = 32; req_access = null; req_one_access = list(13)},/obj/machinery/door/airlock/angled_bay/external/glass{frequency = 1379; id_tag = "portmaint_interior"; locked = 1; name = "Exterior Airlock"},/turf/simulated/floor/tiled/steel_ridged,/area/maintenance/stellardelight/deck3/portcent) +"rq" = (/obj/structure/cable/green{icon_state = "4-8"},/turf/simulated/floor,/area/maintenance/stellardelight/deck3/aftstarroom) +"rr" = (/obj/machinery/atmospherics/unary/vent_pump/high_volume{dir = 4; frequency = 1380; id_tag = null},/obj/machinery/embedded_controller/radio/airlock/docking_port_multi{frequency = 1380; id_tag = "sd_escape_starboard"; master_tag = "escape_dock"; pixel_y = 30; req_one_access = list(13); tag_airpump = null; tag_chamber_sensor = null; tag_exterior_door = null; tag_interior_door = null},/obj/machinery/airlock_sensor{frequency = 1380; id_tag = null; pixel_y = -25},/obj/effect/map_helper/airlock/atmos/chamber_pump,/obj/effect/map_helper/airlock/sensor/chamber_sensor,/turf/simulated/floor/tiled,/area/stellardelight/deck3/starboarddock) +"rs" = (/obj/machinery/atmospherics/pipe/manifold/hidden/black{dir = 1},/obj/machinery/hologram/holopad,/turf/simulated/floor/bluegrid{name = "Mainframe Base"; nitrogen = 100; oxygen = 0; temperature = 80},/area/tcommsat/chamber) +"rx" = (/turf/simulated/wall/bay/white,/area/crew_quarters/heads/cmo) +"rA" = (/obj/structure/table/reinforced,/obj/machinery/computer/skills,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled,/area/crew_quarters/heads/hop) +"rB" = (/obj/machinery/door/airlock/angled_bay/hatch{dir = 4; door_color = "#323d80"; id_tag = "AICore"; id_tint = null; locked = 1; name = "AI Core"; req_one_access = list(16); stripe_color = "#323d80"},/turf/simulated/floor/tiled/steel_ridged,/area/ai) +"rH" = (/obj/structure/lattice,/obj/structure/cable/blue{icon_state = "32-8"},/obj/structure/disposalpipe/down{dir = 8},/obj/machinery/atmospherics/pipe/zpipe/down/supply,/obj/machinery/atmospherics/pipe/zpipe/down/scrubbers,/obj/machinery/door/firedoor/glass,/turf/simulated/open,/area/maintenance/stellardelight/deck3/starboardcent) +"rL" = (/turf/simulated/floor/lino,/area/stellardelight/deck3/cafe) +"rN" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/turf/simulated/floor/bluegrid,/area/ai) +"rS" = (/obj/structure/lattice,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/open,/area/stellardelight/deck2/port) +"rW" = (/obj/effect/mouse_hole_spawner{dir = 4},/turf/simulated/floor,/area/maintenance/stellardelight/deck3/portfore) +"rX" = (/obj/effect/floor_decal/fancy_shuttle{fancy_shuttle_tag = "sdboat"},/obj/machinery/light{dir = 1},/obj/structure/cable/green{icon_state = "4-8"},/turf/simulated/floor/tiled,/area/shuttle/sdboat/aft{base_turf = /turf/simulated/floor/reinforced/airless}) +"rZ" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/turf/simulated/floor/tiled/techfloor/grid,/area/ai) +"sa" = (/obj/effect/map_helper/airlock/door/int_door,/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/glass_external,/obj/effect/floor_decal/fancy_shuttle{fancy_shuttle_tag = "sdboat"},/obj/machinery/atmospherics/pipe/simple/hidden/fuel{dir = 4},/obj/structure/cable{icon_state = "4-8"},/turf/simulated/floor/tiled,/area/shuttle/sdboat/aft{base_turf = /turf/simulated/floor/reinforced/airless}) +"sb" = (/obj/machinery/door/firedoor/glass,/obj/structure/cable/blue{icon_state = "1-2"},/obj/machinery/door/airlock/angled_bay/secure{name = "AI Storage"; req_access = list(16)},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/steel_ridged,/area/ai_cyborg_station) +"sc" = (/turf/simulated/wall/bay/r_wall/blue,/area/ai) +"sd" = (/obj/structure/lattice,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable/blue{icon_state = "1-2"},/turf/simulated/open,/area/stellardelight/deck2/fore) +"sf" = (/obj/machinery/light{dir = 8},/turf/simulated/floor/tiled/eris/dark/gray_platform,/area/stellardelight/deck3/commandhall) +"si" = (/obj/structure/table/woodentable,/obj/machinery/chemical_dispenser/bar_coffee/full{pixel_y = 8},/obj/structure/sign/painting/library_secure{pixel_y = 30},/turf/simulated/floor/lino,/area/stellardelight/deck3/cafe) +"sj" = (/obj/machinery/power/apc/angled{dir = 4; name = "night shift APC"; nightshift_setting = 2},/obj/structure/closet,/obj/random/maintenance,/obj/random/maintenance,/obj/random/maintenance,/obj/random/maintenance,/obj/random/maintenance,/obj/structure/cable/blue{icon_state = "0-2"},/obj/random/snack,/turf/simulated/floor,/area/maintenance/stellardelight/deck3/forestarrooma) +"sl" = (/obj/machinery/atmospherics/unary/vent_pump{dir = 8; external_pressure_bound = 140; external_pressure_bound_default = 140; icon_state = "map_vent_out"; pressure_checks = 0; pressure_checks_default = 0; use_power = 1},/turf/simulated/floor/bluegrid{name = "Mainframe Base"; nitrogen = 100; oxygen = 0; temperature = 80},/area/tcommsat/chamber) +"sn" = (/obj/structure/lattice,/obj/structure/cable{icon_state = "1-2"},/turf/simulated/open,/area/stellardelight/deck2/starboard) +"sr" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/turf/simulated/floor/tiled/techfloor/grid,/area/ai) +"ss" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/angled_bay/external/glass{dir = 4; frequency = 1380; id_tag = null; locked = 1; name = "Docking Port Airlock"},/obj/effect/map_helper/airlock/door/int_door,/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4},/obj/machinery/access_button{command = "cycle_interior"; dir = 4; frequency = 1380; master_tag = "sd_port_landing"; pixel_y = 32; req_one_access = list(13)},/obj/structure/cable{icon_state = "4-8"},/turf/simulated/floor/tiled/steel_ridged,/area/stellardelight/deck3/portdock) +"st" = (/obj/structure/bed/chair/sofa/corp/right{dir = 8},/obj/machinery/light/small{dir = 4},/mob/living/simple_mob/animal/passive/fox/syndicate/aipet,/turf/simulated/floor/carpet/turcarpet,/area/ai) +"su" = (/obj/machinery/power/apc/angled{dir = 8},/obj/structure/cable/blue{icon_state = "0-4"},/turf/simulated/floor/tiled/techfloor/grid,/area/tcommsat/computer) +"sx" = (/obj/machinery/door/firedoor/glass,/turf/simulated/floor,/area/stellardelight/deck2/central) +"sz" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/angled_bay/hatch{dir = 4; door_color = "#e6ab22"; name = "Shield Generator"; req_access = null; req_one_access = list(11,24); stripe_color = "#e6ab22"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/steel_ridged,/area/stellardelight/deck2/central) +"sA" = (/obj/structure/bed/chair{dir = 4},/turf/simulated/floor/carpet/purcarpet,/area/crew_quarters/heads/hor) +"sC" = (/obj/machinery/computer/mecha{dir = 1},/turf/simulated/floor/tiled/techfloor,/area/crew_quarters/heads/hor) +"sE" = (/obj/effect/shuttle_landmark/premade/sd/deck3/starboardlanding,/turf/space,/area/space) +"sI" = (/obj/structure/table/standard,/obj/random/paicard,/obj/machinery/atmospherics/unary/vent_scrubber/on,/turf/simulated/floor/bluegrid,/area/ai_cyborg_station) +"sJ" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/turf/simulated/open,/area/stellardelight/deck2/fore) +"sK" = (/obj/machinery/atmospherics/pipe/simple/hidden/black{dir = 4},/turf/simulated/floor/bluegrid{name = "Mainframe Base"; nitrogen = 100; oxygen = 0; temperature = 80},/area/tcommsat/chamber) +"sM" = (/turf/simulated/floor/reinforced/airless,/area/stellardelight/deck3/exterior) +"sN" = (/obj/structure/cable/green{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/green{icon_state = "1-4"},/turf/simulated/floor,/area/maintenance/stellardelight/deck3/portcent) +"sO" = (/turf/simulated/floor,/area/stellardelight/deck2/fore) +"sP" = (/obj/structure/cable/green{icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden{dir = 1},/obj/structure/cable/green{icon_state = "1-2"},/turf/simulated/floor/tiled,/area/stellardelight/deck3/starboarddock) +"sQ" = (/obj/structure/table/standard,/obj/item/weapon/aiModule/reset,/obj/machinery/alarm{dir = 4; pixel_x = -28},/obj/structure/sign/warning/secure_area{pixel_y = 32},/turf/simulated/floor/bluegrid,/area/ai_cyborg_station) +"sR" = (/obj/structure/cable/blue{icon_state = "4-8"},/turf/simulated/floor,/area/maintenance/stellardelight/deck3/forestarroomb) +"sU" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 4},/turf/simulated/floor/tiled,/area/stellardelight/deck3/aft) +"sX" = (/obj/structure/closet/crate,/obj/random/maintenance,/obj/random/maintenance,/obj/random/maintenance,/obj/random/maintenance,/obj/random/maintenance,/obj/random/maintenance/security,/obj/random/maintenance/security,/obj/random/drinkbottle,/turf/simulated/floor,/area/maintenance/stellardelight/deck3/portfore) +"sZ" = (/obj/structure/cable{icon_state = "1-2"},/turf/simulated/wall/bay/r_wall/blue,/area/maintenance/stellardelight/deck3/portaft) +"tb" = (/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals_central5{dir = 4},/turf/simulated/floor/tiled,/area/stellardelight/deck3/starboarddock) +"tc" = (/obj/structure/cable/blue{icon_state = "1-4"},/obj/effect/mouse_hole_spawner{dir = 8},/turf/simulated/floor,/area/maintenance/stellardelight/deck3/starboardfore) +"tg" = (/obj/structure/cable/green{icon_state = "4-8"},/obj/structure/disposalpipe/junction{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4},/turf/simulated/floor/tiled,/area/stellardelight/deck3/aft) +"th" = (/turf/simulated/wall/bay/r_wall/blue,/area/ai_cyborg_station) +"tk" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4},/turf/simulated/floor,/area/maintenance/stellardelight/deck3/starboardaft) +"tn" = (/obj/machinery/light_switch{dir = 8; pixel_x = 24},/turf/simulated/floor/carpet/turcarpet,/area/ai) +"tp" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/random/trash_pile,/turf/simulated/floor,/area/maintenance/stellardelight/deck3/portcent) +"tq" = (/obj/machinery/camera/network/command{dir = 9},/turf/simulated/floor/tiled/techfloor/grid,/area/ai) +"tu" = (/obj/machinery/light/small{dir = 4},/obj/structure/closet/crate,/obj/random/contraband,/obj/random/maintenance,/obj/random/maintenance/clean,/obj/random/maintenance/clean,/turf/simulated/floor,/area/maintenance/stellardelight/deck3/aftstarroom) +"ty" = (/obj/machinery/computer/teleporter,/turf/simulated/floor/tiled/techfloor/grid,/area/ai_cyborg_station) +"tz" = (/obj/machinery/recharge_station,/turf/simulated/floor/bluegrid,/area/ai_upload) +"tC" = (/obj/structure/sign/vacuum,/turf/simulated/wall/bay/r_wall/steel,/area/maintenance/stellardelight/deck3/starboardcent) +"tF" = (/obj/structure/cable/green{icon_state = "4-8"},/obj/structure/frame,/turf/simulated/floor/tiled/techfloor/grid,/area/maintenance/stellardelight/deck3/forestarrooma) +"tG" = (/obj/machinery/light,/obj/machinery/atmospherics/pipe/simple/hidden{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals5,/obj/structure/cable{icon_state = "4-8"},/turf/simulated/floor/tiled,/area/stellardelight/deck3/aft) +"tH" = (/obj/structure/cable/green{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/turf/simulated/floor/tiled,/area/stellardelight/deck3/transitgateway) +"tJ" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/obj/machinery/light{dir = 1},/obj/structure/flora/pottedplant/decorative,/turf/simulated/floor/tiled/eris/dark/gray_platform,/area/stellardelight/deck3/commandhall) +"tK" = (/obj/effect/floor_decal/industrial/warning{dir = 4},/obj/structure/cable/green{icon_state = "1-2"},/obj/structure/cable/green{icon_state = "1-8"},/turf/simulated/floor/airless,/area/stellardelight/deck3/exterior) +"tL" = (/obj/machinery/atmospherics/pipe/simple/hidden/black{dir = 4},/obj/structure/cable/blue{icon_state = "1-8"},/turf/simulated/floor/bluegrid{name = "Mainframe Base"; nitrogen = 100; oxygen = 0; temperature = 80},/area/tcommsat/chamber) +"tO" = (/obj/structure/table/steel_reinforced,/obj/item/device/taperecorder{pixel_x = 10},/obj/item/weapon/reagent_containers/food/drinks/flask/barflask{pixel_x = -9; pixel_y = -2},/obj/item/device/radio/off,/turf/simulated/floor/tiled/dark,/area/crew_quarters/heads/hos) +"tQ" = (/obj/structure/table/standard,/obj/item/weapon/aiModule/freeform,/obj/machinery/light{dir = 1},/turf/simulated/floor/bluegrid,/area/ai_cyborg_station) +"tR" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/angled_bay/external/glass{dir = 4; frequency = 1380; id_tag = null; locked = 1; name = "Docking Port Airlock"},/obj/effect/map_helper/airlock/door/ext_door,/obj/machinery/access_button{command = "cycle_exterior"; dir = 4; frequency = 1380; master_tag = "sd_escape_port"; pixel_y = 32; req_one_access = list(13)},/turf/simulated/floor/tiled/steel_ridged,/area/stellardelight/deck3/portdock) +"tT" = (/obj/structure/cable/blue{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/eris/dark/gray_platform,/area/stellardelight/deck3/commandhall) +"tV" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/turf/simulated/open,/area/stellardelight/deck2/fore) +"tW" = (/obj/machinery/atmospherics/portables_connector{dir = 4},/obj/machinery/portable_atmospherics/canister/air/airlock{start_pressure = 4559.63},/turf/simulated/floor,/area/tcommsat/computer) +"tX" = (/obj/structure/bed/chair/sofa/corp/left{dir = 8},/turf/simulated/floor/bluegrid,/area/ai) +"tZ" = (/turf/simulated/floor/carpet/purcarpet,/area/crew_quarters/heads/hor) +"ub" = (/obj/item/modular_computer/console/preset/command,/obj/structure/sign/poster{dir = 8},/obj/machinery/newscaster/security_unit{pixel_y = 28},/turf/simulated/floor/tiled/dark,/area/crew_quarters/heads/hos) +"uc" = (/obj/machinery/teleport/station{dir = 2},/turf/simulated/floor/tiled/techfloor/grid,/area/ai_cyborg_station) +"uf" = (/obj/structure/lattice,/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/open,/area/stellardelight/deck2/port) +"ui" = (/obj/machinery/portable_atmospherics/canister/phoron,/obj/effect/floor_decal/fancy_shuttle{fancy_shuttle_tag = "sdboat"},/obj/machinery/atmospherics/portables_connector/fuel{dir = 1},/obj/machinery/door/window/southleft{dir = 1; req_one_access = list(11,67)},/turf/simulated/floor/tiled,/area/shuttle/sdboat/aft{base_turf = /turf/simulated/floor/reinforced/airless}) +"uj" = (/turf/simulated/wall/bay/r_wall/blue,/area/crew_quarters/heads/hor) +"uk" = (/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 8},/obj/item/device/radio/intercom{dir = 8; pixel_x = -24},/obj/structure/cable{icon_state = "1-2"},/turf/simulated/floor/tiled,/area/stellardelight/deck3/portdock) +"ul" = (/obj/structure/cable/blue{icon_state = "2-8"},/obj/structure/cable/blue{icon_state = "1-2"},/obj/structure/cable/blue{icon_state = "1-8"},/turf/simulated/floor,/area/maintenance/stellardelight/deck3/starboardfore) +"un" = (/obj/structure/cable/green{icon_state = "2-4"},/turf/simulated/floor/airless,/area/stellardelight/deck3/exterior) +"uq" = (/turf/simulated/wall/bay/r_wall/steel,/area/stellardelight/deck3/starboarddock) +"ur" = (/obj/structure/cable/green{icon_state = "4-8"},/turf/simulated/wall/bay/r_wall/steel,/area/maintenance/stellardelight/deck3/starboardaft) +"us" = (/obj/machinery/light{dir = 4},/turf/simulated/floor/bluegrid,/area/ai) +"ut" = (/obj/structure/cable/blue{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/turf/simulated/floor,/area/maintenance/stellardelight/deck3/starboardcent) +"uv" = (/obj/machinery/atmospherics/pipe/manifold/hidden/black,/obj/structure/cable/blue{icon_state = "2-4"},/turf/simulated/floor/bluegrid{name = "Mainframe Base"; nitrogen = 100; oxygen = 0; temperature = 80},/area/tcommsat/chamber) +"uw" = (/obj/machinery/atmospherics/pipe/manifold/hidden{dir = 1},/obj/structure/cable/blue{icon_state = "1-2"},/turf/simulated/floor/tiled/techfloor/grid,/area/tcommsat/computer) +"uz" = (/obj/effect/floor_decal/techfloor{dir = 4},/obj/effect/landmark{name = "JoinLateCryo"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/techfloor,/area/stellardelight/deck3/cryo) +"uB" = (/obj/machinery/door/firedoor/glass,/obj/structure/window/bay/reinforced,/obj/machinery/atmospherics/pipe/simple/hidden/black,/obj/structure/low_wall/bay/reinforced/blue,/turf/simulated/floor,/area/tcommsat/computer) +"uD" = (/obj/structure/closet/firecloset,/obj/random/maintenance,/obj/random/maintenance/cargo,/obj/random/maintenance/clean,/obj/random/drinkbottle,/obj/random/drinkbottle,/obj/random/drinkbottle,/turf/simulated/floor,/area/maintenance/stellardelight/deck3/aftstarroom) +"uE" = (/obj/structure/table/rack,/obj/random/contraband,/obj/random/maintenance,/turf/simulated/floor,/area/maintenance/stellardelight/deck3/forestarroomb) +"uH" = (/obj/structure/cable/blue{icon_state = "2-8"},/obj/structure/cable/blue{icon_state = "4-8"},/turf/simulated/floor/airless,/area/stellardelight/deck3/exterior) +"uI" = (/obj/structure/cable/blue{icon_state = "1-4"},/turf/simulated/floor/bluegrid,/area/ai) +"uJ" = (/obj/structure/closet/firecloset,/turf/simulated/floor,/area/maintenance/stellardelight/deck3/portcent) +"uM" = (/obj/machinery/alarm/angled,/obj/structure/table/woodentable,/obj/item/device/flashlight/lamp/clown{pixel_x = -4; pixel_y = 6},/obj/item/weapon/bikehorn{pixel_x = -2; pixel_y = 2},/obj/item/weapon/stamp/clown{pixel_x = 6; pixel_y = 9},/turf/simulated/floor/wood,/area/stellardelight/deck3/clownmimeoffice) +"uQ" = (/obj/machinery/alarm/angled{dir = 8},/obj/machinery/computer/shuttle_control/explore/sdboat{dir = 8},/turf/simulated/floor/tiled/techfloor/grid,/area/ai_server_room) +"uT" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/structure/cable/blue{icon_state = "2-8"},/turf/simulated/floor/tiled/techfloor,/area/ai_cyborg_station) +"uU" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/angled_bay/standard/color{dir = 4; door_color = "#9c9c9c"; fill_color = "#5c5c5c"; id_tag = "readingroom3"; name = "Room 3"; stripe_color = "#89bd66"},/turf/simulated/floor/tiled/steel_ridged,/area/stellardelight/deck3/readingroom) +"uV" = (/obj/machinery/computer/robotics{dir = 1},/turf/simulated/floor/tiled/techfloor,/area/crew_quarters/heads/hor) +"uW" = (/obj/effect/floor_decal/corner_techfloor_grid{dir = 5},/obj/effect/floor_decal/corner_techfloor_grid{dir = 10},/obj/machinery/light/floortube{dir = 4; pixel_x = 2},/obj/structure/cable/green{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/techfloor,/area/stellardelight/deck3/cryo) +"uX" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor,/area/stellardelight/deck2/starboard) +"uY" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/manifold/hidden{dir = 8},/turf/simulated/floor,/area/maintenance/stellardelight/deck3/starboardaft) +"uZ" = (/obj/structure/cable/blue{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/camera/network/command{dir = 4},/turf/simulated/floor/tiled/techfloor/grid,/area/ai_server_room) +"va" = (/obj/effect/floor_decal/industrial/warning{dir = 8},/obj/structure/cable/green{icon_state = "2-4"},/turf/simulated/floor/airless,/area/stellardelight/deck3/exterior) +"vb" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/turf/simulated/floor/tiled/techfloor,/area/ai_cyborg_station) +"vf" = (/obj/structure/table/reinforced,/obj/machinery/photocopier/faxmachine{department = "Chief Engineer's Office"},/turf/simulated/floor/tiled,/area/crew_quarters/heads/chief) +"vh" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/turf/simulated/floor/wood,/area/stellardelight/deck3/cafe) +"vi" = (/turf/simulated/floor/carpet/tealcarpet,/area/crew_quarters/heads/cmo) +"vo" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden{dir = 5},/obj/structure/cable/green{icon_state = "1-2"},/turf/simulated/floor/tiled,/area/stellardelight/deck3/starboarddock) +"vq" = (/obj/structure/cable/green{icon_state = "4-8"},/turf/simulated/wall/bay/r_wall/steel,/area/maintenance/stellardelight/deck3/portaft) +"vr" = (/obj/machinery/atmospherics/pipe/simple/hidden/fuel{dir = 9},/turf/simulated/wall/fancy_shuttle{fancy_shuttle_tag = "sdboat"},/area/shuttle/sdboat/aft{base_turf = /turf/simulated/floor/reinforced/airless}) +"vt" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/structure/cable{icon_state = "2-4"},/turf/simulated/floor,/area/stellardelight/deck2/central) +"vv" = (/obj/structure/cable/green{icon_state = "4-8"},/obj/effect/floor_decal/emblem/nt2,/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4},/obj/effect/landmark{name = "lightsout"},/turf/simulated/floor/tiled,/area/stellardelight/deck3/aft) +"vw" = (/obj/structure/sign/department/shield,/turf/simulated/wall/bay/r_wall/blue,/area/stellardelight/deck3/commandhall) +"vy" = (/obj/machinery/atmospherics/portables_connector{dir = 1},/obj/machinery/portable_atmospherics/canister/air/airlock,/turf/simulated/floor,/area/maintenance/stellardelight/deck3/starboardaft) +"vA" = (/obj/machinery/power/apc/angled{dir = 1; name = "night shift APC"; nightshift_setting = 2},/obj/structure/cable/green{icon_state = "0-4"},/turf/simulated/floor,/area/maintenance/stellardelight/deck3/portaft) +"vE" = (/obj/effect/shuttle_landmark{base_area = /area/stellardelight/deck3/exterior; base_turf = /turf/simulated/floor/reinforced/airless; docking_controller = "sd_starboard_landing"; landmark_tag = "starboard_shuttlepad"; name = "Starboard Shuttlepad"},/turf/simulated/floor/reinforced/airless,/area/stellardelight/deck3/exterior) +"vF" = (/obj/structure/lattice,/obj/structure/cable/green{icon_state = "4-8"},/turf/simulated/open,/area/stellardelight/deck2/fore) +"vG" = (/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 8},/obj/structure/cable{icon_state = "1-8"},/turf/simulated/floor/tiled,/area/stellardelight/deck3/aft) +"vI" = (/obj/structure/bed/chair{dir = 8},/obj/machinery/light{dir = 4},/turf/simulated/floor/tiled,/area/stellardelight/deck3/portdock) +"vJ" = (/obj/structure/bed/chair{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 4},/turf/simulated/floor/tiled,/area/stellardelight/deck3/starboarddock) +"vN" = (/obj/machinery/computer/telecomms/monitor{dir = 8; network = "tcommsat"},/obj/machinery/light{dir = 4},/turf/simulated/floor/tiled/techfloor/grid,/area/tcommsat/computer) +"vO" = (/obj/machinery/door/firedoor/glass,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/blue{icon_state = "1-2"},/obj/machinery/door/airlock/angled_bay/hatch{door_color = "#323d80"; name = "maintenance access"; req_one_access = list(19,38); stripe_color = "#323d80"},/turf/simulated/floor/tiled/steel_ridged,/area/stellardelight/deck3/commandhall) +"vP" = (/obj/structure/bed/chair{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 4},/obj/structure/sign/nanotrasen{pixel_x = 32},/turf/simulated/floor/tiled,/area/stellardelight/deck3/starboarddock) +"vQ" = (/obj/structure/cable/green{icon_state = "2-8"},/obj/structure/cable/green{icon_state = "4-8"},/turf/simulated/floor/airless,/area/stellardelight/deck3/exterior) +"vS" = (/obj/structure/cable/blue{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/turf/simulated/floor/tiled/techfloor/grid,/area/ai_cyborg_station) +"vT" = (/obj/machinery/holoplant,/obj/machinery/status_display{pixel_x = -32},/turf/simulated/floor/bluegrid,/area/ai_cyborg_station) +"vX" = (/obj/structure/cable{icon_state = "4-8"},/obj/effect/map_helper/airlock/atmos/chamber_pump,/obj/effect/floor_decal/fancy_shuttle{fancy_shuttle_tag = "sdboat"},/obj/machinery/atmospherics/unary/vent_pump/high_volume{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/fuel{dir = 4},/turf/simulated/floor/tiled,/area/shuttle/sdboat/aft{base_turf = /turf/simulated/floor/reinforced/airless}) +"wa" = (/obj/machinery/door/firedoor/glass,/obj/structure/window/bay/reinforced,/obj/structure/low_wall/bay/reinforced/steel,/turf/simulated/floor,/area/stellardelight/deck2/port) +"wc" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/obj/effect/landmark/vermin,/turf/simulated/open,/area/stellardelight/deck2/starboard) +"wd" = (/obj/structure/table/standard,/obj/item/weapon/aiModule/oxygen,/obj/item/weapon/aiModule/oneHuman,/obj/item/weapon/aiModule/purge,/obj/item/weapon/aiModule/antimov,/obj/item/weapon/aiModule/teleporterOffline,/obj/machinery/alarm/angled{dir = 8},/turf/simulated/floor/bluegrid,/area/ai_cyborg_station) +"we" = (/obj/machinery/power/pointdefense{id_tag = "sd_pd"},/obj/effect/floor_decal/industrial/warning/full,/obj/structure/cable/blue{icon_state = "0-8"},/turf/simulated/floor/airless,/area/stellardelight/deck3/exterior) +"wg" = (/obj/structure/cable/green{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4},/turf/simulated/floor/tiled,/area/stellardelight/deck3/aft) +"wm" = (/obj/machinery/atmospherics/unary/vent_pump/high_volume{dir = 8; frequency = 1380; id_tag = null},/obj/machinery/embedded_controller/radio/airlock/docking_port{frequency = 1380; id_tag = "sd_starboard_landing"; pixel_y = 29},/obj/effect/map_helper/airlock/atmos/chamber_pump,/obj/effect/map_helper/airlock/sensor/chamber_sensor,/obj/machinery/airlock_sensor{frequency = 1380; id_tag = null; pixel_y = -25},/turf/simulated/floor/tiled,/area/stellardelight/deck3/starboarddock) +"wo" = (/obj/structure/table/standard,/obj/item/weapon/aiModule/asimov,/obj/item/weapon/aiModule/freeformcore,/obj/item/weapon/aiModule/corp,/obj/item/weapon/aiModule/paladin,/obj/item/weapon/aiModule/robocop,/obj/structure/cable/blue,/obj/machinery/power/apc/angled{dir = 8},/turf/simulated/floor/bluegrid,/area/ai_cyborg_station) +"wq" = (/obj/structure/bed/chair{dir = 8},/turf/simulated/floor/carpet,/area/crew_quarters/heads/hos) +"wr" = (/obj/machinery/computer/ship/engines/adv,/obj/effect/floor_decal/fancy_shuttle{fancy_shuttle_tag = "sdboat"},/turf/simulated/floor/tiled,/area/shuttle/sdboat/fore{base_turf = /turf/simulated/floor/reinforced/airless}) +"wt" = (/obj/machinery/door/firedoor/glass,/obj/structure/window/bay/reinforced,/obj/machinery/door/blast/angled/open{dir = 4; id = "readingroom2"},/obj/structure/low_wall/bay/reinforced/steel,/turf/simulated/floor,/area/stellardelight/deck3/readingroom) +"wv" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/techfloor/grid,/area/ai_cyborg_station) +"ww" = (/obj/machinery/atmospherics/portables_connector{dir = 8},/obj/machinery/portable_atmospherics/canister/air/airlock,/turf/simulated/floor,/area/maintenance/stellardelight/deck3/starboardaft) +"wy" = (/obj/structure/lattice,/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/obj/structure/cable/blue{icon_state = "1-2"},/turf/simulated/open,/area/stellardelight/deck2/fore) +"wA" = (/obj/machinery/alarm/angled{dir = 4},/turf/simulated/floor/bluegrid,/area/ai_upload) +"wG" = (/obj/machinery/alarm/angled{dir = 8},/turf/simulated/floor/tiled/techfloor/grid,/area/ai) +"wK" = (/obj/effect/floor_decal/techfloor/orange{dir = 1},/obj/item/device/radio/intercom{dir = 1; pixel_y = 24},/turf/simulated/floor/tiled/techfloor,/area/stellardelight/deck3/transitgateway) +"wM" = (/turf/simulated/floor/airless,/area/maintenance/stellardelight/deck3/starboardcent) +"wN" = (/turf/simulated/floor/tiled/techfloor/grid,/area/ai_cyborg_station) +"wP" = (/obj/machinery/atmospherics/unary/vent_scrubber/on,/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 1},/obj/machinery/station_map{pixel_y = 32},/turf/simulated/floor/tiled,/area/stellardelight/deck3/aft) +"wQ" = (/obj/structure/cable/blue{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/turf/simulated/floor/tiled/eris/dark/gray_platform,/area/stellardelight/deck3/commandhall) +"wR" = (/obj/structure/lattice,/obj/structure/cable{icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/turf/simulated/open,/area/stellardelight/deck2/starboard) +"wS" = (/obj/machinery/holoplant,/turf/simulated/floor/bluegrid,/area/ai) +"wV" = (/obj/structure/cable/blue{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/closet/emergsuit_wall{dir = 8; pixel_x = -27},/turf/simulated/floor/tiled/eris/dark/gray_platform,/area/stellardelight/deck3/commandhall) +"wW" = (/obj/structure/cable/green{icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/camera/network/civilian{dir = 1},/turf/simulated/floor/tiled,/area/stellardelight/deck3/transitgateway) +"wY" = (/obj/machinery/light,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled,/area/crew_quarters/heads/hop) +"wZ" = (/obj/machinery/atmospherics/pipe/simple/hidden{dir = 6},/turf/simulated/wall/fancy_shuttle{fancy_shuttle_tag = "sdboat"},/area/shuttle/sdboat/aft{base_turf = /turf/simulated/floor/reinforced/airless}) +"xb" = (/obj/machinery/light/small{dir = 4},/obj/structure/closet/crate,/obj/random/contraband,/obj/random/contraband,/obj/random/maintenance/clean,/obj/random/maintenance/clean,/obj/random/maintenance/clean,/obj/random/maintenance/engineering,/obj/random/maintenance/engineering,/turf/simulated/floor,/area/maintenance/stellardelight/deck3/foreportrooma) +"xd" = (/obj/structure/lattice,/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/turf/simulated/open,/area/stellardelight/deck2/port) +"xe" = (/obj/machinery/light{dir = 4},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/turf/simulated/floor/tiled/techfloor/grid,/area/ai_server_room) +"xf" = (/obj/structure/handrail{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden,/obj/effect/floor_decal/fancy_shuttle{fancy_shuttle_tag = "sdboat"},/turf/simulated/floor/tiled,/area/shuttle/sdboat/aft{base_turf = /turf/simulated/floor/reinforced/airless}) +"xg" = (/obj/machinery/door/firedoor/glass,/obj/structure/window/bay/reinforced,/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/low_wall/bay/reinforced/blue,/turf/simulated/floor,/area/crew_quarters/heads/hop) +"xh" = (/obj/machinery/light{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/bluegrid,/area/ai) +"xi" = (/obj/structure/cable/green{icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/turf/simulated/floor,/area/maintenance/stellardelight/deck3/portaft) +"xj" = (/obj/structure/table/standard,/obj/item/weapon/aiModule/consuming_eradicator,/obj/item/weapon/aiModule/guard_dog,/obj/item/weapon/aiModule/pleasurebot,/obj/item/weapon/aiModule/protective_shell,/obj/item/weapon/aiModule/scientific_pursuer,/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/turf/simulated/floor/bluegrid,/area/ai_cyborg_station) +"xm" = (/obj/structure/cable/blue{icon_state = "1-2"},/turf/simulated/floor/airless,/area/stellardelight/deck3/exterior) +"xo" = (/obj/structure/cable{icon_state = "4-8"},/turf/simulated/floor/wood,/area/stellardelight/deck3/clownmimeoffice) +"xp" = (/turf/simulated/floor/wood,/area/stellardelight/deck3/clownmimeoffice) +"xu" = (/obj/machinery/door/airlock/angled_bay/external/glass{dir = 4; frequency = 1379; id_tag = "starmaint_exterior"; locked = 1; name = "Exterior Airlock"},/obj/machinery/door/firedoor/glass,/obj/machinery/access_button{command = "cycle_exterior"; frequency = 1379; master_tag = "starmaint_airlock"; name = "exterior access button"; pixel_y = 32; req_access = null; req_one_access = list(13)},/turf/simulated/floor/tiled/steel_ridged,/area/maintenance/stellardelight/deck3/starboardcent) +"xv" = (/obj/structure/cable/green{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/wood,/area/stellardelight/deck3/readingroom) +"xw" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/blue{icon_state = "1-2"},/turf/simulated/floor/tiled/eris/dark/gray_platform,/area/stellardelight/deck3/commandhall) +"xy" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/turf/simulated/floor/tiled/monotile,/area/stellardelight/deck3/commandhall) +"xz" = (/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4},/obj/machinery/atmospherics/unary/freezer{dir = 1; icon_state = "freezer_1"; set_temperature = 73; use_power = 1},/turf/simulated/floor/tiled/techfloor/grid,/area/tcommsat/computer) +"xA" = (/obj/structure/sign/warning/evac{pixel_x = 32; pixel_y = -32},/obj/effect/floor_decal/steeldecal/steel_decals5,/obj/structure/cable{icon_state = "4-8"},/turf/simulated/floor/tiled,/area/stellardelight/deck3/aft) +"xB" = (/obj/machinery/atmospherics/binary/passive_gate/on{dir = 8},/turf/simulated/floor/tiled/techfloor/grid,/area/tcommsat/computer) +"xC" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 4},/obj/effect/landmark/vermin,/turf/simulated/floor/tiled,/area/stellardelight/deck3/starboarddock) +"xE" = (/obj/structure/closet,/obj/random/firstaid,/obj/random/maintenance,/obj/random/maintenance/cargo,/obj/random/maintenance/cargo,/turf/simulated/floor,/area/maintenance/stellardelight/deck3/aftstarroom) +"xH" = (/turf/simulated/floor,/area/maintenance/stellardelight/deck3/starboardcent) +"xI" = (/obj/machinery/door/firedoor/glass,/obj/structure/window/bay/reinforced,/obj/structure/cable/green{icon_state = "4-8"},/obj/structure/low_wall/bay/reinforced/steel,/turf/simulated/floor,/area/maintenance/stellardelight/deck3/foreportroomb) +"xL" = (/turf/simulated/wall/fancy_shuttle/low{fancy_shuttle_tag = "sdboat"},/area/shuttle/sdboat/aft{base_turf = /turf/simulated/floor/reinforced/airless}) +"xM" = (/obj/structure/bed/chair/office/dark{dir = 4},/obj/effect/landmark/start/iaa,/turf/simulated/floor/carpet/blue2,/area/lawoffice) +"xN" = (/obj/structure/cable/green{icon_state = "4-8"},/turf/simulated/floor/tiled/techfloor/grid,/area/maintenance/stellardelight/deck3/forestarrooma) +"xO" = (/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 8},/obj/structure/cable{icon_state = "1-2"},/turf/simulated/floor/tiled,/area/stellardelight/deck3/aft) +"xP" = (/turf/simulated/floor/tiled/techfloor/grid,/area/maintenance/stellardelight/deck3/foreportroomb) +"xR" = (/obj/machinery/atmospherics/unary/vent_pump/on,/turf/simulated/open,/area/stellardelight/deck2/starboard) +"xS" = (/obj/structure/bed/chair/office/dark{dir = 4},/obj/effect/landmark/start/hos,/turf/simulated/floor/carpet,/area/crew_quarters/heads/hos) +"xT" = (/obj/structure/cable/green{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor,/area/maintenance/stellardelight/deck3/portaft) +"xU" = (/obj/structure/cable/blue{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/turf/simulated/floor/tiled/eris/dark/gray_platform,/area/stellardelight/deck3/commandhall) +"xW" = (/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled/steel_ridged,/area/stellardelight/deck3/aft) +"xY" = (/turf/simulated/floor/carpet/blue2,/area/lawoffice) +"xZ" = (/turf/simulated/floor/wood,/area/stellardelight/deck3/cafe) +"ya" = (/obj/machinery/button/remote/blast_door{id = "shuttleshutter"; name = "Shutter Control"; pixel_x = 17; pixel_y = 27},/obj/structure/cable/green{icon_state = "2-8"},/obj/effect/floor_decal/fancy_shuttle{fancy_shuttle_tag = "sdboat"},/turf/simulated/floor/tiled,/area/shuttle/sdboat/fore{base_turf = /turf/simulated/floor/reinforced/airless}) +"yb" = (/obj/structure/sign/deck3{pixel_x = 32},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/turf/simulated/floor/tiled/monotile,/area/stellardelight/deck3/commandhall) +"yc" = (/obj/machinery/atmospherics/pipe/manifold/hidden,/obj/structure/cable/blue{icon_state = "1-2"},/turf/simulated/floor/tiled/techfloor/grid,/area/tcommsat/computer) +"yd" = (/obj/structure/cable/green{icon_state = "1-4"},/turf/simulated/floor/airless,/area/stellardelight/deck3/exterior) +"ye" = (/obj/structure/dogbed,/mob/living/simple_mob/animal/passive/dog/corgi/Lisa,/turf/simulated/floor/tiled,/area/crew_quarters/heads/hop) +"yf" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/angled_bay/double{dir = 8; name = "maintenance access"; stripe_color = "#454545"},/turf/simulated/floor,/area/maintenance/stellardelight/deck3/starboardcent) +"yi" = (/obj/structure/cable/blue{icon_state = "1-2"},/obj/structure/cable/blue,/obj/machinery/power/sensor{name = "Powernet Sensor - Command Subgrid"; name_tag = "Command Subgrid"},/obj/machinery/power/apc/angled{dir = 8},/turf/simulated/floor,/area/maintenance/stellardelight/substation/command) +"yj" = (/obj/machinery/atmospherics/pipe/simple/hidden{dir = 9},/turf/simulated/wall/bay/r_wall/steel,/area/stellardelight/deck3/aft) +"ym" = (/obj/structure/table/rack,/obj/random/maintenance,/obj/random/maintenance/clean,/obj/random/maintenance/engineering,/obj/random/maintenance/security,/obj/random/contraband,/turf/simulated/floor,/area/maintenance/stellardelight/deck3/starboardfore) +"yo" = (/obj/structure/cable/blue{icon_state = "1-2"},/turf/simulated/floor/tiled,/area/crew_quarters/heads/hop) +"yp" = (/obj/structure/cable/blue{icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/machinery/computer/cryopod/robot{pixel_x = 32},/turf/simulated/floor/tiled/techfloor/grid,/area/ai_cyborg_station) +"yq" = (/obj/machinery/light/small{dir = 4},/obj/structure/cable/green{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/wood,/area/stellardelight/deck3/readingroom) +"ys" = (/obj/machinery/atm{pixel_y = 30},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 1},/turf/simulated/floor/tiled,/area/stellardelight/deck3/aft) +"yt" = (/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/turf/simulated/floor/tiled,/area/stellardelight/deck3/aft) +"yw" = (/obj/effect/floor_decal/techfloor/orange{dir = 9},/obj/structure/closet/emergsuit_wall{pixel_y = 29},/obj/structure/closet/emergsuit_wall{dir = 8; pixel_x = -27},/turf/simulated/floor/tiled/techfloor,/area/stellardelight/deck3/transitgateway) +"yy" = (/obj/machinery/door/firedoor/glass,/obj/structure/window/bay/reinforced,/obj/structure/cable/blue{icon_state = "4-8"},/obj/structure/low_wall/bay/reinforced/steel,/turf/simulated/floor,/area/maintenance/stellardelight/deck3/forestarroomb) +"yB" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/carpet/tealcarpet,/area/crew_quarters/heads/cmo) +"yC" = (/obj/machinery/power/apc/angled{dir = 4},/obj/structure/cable/blue,/turf/simulated/floor/tiled/dark,/area/lawoffice) +"yE" = (/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4},/turf/simulated/floor/tiled/techfloor/grid,/area/tcommsat/computer) +"yF" = (/obj/structure/cable/green{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/angled_bay/double/glass{name = "glass airlock"},/obj/machinery/atmospherics/pipe/simple/hidden{dir = 1},/turf/simulated/floor/tiled/steel_ridged,/area/stellardelight/deck3/portdock) +"yH" = (/obj/structure/cable{icon_state = "4-8"},/turf/simulated/wall/bay/r_wall/blue,/area/ai_cyborg_station) +"yI" = (/obj/item/weapon/folder{pixel_x = -4},/obj/item/weapon/folder/blue{pixel_x = 5},/obj/item/weapon/folder/red{pixel_y = 3},/obj/item/weapon/folder/yellow,/obj/structure/table/darkglass,/obj/machinery/light,/turf/simulated/floor/tiled/dark,/area/lawoffice) +"yJ" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/turf/simulated/floor/tiled/monotile,/area/stellardelight/deck3/commandhall) +"yM" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/angled_bay/standard/color{door_color = "#323d80"; fill_color = "#313866"; name = "Head of Personnel"; req_access = list(57); stripe_color = "#a3d1d1"},/turf/simulated/floor/tiled/steel_ridged,/area/crew_quarters/heads/hop) +"yP" = (/obj/structure/sign/warning/falling{pixel_x = 32},/turf/simulated/open,/area/stellardelight/deck2/starboard) +"yR" = (/obj/machinery/door/firedoor/glass,/obj/structure/window/bay/reinforced,/obj/structure/low_wall/bay/reinforced/steel,/turf/simulated/floor,/area/maintenance/stellardelight/deck3/portcent) +"yS" = (/obj/machinery/door/firedoor/glass,/obj/machinery/access_button{command = "cycle_exterior"; dir = 4; frequency = 1380; master_tag = "sd_starboard_landing"; pixel_y = 32; req_one_access = list(13)},/obj/machinery/door/airlock/angled_bay/external/glass{dir = 4; frequency = 1380; id_tag = null; locked = 1; name = "Docking Port Airlock"},/obj/effect/map_helper/airlock/door/ext_door,/turf/simulated/floor/tiled/steel_ridged,/area/stellardelight/deck3/starboarddock) +"yV" = (/obj/machinery/light{dir = 8},/turf/simulated/floor/tiled/techfloor/grid,/area/ai_cyborg_station) +"yW" = (/obj/effect/floor_decal/industrial/warning{dir = 4},/obj/structure/cable/green{icon_state = "1-2"},/turf/simulated/floor/airless,/area/stellardelight/deck3/exterior) +"yY" = (/obj/structure/table/steel,/obj/random/maintenance/clean,/turf/simulated/floor/tiled/techfloor/grid,/area/maintenance/stellardelight/deck3/foreportroomb) +"yZ" = (/obj/machinery/door/airlock/angled_bay/hatch{name = "maintenance access"; stripe_color = "#454545"},/turf/simulated/floor/tiled/steel_ridged,/area/stellardelight/deck3/readingroom) +"za" = (/obj/machinery/cryopod/robot/door/gateway,/turf/simulated/floor/tiled/techfloor,/area/stellardelight/deck3/transitgateway) +"zb" = (/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers,/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,/obj/structure/cable/blue{icon_state = "1-4"},/obj/structure/cable/blue{icon_state = "1-8"},/obj/structure/cable/blue{icon_state = "2-4"},/obj/structure/cable/blue{icon_state = "2-8"},/obj/structure/cable/blue{icon_state = "1-2"},/obj/structure/cable/blue{icon_state = "4-8"},/turf/simulated/floor/tiled/eris/dark/gray_platform,/area/stellardelight/deck3/commandhall) +"zf" = (/obj/structure/cable/blue{icon_state = "1-2"},/turf/simulated/floor,/area/maintenance/stellardelight/deck3/starboardfore) +"zg" = (/obj/structure/cable/blue{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/turf/simulated/floor/tiled/techfloor/grid,/area/ai_upload) +"zi" = (/obj/effect/floor_decal/emblem/nt2,/obj/structure/cable/blue{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled/techfloor/grid,/area/ai_upload) +"zk" = (/obj/effect/landmark{name = "droppod_landing"},/turf/space,/area/space) +"zm" = (/obj/structure/cable/blue{icon_state = "4-8"},/obj/structure/table/reinforced,/obj/machinery/photocopier/faxmachine{department = "Head of Personnel's Office"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/obj/machinery/alarm/angled,/turf/simulated/floor/tiled,/area/crew_quarters/heads/hop) +"zn" = (/obj/machinery/door/firedoor/glass,/obj/structure/window/bay/reinforced,/obj/structure/low_wall/bay/reinforced/blue,/turf/simulated/floor,/area/tcommsat/computer) +"zo" = (/obj/structure/bed/chair{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/carpet/blue2,/area/lawoffice) +"zp" = (/obj/machinery/light/small{dir = 8},/turf/simulated/floor,/area/maintenance/stellardelight/deck3/foreportroomb) +"zr" = (/obj/machinery/cryopod,/obj/effect/floor_decal/corner_techfloor_grid{dir = 5},/obj/effect/floor_decal/corner_techfloor_grid{dir = 10},/turf/simulated/floor/tiled/techfloor,/area/stellardelight/deck3/cryo) +"zt" = (/obj/structure/table/steel,/obj/random/contraband,/obj/random/maintenance/clean,/turf/simulated/floor/tiled/techfloor/grid,/area/maintenance/stellardelight/deck3/foreportroomb) +"zv" = (/obj/item/weapon/bedsheet/rddouble,/obj/structure/bed/double/padded,/obj/structure/curtain/black{color = "#361447"},/obj/effect/landmark/start/rd,/turf/simulated/floor/carpet/purcarpet,/area/crew_quarters/heads/hor) +"zw" = (/obj/machinery/embedded_controller/radio/airlock/airlock_controller{dir = 8; id_tag = "portmaint_airlock"; pixel_x = 24; req_access = null; req_one_access = list(13); tag_airpump = "portmaint_airpump"; tag_chamber_sensor = "portmaint_sensor"; tag_exterior_door = "portmaint_exterior"; tag_interior_door = "portmaint_interior"},/turf/simulated/floor/airless,/area/maintenance/stellardelight/deck3/portcent) +"zy" = (/obj/machinery/camera/network/halls{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 4},/turf/simulated/floor/tiled,/area/stellardelight/deck3/aft) +"zz" = (/turf/simulated/wall/bay/steel,/area/stellardelight/deck3/commandhall) +"zA" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/table/steel,/obj/random/maintenance/engineering,/obj/random/maintenance/security,/obj/random/maintenance/clean,/obj/random/maintenance,/obj/random/contraband,/turf/simulated/floor,/area/maintenance/stellardelight/deck3/starboardfore) +"zB" = (/obj/structure/cable/blue{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/effect/landmark{name = "lightsout"},/turf/simulated/floor/tiled/eris/dark/gray_platform,/area/stellardelight/deck3/commandhall) +"zC" = (/obj/item/toy/figure/mime,/obj/item/weapon/pen/crayon/marker/mime,/obj/item/weapon/pen/crayon/mime,/obj/structure/table/woodentable,/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/turf/simulated/floor/carpet/bcarpet,/area/stellardelight/deck3/clownmimeoffice) +"zD" = (/obj/structure/cable/blue{icon_state = "1-2"},/obj/effect/floor_decal/industrial/warning{dir = 1},/obj/structure/sign/warning/secure_area{pixel_x = -32},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/techfloor/grid,/area/ai_server_room) +"zE" = (/obj/structure/table/bench/padded,/obj/effect/landmark/start/commandsecretary,/turf/simulated/floor/wood,/area/stellardelight/deck3/cafe) +"zF" = (/obj/structure/cable{icon_state = "0-4"},/obj/machinery/power/apc/angled{dir = 8},/turf/simulated/floor/carpet/bcarpet,/area/stellardelight/deck3/clownmimeoffice) +"zH" = (/obj/structure/cable/green{icon_state = "2-8"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/turf/simulated/floor,/area/stellardelight/deck2/port) +"zI" = (/obj/structure/cable/green{icon_state = "1-4"},/obj/structure/cable/green{icon_state = "1-2"},/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden{dir = 6},/obj/effect/floor_decal/arrivals,/turf/simulated/floor/tiled,/area/stellardelight/deck3/aft) +"zJ" = (/obj/effect/floor_decal/techfloor{dir = 9},/obj/effect/landmark{name = "JoinLateCryo"},/obj/machinery/alarm/angled{pixel_x = -32; pixel_y = 19},/obj/structure/closet/emergsuit_wall{pixel_y = 29},/turf/simulated/floor/tiled/techfloor,/area/stellardelight/deck3/cryo) +"zL" = (/obj/structure/cable{icon_state = "1-4"},/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/turf/simulated/floor,/area/maintenance/stellardelight/deck3/starboardcent) +"zM" = (/obj/effect/landmark{name = "JoinLateCyborg"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/effect/landmark/start/cyborg,/turf/simulated/floor/tiled/techfloor/grid,/area/ai_cyborg_station) +"zN" = (/turf/simulated/wall/bay/r_wall/blue,/area/crew_quarters/heads/hos) +"zQ" = (/obj/structure/table/steel,/obj/item/device/flashlight/lamp,/turf/simulated/floor/tiled/techfloor/grid,/area/maintenance/stellardelight/deck3/foreportrooma) +"zS" = (/obj/structure/handrail{dir = 1},/obj/machinery/power/apc{pixel_y = -28; req_access = null; req_one_access = list(11,67)},/obj/structure/cable/green,/obj/effect/floor_decal/fancy_shuttle{fancy_shuttle_tag = "sdboat"},/turf/simulated/floor/tiled,/area/shuttle/sdboat/aft{base_turf = /turf/simulated/floor/reinforced/airless}) +"zV" = (/obj/structure/cable/green{icon_state = "1-4"},/obj/structure/closet/crate,/obj/random/contraband,/obj/random/maintenance,/obj/random/snack,/turf/simulated/floor,/area/maintenance/stellardelight/deck3/aftstarroom) +"zW" = (/obj/structure/lattice,/obj/structure/sign/warning/falling{pixel_y = 32},/turf/simulated/open,/area/stellardelight/deck2/fore) +"zX" = (/turf/simulated/wall/bay/r_wall/steel,/area/stellardelight/deck3/readingroom) +"zY" = (/obj/machinery/atmospherics/pipe/simple/hidden/universal{dir = 8},/turf/simulated/floor/tiled/techfloor/grid,/area/tcommsat/computer) +"Ae" = (/obj/structure/cable/green{icon_state = "4-8"},/turf/simulated/floor/airless,/area/stellardelight/deck3/exterior) +"Af" = (/obj/structure/closet/crate/bin{anchored = 1},/obj/machinery/atmospherics/unary/vent_scrubber/on,/turf/simulated/floor/wood,/area/stellardelight/deck3/readingroom) +"Ai" = (/obj/structure/cable/green{icon_state = "1-2"},/obj/effect/landmark{name = "maint_pred"},/turf/simulated/floor/tiled/techfloor/grid,/area/maintenance/stellardelight/deck3/forestarrooma) +"Aj" = (/obj/item/device/camera,/obj/item/device/camera_film,/obj/item/device/taperecorder,/obj/item/device/tape/random,/obj/item/device/tape/random,/obj/item/weapon/storage/secure/briefcase,/obj/structure/closet/walllocker_double/east,/turf/simulated/floor/carpet/blue2,/area/lawoffice) +"Al" = (/obj/machinery/power/apc/angled{dir = 4; name = "night shift APC"; nightshift_setting = 2},/obj/structure/cable/green{icon_state = "0-8"},/obj/structure/table/rack,/obj/random/maintenance,/turf/simulated/floor,/area/maintenance/stellardelight/deck3/aftstarroom) +"Am" = (/obj/machinery/power/apc/angled{dir = 4; req_access = list(19,43,67)},/obj/structure/cable/green{icon_state = "0-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/unary/vent_pump/on,/turf/simulated/floor/wood,/area/stellardelight/deck3/readingroom) +"An" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/turf/simulated/floor/carpet,/area/crew_quarters/heads/hop) +"Ap" = (/obj/structure/cable{icon_state = "1-4"},/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/obj/structure/cable{icon_state = "4-8"},/turf/simulated/floor,/area/stellardelight/deck2/starboard) +"Aq" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/techfloor/grid,/area/tcommsat/computer) +"As" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden{dir = 5},/turf/simulated/floor,/area/maintenance/stellardelight/deck3/starboardaft) +"At" = (/obj/structure/table/glass,/obj/item/device/flashlight/lamp/green,/turf/simulated/floor/carpet,/area/stellardelight/deck3/readingroom) +"Av" = (/obj/effect/floor_decal/techfloor{dir = 6},/obj/effect/landmark{name = "JoinLateCryo"},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/turf/simulated/floor/tiled/techfloor,/area/stellardelight/deck3/cryo) +"Aw" = (/obj/machinery/camera/network/command{dir = 9},/turf/simulated/floor/tiled/eris/dark/gray_platform,/area/stellardelight/deck3/commandhall) +"Ax" = (/obj/machinery/holoplant,/turf/simulated/floor/bluegrid,/area/ai_cyborg_station) +"Ay" = (/obj/structure/table/steel,/obj/random/maintenance/engineering,/turf/simulated/floor,/area/maintenance/stellardelight/deck3/forestarrooma) +"Az" = (/obj/item/weapon/camera_assembly,/obj/item/weapon/camera_assembly,/obj/item/weapon/camera_assembly,/obj/item/weapon/camera_assembly,/obj/item/weapon/camera_assembly,/obj/item/weapon/camera_assembly,/obj/structure/closet/crate{name = "Camera Assembly Crate"},/obj/machinery/light{dir = 8},/turf/simulated/floor/tiled/techfloor/grid,/area/ai_cyborg_station) +"AD" = (/obj/structure/handrail,/obj/machinery/atmospherics/pipe/simple/hidden{dir = 10},/obj/machinery/embedded_controller/radio/airlock/docking_port{frequency = 1380; id_tag = "sdboat_docker"; pixel_x = 5; pixel_y = 25},/obj/machinery/airlock_sensor{dir = 8; frequency = 1380; id_tag = null; pixel_x = 25; pixel_y = 2},/obj/effect/map_helper/airlock/sensor/chamber_sensor,/obj/effect/floor_decal/fancy_shuttle{fancy_shuttle_tag = "sdboat"},/turf/simulated/floor/tiled,/area/shuttle/sdboat/aft{base_turf = /turf/simulated/floor/reinforced/airless}) +"AE" = (/obj/structure/table/glass,/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/turf/simulated/floor/tiled/eris/white/cargo,/area/crew_quarters/heads/cmo) +"AH" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/turf/simulated/floor,/area/maintenance/stellardelight/deck3/starboardcent) +"AK" = (/obj/random/trash_pile,/turf/simulated/floor,/area/maintenance/stellardelight/deck3/starboardaft) +"AP" = (/obj/machinery/power/apc/angled{dir = 4},/obj/structure/cable/blue{icon_state = "0-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled,/area/crew_quarters/heads/chief) +"AQ" = (/obj/structure/closet/crate,/obj/random/contraband,/obj/random/contraband,/obj/random/maintenance,/obj/random/maintenance,/obj/random/maintenance,/turf/simulated/floor,/area/maintenance/stellardelight/deck3/forestarrooma) +"AS" = (/obj/machinery/computer/telecomms/server{dir = 8; network = "tcommsat"},/obj/machinery/alarm/angled{dir = 8},/turf/simulated/floor/tiled/techfloor/grid,/area/tcommsat/computer) +"AT" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/angled_bay/double{name = "maintenance access"; stripe_color = "#454545"},/turf/simulated/floor,/area/maintenance/stellardelight/deck3/starboardaft) +"AU" = (/obj/machinery/light/small,/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/obj/structure/bed/chair{dir = 8},/turf/simulated/floor,/area/stellardelight/deck2/central) +"AX" = (/obj/structure/table/reinforced,/obj/machinery/recharger{pixel_y = 6},/turf/simulated/floor/tiled,/area/crew_quarters/heads/hop) +"AY" = (/obj/machinery/door/firedoor/glass/hidden/steel{dir = 8},/obj/structure/cable/green{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4},/turf/simulated/floor/tiled,/area/stellardelight/deck3/aft) +"AZ" = (/obj/machinery/porta_turret,/turf/simulated/floor/tiled/techfloor/grid,/area/ai_upload) +"Bb" = (/obj/structure/bed/chair/bay/comfy/blue{dir = 1},/obj/structure/panic_button/small{pixel_x = -29; pixel_y = 30},/obj/structure/cable/green{icon_state = "4-8"},/obj/effect/floor_decal/fancy_shuttle{fancy_shuttle_tag = "sdboat"},/turf/simulated/floor/tiled,/area/shuttle/sdboat/fore{base_turf = /turf/simulated/floor/reinforced/airless}) +"Bd" = (/obj/machinery/alarm/angled{dir = 8},/obj/structure/bookcase,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/wood,/area/stellardelight/deck3/readingroom) +"Be" = (/obj/structure/cable/green{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals_central5{dir = 4},/turf/simulated/floor/tiled,/area/stellardelight/deck3/aft) +"Bg" = (/obj/machinery/door/firedoor/glass,/obj/structure/cable{icon_state = "4-8"},/obj/machinery/door/airlock/angled_bay/hatch{dir = 4; name = "maintenance access"; stripe_color = "#454545"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/steel_ridged,/area/maintenance/stellardelight/deck3/starboardaft) +"Bj" = (/obj/machinery/message_server,/turf/simulated/floor/tiled/techfloor/grid,/area/ai_server_room) +"Bk" = (/obj/machinery/computer/aiupload{dir = 4},/obj/machinery/light{dir = 8},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/turf/simulated/floor/tiled/techfloor/grid,/area/ai_upload) +"Bl" = (/obj/machinery/atmospherics/unary/vent_pump/high_volume{dir = 8; id_tag = null},/obj/machinery/embedded_controller/radio/airlock/airlock_controller{frequency = 1380; id_tag = "tcommsairlock"; pixel_y = 24; req_one_access = list(61)},/obj/effect/map_helper/airlock/atmos/chamber_pump,/obj/effect/map_helper/airlock/sensor/chamber_sensor,/obj/machinery/airlock_sensor{dir = 8; pixel_x = 25},/turf/simulated/floor,/area/tcommsat/computer) +"Bm" = (/obj/structure/closet/emcloset,/obj/random/drinkbottle,/turf/simulated/floor,/area/maintenance/stellardelight/deck3/portaft) +"Bn" = (/obj/effect/landmark{name = "maint_pred"},/turf/simulated/floor,/area/maintenance/stellardelight/deck3/aftstarroom) +"Bp" = (/turf/simulated/wall/bay/r_wall/steel,/area/maintenance/stellardelight/substation/command) +"Bq" = (/obj/machinery/status_display{pixel_y = 32},/turf/simulated/floor/tiled/dark,/area/lawoffice) +"Br" = (/obj/structure/table/alien{name = "fancy table"},/obj/machinery/photocopier/faxmachine{department = "Research Director's Office"},/turf/simulated/floor/tiled/techfloor,/area/crew_quarters/heads/hor) +"Bs" = (/obj/machinery/computer/borgupload{dir = 8},/obj/machinery/light{dir = 4},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/turf/simulated/floor/tiled/techfloor/grid,/area/ai_upload) +"Bt" = (/obj/structure/cable/green{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/wood,/area/stellardelight/deck3/cafe) +"Bz" = (/obj/machinery/door/firedoor/glass,/obj/structure/cable/blue{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/door/airlock/angled_bay/standard/color{dir = 4; door_color = "#323d80"; fill_color = "#313866"; id_tag = "cmodoor"; name = "Chief Medical Officer"; req_access = list(40); stripe_color = "#ffffff"},/turf/simulated/floor/tiled/steel_ridged,/area/crew_quarters/heads/cmo) +"BA" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/angled_bay/external/glass{dir = 4; frequency = 1380; id_tag = null; locked = 1; name = "Docking Port Airlock"},/obj/effect/map_helper/airlock/door/ext_door,/obj/machinery/access_button{command = "cycle_exterior"; dir = 8; frequency = 1380; master_tag = "sd_port_landing"; pixel_y = 32; req_one_access = list(13)},/obj/structure/cable{icon_state = "4-8"},/turf/simulated/floor/tiled/steel_ridged,/area/stellardelight/deck3/portdock) +"BB" = (/obj/machinery/door/firedoor/glass,/obj/structure/window/bay/reinforced,/obj/machinery/atmospherics/pipe/simple/hidden{dir = 1},/obj/structure/low_wall/bay/reinforced/steel,/turf/simulated/floor,/area/stellardelight/deck3/aft) +"BC" = (/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden{dir = 6},/obj/structure/cable/green{icon_state = "2-4"},/turf/simulated/floor/tiled,/area/stellardelight/deck3/aft) +"BF" = (/obj/structure/cable/blue{icon_state = "1-2"},/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/angled_bay/hatch{door_color = "#e6ab22"; name = "Command Substation"; req_one_access = list(10); stripe_color = "#e6ab22"},/turf/simulated/floor/tiled/steel_ridged,/area/maintenance/stellardelight/substation/command) +"BG" = (/obj/structure/cable/green{icon_state = "1-2"},/obj/structure/table/rack,/obj/random/maintenance/clean,/obj/random/maintenance,/obj/random/maintenance/engineering,/obj/random/maintenance/research,/obj/random/maintenance/research,/turf/simulated/floor,/area/maintenance/stellardelight/deck3/starboardaft) +"BH" = (/turf/simulated/floor/carpet,/area/crew_quarters/heads/hos) +"BJ" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/angled_bay/double/glass{name = "glass airlock"},/turf/simulated/floor/tiled/steel_ridged,/area/stellardelight/deck3/starboarddock) +"BK" = (/obj/structure/cable/blue{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/eris/dark/gray_platform,/area/stellardelight/deck3/commandhall) +"BL" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/turf/simulated/open,/area/stellardelight/deck2/port) +"BM" = (/obj/structure/sign/painting/library_secure{pixel_x = -30},/turf/simulated/floor/carpet/oracarpet,/area/crew_quarters/heads/chief) +"BQ" = (/obj/structure/cable/blue{icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/light_switch{dir = 4; pixel_x = -24; pixel_y = 24},/turf/simulated/floor/tiled/techfloor,/area/crew_quarters/heads/hor) +"BR" = (/obj/machinery/atmospherics/unary/vent_pump/high_volume{dir = 1; frequency = 1380; id_tag = null},/obj/machinery/embedded_controller/radio/airlock/docking_port_multi{dir = 4; frequency = 1380; id_tag = "sd_escape_center_left"; master_tag = "escape_dock"; pixel_x = -24; req_one_access = list(13); tag_airpump = null; tag_chamber_sensor = null; tag_exterior_door = null; tag_interior_door = null},/obj/machinery/airlock_sensor{dir = 8; frequency = 1380; id_tag = null; pixel_x = 25},/obj/effect/map_helper/airlock/atmos/chamber_pump,/obj/effect/map_helper/airlock/sensor/chamber_sensor,/turf/simulated/floor/tiled,/area/stellardelight/deck3/aft) +"BV" = (/obj/structure/bed/chair{dir = 8},/obj/machinery/alarm/angled{dir = 8},/turf/simulated/floor/tiled,/area/stellardelight/deck3/portdock) +"BW" = (/obj/machinery/power/terminal{dir = 1},/obj/structure/cable{icon_state = "0-4"},/obj/effect/floor_decal/fancy_shuttle{fancy_shuttle_tag = "sdboat"},/obj/machinery/atmospherics/pipe/manifold/hidden/fuel{dir = 1},/turf/simulated/floor/tiled,/area/shuttle/sdboat/aft{base_turf = /turf/simulated/floor/reinforced/airless}) +"BY" = (/obj/machinery/newscaster{layer = 3.3; pixel_x = -27},/turf/simulated/floor/carpet/blue2,/area/lawoffice) +"BZ" = (/obj/structure/cable/green{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/door/firedoor/glass,/turf/simulated/floor,/area/maintenance/stellardelight/deck3/portaft) +"Cb" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/obj/effect/landmark/vermin,/turf/simulated/open,/area/stellardelight/deck2/fore) +"Cc" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/angled_bay/hatch{dir = 4; name = "maintenance access"; stripe_color = "#454545"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4},/obj/structure/cable/green{icon_state = "4-8"},/turf/simulated/floor/tiled/steel_ridged,/area/stellardelight/deck3/aft) +"Cd" = (/obj/structure/table/woodentable,/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/turf/simulated/floor/wood,/area/stellardelight/deck3/cafe) +"Ce" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/carpet/turcarpet,/area/ai) +"Cf" = (/obj/machinery/door/firedoor/glass,/obj/structure/cable/green{icon_state = "4-8"},/obj/machinery/door/airlock/angled_bay/hatch{dir = 4; name = "maintenance access"; stripe_color = "#454545"},/turf/simulated/floor/tiled/steel_ridged,/area/maintenance/stellardelight/deck3/portcent) +"Cn" = (/obj/structure/cable/blue{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/turf/simulated/floor/tiled/techfloor/grid,/area/ai) +"Co" = (/obj/machinery/button/remote/airlock{id = "readingroom2"; name = "Room 2 Lock"; pixel_y = 24; specialfunctions = 4},/obj/machinery/button/remote/blast_door{id = "readingroom2"; name = "Window Lockdown"; pixel_x = -10; pixel_y = 24},/turf/simulated/floor/carpet,/area/stellardelight/deck3/readingroom) +"Cp" = (/obj/machinery/door/firedoor/glass,/turf/simulated/floor,/area/stellardelight/deck2/fore) +"Cu" = (/obj/machinery/power/apc/angled{dir = 1},/obj/structure/cable/green{icon_state = "0-8"},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 1},/obj/random/vendorfood,/turf/simulated/floor/tiled,/area/stellardelight/deck3/aft) +"Cw" = (/obj/structure/lattice,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/structure/cable/blue{icon_state = "2-8"},/obj/structure/cable/blue{icon_state = "2-4"},/turf/simulated/open,/area/stellardelight/deck2/fore) +"Cx" = (/obj/effect/shuttle_landmark{base_area = /area/stellardelight/deck3/exterior; base_turf = /turf/simulated/floor/reinforced/airless; docking_controller = "escape_dock"; landmark_tag = "escape_station"; name = "Ship Arrivals"},/turf/simulated/floor/reinforced/airless,/area/stellardelight/deck3/exterior) +"Cy" = (/obj/structure/cable/green{icon_state = "4-8"},/obj/structure/cable/green{icon_state = "1-8"},/obj/structure/cable/green{icon_state = "2-8"},/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers,/obj/machinery/atmospherics/pipe/manifold/hidden{dir = 4},/obj/effect/floor_decal/arrivals/right,/turf/simulated/floor/tiled,/area/stellardelight/deck3/aft) +"Cz" = (/obj/structure/lattice,/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/turf/simulated/open,/area/stellardelight/deck2/port) +"CA" = (/obj/machinery/door/firedoor/glass,/obj/structure/window/bay/reinforced,/obj/machinery/door/blast/angled/open{dir = 2; id = "barlockdown"},/obj/structure/low_wall/bay/reinforced/steel,/turf/simulated/floor,/area/crew_quarters/bar) +"CC" = (/turf/simulated/wall/bay/r_wall/steel,/area/stellardelight/deck3/clownmimeoffice) +"CD" = (/obj/machinery/atmospherics/unary/vent_pump/high_volume{dir = 8; frequency = 1380; id_tag = null},/obj/machinery/embedded_controller/radio/airlock/docking_port_multi{frequency = 1380; id_tag = "sd_escape_port"; master_tag = "escape_dock"; pixel_y = 30; req_one_access = list(13); tag_airpump = null; tag_chamber_sensor = null; tag_exterior_door = null; tag_interior_door = null},/obj/machinery/airlock_sensor{frequency = 1380; id_tag = null; pixel_y = -25},/obj/effect/map_helper/airlock/atmos/chamber_pump,/obj/effect/map_helper/airlock/sensor/chamber_sensor,/turf/simulated/floor/tiled,/area/stellardelight/deck3/portdock) +"CG" = (/obj/machinery/blackbox_recorder,/turf/simulated/floor/tiled/techfloor/grid,/area/ai_server_room) +"CH" = (/obj/machinery/light/small{dir = 8},/obj/structure/cable{icon_state = "4-8"},/turf/simulated/floor,/area/stellardelight/deck2/starboard) +"CJ" = (/obj/structure/lattice,/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/open,/area/stellardelight/deck2/starboard) +"CK" = (/obj/machinery/door/firedoor/glass,/obj/structure/window/bay/reinforced,/obj/structure/low_wall/bay/reinforced/steel,/turf/simulated/floor,/area/maintenance/stellardelight/deck3/starboardaft) +"CO" = (/obj/effect/overmap/visitable/ship/stellar_delight,/turf/space,/area/space) +"CP" = (/obj/structure/cable/green{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4},/obj/effect/floor_decal/arrivals/right,/turf/simulated/floor/tiled,/area/stellardelight/deck3/aft) +"CR" = (/obj/structure/bed/chair{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/machinery/newscaster{pixel_y = 28},/turf/simulated/floor/carpet,/area/crew_quarters/heads/hop) +"CS" = (/obj/structure/lattice,/turf/simulated/open,/area/stellardelight/deck2/port) +"CT" = (/obj/structure/cable/blue{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/turf/simulated/floor/tiled/techfloor/grid,/area/ai_cyborg_station) +"CU" = (/obj/machinery/door/firedoor/glass,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable/green{icon_state = "4-8"},/turf/simulated/floor,/area/stellardelight/deck2/fore) +"CV" = (/obj/structure/bed/chair,/obj/structure/sign/painting/public{pixel_y = 30},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 1},/turf/simulated/floor/tiled,/area/stellardelight/deck3/aft) +"CY" = (/obj/effect/floor_decal/techfloor{dir = 8},/obj/effect/landmark{name = "JoinLateCryo"},/turf/simulated/floor/tiled/techfloor,/area/stellardelight/deck3/cryo) +"Dd" = (/obj/structure/lattice,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/green{icon_state = "1-2"},/turf/simulated/open,/area/crew_quarters/bar) +"De" = (/obj/structure/cable{icon_state = "2-4"},/turf/simulated/wall/bay/r_wall/blue,/area/ai_cyborg_station) +"Df" = (/obj/machinery/door/firedoor/glass,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable/blue{icon_state = "1-2"},/turf/simulated/floor,/area/stellardelight/deck2/fore) +"Dh" = (/obj/machinery/computer/message_monitor{dir = 1},/turf/simulated/floor/tiled/techfloor/grid,/area/ai_server_room) +"Di" = (/obj/effect/floor_decal/industrial/warning{dir = 1},/obj/structure/cable/green{icon_state = "2-4"},/obj/structure/cable/green{icon_state = "4-8"},/turf/simulated/floor/airless,/area/stellardelight/deck3/exterior) +"Dk" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/reagent_dispensers/watertank,/turf/simulated/floor,/area/maintenance/stellardelight/deck3/starboardaft) +"Dn" = (/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 4},/turf/simulated/floor/tiled,/area/stellardelight/deck3/starboarddock) +"Dp" = (/obj/random/trash_pile,/turf/simulated/floor,/area/maintenance/stellardelight/deck3/portfore) +"Ds" = (/obj/machinery/hologram/holopad,/turf/simulated/floor/tiled/techfloor/grid,/area/ai_cyborg_station) +"Du" = (/obj/machinery/vending/wardrobe/clowndrobe,/turf/simulated/floor/carpet/gaycarpet,/area/stellardelight/deck3/clownmimeoffice) +"Dw" = (/obj/machinery/hologram/holopad,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/turf/simulated/floor/carpet/geo,/area/ai) +"Dy" = (/obj/machinery/atmospherics/pipe/simple/hidden/black,/turf/simulated/floor/bluegrid{name = "Mainframe Base"; nitrogen = 100; oxygen = 0; temperature = 80},/area/tcommsat/chamber) +"DC" = (/turf/simulated/wall/bay/steel,/area/maintenance/stellardelight/deck3/foreportroomb) +"DD" = (/obj/machinery/door/firedoor/glass,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/door/airlock/angled_bay/standard/glass{name = "maintenance access"},/turf/simulated/floor/tiled/steel_ridged,/area/stellardelight/deck2/port) +"DE" = (/obj/structure/cable{icon_state = "4-8"},/turf/simulated/floor,/area/maintenance/stellardelight/deck3/starboardcent) +"DH" = (/obj/structure/lattice,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/structure/cable/green{icon_state = "1-4"},/turf/simulated/open,/area/crew_quarters/bar) +"DI" = (/obj/machinery/power/apc/angled{dir = 8},/obj/structure/cable/blue{icon_state = "0-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/techfloor,/area/crew_quarters/heads/hor) +"DL" = (/obj/structure/cable/blue{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/turf/simulated/floor/tiled/techfloor/grid,/area/ai_server_room) +"DM" = (/obj/structure/table/steel,/turf/simulated/floor/tiled/techfloor/grid,/area/maintenance/stellardelight/deck3/foreportrooma) +"DN" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/turf/simulated/floor/tiled,/area/crew_quarters/heads/hop) +"DO" = (/obj/structure/closet/hydrant{pixel_y = 28},/obj/structure/dogbed{name = "catslug bed"},/mob/living/simple_mob/vore/alienanimals/catslug/tulidaan,/turf/simulated/floor/wood,/area/stellardelight/deck3/readingroom) +"DP" = (/obj/effect/floor_decal/industrial/warning/corner,/obj/structure/cable/blue{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/turf/simulated/floor/tiled/techfloor/grid,/area/tcommsat/computer) +"DQ" = (/turf/simulated/floor,/area/maintenance/stellardelight/deck3/starboardfore) +"DT" = (/obj/structure/railing/grey,/obj/structure/railing/grey{dir = 4},/turf/simulated/open,/area/maintenance/stellardelight/deck3/portaft) +"DV" = (/obj/structure/cable/blue{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/wall/bay/blue,/area/lawoffice) +"DW" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/button/remote/blast_door{dir = 8; id = "clownmimeoffice"; name = "Window Lockdown"; pixel_x = 23; pixel_y = 7},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/turf/simulated/floor/carpet/gaycarpet,/area/stellardelight/deck3/clownmimeoffice) +"DY" = (/obj/structure/cable/green{icon_state = "1-2"},/turf/simulated/floor,/area/maintenance/stellardelight/deck3/foreportrooma) +"DZ" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/turf/simulated/floor,/area/maintenance/stellardelight/deck3/starboardcent) +"Ec" = (/turf/simulated/wall/bay/steel,/area/stellardelight/deck3/clownmimeoffice) +"Ed" = (/turf/simulated/wall/bay/r_wall/steel,/area/stellardelight/deck3/aft) +"Ee" = (/obj/machinery/atmospherics/pipe/manifold/hidden/black{dir = 1},/turf/simulated/floor/bluegrid{name = "Mainframe Base"; nitrogen = 100; oxygen = 0; temperature = 80},/area/tcommsat/chamber) +"Ef" = (/turf/simulated/floor/tiled/techfloor/grid,/area/maintenance/stellardelight/deck3/forestarroomb) +"Eg" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/structure/cable/green{icon_state = "1-2"},/obj/machinery/camera/network/halls{dir = 1},/turf/simulated/floor/tiled,/area/stellardelight/deck3/portdock) +"Eh" = (/obj/effect/floor_decal/techfloor{dir = 4},/obj/structure/cable/green{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/turf/simulated/floor/tiled/techfloor,/area/stellardelight/deck3/cryo) +"Ei" = (/obj/structure/cable/green{icon_state = "1-4"},/obj/random/trash_pile,/turf/simulated/floor,/area/maintenance/stellardelight/deck3/portcent) +"El" = (/obj/effect/landmark{name = "carpspawn"},/turf/space,/area/space) +"En" = (/obj/effect/floor_decal/industrial/warning/corner{dir = 1},/obj/structure/cable/green{icon_state = "4-8"},/turf/simulated/floor/airless,/area/stellardelight/deck3/exterior) +"Es" = (/obj/effect/shuttle_landmark/premade/sd/deck3/portlanding,/turf/space,/area/space) +"Et" = (/obj/structure/closet/secure_closet/hos,/obj/item/device/radio/intercom{dir = 1; name = "Station Intercom (General)"; pixel_y = 24},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/turf/simulated/floor/tiled/dark,/area/crew_quarters/heads/hos) +"Eu" = (/turf/simulated/wall/bay/r_wall/blue,/area/stellardelight/deck2/port) +"Ev" = (/obj/structure/cable/blue{icon_state = "1-4"},/obj/structure/cable/blue{icon_state = "1-2"},/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor,/area/maintenance/stellardelight/deck3/starboardcent) +"Ex" = (/obj/structure/bed/chair/bay/comfy/blue{dir = 1},/obj/effect/floor_decal/fancy_shuttle{fancy_shuttle_tag = "sdboat"},/turf/simulated/floor/tiled,/area/shuttle/sdboat/fore{base_turf = /turf/simulated/floor/reinforced/airless}) +"EE" = (/obj/structure/table/rack{dir = 8; layer = 2.9},/obj/item/weapon/rig/ce/equipped,/obj/item/clothing/mask/breath,/obj/item/clothing/shoes/magboots/adv,/turf/simulated/floor/tiled,/area/crew_quarters/heads/chief) +"EF" = (/obj/structure/cable/green{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4},/turf/simulated/floor/tiled,/area/stellardelight/deck3/aft) +"EH" = (/obj/structure/table/steel,/turf/simulated/floor/tiled/techfloor/grid,/area/maintenance/stellardelight/deck3/foreportroomb) +"EI" = (/obj/machinery/atmospherics/unary/vent_pump/high_volume{dir = 8; frequency = 1379; id_tag = "portmaint_airpump"},/turf/simulated/floor/airless,/area/maintenance/stellardelight/deck3/portcent) +"EJ" = (/turf/simulated/wall/bay/r_wall/blue,/area/crew_quarters/heads/cmo) +"EL" = (/obj/machinery/door/airlock/angled_bay/hatch{frequency = null; id_tag = null; locked = 1; name = "Telecoms Server Access"; req_access = list(61); stripe_color = "#ffd863"},/obj/machinery/door/firedoor/glass,/obj/structure/cable/blue{icon_state = "1-2"},/obj/machinery/access_button{command = "cycle_exterior"; dir = 1; frequency = 1380; master_tag = "tcommsairlock"; pixel_x = -32; req_one_access = list(61)},/obj/effect/map_helper/airlock/door/ext_door,/turf/simulated/floor/tiled/steel_ridged,/area/tcommsat/computer) +"EN" = (/obj/structure/cable/green{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals_central5{dir = 4},/turf/simulated/floor/tiled,/area/stellardelight/deck3/aft) +"EO" = (/obj/structure/sign/nanotrasen{pixel_y = 30},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/turf/simulated/floor/tiled/dark,/area/lawoffice) +"ER" = (/turf/simulated/floor/tiled/steel_grid,/area/stellardelight/deck3/aft) +"ET" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden,/turf/simulated/floor,/area/maintenance/stellardelight/deck3/starboardaft) +"EU" = (/obj/structure/cable/blue{icon_state = "2-8"},/turf/simulated/floor/airless,/area/stellardelight/deck3/exterior) +"EV" = (/obj/structure/cable/green{icon_state = "4-8"},/obj/structure/cable/green{icon_state = "2-8"},/turf/simulated/floor/airless,/area/stellardelight/deck3/exterior) +"EW" = (/obj/structure/cable/blue{icon_state = "1-4"},/obj/structure/cable/blue{icon_state = "1-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/turf/simulated/floor/tiled/eris/dark/gray_platform,/area/stellardelight/deck3/commandhall) +"EX" = (/obj/machinery/atmospherics/pipe/simple/hidden/fuel{dir = 10},/turf/simulated/wall/fancy_shuttle{fancy_shuttle_tag = "sdboat"},/area/shuttle/sdboat/aft{base_turf = /turf/simulated/floor/reinforced/airless}) +"EY" = (/obj/structure/table/reinforced,/obj/machinery/computer/skills{dir = 8; pixel_y = 6},/turf/simulated/floor/carpet/oracarpet,/area/crew_quarters/heads/chief) +"EZ" = (/turf/simulated/wall/bay/r_wall/steel,/area/maintenance/stellardelight/deck3/forestarroomb) +"Fb" = (/obj/structure/lattice,/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/turf/simulated/open,/area/crew_quarters/bar) +"Fe" = (/obj/machinery/hologram/holopad,/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/turf/simulated/floor/tiled/techfloor/grid,/area/ai_upload) +"Ff" = (/obj/structure/bed/chair,/obj/machinery/atmospherics/unary/vent_scrubber/on,/obj/machinery/alarm/angled,/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 1},/obj/effect/landmark/vermin,/turf/simulated/floor/tiled,/area/stellardelight/deck3/aft) +"Fg" = (/obj/machinery/door/firedoor/glass,/obj/structure/cable/blue{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/door/airlock/angled_bay/standard/color{dir = 4; door_color = "#323d80"; fill_color = "#854a44"; id_tag = "hosdoor"; name = "Head of Security"; req_access = list(58); stripe_color = "#d27428"},/turf/simulated/floor/tiled/steel_ridged,/area/crew_quarters/heads/hos) +"Fh" = (/turf/simulated/floor/tiled/techfloor/grid,/area/ai_server_room) +"Fj" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/structure/cable/blue{icon_state = "4-8"},/turf/simulated/floor,/area/stellardelight/deck2/fore) +"Fm" = (/obj/machinery/atmospherics/unary/vent_pump/high_volume{dir = 8; frequency = 1379; id_tag = "portmaint_airpump"},/obj/machinery/camera/network/civilian,/turf/simulated/floor/airless,/area/maintenance/stellardelight/deck3/portcent) +"Fr" = (/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor/tiled/monotile,/area/stellardelight/deck3/commandhall) +"Ft" = (/obj/structure/cable/green{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/turf/simulated/floor,/area/stellardelight/deck2/port) +"Fv" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/techfloor/grid,/area/tcommsat/computer) +"Fy" = (/obj/structure/cable/green{icon_state = "4-8"},/turf/simulated/floor/airless,/area/maintenance/stellardelight/deck3/portcent) +"FC" = (/obj/machinery/alarm/angled{dir = 8},/obj/structure/cable/blue{icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/dark,/area/lawoffice) +"FD" = (/obj/machinery/door/firedoor/glass,/obj/structure/window/bay/reinforced,/obj/structure/low_wall/bay/reinforced/steel,/turf/simulated/floor,/area/maintenance/stellardelight/deck3/forestarroomb) +"FE" = (/turf/simulated/floor,/area/maintenance/stellardelight/deck3/forestarroomb) +"FG" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/turf/simulated/floor,/area/maintenance/stellardelight/deck3/portaft) +"FH" = (/obj/machinery/power/pointdefense{id_tag = "sd_pd"},/obj/effect/floor_decal/industrial/warning/full,/obj/structure/cable/green{icon_state = "0-2"},/turf/simulated/floor/airless,/area/stellardelight/deck3/exterior) +"FI" = (/obj/effect/floor_decal/industrial/warning/corner{dir = 1},/obj/structure/cable/green{icon_state = "1-8"},/turf/simulated/floor/airless,/area/stellardelight/deck3/exterior) +"FL" = (/obj/structure/lattice,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable/blue{icon_state = "1-2"},/turf/simulated/open,/area/stellardelight/deck2/starboard) +"FM" = (/obj/structure/bed/chair/comfy/brown{dir = 1},/turf/simulated/floor/tiled/eris/white/cargo,/area/crew_quarters/heads/cmo) +"FO" = (/obj/structure/bed/psych{name = "couch"},/turf/simulated/floor/tiled/eris/white/cargo,/area/crew_quarters/heads/cmo) +"FR" = (/obj/effect/floor_decal/techfloor/orange,/obj/structure/cable/green{icon_state = "1-2"},/turf/simulated/floor/tiled/techfloor,/area/stellardelight/deck3/transitgateway) +"FS" = (/obj/machinery/atmospherics/pipe/simple/hidden/universal{dir = 8},/turf/simulated/floor,/area/maintenance/stellardelight/deck3/portaft) +"FU" = (/obj/structure/cable/blue{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/turf/simulated/floor/tiled/techfloor/grid,/area/ai_cyborg_station) +"FW" = (/obj/machinery/power/apc/angled{dir = 8; name = "night shift APC"; nightshift_setting = 2},/obj/structure/cable/green{icon_state = "0-2"},/turf/simulated/floor,/area/maintenance/stellardelight/deck3/foreportrooma) +"FY" = (/obj/structure/closet,/obj/random/maintenance,/obj/random/maintenance,/obj/random/maintenance,/obj/random/maintenance,/obj/random/maintenance,/turf/simulated/floor,/area/maintenance/stellardelight/deck3/foreportrooma) +"Ga" = (/obj/structure/cable/cyan{icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/bluegrid,/area/ai) +"Gc" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/structure/cable/green{icon_state = "1-2"},/turf/simulated/floor,/area/maintenance/stellardelight/deck3/starboardaft) +"Ge" = (/obj/structure/table/standard,/obj/item/weapon/aiModule/nanotrasen,/obj/machinery/camera/network/command,/obj/machinery/atmospherics/unary/vent_scrubber/on,/turf/simulated/floor/bluegrid,/area/ai_cyborg_station) +"Gf" = (/obj/structure/cable/green{icon_state = "4-8"},/obj/machinery/atmospherics/unary/vent_scrubber/on,/obj/machinery/alarm/angled,/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 1},/turf/simulated/floor/tiled,/area/stellardelight/deck3/aft) +"Gg" = (/obj/structure/sink{dir = 8; pixel_x = -12; pixel_y = -3},/turf/simulated/floor/lino,/area/stellardelight/deck3/cafe) +"Gh" = (/obj/structure/cable/blue{icon_state = "1-2"},/obj/structure/cable/blue{icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/techfloor/grid,/area/ai_upload) +"Gi" = (/obj/structure/table/rack,/obj/item/weapon/rig/hazmat/equipped,/obj/machinery/light,/turf/simulated/floor/tiled/techfloor,/area/crew_quarters/heads/hor) +"Gj" = (/turf/simulated/floor/tiled/monotile,/area/stellardelight/deck3/commandhall) +"Gk" = (/turf/simulated/wall/bay/r_wall/blue,/area/maintenance/stellardelight/deck3/portaft) +"Gl" = (/obj/structure/bed/chair/office/dark{dir = 8},/obj/effect/landmark/start/cmo,/turf/simulated/floor/carpet/tealcarpet,/area/crew_quarters/heads/cmo) +"Gm" = (/obj/structure/cable/blue{icon_state = "0-2"},/obj/structure/cable/blue,/obj/machinery/power/smes/buildable{RCon_tag = "Substation - Command"; output_attempt = 0},/turf/simulated/floor,/area/maintenance/stellardelight/substation/command) +"Go" = (/obj/structure/cable/green{icon_state = "2-4"},/obj/structure/cable/green{icon_state = "4-8"},/turf/simulated/floor/airless,/area/stellardelight/deck3/exterior) +"Gq" = (/obj/structure/cable{icon_state = "2-8"},/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden{dir = 10},/turf/simulated/floor,/area/maintenance/stellardelight/deck3/starboardaft) +"Gv" = (/obj/structure/sign/deck3{pixel_x = -32},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 8},/turf/simulated/floor/tiled,/area/stellardelight/deck3/aft) +"GB" = (/obj/item/weapon/reagent_containers/food/drinks/shaker,/obj/item/weapon/reagent_containers/glass/rag,/obj/structure/table/rack,/obj/random/donkpocketbox,/turf/simulated/floor/tiled/techfloor/grid,/area/maintenance/stellardelight/deck3/forestarroomb) +"GD" = (/obj/structure/cable/blue{icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/turf/simulated/floor/tiled/techfloor/grid,/area/tcommsat/computer) +"GE" = (/obj/structure/cable/green{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/door/firedoor/glass,/obj/machinery/atmospherics/pipe/simple/hidden{dir = 1},/turf/simulated/floor/tiled/steel_ridged,/area/stellardelight/deck3/aft) +"GF" = (/obj/structure/cable/green{icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/hidden,/turf/simulated/floor/airless,/area/maintenance/stellardelight/deck3/portcent) +"GH" = (/obj/item/device/radio/intercom{dir = 8; pixel_x = -24},/turf/simulated/floor/wood,/area/stellardelight/deck3/readingroom) +"GJ" = (/obj/structure/cable/blue{icon_state = "1-4"},/turf/simulated/floor,/area/maintenance/stellardelight/deck3/forestarrooma) +"GP" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/bluegrid,/area/ai) +"GQ" = (/turf/simulated/wall/bay/red,/area/crew_quarters/heads/hos) +"GR" = (/obj/machinery/requests_console/preset/cmo{pixel_x = 30},/turf/simulated/floor/carpet/tealcarpet,/area/crew_quarters/heads/cmo) +"GS" = (/obj/structure/cable/green{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/door/firedoor/glass,/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4},/turf/simulated/floor,/area/maintenance/stellardelight/deck3/portcent) +"GT" = (/obj/effect/floor_decal/industrial/warning{dir = 8},/obj/structure/cable/green{icon_state = "1-2"},/obj/structure/cable/green{icon_state = "1-4"},/turf/simulated/floor/airless,/area/stellardelight/deck3/exterior) +"GU" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/techfloor/grid,/area/ai_server_room) +"GW" = (/obj/structure/table/reinforced,/obj/item/weapon/book/manual/supermatter_engine,/obj/item/device/radio{pixel_x = -4},/obj/item/device/megaphone,/obj/machinery/light,/turf/simulated/floor/tiled,/area/crew_quarters/heads/chief) +"Ha" = (/obj/structure/bed/double/padded,/obj/item/weapon/bedsheet/cedouble,/obj/structure/curtain/black{color = "#945112"},/obj/effect/landmark/start/ce,/turf/simulated/floor/carpet/oracarpet,/area/crew_quarters/heads/chief) +"Hc" = (/obj/structure/cable/blue{icon_state = "1-2"},/obj/structure/cable/blue,/obj/machinery/power/sensor{name = "Powernet Sensor - AI/Telecomms Subgrid"; name_tag = "AI/Telecomms Subgrid"},/obj/machinery/power/apc/angled{dir = 8},/turf/simulated/floor,/area/ai_cyborg_station) +"Hd" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/obj/structure/closet/firecloset,/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 8},/turf/simulated/floor/tiled,/area/stellardelight/deck3/aft) +"He" = (/obj/machinery/door/firedoor/glass,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor,/area/stellardelight/deck2/central) +"Hf" = (/obj/machinery/atmospherics/unary/vent_pump/on,/turf/simulated/open,/area/stellardelight/deck2/fore) +"Hg" = (/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 8},/obj/structure/sign/vacuum{pixel_x = -32; plane = -34},/obj/structure/cable{icon_state = "1-2"},/turf/simulated/floor/tiled,/area/stellardelight/deck3/portdock) +"Hh" = (/obj/structure/cable/blue{icon_state = "4-8"},/obj/machinery/airlock_sensor{dir = 4; id_tag = "starmaint_sensor"; pixel_x = -24; req_access = list(13)},/turf/simulated/floor/airless,/area/maintenance/stellardelight/deck3/starboardcent) +"Hi" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/obj/item/device/radio/intercom{dir = 4; pixel_x = 24},/obj/structure/closet/emergsuit_wall{pixel_y = 29},/turf/simulated/floor/tiled,/area/stellardelight/deck3/aft) +"Hk" = (/obj/machinery/alarm/angled{dir = 8},/turf/simulated/floor,/area/maintenance/stellardelight/deck3/portfore) +"Hm" = (/obj/structure/closet/emcloset,/turf/simulated/floor,/area/maintenance/stellardelight/deck3/portcent) +"Ho" = (/obj/structure/table/steel,/obj/random/contraband,/obj/random/maintenance,/obj/random/maintenance,/obj/random/maintenance/clean,/turf/simulated/floor,/area/maintenance/stellardelight/deck3/aftstarroom) +"Hq" = (/obj/structure/sign/warning/falling{pixel_y = 32},/turf/simulated/open,/area/stellardelight/deck2/fore) +"Hs" = (/turf/simulated/wall/bay/orange,/area/crew_quarters/heads/chief) +"Ht" = (/obj/machinery/atmospherics/unary/vent_pump{dir = 4; external_pressure_bound = 0; external_pressure_bound_default = 0; icon_state = "map_vent_in"; initialize_directions = 1; internal_pressure_bound = 4000; internal_pressure_bound_default = 4000; pressure_checks = 2; pressure_checks_default = 2; pump_direction = 0; use_power = 1},/turf/simulated/floor/bluegrid{name = "Mainframe Base"; nitrogen = 100; oxygen = 0; temperature = 80},/area/tcommsat/chamber) +"Hu" = (/obj/effect/floor_decal/industrial/warning{dir = 8},/obj/machinery/light/small{dir = 1},/turf/simulated/floor/airless,/area/stellardelight/deck3/portdock) +"Hv" = (/obj/structure/sign/painting/library_secure{pixel_x = 30},/turf/simulated/floor/carpet/blue2,/area/lawoffice) +"Hw" = (/obj/structure/sign/painting/public{pixel_y = 30},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 1},/turf/simulated/floor/tiled,/area/stellardelight/deck3/aft) +"Hx" = (/obj/structure/cable/green{icon_state = "1-8"},/obj/structure/cable/green{icon_state = "1-2"},/turf/simulated/floor/airless,/area/stellardelight/deck3/exterior) +"HA" = (/obj/structure/cable/cyan,/obj/machinery/button/remote/blast_door{desc = "A remote control-switch for the AI core maintenance door."; dir = 4; id = "AICore"; name = "AI Maintenance Hatch"; pixel_x = -25; pixel_y = -5; req_access = list(16)},/obj/machinery/light,/obj/machinery/holoplant,/obj/machinery/power/apc/angled{dir = 4},/turf/simulated/floor/bluegrid,/area/ai) +"HB" = (/obj/effect/floor_decal/spline/plain{dir = 4},/obj/structure/table/bench/marble,/turf/simulated/floor/lino,/area/stellardelight/deck3/cafe) +"HF" = (/obj/structure/cable/green{icon_state = "2-4"},/obj/structure/table/rack,/obj/random/maintenance/clean,/obj/random/maintenance,/obj/random/maintenance,/turf/simulated/floor,/area/maintenance/stellardelight/deck3/starboardaft) +"HH" = (/obj/structure/closet/emcloset,/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 8},/turf/simulated/floor/tiled,/area/stellardelight/deck3/aft) +"HL" = (/obj/structure/cable{icon_state = "2-8"},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor,/area/maintenance/stellardelight/deck3/starboardcent) +"HN" = (/obj/structure/cable/blue{icon_state = "1-2"},/obj/machinery/light{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/techfloor/grid,/area/ai_cyborg_station) +"HO" = (/obj/structure/cable/green{icon_state = "1-4"},/turf/simulated/wall/bay/r_wall/steel,/area/maintenance/stellardelight/deck3/foreportrooma) +"HP" = (/obj/machinery/door/firedoor/glass,/obj/structure/window/bay/reinforced,/obj/structure/cable/green{icon_state = "1-2"},/obj/structure/low_wall/bay/reinforced/steel,/turf/simulated/floor,/area/stellardelight/deck3/starboarddock) +"HQ" = (/obj/machinery/door/airlock/angled_bay/standard/color{door_color = "#9c9c9c"; fill_color = "#5c5c5c"; id_tag = null; name = "Reading Rooms"; stripe_color = "#89bd66"},/obj/machinery/door/firedoor/glass,/obj/structure/cable/green{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/steel_ridged,/area/stellardelight/deck3/readingroom) +"HR" = (/obj/structure/table/steel,/obj/random/contraband,/obj/machinery/chemical_dispenser/bar_coffee/full{pixel_y = 8},/turf/simulated/floor,/area/maintenance/stellardelight/deck3/foreportrooma) +"HS" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/turf/simulated/floor/tiled/techfloor/grid,/area/ai) +"HT" = (/obj/structure/cable/blue{icon_state = "1-2"},/turf/simulated/floor/tiled/techfloor/grid,/area/ai_cyborg_station) +"HV" = (/obj/structure/cable/green{icon_state = "1-4"},/obj/effect/landmark{name = "morphspawn"},/turf/simulated/floor/tiled/techfloor/grid,/area/maintenance/stellardelight/deck3/forestarrooma) +"HW" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/obj/structure/cable/blue{icon_state = "1-2"},/turf/simulated/floor/tiled/eris/dark/gray_platform,/area/stellardelight/deck3/commandhall) +"HX" = (/obj/machinery/light{dir = 8},/turf/simulated/floor/tiled/techfloor/grid,/area/tcommsat/computer) +"HY" = (/obj/structure/table/rack,/obj/random/contraband,/obj/random/maintenance,/obj/random/maintenance,/obj/random/snack,/turf/simulated/floor,/area/maintenance/stellardelight/deck3/portaft) +"HZ" = (/obj/structure/lattice,/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/turf/simulated/open,/area/stellardelight/deck2/central) +"Ia" = (/turf/simulated/wall/fancy_shuttle/nondense{fancy_shuttle_tag = "sdboat"},/area/shuttle/sdboat/aft{base_turf = /turf/simulated/floor/reinforced/airless}) +"Ib" = (/obj/machinery/alarm/angled{dir = 4},/turf/simulated/floor/tiled/techfloor/grid,/area/maintenance/stellardelight/deck3/forestarrooma) +"Ie" = (/obj/structure/lattice,/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/structure/cable/green{icon_state = "4-8"},/turf/simulated/open,/area/stellardelight/deck2/fore) +"Ig" = (/obj/structure/lattice,/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/open,/area/stellardelight/deck2/port) +"Ii" = (/turf/simulated/wall/bay/r_wall/steel,/area/holodeck_control) +"Ij" = (/obj/structure/cable/green{icon_state = "1-2"},/obj/effect/landmark{name = "maint_pred"},/turf/simulated/floor/tiled/techfloor/grid,/area/maintenance/stellardelight/deck3/foreportroomb) +"Il" = (/obj/machinery/photocopier,/turf/simulated/floor/tiled,/area/crew_quarters/heads/hop) +"Im" = (/obj/effect/landmark/tram,/turf/simulated/floor/glass/reinforced,/area/stellardelight/deck3/aft) +"In" = (/obj/structure/cable{icon_state = "1-8"},/obj/random/trash_pile,/turf/simulated/floor,/area/maintenance/stellardelight/deck3/starboardcent) +"Io" = (/obj/structure/cable/blue{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/turf/simulated/floor,/area/maintenance/stellardelight/deck3/starboardcent) +"Ir" = (/obj/structure/bed/chair/shuttle{dir = 1},/obj/machinery/light{dir = 4},/obj/effect/floor_decal/fancy_shuttle{fancy_shuttle_tag = "sdboat"},/turf/simulated/floor/tiled,/area/shuttle/sdboat/aft{base_turf = /turf/simulated/floor/reinforced/airless}) +"It" = (/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 5},/obj/structure/cable{icon_state = "2-4"},/turf/simulated/floor/tiled,/area/stellardelight/deck3/aft) +"Iu" = (/obj/machinery/holoplant,/turf/simulated/floor/bluegrid,/area/ai_server_room) +"Iz" = (/obj/effect/floor_decal/industrial/warning,/turf/simulated/floor/airless,/area/stellardelight/deck3/exterior) +"IC" = (/obj/machinery/computer/station_alert/all,/obj/machinery/status_display{pixel_y = 32},/turf/simulated/floor/tiled,/area/crew_quarters/heads/chief) +"ID" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/obj/effect/landmark/vines,/turf/simulated/open,/area/stellardelight/deck2/fore) +"IG" = (/obj/structure/cable/blue{icon_state = "4-8"},/obj/structure/cable/blue{icon_state = "1-8"},/obj/structure/cable/blue{icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/techfloor/grid,/area/ai_cyborg_station) +"IH" = (/obj/structure/lattice,/obj/structure/cable/green{icon_state = "1-4"},/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/turf/simulated/open,/area/stellardelight/deck2/port) +"II" = (/obj/structure/sign/nanotrasen{pixel_y = 30},/obj/machinery/camera/network/command,/obj/structure/flora/pottedplant/stoutbush,/turf/simulated/floor/tiled/monotile,/area/stellardelight/deck3/commandhall) +"IK" = (/obj/effect/floor_decal/industrial/warning{dir = 1},/obj/structure/cable/green{icon_state = "4-8"},/turf/simulated/floor/airless,/area/stellardelight/deck3/exterior) +"IN" = (/obj/structure/cable/green{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable/green{icon_state = "2-8"},/turf/simulated/floor,/area/maintenance/stellardelight/deck3/portaft) +"IO" = (/obj/structure/lattice,/obj/structure/cable/green{icon_state = "1-4"},/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/machinery/light/small,/turf/simulated/open,/area/stellardelight/deck2/port) +"IP" = (/obj/structure/table/steel,/obj/random/contraband,/turf/simulated/floor,/area/maintenance/stellardelight/deck3/portfore) +"IQ" = (/obj/machinery/porta_turret/ai_defense,/turf/simulated/floor/bluegrid,/area/ai) +"IR" = (/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 8},/obj/structure/cable{icon_state = "1-2"},/turf/simulated/floor/tiled,/area/stellardelight/deck3/portdock) +"IS" = (/obj/machinery/door/firedoor/glass,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/door/airlock/angled_bay/hatch{name = "Clown and Mime Office"; req_one_access = list(138,136); stripe_color = "#454545"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor,/area/stellardelight/deck3/clownmimeoffice) +"IU" = (/obj/machinery/hologram/holopad,/obj/structure/sign/warning/secure_area{pixel_y = 32},/turf/simulated/floor/bluegrid,/area/ai) +"IV" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/turf/simulated/open,/area/stellardelight/deck2/fore) +"IW" = (/obj/machinery/status_display{pixel_x = 32},/obj/structure/closet/emcloset,/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 4},/turf/simulated/floor/tiled,/area/stellardelight/deck3/aft) +"IY" = (/obj/machinery/airlock_sensor{dir = 8; id_tag = "portmaint_sensor"; pixel_x = 24; req_access = list(13)},/turf/simulated/floor/airless,/area/maintenance/stellardelight/deck3/portcent) +"IZ" = (/obj/structure/cable{icon_state = "1-2"},/turf/simulated/floor/tiled,/area/stellardelight/deck3/aft) +"Ja" = (/obj/machinery/door/airlock/angled_bay/external/glass{frequency = 1379; id_tag = "starmaint_interior"; locked = 1; name = "Exterior Airlock"},/obj/machinery/door/firedoor/glass,/obj/machinery/access_button{command = "cycle_interior"; frequency = 1379; master_tag = "starmaint_airlock"; name = "interior access button"; pixel_x = 32; req_access = null; req_one_access = list(13)},/obj/machinery/atmospherics/pipe/simple/hidden,/turf/simulated/floor/tiled/steel_ridged,/area/maintenance/stellardelight/deck3/starboardcent) +"Jc" = (/obj/structure/cable/green{icon_state = "1-2"},/obj/effect/landmark{name = "morphspawn"},/turf/simulated/floor/tiled/techfloor/grid,/area/maintenance/stellardelight/deck3/foreportroomb) +"Jd" = (/obj/structure/closet/lawcloset,/obj/structure/sign/poster{dir = 8},/obj/machinery/newscaster{pixel_y = 28},/turf/simulated/floor/tiled/dark,/area/lawoffice) +"Jg" = (/obj/machinery/light{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/turf/simulated/floor/bluegrid,/area/ai) +"Jh" = (/turf/space,/area/space) +"Ji" = (/obj/structure/cable/green{icon_state = "1-2"},/obj/structure/cable/green{icon_state = "0-2"},/obj/machinery/power/apc/angled{dir = 8; name = "night shift APC"; nightshift_setting = 2},/turf/simulated/floor,/area/maintenance/stellardelight/deck3/portfore) +"Jj" = (/obj/structure/sign/painting/library_secure{pixel_x = 30},/turf/simulated/floor/carpet/tealcarpet,/area/crew_quarters/heads/cmo) +"Jk" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/turf/simulated/floor/tiled,/area/stellardelight/deck3/transitgateway) +"Jm" = (/obj/structure/barricade/cutout/clown,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/turf/simulated/floor/wood,/area/stellardelight/deck3/clownmimeoffice) +"Jn" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/angled_bay/hatch{dir = 4; name = "maintenance access"; stripe_color = "#454545"},/obj/structure/cable/green{icon_state = "4-8"},/turf/simulated/floor/tiled/steel_ridged,/area/maintenance/stellardelight/deck3/foreportrooma) +"Jo" = (/obj/machinery/light{dir = 4},/obj/structure/bed/chair{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 4},/turf/simulated/floor/tiled,/area/stellardelight/deck3/starboarddock) +"Js" = (/obj/structure/table/darkglass,/obj/item/device/radio/intercom{dir = 1; name = "Station Intercom (General)"; pixel_y = 24},/obj/item/device/flashlight/lamp/green{pixel_x = 5; pixel_y = -5},/obj/item/weapon/paper_bin,/obj/item/weapon/pen/blade/red{pixel_x = -2; pixel_y = -2},/obj/item/weapon/pen,/obj/item/weapon/pen/blue{pixel_x = 2; pixel_y = 3},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/turf/simulated/floor/tiled/dark,/area/lawoffice) +"Ju" = (/obj/structure/cable/green{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor,/area/stellardelight/deck2/port) +"Jv" = (/obj/machinery/computer/aifixer,/obj/machinery/status_display{pixel_y = 32},/turf/simulated/floor/tiled/techfloor,/area/crew_quarters/heads/hor) +"Jx" = (/turf/simulated/wall/bay/r_wall/steel,/area/maintenance/stellardelight/deck3/forestarrooma) +"Jz" = (/obj/machinery/door/firedoor/glass,/obj/structure/cable/blue{icon_state = "1-2"},/obj/machinery/door/airlock/angled_bay/secure{name = "AI Core"; req_access = list(16)},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/steel_ridged,/area/ai) +"JA" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/angled_bay/external/glass{frequency = 1380; id_tag = null; locked = 1; name = "Docking Port Airlock"},/obj/effect/map_helper/airlock/door/ext_door,/obj/machinery/access_button{command = "cycle_exterior"; frequency = 1380; master_tag = "sd_escape_center_left"; pixel_x = -32; req_one_access = list(13)},/turf/simulated/floor/tiled/steel_ridged,/area/stellardelight/deck3/aft) +"JE" = (/obj/machinery/power/apc/angled{dir = 1},/obj/structure/cable/green{icon_state = "0-2"},/obj/structure/table/woodentable,/obj/item/weapon/reagent_containers/food/drinks/glass2/square{pixel_x = 8; pixel_y = 8},/obj/item/weapon/reagent_containers/food/drinks/glass2/square{pixel_x = 8; pixel_y = 8},/obj/item/weapon/reagent_containers/food/drinks/glass2/square{pixel_x = 8; pixel_y = 8},/obj/item/weapon/reagent_containers/glass/rag,/turf/simulated/floor/lino,/area/stellardelight/deck3/cafe) +"JJ" = (/obj/machinery/computer/aifixer,/turf/simulated/floor/tiled/techfloor/grid,/area/ai_cyborg_station) +"JK" = (/obj/structure/cable{icon_state = "1-2"},/turf/simulated/floor,/area/ai_cyborg_station) +"JO" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/techfloor/grid,/area/ai_cyborg_station) +"JP" = (/obj/machinery/door/firedoor/glass,/obj/structure/cable/blue{icon_state = "1-2"},/obj/machinery/door/airlock/angled_bay/secure{name = "AI Upload"; req_access = list(16)},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/steel_ridged,/area/ai_upload) +"JQ" = (/obj/structure/cable/blue{icon_state = "1-2"},/obj/machinery/turretid/stun{control_area = /area/ai_upload; name = "AI Upload turret control"; pixel_x = -32; pixel_y = 30},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/techfloor/grid,/area/ai_upload) +"JR" = (/obj/machinery/light{dir = 8},/obj/structure/bed/chair{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 8},/obj/structure/cable{icon_state = "2-4"},/turf/simulated/floor/tiled,/area/stellardelight/deck3/portdock) +"JS" = (/obj/machinery/embedded_controller/radio/docking_port_multi{child_names_txt = "Port;Center Left;Center Right;Starboard"; child_tags_txt = "sd_escape_port;sd_escape_center_left;sd_escape_center_right;sd_escape_starboard"; dir = 1; frequency = 1380; id_tag = "escape_dock"; pixel_y = -18; req_one_access = list(13)},/obj/effect/landmark/arrivals,/turf/simulated/floor/glass/reinforced,/area/stellardelight/deck3/aft) +"JU" = (/obj/structure/table/reinforced,/obj/item/weapon/rcd,/obj/item/weapon/rcd_ammo,/obj/item/weapon/rcd_ammo,/obj/item/weapon/rcd_ammo,/obj/item/weapon/rcd_ammo,/turf/simulated/floor/tiled,/area/crew_quarters/heads/chief) +"JW" = (/obj/random/trash_pile,/turf/simulated/floor,/area/maintenance/stellardelight/deck3/portaft) +"JY" = (/obj/structure/cable/green{icon_state = "4-8"},/obj/structure/bed/chair{dir = 8},/turf/simulated/floor/tiled/techfloor/grid,/area/maintenance/stellardelight/deck3/foreportroomb) +"JZ" = (/obj/effect/floor_decal/spline/plain,/obj/structure/table/bench/marble,/obj/machinery/light{dir = 8},/turf/simulated/floor/lino,/area/stellardelight/deck3/cafe) +"Kb" = (/obj/structure/bed/chair{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 8},/turf/simulated/floor/tiled,/area/stellardelight/deck3/starboarddock) +"Ke" = (/obj/machinery/atmospherics/pipe/simple/hidden/fuel{dir = 6},/turf/simulated/wall/fancy_shuttle{fancy_shuttle_tag = "sdboat"},/area/shuttle/sdboat/aft{base_turf = /turf/simulated/floor/reinforced/airless}) +"Kf" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals5,/obj/machinery/camera/network/halls{dir = 1},/obj/structure/cable{icon_state = "4-8"},/turf/simulated/floor/tiled,/area/stellardelight/deck3/aft) +"Kg" = (/obj/structure/cable/green{icon_state = "2-4"},/obj/structure/bed/chair/sofa/corp/left{dir = 4},/obj/structure/cable/green{icon_state = "1-2"},/obj/move_trader_landmark{dir = 4; trader_type = /obj/trader/general},/turf/simulated/floor,/area/maintenance/stellardelight/deck3/portfore) +"Ki" = (/obj/machinery/computer/ship/navigation/telescreen{pixel_x = 32},/obj/machinery/power/shield_generator/charged,/obj/structure/cable,/turf/simulated/floor,/area/stellardelight/deck2/central) +"Kj" = (/obj/machinery/computer/shuttle_control/explore/sdboat{dir = 4},/obj/machinery/light{dir = 8},/obj/machinery/power/apc{pixel_y = -28; req_access = null; req_one_access = list(11,67)},/obj/structure/cable/green{icon_state = "0-4"},/obj/effect/floor_decal/fancy_shuttle{fancy_shuttle_tag = "sdboat"},/turf/simulated/floor/tiled,/area/shuttle/sdboat/fore{base_turf = /turf/simulated/floor/reinforced/airless}) +"Kk" = (/obj/structure/table/steel,/obj/random/maintenance/clean,/turf/simulated/floor,/area/maintenance/stellardelight/deck3/aftstarroom) +"Ko" = (/obj/effect/landmark/tram,/obj/machinery/camera/network/halls{dir = 1},/turf/simulated/floor/glass/reinforced,/area/stellardelight/deck3/aft) +"Kq" = (/obj/structure/table/rack,/obj/random/maintenance,/obj/random/maintenance,/obj/random/maintenance/engineering,/turf/simulated/floor,/area/maintenance/stellardelight/deck3/starboardfore) +"Kr" = (/obj/structure/cable/green{icon_state = "1-2"},/turf/simulated/wall/bay/r_wall/steel,/area/maintenance/stellardelight/deck3/forestarrooma) +"Ks" = (/obj/structure/cable/blue{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/turf/simulated/floor,/area/stellardelight/deck2/starboard) +"Kt" = (/obj/machinery/atmospherics/pipe/simple/hidden/universal,/turf/simulated/floor,/area/maintenance/stellardelight/deck3/starboardaft) +"Kv" = (/obj/structure/bed/chair{dir = 4},/obj/structure/closet/emergsuit_wall{dir = 8; pixel_x = -27},/turf/simulated/floor/tiled,/area/stellardelight/deck3/starboarddock) +"Kw" = (/obj/machinery/light{dir = 4},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/turf/simulated/floor/tiled/eris/dark/gray_platform,/area/stellardelight/deck3/commandhall) +"Kx" = (/obj/structure/cable/blue{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/techfloor/grid,/area/ai_cyborg_station) +"Ky" = (/obj/structure/bed/chair{dir = 4},/obj/machinery/light,/turf/simulated/floor/glass/reinforced,/area/stellardelight/deck3/aft) +"Kz" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/closet/emcloset,/obj/random/contraband,/obj/random/maintenance/research,/obj/random/maintenance/research,/obj/random/maintenance/research,/obj/random/maintenance/research,/obj/random/maintenance/research,/obj/random/maintenance/research,/obj/random/maintenance/cargo,/obj/random/mre,/obj/random/mre,/turf/simulated/floor,/area/maintenance/stellardelight/deck3/starboardaft) +"KD" = (/obj/machinery/atmospherics/pipe/manifold/hidden{dir = 1},/obj/structure/cable/green{icon_state = "4-8"},/turf/simulated/floor,/area/maintenance/stellardelight/deck3/starboardaft) +"KF" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/turf/simulated/open,/area/stellardelight/deck2/fore) +"KG" = (/obj/structure/table/alien{name = "fancy table"},/obj/item/weapon/cartridge/signal/science,/obj/item/weapon/cartridge/signal/science,/obj/item/clothing/glasses/welding/superior,/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/turf/simulated/floor/tiled/techfloor,/area/crew_quarters/heads/hor) +"KH" = (/obj/structure/cable/blue{icon_state = "1-2"},/obj/machinery/camera/network/command{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/techfloor/grid,/area/ai) +"KI" = (/turf/simulated/floor/wood,/area/stellardelight/deck3/readingroom) +"KJ" = (/turf/simulated/floor,/area/maintenance/stellardelight/deck3/starboardaft) +"KL" = (/obj/machinery/power/apc/angled{dir = 8},/obj/structure/cable/green{icon_state = "0-4"},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 8},/obj/structure/cable{icon_state = "1-2"},/turf/simulated/floor/tiled,/area/stellardelight/deck3/portdock) +"KM" = (/obj/machinery/alarm/angled{dir = 4},/turf/simulated/floor/carpet/turcarpet,/area/ai) +"KQ" = (/obj/structure/cable/green{icon_state = "2-8"},/obj/structure/reagent_dispensers/fueltank,/turf/simulated/floor,/area/maintenance/stellardelight/deck3/portfore) +"KS" = (/obj/structure/cable/blue{icon_state = "4-8"},/obj/structure/cable/blue{icon_state = "1-4"},/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers,/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,/turf/simulated/floor/tiled/techfloor/grid,/area/ai_upload) +"KT" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 8},/obj/structure/cable{icon_state = "1-2"},/turf/simulated/floor/tiled,/area/stellardelight/deck3/portdock) +"KU" = (/obj/machinery/camera/network/command,/turf/simulated/floor/tiled/techfloor/grid,/area/ai_cyborg_station) +"KV" = (/obj/structure/table/steel,/obj/random/contraband,/turf/simulated/floor,/area/maintenance/stellardelight/deck3/forestarrooma) +"KW" = (/obj/machinery/door/firedoor/glass,/turf/simulated/floor,/area/maintenance/stellardelight/deck3/portfore) +"KY" = (/obj/structure/cable/blue{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/turf/simulated/floor/tiled/techfloor/grid,/area/ai) +"Lb" = (/obj/structure/cable{icon_state = "1-8"},/obj/structure/cable{icon_state = "1-2"},/turf/simulated/floor,/area/ai_cyborg_station) +"Ld" = (/obj/machinery/atmospherics/portables_connector{dir = 4},/obj/machinery/portable_atmospherics/canister/air/airlock,/turf/simulated/floor,/area/maintenance/stellardelight/deck3/starboardaft) +"Le" = (/obj/machinery/atmospherics/unary/vent_scrubber/on,/obj/structure/flora/pottedplant/minitree,/obj/structure/cable{icon_state = "1-2"},/turf/simulated/floor/tiled,/area/stellardelight/deck3/aft) +"Lf" = (/obj/structure/sign/warning/falling{pixel_x = -32},/turf/simulated/open,/area/stellardelight/deck2/starboard) +"Lh" = (/obj/machinery/hologram/holopad,/obj/structure/cable/blue{icon_state = "4-8"},/obj/structure/cable/blue{icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/camera/network/telecom{dir = 1},/turf/simulated/floor/tiled/techfloor/grid,/area/tcommsat/computer) +"Li" = (/obj/move_trader_landmark{dir = 8; trader_type = /obj/trader/general},/turf/simulated/floor,/area/maintenance/stellardelight/deck3/starboardaft) +"Lm" = (/obj/random/paicard,/obj/structure/table/glass,/obj/machinery/camera/network/civilian{dir = 8},/obj/random/coin/sometimes,/turf/simulated/floor/wood,/area/stellardelight/deck3/readingroom) +"Ln" = (/obj/structure/cable{icon_state = "1-2"},/turf/simulated/floor,/area/maintenance/stellardelight/deck3/starboardfore) +"Lo" = (/obj/effect/mouse_hole_spawner{dir = 4},/turf/simulated/floor,/area/maintenance/stellardelight/deck3/portaft) +"Lr" = (/obj/effect/shuttle_landmark/premade/sd/deck3/starboardairlock,/turf/space,/area/space) +"Lv" = (/obj/structure/bed/chair{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/carpet/blue2,/area/lawoffice) +"Lw" = (/obj/effect/floor_decal/spline/plain,/obj/structure/table/bench/marble,/turf/simulated/floor/lino,/area/stellardelight/deck3/cafe) +"Lx" = (/obj/effect/landmark{name = "JoinLateCyborg"},/obj/machinery/camera/network/command{dir = 10},/obj/effect/landmark/start/cyborg,/turf/simulated/floor/tiled/techfloor/grid,/area/ai_cyborg_station) +"Ly" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden{dir = 5},/turf/simulated/floor,/area/maintenance/stellardelight/deck3/starboardaft) +"Lz" = (/obj/machinery/newscaster{pixel_x = 30},/turf/simulated/floor/tiled/eris/dark/gray_platform,/area/stellardelight/deck3/commandhall) +"LC" = (/obj/machinery/holoplant,/obj/structure/sign/warning/secure_area{pixel_y = 32},/obj/machinery/camera/network/command{dir = 9},/turf/simulated/floor/bluegrid,/area/ai_upload) +"LD" = (/obj/structure/cable/green{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/structure/cable/green{icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/hidden{dir = 5},/turf/simulated/floor,/area/maintenance/stellardelight/deck3/portaft) +"LI" = (/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/obj/effect/floor_decal/shuttles,/turf/simulated/floor/tiled,/area/stellardelight/deck3/starboarddock) +"LJ" = (/obj/structure/cable/green{icon_state = "1-8"},/turf/simulated/floor,/area/maintenance/stellardelight/deck3/foreportrooma) +"LK" = (/obj/structure/table/bench/padded,/obj/structure/sign/painting/public{pixel_y = -30},/obj/machinery/alarm/angled{dir = 4},/turf/simulated/floor/wood,/area/stellardelight/deck3/cafe) +"LO" = (/obj/structure/cable/green{icon_state = "1-2"},/obj/effect/floor_decal/fancy_shuttle{fancy_shuttle_tag = "sdboat"},/turf/simulated/floor/tiled,/area/shuttle/sdboat/aft{base_turf = /turf/simulated/floor/reinforced/airless}) +"LP" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4},/obj/structure/cable/green{icon_state = "4-8"},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals_central5{dir = 4},/turf/simulated/floor/tiled,/area/stellardelight/deck3/aft) +"LQ" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/obj/structure/closet/emergsuit_wall{dir = 4; pixel_x = 27},/obj/effect/landmark/vines,/turf/simulated/floor/tiled,/area/stellardelight/deck3/starboarddock) +"LR" = (/obj/machinery/atmospherics/unary/vent_pump/high_volume{dir = 8; frequency = 1379; id_tag = "starmaint_airpump"},/turf/simulated/floor/airless,/area/maintenance/stellardelight/deck3/starboardcent) +"LS" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/angled_bay/hatch{name = "maintenance access"; stripe_color = "#454545"},/turf/simulated/floor/tiled/steel_ridged,/area/holodeck_control) +"LT" = (/obj/machinery/door/firedoor/glass,/obj/structure/cable/green{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/door/airlock/angled_bay/hatch{dir = 4; name = "maintenance access"; stripe_color = "#454545"},/turf/simulated/floor/tiled/steel_ridged,/area/maintenance/stellardelight/deck3/portaft) +"LV" = (/obj/structure/table/steel,/obj/machinery/chemical_dispenser/bar_soft/full,/turf/simulated/floor,/area/maintenance/stellardelight/deck3/forestarrooma) +"LW" = (/obj/structure/cable/green{icon_state = "4-8"},/obj/structure/cable/green{icon_state = "1-8"},/turf/simulated/floor/airless,/area/stellardelight/deck3/exterior) +"LY" = (/obj/structure/cable/green{icon_state = "1-2"},/turf/simulated/floor,/area/maintenance/stellardelight/deck3/starboardaft) +"Mc" = (/obj/structure/cable/green{icon_state = "4-8"},/obj/structure/ladder,/turf/simulated/floor,/area/maintenance/stellardelight/deck3/forestarrooma) +"Mg" = (/obj/item/device/camera,/obj/item/device/camera_film,/obj/item/device/taperecorder,/obj/item/device/tape/random,/obj/item/device/tape/random,/obj/item/weapon/storage/secure/briefcase,/obj/structure/closet/walllocker_double/west,/turf/simulated/floor/carpet/blue2,/area/lawoffice) +"Mi" = (/obj/effect/floor_decal/corner_techfloor_grid{dir = 5},/obj/effect/floor_decal/corner_techfloor_grid{dir = 10},/obj/machinery/power/apc/angled{dir = 4},/obj/structure/cable/green{icon_state = "0-8"},/turf/simulated/floor/tiled/techfloor,/area/stellardelight/deck3/cryo) +"Mk" = (/obj/structure/lattice,/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/turf/simulated/open,/area/stellardelight/deck2/port) +"Ml" = (/obj/structure/table/darkglass,/obj/item/weapon/stamp/denied{pixel_x = -6; pixel_y = 6},/obj/item/weapon/stamp/internalaffairs,/turf/simulated/floor/carpet/blue2,/area/lawoffice) +"Mo" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/unary/vent_pump/high_volume{dir = 4; frequency = 1380; id_tag = null},/obj/effect/map_helper/airlock/atmos/chamber_pump,/obj/effect/map_helper/airlock/sensor/chamber_sensor,/obj/machinery/airlock_sensor{frequency = 1380; id_tag = null; pixel_y = -25},/obj/machinery/embedded_controller/radio/airlock/docking_port{frequency = 1380; id_tag = "sd_port_landing"; pixel_y = 29},/turf/simulated/floor/tiled,/area/stellardelight/deck3/portdock) +"Mp" = (/obj/machinery/power/breakerbox/activated{RCon_tag = "AI/Telecomms Substation Bypass"},/turf/simulated/floor,/area/ai_cyborg_station) +"Mr" = (/obj/structure/bed/double/padded,/obj/item/weapon/bedsheet/clowndouble,/obj/structure/curtain/black{color = "#361447"},/turf/simulated/floor/carpet/gaycarpet,/area/stellardelight/deck3/clownmimeoffice) +"Ms" = (/obj/structure/table/reinforced,/obj/item/weapon/stamp/hop,/obj/item/weapon/paper_bin{pixel_x = -3; pixel_y = 7},/obj/item/weapon/pen/multi,/obj/item/device/flashlight/lamp/green{pixel_x = 3; pixel_y = 18},/obj/item/weapon/book/manual/sd_guide,/turf/simulated/floor/carpet,/area/crew_quarters/heads/hop) +"Mu" = (/obj/structure/cable{icon_state = "0-2"},/obj/machinery/power/apc/angled{dir = 4; name = "night shift APC"; nightshift_setting = 2},/obj/structure/table/steel,/obj/random/maintenance/medical,/obj/random/maintenance/medical,/obj/random/maintenance/security,/obj/random/maintenance/clean,/obj/random/maintenance,/turf/simulated/floor,/area/maintenance/stellardelight/deck3/starboardfore) +"Mv" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/obj/effect/landmark/vines,/turf/simulated/open,/area/stellardelight/deck2/fore) +"Mw" = (/obj/machinery/atmospherics/pipe/manifold/hidden{dir = 1},/turf/simulated/floor/airless,/area/maintenance/stellardelight/deck3/starboardcent) +"Mx" = (/obj/effect/floor_decal/steeldecal/steel_decals5,/obj/structure/cable{icon_state = "4-8"},/turf/simulated/floor/tiled,/area/stellardelight/deck3/aft) +"My" = (/obj/structure/cable/green{icon_state = "1-2"},/turf/simulated/floor,/area/maintenance/stellardelight/deck3/portcent) +"MA" = (/obj/structure/cable{icon_state = "2-4"},/turf/simulated/wall/bay/r_wall/blue,/area/maintenance/stellardelight/deck3/portaft) +"MB" = (/obj/machinery/atmospherics/pipe/simple/hidden{dir = 10},/obj/random/trash_pile,/turf/simulated/floor,/area/maintenance/stellardelight/deck3/starboardaft) +"MC" = (/obj/structure/cable/green{icon_state = "4-8"},/obj/effect/floor_decal/emblem/nt3,/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4},/turf/simulated/floor/tiled,/area/stellardelight/deck3/aft) +"ME" = (/obj/structure/sign/poster{dir = 1},/obj/random/vendordrink,/turf/simulated/floor/tiled,/area/stellardelight/deck3/aft) +"MF" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/turf/simulated/floor,/area/stellardelight/deck2/central) +"MG" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/turf/simulated/floor/carpet/purcarpet,/area/crew_quarters/heads/hor) +"MH" = (/obj/structure/table/steel,/obj/random/maintenance/clean,/obj/random/snack,/turf/simulated/floor,/area/maintenance/stellardelight/deck3/aftstarroom) +"MI" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/turf/simulated/floor/tiled,/area/crew_quarters/heads/hop) +"MJ" = (/obj/machinery/pointdefense_control{id_tag = "sd_pd"},/turf/simulated/floor/bluegrid,/area/ai_server_room) +"MK" = (/obj/machinery/light/small{dir = 8},/turf/simulated/floor/carpet/turcarpet,/area/ai) +"MN" = (/obj/structure/closet/secure_closet/hos2,/obj/item/clothing/accessory/permit/gun,/obj/item/clothing/accessory/permit/gun,/obj/item/clothing/accessory/permit/gun,/obj/item/clothing/accessory/permit/gun,/obj/item/clothing/accessory/permit/gun,/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/obj/item/device/retail_scanner/security,/obj/item/device/ticket_printer,/turf/simulated/floor/tiled/dark,/area/crew_quarters/heads/hos) +"MO" = (/obj/structure/cable/blue{icon_state = "4-8"},/turf/simulated/floor/bluegrid{name = "Mainframe Base"; nitrogen = 100; oxygen = 0; temperature = 80},/area/tcommsat/chamber) +"MP" = (/obj/structure/cable/green{icon_state = "4-8"},/obj/structure/cable/green{icon_state = "1-8"},/turf/simulated/floor,/area/maintenance/stellardelight/deck3/foreportrooma) +"MR" = (/obj/structure/cable/green{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor,/area/maintenance/stellardelight/deck3/portcent) +"MU" = (/obj/structure/cable/green{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4},/obj/effect/floor_decal/arrivals,/obj/structure/cable{icon_state = "1-2"},/turf/simulated/floor/tiled,/area/stellardelight/deck3/aft) +"MV" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/techfloor/grid,/area/ai) +"MW" = (/obj/machinery/atmospherics/pipe/simple/hidden{dir = 9},/obj/structure/cable/green{icon_state = "2-8"},/obj/structure/cable/green{icon_state = "1-2"},/turf/simulated/floor,/area/maintenance/stellardelight/deck3/starboardaft) +"MX" = (/obj/structure/cable{icon_state = "4-8"},/obj/effect/floor_decal/fancy_shuttle{fancy_shuttle_tag = "sdboat"},/obj/machinery/atmospherics/pipe/simple/hidden/fuel{dir = 4},/turf/simulated/floor/tiled,/area/shuttle/sdboat/aft{base_turf = /turf/simulated/floor/reinforced/airless}) +"MZ" = (/obj/machinery/alarm/angled{dir = 8},/turf/simulated/floor,/area/maintenance/stellardelight/deck3/foreportroomb) +"Nc" = (/obj/effect/floor_decal/corner_techfloor_grid{dir = 5},/obj/effect/floor_decal/corner_techfloor_grid{dir = 10},/obj/structure/cable/green{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/techfloor,/area/stellardelight/deck3/cryo) +"Nd" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/obj/effect/landmark/vines,/turf/simulated/open,/area/stellardelight/deck2/port) +"Ne" = (/obj/structure/cable{icon_state = "1-8"},/obj/structure/cable{icon_state = "1-4"},/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/turf/simulated/floor,/area/maintenance/stellardelight/deck3/starboardaft) +"Nf" = (/obj/machinery/light{dir = 4},/turf/simulated/floor/tiled/monotile,/area/stellardelight/deck3/commandhall) +"Nh" = (/obj/structure/cable/blue{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor,/area/stellardelight/deck2/starboard) +"Ni" = (/obj/structure/bed/chair{dir = 4},/obj/machinery/light{dir = 8},/turf/simulated/floor/tiled,/area/stellardelight/deck3/starboarddock) +"Nj" = (/obj/structure/cable/blue{icon_state = "1-2"},/turf/simulated/floor,/area/maintenance/stellardelight/deck3/forestarrooma) +"Nk" = (/obj/structure/bed/chair{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 8},/obj/structure/sign/nanotrasen{pixel_x = -32},/obj/structure/cable{icon_state = "1-2"},/turf/simulated/floor/tiled,/area/stellardelight/deck3/portdock) +"Nm" = (/obj/machinery/light_switch{dir = 8; pixel_x = 24},/turf/simulated/floor/tiled/techfloor/grid,/area/ai_server_room) +"Nq" = (/obj/structure/bed/chair{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 4},/turf/simulated/floor/tiled,/area/stellardelight/deck3/portdock) +"Ns" = (/turf/simulated/floor,/area/maintenance/stellardelight/deck3/portfore) +"Nx" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/structure/cable/green{icon_state = "1-2"},/obj/machinery/camera/network/halls{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals5,/turf/simulated/floor/tiled,/area/stellardelight/deck3/starboarddock) +"Ny" = (/obj/structure/cable/green{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/manifold/hidden{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals_central5{dir = 8},/turf/simulated/floor/tiled,/area/stellardelight/deck3/starboarddock) +"Nz" = (/obj/structure/table/rack,/obj/random/contraband,/obj/random/maintenance,/obj/random/maintenance,/obj/random/maintenance,/turf/simulated/floor,/area/maintenance/stellardelight/deck3/forestarrooma) +"NE" = (/obj/structure/table/rack,/obj/random/contraband,/obj/random/maintenance,/obj/random/maintenance,/obj/random/maintenance,/obj/random/maintenance,/turf/simulated/floor,/area/maintenance/stellardelight/deck3/portaft) +"NF" = (/obj/structure/lattice,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/open,/area/crew_quarters/bar) +"NG" = (/obj/machinery/light/small{dir = 4},/turf/simulated/floor,/area/maintenance/stellardelight/deck3/foreportroomb) +"NI" = (/obj/structure/lattice,/obj/structure/cable/green{icon_state = "2-8"},/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/turf/simulated/open,/area/stellardelight/deck2/port) +"NJ" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/angled_bay/standard/color{dir = 4; door_color = "#9c9c9c"; fill_color = "#5c5c5c"; id_tag = "readingroom2"; name = "Room 2"; stripe_color = "#89bd66"},/turf/simulated/floor/tiled/steel_ridged,/area/stellardelight/deck3/readingroom) +"NK" = (/obj/structure/sign/vacuum,/turf/simulated/wall/bay/r_wall/steel,/area/maintenance/stellardelight/deck3/portcent) +"NL" = (/turf/simulated/floor/airless,/area/stellardelight/deck3/exterior) +"NN" = (/obj/machinery/door/firedoor/glass,/obj/structure/cable/green{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/door/airlock/angled_bay/hatch{dir = 4; name = "maintenance access"; stripe_color = "#454545"},/turf/simulated/floor/tiled/steel_ridged,/area/stellardelight/deck3/aft) +"NO" = (/obj/structure/table/reinforced,/obj/item/device/flashlight/lamp,/obj/item/device/radio/intercom{dir = 1; frequency = 1357; name = "station intercom (Engineering)"; pixel_y = 24},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/obj/item/clothing/glasses/welding/superior,/obj/item/clothing/glasses/meson,/turf/simulated/floor/tiled,/area/crew_quarters/heads/chief) +"NP" = (/obj/machinery/camera/network/command{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/techfloor/grid,/area/ai) +"NQ" = (/obj/machinery/door/firedoor/glass,/obj/machinery/access_button{command = "cycle_exterior"; frequency = 1379; master_tag = "portmaint_airlock"; name = "exterior access button"; pixel_y = 32; req_access = null; req_one_access = list(13)},/obj/machinery/door/airlock/angled_bay/external/glass{dir = 4; frequency = 1379; id_tag = "portmaint_exterior"; locked = 1; name = "Exterior Airlock"},/turf/simulated/floor/tiled/steel_ridged,/area/maintenance/stellardelight/deck3/portcent) +"NR" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/angled_bay/double{name = "maintenance access"; stripe_color = "#454545"},/turf/simulated/floor,/area/maintenance/stellardelight/deck3/portaft) +"NS" = (/obj/machinery/atmospherics/unary/engine/fancy_shuttle{dir = 1},/turf/simulated/wall/fancy_shuttle{fancy_shuttle_tag = "sdboat"},/area/shuttle/sdboat/aft{base_turf = /turf/simulated/floor/reinforced/airless}) +"NT" = (/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals_central5{dir = 8},/turf/simulated/floor/tiled,/area/holodeck_control) +"NU" = (/obj/machinery/alarm/angled{dir = 4},/turf/simulated/floor,/area/maintenance/stellardelight/deck3/aftstarroom) +"NW" = (/obj/structure/bed/chair/office/light{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/turf/simulated/floor/tiled/techfloor/grid,/area/ai_cyborg_station) +"NX" = (/obj/machinery/door/firedoor/glass,/obj/machinery/access_button{command = "cycle_interior"; dir = 8; frequency = 1380; master_tag = "sd_starboard_landing"; pixel_y = 32; req_one_access = list(13)},/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4},/obj/machinery/door/airlock/angled_bay/external/glass{dir = 4; frequency = 1380; id_tag = null; locked = 1; name = "Docking Port Airlock"},/obj/effect/map_helper/airlock/door/int_door,/turf/simulated/floor/tiled/steel_ridged,/area/stellardelight/deck3/starboarddock) +"NZ" = (/obj/item/weapon/bedsheet/mimedouble,/obj/structure/bed/double/padded,/obj/structure/curtain/black,/turf/simulated/floor/carpet/bcarpet,/area/stellardelight/deck3/clownmimeoffice) +"Oa" = (/obj/machinery/door/firedoor/glass,/obj/structure/sign/poster{dir = 8},/turf/simulated/floor,/area/stellardelight/deck2/fore) +"Ob" = (/obj/effect/floor_decal/techfloor/orange{dir = 10},/obj/machinery/light{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/techfloor,/area/stellardelight/deck3/transitgateway) +"Oc" = (/obj/structure/sign/warning/docking_area{pixel_x = 32},/turf/simulated/floor/reinforced/airless,/area/stellardelight/deck3/exterior) +"Od" = (/turf/simulated/floor/airless,/area/maintenance/stellardelight/deck3/portcent) +"Oe" = (/obj/machinery/holoplant,/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/turf/simulated/floor/tiled/techfloor/grid,/area/tcommsat/computer) +"Of" = (/obj/machinery/status_display{pixel_x = -32},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 8},/turf/simulated/floor/tiled,/area/stellardelight/deck3/aft) +"Og" = (/obj/machinery/recharge_station,/obj/structure/closet/emergsuit_wall{pixel_y = 29},/turf/simulated/floor/tiled,/area/stellardelight/deck3/portdock) +"Oj" = (/obj/machinery/telecomms/bus/preset_one,/turf/simulated/floor/tiled/dark{nitrogen = 100; oxygen = 0; temperature = 80},/area/tcommsat/chamber) +"Ol" = (/turf/simulated/wall/durasteel,/area/ai) +"Oo" = (/obj/machinery/alarm/angled{dir = 8},/turf/simulated/floor,/area/maintenance/stellardelight/deck3/foreportrooma) +"Op" = (/obj/machinery/power/pointdefense{id_tag = "sd_pd"},/obj/effect/floor_decal/industrial/warning/full,/obj/structure/cable/green{icon_state = "0-8"},/turf/simulated/floor/airless,/area/stellardelight/deck3/exterior) +"Oq" = (/obj/structure/bed/chair{dir = 4},/turf/simulated/floor/glass/reinforced,/area/stellardelight/deck3/aft) +"Or" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden{dir = 1},/obj/structure/cable/green{icon_state = "1-2"},/obj/machinery/hologram/holopad,/turf/simulated/floor/tiled,/area/stellardelight/deck3/portdock) +"Ot" = (/obj/structure/bed/chair/office/dark{dir = 8},/obj/effect/landmark/start/rd,/turf/simulated/floor/carpet/purcarpet,/area/crew_quarters/heads/hor) +"Ou" = (/obj/item/device/radio/beacon,/obj/effect/floor_decal/steeldecal/steel_decals5,/obj/structure/cable{icon_state = "4-8"},/turf/simulated/floor/tiled,/area/stellardelight/deck3/aft) +"Ov" = (/obj/machinery/light,/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/turf/simulated/floor/tiled/techfloor/grid,/area/ai_server_room) +"Ow" = (/obj/machinery/door/firedoor/glass,/obj/structure/cable/blue{icon_state = "4-8"},/obj/machinery/door/airlock/angled_bay/secure{dir = 4; name = "Telecoms Access"; req_one_access = list(16,17,61)},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/steel_ridged,/area/ai_server_room) +"Ox" = (/obj/structure/cable/blue{icon_state = "1-2"},/obj/structure/cable/blue{icon_state = "2-8"},/turf/simulated/floor/airless,/area/stellardelight/deck3/exterior) +"Oy" = (/obj/machinery/light{dir = 1},/obj/machinery/door/window{req_one_access = list(25)},/turf/simulated/floor/lino,/area/stellardelight/deck3/cafe) +"Oz" = (/obj/machinery/door/firedoor/glass,/obj/structure/window/bay/reinforced,/obj/structure/low_wall/bay/reinforced/steel,/turf/simulated/floor,/area/stellardelight/deck3/cafe) +"OA" = (/obj/structure/cable{icon_state = "1-2"},/turf/simulated/wall/bay/r_wall/blue,/area/ai_cyborg_station) +"OC" = (/obj/machinery/atmospherics/pipe/simple/hidden,/obj/machinery/door/airlock/angled_bay/hatch{frequency = null; id_tag = null; locked = 1; name = "Telecoms Server Access"; req_access = list(61); stripe_color = "#ffd863"},/obj/machinery/door/firedoor/glass,/obj/structure/cable/blue{icon_state = "1-2"},/obj/machinery/access_button{command = "cycle_interior"; frequency = 1380; master_tag = "tcommsairlock"; pixel_x = 32; req_one_access = list(61)},/obj/effect/map_helper/airlock/door/int_door,/turf/simulated/floor/tiled/steel_ridged,/area/tcommsat/computer) +"OD" = (/obj/structure/table/rack/steel,/obj/machinery/door/window/brigdoor/eastleft{dir = 1; name = "Protosuit Storage"; req_access = list(58)},/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 8},/obj/item/clothing/mask/breath,/obj/item/weapon/tank/oxygen,/obj/item/device/suit_cooling_unit,/obj/item/clothing/shoes/magboots,/obj/item/clothing/suit/space/void/security/prototype,/obj/item/clothing/head/helmet/space/void/security/prototype,/obj/structure/window/reinforced,/turf/simulated/floor/tiled/dark,/area/crew_quarters/heads/hos) +"OE" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/turf/simulated/open,/area/stellardelight/deck2/starboard) +"OF" = (/obj/effect/landmark{name = "morphspawn"},/turf/simulated/floor,/area/maintenance/stellardelight/deck3/foreportrooma) +"OG" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/obj/effect/mouse_hole_spawner{dir = 8},/turf/simulated/floor,/area/maintenance/stellardelight/deck3/starboardcent) +"OI" = (/obj/structure/cable/blue{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/obj/structure/cable/blue{icon_state = "1-4"},/turf/simulated/floor,/area/stellardelight/deck2/starboard) +"OJ" = (/obj/structure/cable/blue{icon_state = "1-4"},/turf/simulated/floor/airless,/area/stellardelight/deck3/exterior) +"OK" = (/obj/structure/closet/lawcloset,/obj/structure/sign/poster{dir = 4},/obj/machinery/newscaster{pixel_y = 28},/turf/simulated/floor/tiled/dark,/area/lawoffice) +"OM" = (/obj/structure/cable/blue{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/table/rack/shelf,/obj/random/contraband,/obj/random/maintenance,/obj/random/maintenance/medical,/obj/random/maintenance/medical,/obj/random/maintenance/engineering,/obj/random/maintenance/security,/obj/random/maintenance/security,/obj/random/snack,/turf/simulated/floor,/area/maintenance/stellardelight/deck3/starboardcent) +"ON" = (/obj/structure/cable/blue{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden,/turf/simulated/floor/airless,/area/maintenance/stellardelight/deck3/starboardcent) +"OP" = (/obj/structure/lattice,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/turf/simulated/open,/area/crew_quarters/bar) +"OQ" = (/obj/structure/lattice,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable/green{icon_state = "1-2"},/turf/simulated/open,/area/crew_quarters/bar) +"OR" = (/obj/machinery/power/apc/angled{dir = 4; name = "night shift APC"; nightshift_setting = 2},/obj/structure/cable/blue{icon_state = "0-8"},/obj/structure/table/rack,/obj/random/maintenance,/obj/random/maintenance/engineering,/obj/random/maintenance/engineering,/turf/simulated/floor/tiled/techfloor/grid,/area/maintenance/stellardelight/deck3/forestarroomb) +"OS" = (/obj/machinery/computer/drone_control{dir = 4},/turf/simulated/floor/tiled/techfloor/grid,/area/ai_cyborg_station) +"OU" = (/turf/simulated/wall/bay/r_wall/steel,/area/stellardelight/deck3/cryo) +"OX" = (/turf/simulated/floor,/area/maintenance/stellardelight/deck3/portcent) +"OY" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/obj/effect/landmark/vines,/turf/simulated/open,/area/stellardelight/deck2/starboard) +"Pa" = (/obj/structure/lattice,/turf/simulated/open,/area/stellardelight/deck2/starboard) +"Pc" = (/obj/structure/cable/green{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4},/obj/machinery/hologram/holopad,/turf/simulated/floor/tiled,/area/stellardelight/deck3/aft) +"Pd" = (/obj/machinery/door/firedoor/glass,/obj/structure/cable/blue{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/door/airlock/angled_bay/hatch{dir = 4; name = "maintenance access"; stripe_color = "#454545"},/turf/simulated/floor/tiled/steel_ridged,/area/maintenance/stellardelight/deck3/starboardcent) +"Pe" = (/obj/machinery/keycard_auth{pixel_y = 28},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/machinery/alarm/angled{dir = 8},/turf/simulated/floor/tiled/dark,/area/crew_quarters/heads/hos) +"Pj" = (/obj/structure/cable/blue{icon_state = "1-2"},/obj/machinery/hologram/holopad,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/techfloor/grid,/area/ai_upload) +"Pl" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/glass{name = "Starstuff Cockpit"; req_one_access = list(67)},/obj/effect/floor_decal/fancy_shuttle{fancy_shuttle_tag = "sdboat"},/obj/structure/cable/green{icon_state = "1-2"},/turf/simulated/floor/tiled,/area/shuttle/sdboat/fore{base_turf = /turf/simulated/floor/reinforced/airless}) +"Pm" = (/obj/structure/cable/green{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor,/area/stellardelight/deck2/port) +"Po" = (/obj/structure/sign/nanotrasen{pixel_y = 30},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/turf/simulated/floor/tiled/dark,/area/lawoffice) +"Pp" = (/obj/effect/landmark/start/clown,/turf/simulated/floor/carpet/gaycarpet,/area/stellardelight/deck3/clownmimeoffice) +"Pq" = (/obj/structure/bed/chair{dir = 8},/turf/simulated/floor/tiled/techfloor/grid,/area/maintenance/stellardelight/deck3/foreportrooma) +"Ps" = (/obj/machinery/space_heater,/turf/simulated/floor,/area/maintenance/stellardelight/deck3/forestarroomb) +"Px" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/machinery/computer/cryopod/gateway{pixel_x = 32},/turf/simulated/floor/tiled,/area/stellardelight/deck3/transitgateway) +"PA" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals5,/obj/machinery/camera/network/halls{dir = 1},/obj/structure/cable{icon_state = "4-8"},/turf/simulated/floor/tiled,/area/stellardelight/deck3/aft) +"PB" = (/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4},/turf/simulated/wall/fancy_shuttle{fancy_shuttle_tag = "sdboat"},/area/shuttle/sdboat/aft{base_turf = /turf/simulated/floor/reinforced/airless}) +"PC" = (/obj/machinery/alarm/angled{dir = 4},/obj/structure/cable/blue{icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/dark,/area/lawoffice) +"PD" = (/obj/structure/cable/green{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden{dir = 1},/turf/simulated/floor/tiled,/area/stellardelight/deck3/portdock) +"PE" = (/obj/structure/sign/department/ai{pixel_y = 32},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 1},/turf/simulated/floor/tiled,/area/stellardelight/deck3/aft) +"PJ" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/window/northleft{dir = 8; icon_state = "right"; name = "Reception Window"},/obj/machinery/door/window/brigdoor/eastright{name = "Head of Personnel's Desk"; req_access = list(57)},/obj/structure/cable/green{icon_state = "1-8"},/obj/machinery/door/blast/shutters{dir = 8; id = "hop_office_desk"; layer = 3.1; name = "HoP's Shutters"},/obj/structure/table/reinforced,/turf/simulated/floor/tiled,/area/crew_quarters/heads/hop) +"PL" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/turf/simulated/floor/tiled/monotile,/area/stellardelight/deck3/commandhall) +"PR" = (/obj/structure/table/glass,/obj/item/device/flashlight/lamp/green{pixel_x = -4; pixel_y = 12},/obj/item/weapon/stamp/cmo,/obj/item/weapon/book/manual/sd_guide,/turf/simulated/floor/carpet/tealcarpet,/area/crew_quarters/heads/cmo) +"PT" = (/obj/effect/floor_decal/industrial/warning{dir = 8},/turf/simulated/floor/airless,/area/stellardelight/deck3/exterior) +"PV" = (/obj/structure/cable/green{icon_state = "2-8"},/turf/simulated/floor,/area/maintenance/stellardelight/deck3/foreportrooma) +"PW" = (/obj/effect/landmark{name = "JoinLateCyborg"},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/obj/effect/landmark/start/cyborg,/turf/simulated/floor/tiled/techfloor/grid,/area/ai_cyborg_station) +"PX" = (/obj/structure/closet/emcloset,/obj/structure/sign/painting/public{pixel_x = 30},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 4},/turf/simulated/floor/tiled,/area/stellardelight/deck3/aft) +"Qe" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/hidden{dir = 4},/obj/effect/overmap/visitable/ship/landable/sd_boat,/obj/effect/shuttle_landmark/shuttle_initializer/sdboat,/obj/effect/floor_decal/fancy_shuttle{fancy_shuttle_tag = "sdboat"},/obj/machinery/atmospherics/pipe/simple/hidden/fuel{dir = 4},/turf/simulated/floor/tiled,/area/shuttle/sdboat/aft{base_turf = /turf/simulated/floor/reinforced/airless}) +"Qf" = (/obj/structure/bed/chair/office/dark{dir = 4},/obj/effect/landmark/start/ce,/turf/simulated/floor/carpet/oracarpet,/area/crew_quarters/heads/chief) +"Qh" = (/obj/machinery/atmospherics/pipe/simple/hidden/fuel{dir = 5},/turf/simulated/wall/fancy_shuttle{fancy_shuttle_tag = "sdboat"},/area/shuttle/sdboat/aft{base_turf = /turf/simulated/floor/reinforced/airless}) +"Qi" = (/obj/structure/sign/painting/public{pixel_x = -30},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/wood,/area/stellardelight/deck3/cafe) +"Qm" = (/obj/structure/cable/blue{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/techfloor/grid,/area/ai_server_room) +"Qn" = (/obj/structure/window/reinforced{dir = 8; pixel_x = -4},/turf/simulated/open,/area/stellardelight/deck3/aft) +"Qo" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/light_switch{pixel_y = 25},/turf/simulated/floor/tiled,/area/crew_quarters/heads/hop) +"Qp" = (/turf/simulated/wall/bay/r_wall/steel,/area/crew_quarters/bar) +"Qs" = (/obj/structure/cable/cyan{icon_state = "1-2"},/obj/machinery/light{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/turf/simulated/floor/bluegrid,/area/ai) +"Qu" = (/obj/structure/sink/kitchen{pixel_y = 22},/obj/machinery/light{dir = 4},/obj/machinery/alarm/angled{dir = 4},/turf/simulated/floor/tiled/monotile,/area/holodeck_control) +"Qv" = (/obj/structure/table/rack,/obj/random/contraband,/obj/random/maintenance,/obj/random/maintenance,/obj/random/maintenance/cargo,/obj/random/maintenance/clean,/turf/simulated/floor,/area/maintenance/stellardelight/deck3/aftstarroom) +"Qx" = (/obj/machinery/door/firedoor/glass/hidden/steel{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals5,/obj/structure/cable{icon_state = "4-8"},/turf/simulated/floor/tiled,/area/stellardelight/deck3/aft) +"QB" = (/obj/structure/railing/grey{dir = 8},/turf/simulated/open,/area/stellardelight/deck3/commandhall) +"QC" = (/obj/machinery/camera/network/telecom,/turf/simulated/floor/bluegrid{name = "Mainframe Base"; nitrogen = 100; oxygen = 0; temperature = 80},/area/tcommsat/chamber) +"QE" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/turf/simulated/floor/tiled/monotile,/area/stellardelight/deck3/commandhall) +"QF" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/turf/simulated/open,/area/stellardelight/deck2/port) +"QG" = (/obj/structure/cable/blue{icon_state = "1-2"},/turf/simulated/floor/tiled/techfloor/grid,/area/ai) +"QI" = (/obj/item/device/radio/intercom{dir = 8; pixel_x = -24},/turf/simulated/floor/bluegrid,/area/ai_cyborg_station) +"QJ" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/angled_bay/external/glass{frequency = 1380; id_tag = null; locked = 1; name = "Docking Port Airlock"},/obj/effect/map_helper/airlock/door/ext_door,/obj/machinery/access_button{command = "cycle_exterior"; frequency = 1380; master_tag = "sd_escape_center_right"; pixel_x = 32; req_one_access = list(13)},/turf/simulated/floor/tiled/steel_ridged,/area/stellardelight/deck3/aft) +"QK" = (/obj/structure/bed/chair/comfy/brown{dir = 8},/obj/machinery/alarm/angled{dir = 8},/turf/simulated/floor/carpet,/area/stellardelight/deck3/readingroom) +"QL" = (/obj/structure/cable/blue{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/techfloor/grid,/area/ai_cyborg_station) +"QP" = (/obj/structure/cable/blue{icon_state = "1-8"},/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/structure/cable/blue{icon_state = "1-4"},/turf/simulated/floor,/area/maintenance/stellardelight/deck3/starboardcent) +"QS" = (/obj/structure/cable/green{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold4w/hidden,/turf/simulated/floor/airless,/area/maintenance/stellardelight/deck3/portcent) +"QT" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/angled_bay/standard/glass{door_color = "#323d80"; name = "Command Offices"; req_access = null; req_one_access = list(19,38); stripe_color = "#f7d35c"},/turf/simulated/floor/tiled/steel_ridged,/area/stellardelight/deck3/commandhall) +"QV" = (/obj/structure/cable/blue{icon_state = "2-8"},/turf/simulated/floor,/area/maintenance/stellardelight/deck3/starboardfore) +"QW" = (/obj/structure/cable{icon_state = "2-8"},/turf/simulated/floor/carpet/gaycarpet,/area/stellardelight/deck3/clownmimeoffice) +"QZ" = (/obj/structure/cable/green{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden{dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled,/area/stellardelight/deck3/starboarddock) +"Rc" = (/obj/machinery/porta_turret/ai_defense,/obj/structure/cable/cyan{icon_state = "1-2"},/turf/simulated/floor/bluegrid,/area/ai) +"Rd" = (/obj/machinery/atmospherics/pipe/simple/hidden/black{dir = 6},/turf/simulated/floor/bluegrid{name = "Mainframe Base"; nitrogen = 100; oxygen = 0; temperature = 80},/area/tcommsat/chamber) +"Rg" = (/obj/structure/lattice,/turf/simulated/open,/area/maintenance/stellardelight/deck3/forestarroomb) +"Rh" = (/obj/structure/cable/green{icon_state = "1-8"},/turf/simulated/wall/bay/r_wall/steel,/area/maintenance/stellardelight/deck3/forestarrooma) +"Ri" = (/obj/structure/cable/blue{icon_state = "1-2"},/obj/random/trash_pile,/turf/simulated/floor,/area/maintenance/stellardelight/deck3/starboardfore) +"Rj" = (/obj/machinery/door/firedoor/glass,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/door/airlock/angled_bay/standard/glass{name = "maintenance access"},/obj/structure/cable/blue{icon_state = "1-2"},/turf/simulated/floor/tiled/steel_ridged,/area/stellardelight/deck2/starboard) +"Rl" = (/obj/structure/disposalpipe/sortjunction/flipped{dir = 4; name = "Command Offices"; sortType = "Command Offices"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/effect/landmark{name = "lightsout"},/turf/simulated/floor/tiled/monotile,/area/stellardelight/deck3/commandhall) +"Rn" = (/obj/machinery/door/firedoor/glass,/obj/structure/window/bay/reinforced,/obj/structure/low_wall/bay/reinforced/blue,/turf/simulated/floor,/area/crew_quarters/heads/hop) +"Ro" = (/obj/machinery/door/firedoor/glass,/obj/structure/cable/green{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/door/airlock/angled_bay/standard/glass/common{dir = 4; name = "Long-Range Teleporter Access"},/turf/simulated/floor/tiled/steel_ridged,/area/stellardelight/deck3/transitgateway) +"Rq" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/turf/simulated/floor,/area/maintenance/stellardelight/deck3/starboardaft) +"Ru" = (/obj/machinery/holoplant,/obj/machinery/camera/network/command{dir = 4},/turf/simulated/floor/tiled/techfloor/grid,/area/ai_upload) +"Rv" = (/obj/structure/cable/green{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled,/area/stellardelight/deck3/aft) +"Rw" = (/obj/machinery/door/firedoor/glass/hidden/shuttle,/obj/structure/window/fancy_shuttle{fancy_shuttle_tag = "sdboat"},/turf/simulated/floor/reinforced/airless,/area/shuttle/sdboat/aft{base_turf = /turf/simulated/floor/reinforced/airless}) +"Rx" = (/obj/structure/cable/green{icon_state = "1-2"},/obj/structure/cable/green{icon_state = "2-4"},/turf/simulated/floor/airless,/area/stellardelight/deck3/exterior) +"Rz" = (/obj/structure/lattice,/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4},/obj/structure/cable/green{icon_state = "4-8"},/turf/simulated/open,/area/stellardelight/deck2/starboard) +"RE" = (/turf/simulated/wall/bay/r_wall/steel,/area/maintenance/stellardelight/deck3/starboardfore) +"RG" = (/obj/machinery/light/small{dir = 4},/turf/simulated/open,/area/stellardelight/deck2/starboard) +"RH" = (/obj/effect/floor_decal/techfloor/orange{dir = 1},/obj/machinery/power/apc/angled{dir = 1},/obj/structure/cable/green{icon_state = "0-2"},/turf/simulated/floor/tiled/techfloor,/area/stellardelight/deck3/transitgateway) +"RI" = (/turf/simulated/open,/area/stellardelight/deck3/aft) +"RK" = (/obj/machinery/door/firedoor/glass,/obj/structure/cable{icon_state = "1-2"},/turf/simulated/floor,/area/maintenance/stellardelight/deck3/starboardfore) +"RL" = (/turf/simulated/wall/bay/r_wall/steel,/area/maintenance/stellardelight/deck3/foreportroomb) +"RM" = (/obj/structure/cable/green{icon_state = "1-8"},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/obj/effect/mouse_hole_spawner{dir = 4},/turf/simulated/floor,/area/maintenance/stellardelight/deck3/portcent) +"RN" = (/obj/structure/sign/directions/evac{pixel_x = 32},/obj/structure/closet/firecloset,/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 4},/turf/simulated/floor/tiled,/area/stellardelight/deck3/aft) +"RQ" = (/obj/structure/table/standard,/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/turf/simulated/floor/bluegrid,/area/ai_cyborg_station) +"RT" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/angled_bay/hatch{dir = 4; door_color = "#e6ab22"; name = "Shield Generator"; req_access = null; req_one_access = list(11,24); stripe_color = "#e6ab22"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/turf/simulated/floor/tiled/steel_ridged,/area/stellardelight/deck2/central) +"RW" = (/obj/machinery/portable_atmospherics/canister/air,/obj/machinery/atmospherics/portables_connector{dir = 1},/obj/machinery/door/window/southright{dir = 1; req_one_access = list(11,67)},/obj/effect/floor_decal/fancy_shuttle{fancy_shuttle_tag = "sdboat"},/turf/simulated/floor/tiled,/area/shuttle/sdboat/aft{base_turf = /turf/simulated/floor/reinforced/airless}) +"RX" = (/turf/simulated/wall/bay/steel,/area/stellardelight/deck2/central) +"RY" = (/obj/structure/bed/chair/shuttle{dir = 1},/obj/machinery/light{dir = 8},/obj/effect/floor_decal/fancy_shuttle{fancy_shuttle_tag = "sdboat"},/turf/simulated/floor/tiled,/area/shuttle/sdboat/aft{base_turf = /turf/simulated/floor/reinforced/airless}) +"RZ" = (/obj/structure/cable/blue{icon_state = "1-2"},/obj/structure/sign/warning/caution{desc = "This secure area is guarded by LETHAL LASER TURRETS. Authorized personnel ONLY."; name = "\improper WARNING: LETHAL TURRETS AHEAD"; pixel_x = -32},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/techfloor/grid,/area/ai_server_room) +"Sb" = (/turf/simulated/floor/tiled/techfloor/grid,/area/maintenance/stellardelight/deck3/forestarrooma) +"Se" = (/obj/effect/floor_decal/industrial/warning/corner,/turf/simulated/floor/airless,/area/stellardelight/deck3/exterior) +"Sf" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/turf/simulated/floor/tiled,/area/stellardelight/deck3/aft) +"Sh" = (/obj/structure/closet/crate/bin{anchored = 1},/turf/simulated/floor,/area/maintenance/stellardelight/deck3/foreportrooma) +"Sk" = (/obj/structure/table/standard,/obj/item/weapon/phone{pixel_x = 3; pixel_y = 11},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/obj/machinery/alarm/angled{dir = 8},/turf/simulated/floor/bluegrid,/area/ai_cyborg_station) +"Sl" = (/obj/structure/sign/warning/evac{pixel_x = -32; pixel_y = -32},/obj/effect/floor_decal/steeldecal/steel_decals5,/obj/structure/cable{icon_state = "4-8"},/turf/simulated/floor/tiled,/area/stellardelight/deck3/aft) +"Sm" = (/obj/structure/cable/blue{icon_state = "1-2"},/turf/simulated/floor/bluegrid{name = "Mainframe Base"; nitrogen = 100; oxygen = 0; temperature = 80},/area/tcommsat/chamber) +"Sn" = (/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals_central5{dir = 8},/obj/structure/cable{icon_state = "1-8"},/turf/simulated/floor/tiled,/area/stellardelight/deck3/portdock) +"Sp" = (/obj/structure/cable/green{icon_state = "4-8"},/turf/simulated/floor,/area/maintenance/stellardelight/deck3/foreportrooma) +"Sw" = (/obj/machinery/alarm/angled{dir = 8},/turf/simulated/floor,/area/maintenance/stellardelight/deck3/portaft) +"Sz" = (/obj/structure/cable/green{icon_state = "4-8"},/turf/simulated/floor,/area/maintenance/stellardelight/deck3/portcent) +"SA" = (/obj/structure/table/darkglass,/obj/machinery/computer/skills{dir = 8; pixel_y = 6},/turf/simulated/floor/carpet/blue2,/area/lawoffice) +"SB" = (/obj/machinery/requests_console/preset/ce{pixel_x = -30},/turf/simulated/floor/carpet/oracarpet,/area/crew_quarters/heads/chief) +"SC" = (/obj/structure/sign/warning/docking_area{pixel_y = 32},/turf/simulated/floor/reinforced/airless,/area/stellardelight/deck3/exterior) +"SD" = (/obj/machinery/atmospherics/portables_connector{dir = 8},/obj/machinery/portable_atmospherics/canister/air/airlock,/turf/simulated/floor,/area/maintenance/stellardelight/deck3/portcent) +"SE" = (/obj/machinery/newscaster{layer = 3.3; pixel_x = 27},/turf/simulated/floor/carpet/blue2,/area/lawoffice) +"SF" = (/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 1},/obj/item/device/radio/intercom{dir = 1; pixel_y = 24},/obj/machinery/vending/nifsoft_shop,/turf/simulated/floor/tiled,/area/stellardelight/deck3/aft) +"SJ" = (/obj/machinery/door/firedoor/glass/hidden/shuttle,/obj/structure/window/fancy_shuttle{fancy_shuttle_tag = "sdboat"},/turf/simulated/floor/reinforced/airless,/area/shuttle/sdboat/fore{base_turf = /turf/simulated/floor/reinforced/airless}) +"SK" = (/obj/structure/lattice,/turf/space,/area/space) +"SL" = (/obj/machinery/recharge_station,/turf/simulated/floor/bluegrid,/area/ai_cyborg_station) +"SN" = (/obj/structure/cable/green{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 5},/turf/simulated/floor/tiled,/area/stellardelight/deck3/aft) +"SP" = (/obj/structure/table/glass,/obj/machinery/photocopier/faxmachine{department = "CMO's Office"},/turf/simulated/floor/tiled/eris/white/cargo,/area/crew_quarters/heads/cmo) +"SQ" = (/obj/machinery/disposal/wall{dir = 8},/obj/structure/disposalpipe/trunk{dir = 8},/turf/simulated/floor/tiled/monotile,/area/stellardelight/deck3/commandhall) +"SR" = (/obj/machinery/door/firedoor/glass,/obj/structure/window/bay/reinforced,/obj/structure/low_wall/bay/reinforced/steel,/turf/simulated/floor,/area/maintenance/stellardelight/deck3/foreportrooma) +"ST" = (/obj/structure/cable/green{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden{dir = 1},/turf/simulated/floor/tiled,/area/stellardelight/deck3/portdock) +"SU" = (/obj/structure/table/bench/padded,/obj/structure/sign/painting/public{pixel_y = -30},/turf/simulated/floor/wood,/area/stellardelight/deck3/cafe) +"SV" = (/obj/structure/cable/blue{icon_state = "4-8"},/turf/simulated/floor/airless,/area/maintenance/stellardelight/deck3/starboardcent) +"SZ" = (/obj/machinery/power/apc/angled{dir = 4},/obj/structure/cable/blue{icon_state = "0-8"},/turf/simulated/floor/tiled/eris/dark/gray_platform,/area/stellardelight/deck3/commandhall) +"Ta" = (/obj/machinery/door/firedoor/glass,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/door/airlock/angled_bay/hatch{name = "maintenance access"; stripe_color = "#454545"},/obj/structure/cable/green{icon_state = "1-2"},/turf/simulated/floor/tiled/steel_ridged,/area/crew_quarters/bar) +"Tc" = (/obj/structure/bed/chair{dir = 8},/obj/structure/closet/emergsuit_wall{dir = 4; pixel_x = 27},/turf/simulated/floor/tiled,/area/stellardelight/deck3/portdock) +"Td" = (/obj/structure/table/rack/shelf,/obj/random/contraband,/obj/random/contraband,/obj/random/maintenance,/turf/simulated/floor,/area/maintenance/stellardelight/deck3/forestarroomb) +"Te" = (/obj/effect/landmark/map_data/stellar_delight,/turf/space,/area/space) +"Tf" = (/obj/structure/cable/green{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/angled_bay/double/glass{name = "glass airlock"},/turf/simulated/floor/tiled/steel_ridged,/area/stellardelight/deck3/aft) +"Ti" = (/obj/structure/cable/blue{icon_state = "1-2"},/obj/structure/cable/green{icon_state = "4-8"},/turf/simulated/floor,/area/maintenance/stellardelight/deck3/forestarrooma) +"Tj" = (/obj/structure/table/reinforced,/obj/machinery/button/remote/blast_door{desc = "A remote control-switch for shutters."; dir = 4; id = "hop_office_desk"; layer = 3.3; name = "Desk Privacy Shutter"; pixel_x = -4; pixel_y = 4},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/turf/simulated/floor/tiled,/area/crew_quarters/heads/hop) +"Tk" = (/obj/machinery/door/firedoor/glass,/obj/structure/window/bay/reinforced,/obj/structure/cable/blue{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/low_wall/bay/reinforced/blue,/turf/simulated/floor,/area/crew_quarters/heads/hop) +"Tl" = (/obj/structure/bed/chair/office/dark{dir = 8},/obj/item/device/radio/intercom{dir = 1; name = "Station Intercom (General)"; pixel_y = 24},/obj/effect/landmark/start/hop,/turf/simulated/floor/carpet,/area/crew_quarters/heads/hop) +"Tm" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/monotile,/area/stellardelight/deck3/commandhall) +"Tn" = (/obj/structure/cable/blue{icon_state = "1-2"},/turf/simulated/floor,/area/ai_cyborg_station) +"To" = (/obj/machinery/keycard_auth{pixel_y = 28},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/machinery/alarm/angled{dir = 4},/turf/simulated/floor/tiled/eris/white/cargo,/area/crew_quarters/heads/cmo) +"Tp" = (/obj/structure/table/glass,/obj/machinery/light,/turf/simulated/floor/tiled/eris/white/cargo,/area/crew_quarters/heads/cmo) +"Tr" = (/obj/machinery/drone_fabricator,/turf/simulated/floor/tiled/techfloor/grid,/area/ai_cyborg_station) +"Ts" = (/obj/structure/cable/blue{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/power/apc/angled{cell_type = /obj/item/weapon/cell/super; dir = 8; name = "night shift APC"; nightshift_setting = 2},/obj/structure/cable/blue,/turf/simulated/floor,/area/maintenance/stellardelight/deck3/starboardcent) +"Tv" = (/obj/machinery/door/firedoor/glass,/obj/structure/cable/blue{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/door/airlock/angled_bay/standard/color{dir = 4; door_color = "#9fccc7"; fill_color = "#333333"; id_tag = null; name = "Internal Affairs"; req_access = list(38); stripe_color = "#ffffff"},/turf/simulated/floor/tiled/steel_ridged,/area/lawoffice) +"Tx" = (/obj/machinery/light/small,/turf/simulated/open,/area/stellardelight/deck2/central) +"Ty" = (/obj/machinery/light/small{dir = 4},/turf/simulated/floor,/area/ai_cyborg_station) +"TA" = (/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4},/turf/simulated/wall/bay/r_wall/steel,/area/stellardelight/deck3/aft) +"TB" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 8},/obj/structure/cable{icon_state = "1-2"},/turf/simulated/floor/tiled,/area/stellardelight/deck3/aft) +"TE" = (/obj/machinery/power/pointdefense{id_tag = "sd_pd"},/obj/effect/floor_decal/industrial/warning/full,/obj/structure/cable/green{icon_state = "0-4"},/turf/simulated/floor/airless,/area/stellardelight/deck3/exterior) +"TF" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/monotile,/area/stellardelight/deck3/commandhall) +"TI" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/turf/simulated/floor/tiled/techfloor/grid,/area/ai) +"TJ" = (/obj/structure/sign/department/telecoms{pixel_y = 32},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 1},/turf/simulated/floor/tiled,/area/stellardelight/deck3/aft) +"TK" = (/obj/structure/cable/cyan{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/bluegrid,/area/ai) +"TL" = (/turf/simulated/floor/bluegrid,/area/ai) +"TM" = (/obj/machinery/turretid/lethal{ailock = 1; control_area = /area/tcommsat/chamber; desc = "A firewall prevents AIs from interacting with this device."; name = "Telecoms lethal turret control"; pixel_y = 29; req_access = list(61); req_one_access = list()},/obj/effect/floor_decal/industrial/warning/corner{dir = 1},/turf/simulated/floor/tiled/techfloor/grid,/area/ai_server_room) +"TO" = (/obj/machinery/atmospherics/unary/vent_pump/on,/obj/effect/landmark/vermin,/turf/simulated/floor/tiled/monotile,/area/stellardelight/deck3/commandhall) +"TP" = (/obj/structure/cable/blue{icon_state = "4-8"},/turf/simulated/floor,/area/maintenance/stellardelight/deck3/starboardfore) +"TS" = (/obj/structure/cable/blue{icon_state = "4-8"},/obj/structure/cable/blue{icon_state = "2-8"},/turf/simulated/floor,/area/maintenance/stellardelight/deck3/forestarroomb) +"TV" = (/obj/structure/cable/blue{icon_state = "4-8"},/obj/structure/cable/blue{icon_state = "1-8"},/turf/simulated/floor/airless,/area/stellardelight/deck3/exterior) +"TW" = (/obj/structure/cable/green{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/manifold/hidden{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals_central5{dir = 4},/turf/simulated/floor/tiled,/area/stellardelight/deck3/portdock) +"TY" = (/obj/structure/cable/blue{icon_state = "1-2"},/obj/machinery/light{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/techfloor/grid,/area/ai_server_room) +"Ub" = (/obj/machinery/vending/boozeomat{req_access = null},/turf/simulated/floor/tiled/techfloor/grid,/area/maintenance/stellardelight/deck3/forestarroomb) +"Uc" = (/obj/structure/frame/computer,/turf/simulated/floor,/area/maintenance/stellardelight/deck3/foreportrooma) +"Ud" = (/obj/structure/table/reinforced,/obj/item/weapon/stamp/ce,/obj/item/weapon/book/manual/sd_guide,/turf/simulated/floor/carpet/oracarpet,/area/crew_quarters/heads/chief) +"Ue" = (/obj/structure/table/rack,/obj/random/contraband,/obj/random/maintenance,/obj/random/drinkbottle,/obj/random/maintenance/engineering,/obj/random/maintenance/engineering,/obj/random/mre,/turf/simulated/floor,/area/maintenance/stellardelight/deck3/forestarroomb) +"Uf" = (/obj/structure/cable/blue{icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/techfloor/grid,/area/tcommsat/computer) +"Ug" = (/obj/structure/cable/blue{icon_state = "4-8"},/turf/simulated/wall/bay/r_wall/steel,/area/maintenance/stellardelight/deck3/starboardcent) +"Uj" = (/obj/structure/cable/blue,/obj/structure/cable/blue{icon_state = "0-2"},/obj/machinery/power/smes/buildable{RCon_tag = "Substation - AI/Telecomms"; output_attempt = 0},/turf/simulated/floor,/area/ai_cyborg_station) +"Uk" = (/obj/machinery/computer/card,/turf/simulated/floor/tiled,/area/crew_quarters/heads/hop) +"Uq" = (/turf/simulated/floor/tiled/techfloor/grid,/area/maintenance/stellardelight/deck3/foreportrooma) +"Uw" = (/obj/structure/cable/green{icon_state = "4-8"},/obj/structure/cable/green{icon_state = "2-4"},/turf/simulated/floor/airless,/area/stellardelight/deck3/exterior) +"Uy" = (/obj/machinery/atmospherics/unary/vent_pump/on,/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 1},/obj/machinery/station_map{pixel_y = 32},/turf/simulated/floor/tiled,/area/stellardelight/deck3/aft) +"UA" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor,/area/stellardelight/deck2/fore) +"UB" = (/obj/structure/cable/blue{icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/light_switch{dir = 8; pixel_x = 24; pixel_y = 24},/turf/simulated/floor/tiled/dark,/area/crew_quarters/heads/hos) +"UD" = (/obj/machinery/atmospherics/pipe/simple/hidden{dir = 9},/turf/simulated/wall/fancy_shuttle{fancy_shuttle_tag = "sdboat"},/area/shuttle/sdboat/aft{base_turf = /turf/simulated/floor/reinforced/airless}) +"UF" = (/obj/machinery/light/small,/turf/simulated/floor,/area/maintenance/stellardelight/deck3/forestarroomb) +"UG" = (/obj/structure/cable/blue{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable/blue{icon_state = "1-4"},/turf/simulated/floor/tiled/eris/dark/gray_platform,/area/stellardelight/deck3/commandhall) +"UH" = (/obj/structure/sign/painting/library_secure{pixel_x = -30},/turf/simulated/floor/carpet,/area/crew_quarters/heads/hos) +"UI" = (/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 4},/obj/item/device/radio/intercom{dir = 4; pixel_x = 24},/turf/simulated/floor/tiled,/area/stellardelight/deck3/aft) +"UK" = (/obj/machinery/camera/network/telecom{dir = 4},/turf/simulated/floor/bluegrid{name = "Mainframe Base"; nitrogen = 100; oxygen = 0; temperature = 80},/area/tcommsat/chamber) +"UL" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/angled_bay/double{name = "maintenance access"; stripe_color = "#454545"},/obj/structure/cable/green{icon_state = "1-2"},/turf/simulated/floor,/area/maintenance/stellardelight/deck3/portfore) +"UO" = (/obj/machinery/recharge_station,/obj/item/device/radio/intercom{dir = 8; pixel_x = -24},/turf/simulated/floor/bluegrid,/area/ai_upload) +"UQ" = (/obj/machinery/door/firedoor/glass,/turf/simulated/floor,/area/maintenance/stellardelight/deck3/starboardaft) +"UR" = (/obj/effect/floor_decal/industrial/warning{dir = 1},/obj/structure/cable/green{icon_state = "4-8"},/obj/structure/cable/green{icon_state = "2-8"},/turf/simulated/floor/airless,/area/stellardelight/deck3/exterior) +"US" = (/obj/structure/lattice,/obj/structure/cable/green{icon_state = "4-8"},/turf/simulated/open,/area/crew_quarters/bar) +"UT" = (/obj/structure/table/steel_reinforced,/obj/item/weapon/paper_bin{pixel_x = -3; pixel_y = 7},/obj/item/device/megaphone,/obj/item/weapon/pen/multi,/obj/item/device/radio/intercom/department/security{dir = 1; pixel_y = 24},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/turf/simulated/floor/tiled/dark,/area/crew_quarters/heads/hos) +"UU" = (/obj/machinery/alarm/angled{dir = 4},/turf/simulated/floor,/area/maintenance/stellardelight/deck3/starboardfore) +"UV" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/obj/structure/closet/emergsuit_wall{dir = 8; pixel_x = -27},/obj/effect/landmark/vines,/turf/simulated/floor/tiled,/area/stellardelight/deck3/portdock) +"UX" = (/obj/machinery/light/small,/turf/simulated/open,/area/crew_quarters/bar) +"Va" = (/obj/structure/cable/green{icon_state = "4-8"},/turf/simulated/wall/bay/r_wall/steel,/area/maintenance/stellardelight/deck3/portfore) +"Vb" = (/obj/effect/floor_decal/corner_techfloor_grid{dir = 5},/obj/effect/floor_decal/corner_techfloor_grid{dir = 10},/obj/machinery/light/floortube{dir = 8; pixel_x = -3},/obj/structure/cable/green{icon_state = "4-8"},/turf/simulated/floor/tiled/techfloor,/area/stellardelight/deck3/cryo) +"Vc" = (/obj/structure/cable/green{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden{dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/obj/structure/cable{icon_state = "4-8"},/turf/simulated/floor/tiled,/area/stellardelight/deck3/portdock) +"Ve" = (/obj/structure/cable/blue{icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/light_switch{dir = 8; pixel_x = 24; pixel_y = 24},/turf/simulated/floor/tiled,/area/crew_quarters/heads/chief) +"Vg" = (/obj/machinery/door/firedoor/glass,/obj/structure/window/bay/reinforced,/obj/structure/low_wall/bay/reinforced/steel,/turf/simulated/floor,/area/maintenance/stellardelight/deck3/starboardfore) +"Vh" = (/obj/machinery/door/firedoor/glass/hidden/shuttle,/obj/machinery/door/blast/shuttle/open{id = "shuttleshutter"},/obj/structure/window/fancy_shuttle{fancy_shuttle_tag = "sdboat"},/obj/machinery/atmospherics/pipe/simple/hidden/fuel{dir = 6},/turf/simulated/floor/reinforced/airless,/area/shuttle/sdboat/aft{base_turf = /turf/simulated/floor/reinforced/airless}) +"Vi" = (/obj/structure/cable/green{icon_state = "2-8"},/obj/structure/closet/crate,/obj/random/contraband,/obj/random/maintenance,/obj/random/maintenance,/obj/random/maintenance,/obj/random/maintenance,/obj/random/maintenance,/obj/item/device/gps,/turf/simulated/floor,/area/maintenance/stellardelight/deck3/forestarrooma) +"Vk" = (/obj/structure/cable{icon_state = "4-8"},/obj/effect/landmark/start/mime,/turf/simulated/floor/carpet/bcarpet,/area/stellardelight/deck3/clownmimeoffice) +"Vm" = (/obj/structure/lattice,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/turf/simulated/open,/area/crew_quarters/bar) +"Vo" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/angled_bay/external/glass{dir = 4; frequency = 1380; id_tag = null; locked = 1; name = "Docking Port Airlock"},/obj/effect/map_helper/airlock/door/ext_door,/obj/machinery/access_button{command = "cycle_exterior"; dir = 8; frequency = 1380; master_tag = "sd_escape_starboard"; pixel_y = 32; req_one_access = list(13)},/turf/simulated/floor/tiled/steel_ridged,/area/stellardelight/deck3/starboarddock) +"Vp" = (/obj/structure/lattice,/obj/machinery/light/small,/turf/simulated/open,/area/stellardelight/deck2/starboard) +"Vq" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/turf/simulated/floor/tiled/monotile,/area/stellardelight/deck3/commandhall) +"Vr" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/obj/structure/table/reinforced,/obj/item/weapon/paper_bin{pixel_x = -3; pixel_y = 7},/obj/item/weapon/folder/yellow_ce,/obj/item/weapon/pen/multi,/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/turf/simulated/floor/tiled,/area/crew_quarters/heads/chief) +"Vs" = (/turf/simulated/floor/tiled/techfloor/grid,/area/ai) +"Vt" = (/obj/item/device/radio/intercom/locked/ai_private{dir = 4; pixel_x = 32},/turf/simulated/floor/tiled/techfloor,/area/ai_cyborg_station) +"Vw" = (/obj/structure/bed/chair/shuttle{dir = 1},/obj/effect/floor_decal/fancy_shuttle{fancy_shuttle_tag = "sdboat"},/turf/simulated/floor/tiled,/area/shuttle/sdboat/aft{base_turf = /turf/simulated/floor/reinforced/airless}) +"Vx" = (/obj/structure/cable/blue{icon_state = "1-4"},/obj/effect/landmark{name = "maint_pred"},/turf/simulated/floor/tiled/techfloor/grid,/area/maintenance/stellardelight/deck3/forestarroomb) +"Vz" = (/obj/machinery/power/pointdefense{id_tag = "sd_pd"},/obj/effect/floor_decal/industrial/warning/full,/obj/structure/cable/green{icon_state = "0-8"},/obj/structure/cable/green{icon_state = "0-4"},/turf/simulated/floor/airless,/area/stellardelight/deck3/exterior) +"VB" = (/obj/item/weapon/bedsheet/double,/obj/structure/bed/double/padded,/obj/structure/curtain/black{color = "#156363"},/obj/effect/landmark/start/cmo,/turf/simulated/floor/carpet/tealcarpet,/area/crew_quarters/heads/cmo) +"VC" = (/turf/simulated/wall/bay/r_wall/blue,/area/ai_upload) +"VD" = (/obj/structure/table/steel,/obj/random/drinkbottle,/obj/machinery/chemical_dispenser/bar_alc/full,/turf/simulated/floor/tiled/techfloor/grid,/area/maintenance/stellardelight/deck3/foreportroomb) +"VE" = (/obj/structure/table/glass,/obj/item/device/radio/intercom/department/medbay{dir = 1; pixel_y = 24},/obj/item/weapon/paper_bin{pixel_x = 3; pixel_y = 7},/obj/item/weapon/pen/multi,/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/obj/item/weapon/folder/white_cmo,/turf/simulated/floor/tiled/eris/white/cargo,/area/crew_quarters/heads/cmo) +"VG" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/item/device/radio/intercom{dir = 4; pixel_x = 24},/turf/simulated/floor/tiled/techfloor/grid,/area/ai) +"VK" = (/obj/structure/cable/green{icon_state = "1-2"},/obj/structure/cable/green{icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/alarm/angled{dir = 4},/turf/simulated/floor,/area/maintenance/stellardelight/deck3/portcent) +"VM" = (/obj/machinery/power/pointdefense{id_tag = "sd_pd"},/obj/effect/floor_decal/industrial/warning/full,/obj/structure/cable/green,/turf/simulated/floor/airless,/area/stellardelight/deck3/exterior) +"VN" = (/obj/structure/cable/green{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/turf/simulated/floor/tiled,/area/stellardelight/deck3/aft) +"VQ" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/angled_bay/secure{name = "Nuclear Fission Device Storage"; req_access = list(16)},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/steel_ridged,/area/ai) +"VR" = (/obj/machinery/atmospherics/pipe/simple/hidden,/turf/simulated/floor/airless,/area/maintenance/stellardelight/deck3/portcent) +"VS" = (/obj/machinery/atmospherics/pipe/simple/hidden{dir = 5},/turf/simulated/wall/bay/r_wall/steel,/area/stellardelight/deck3/aft) +"VW" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/turf/simulated/floor/tiled/techfloor/grid,/area/ai_server_room) +"VZ" = (/obj/structure/table/rack,/obj/random/maintenance,/obj/random/maintenance/clean,/turf/simulated/floor,/area/maintenance/stellardelight/deck3/aftstarroom) +"Wa" = (/turf/simulated/floor/carpet,/area/crew_quarters/heads/hop) +"Wd" = (/obj/structure/cable/green{icon_state = "4-8"},/obj/structure/cable/green{icon_state = "1-4"},/turf/simulated/floor/airless,/area/stellardelight/deck3/exterior) +"Wf" = (/obj/machinery/disposal/wall,/obj/structure/disposalpipe/trunk,/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 1},/turf/simulated/floor/tiled,/area/stellardelight/deck3/aft) +"Wg" = (/obj/structure/bed/chair/shuttle{dir = 1},/obj/structure/closet/emergsuit_wall{dir = 1; pixel_y = -32},/obj/item/device/radio/intercom{dir = 4; pixel_x = 24},/obj/effect/floor_decal/fancy_shuttle{fancy_shuttle_tag = "sdboat"},/turf/simulated/floor/tiled,/area/shuttle/sdboat/aft{base_turf = /turf/simulated/floor/reinforced/airless}) +"Wi" = (/obj/structure/closet/secure_closet/personal,/turf/simulated/floor/bluegrid,/area/ai) +"Wj" = (/obj/machinery/computer/ship/helm/adv,/obj/effect/floor_decal/fancy_shuttle{fancy_shuttle_tag = "sdboat"},/turf/simulated/floor/tiled,/area/shuttle/sdboat/fore{base_turf = /turf/simulated/floor/reinforced/airless}) +"Wl" = (/obj/structure/sign/warning/falling{pixel_x = -32},/turf/simulated/open,/area/stellardelight/deck2/port) +"Wn" = (/obj/machinery/power/smes/buildable{charge = 500000},/obj/effect/floor_decal/fancy_shuttle{fancy_shuttle_tag = "sdboat"},/obj/structure/cable/green{icon_state = "0-4"},/turf/simulated/floor/tiled,/area/shuttle/sdboat/aft{base_turf = /turf/simulated/floor/reinforced/airless}) +"Wp" = (/obj/machinery/atmospherics/unary/vent_pump/on,/turf/simulated/open,/area/stellardelight/deck2/central) +"Wq" = (/obj/structure/table/darkglass,/obj/machinery/computer/skills{dir = 4; pixel_y = 6},/turf/simulated/floor/carpet/blue2,/area/lawoffice) +"Wr" = (/obj/machinery/atmospherics/pipe/manifold/hidden{dir = 4},/obj/structure/cable/green{icon_state = "1-2"},/turf/simulated/floor,/area/maintenance/stellardelight/deck3/starboardaft) +"Ws" = (/obj/structure/cable/green{icon_state = "1-2"},/obj/structure/table/steel,/obj/item/weapon/flame/candle,/turf/simulated/floor,/area/maintenance/stellardelight/deck3/portfore) +"Wt" = (/obj/structure/cable/green{icon_state = "1-2"},/obj/effect/floor_decal/spline/plain,/obj/structure/table/bench/marble,/turf/simulated/floor/lino,/area/stellardelight/deck3/cafe) +"Wu" = (/obj/structure/sign/warning/docking_area{pixel_x = -32},/turf/simulated/floor/airless,/area/stellardelight/deck3/exterior) +"Ww" = (/obj/structure/handrail{dir = 4},/obj/effect/map_helper/airlock/atmos/pump_out_internal,/obj/machinery/light,/obj/machinery/atmospherics/unary/vent_pump/high_volume{frequency = 1380; id_tag = "sdboat_docker_pump_out_internal"},/obj/effect/floor_decal/fancy_shuttle{fancy_shuttle_tag = "sdboat"},/turf/simulated/floor/tiled,/area/shuttle/sdboat/aft{base_turf = /turf/simulated/floor/reinforced/airless}) +"Wx" = (/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 4},/turf/simulated/floor/tiled,/area/stellardelight/deck3/aft) +"Wy" = (/obj/machinery/camera/network/engineering{dir = 1},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/obj/machinery/alarm/angled{dir = 4},/obj/structure/table/steel_reinforced,/obj/item/weapon/paper/sdshield,/turf/simulated/floor,/area/stellardelight/deck2/central) +"WA" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor,/area/maintenance/stellardelight/deck3/starboardcent) +"WB" = (/obj/machinery/light/small{dir = 4},/turf/simulated/floor,/area/maintenance/stellardelight/deck3/starboardfore) +"WD" = (/obj/structure/table/woodentable,/turf/simulated/floor/wood,/area/stellardelight/deck3/cafe) +"WF" = (/obj/structure/table/steel,/obj/random/contraband,/obj/random/maintenance/security,/obj/random/maintenance/security,/obj/random/maintenance/security,/turf/simulated/floor,/area/maintenance/stellardelight/deck3/forestarrooma) +"WG" = (/obj/structure/lattice,/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/turf/simulated/open,/area/stellardelight/deck2/starboard) +"WH" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/turf/simulated/floor/tiled/monotile,/area/stellardelight/deck3/commandhall) +"WI" = (/obj/structure/bed/chair{dir = 1},/turf/simulated/floor/tiled/techfloor/grid,/area/maintenance/stellardelight/deck3/foreportrooma) +"WK" = (/turf/simulated/wall/fancy_shuttle{fancy_shuttle_tag = "sdboat"},/area/shuttle/sdboat/fore{base_turf = /turf/simulated/floor/reinforced/airless}) +"WL" = (/obj/structure/closet/crate,/obj/random/contraband,/obj/random/maintenance/clean,/obj/random/maintenance/clean,/obj/random/maintenance/clean,/obj/random/maintenance/cargo,/obj/random/maintenance/cargo,/obj/random/drinksoft,/obj/random/drinksoft,/obj/random/mre,/obj/random/mre,/turf/simulated/floor,/area/maintenance/stellardelight/deck3/foreportrooma) +"WM" = (/obj/effect/landmark{name = "maint_pred"},/turf/simulated/floor,/area/maintenance/stellardelight/deck3/foreportrooma) +"WN" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/turf/simulated/floor/tiled/monotile,/area/stellardelight/deck3/commandhall) +"WO" = (/turf/simulated/wall/bay/r_wall/blue,/area/lawoffice) +"WQ" = (/obj/machinery/power/apc/angled{cell_type = /obj/item/weapon/cell/super; dir = 4; name = "night shift APC"; nightshift_setting = 2},/obj/structure/cable/green{icon_state = "0-8"},/turf/simulated/floor,/area/maintenance/stellardelight/deck3/portcent) +"WU" = (/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 5},/turf/simulated/floor/tiled,/area/stellardelight/deck3/aft) +"WW" = (/obj/structure/bed/chair/office/dark{dir = 8},/obj/effect/landmark/start/iaa,/turf/simulated/floor/carpet/blue2,/area/lawoffice) +"WX" = (/obj/machinery/camera/network/command{dir = 10},/turf/simulated/floor/tiled/techfloor/grid,/area/ai_cyborg_station) +"WZ" = (/obj/machinery/atmospherics/unary/vent_pump/on,/obj/machinery/light/small{dir = 1},/obj/structure/flora/pottedplant/smalltree,/turf/simulated/floor/tiled,/area/stellardelight/deck3/aft) +"Xa" = (/obj/item/device/radio/intercom{dir = 1; name = "Station Intercom (General)"; pixel_y = 24},/obj/structure/closet/secure_closet/CMO,/obj/item/clothing/accessory/stethoscope,/obj/item/device/flashlight/pen,/obj/item/weapon/storage/belt/medical,/obj/item/clothing/glasses/hud/health,/obj/item/device/defib_kit/compact/combat/loaded,/obj/item/weapon/cmo_disk_holder,/obj/item/weapon/storage/secure/briefcase/ml3m_pack_cmo,/obj/item/weapon/storage/mrebag/pill/sleevingcure,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/item/device/retail_scanner/medical,/turf/simulated/floor/tiled/eris/white/cargo,/area/crew_quarters/heads/cmo) +"Xb" = (/turf/simulated/floor/carpet/gaycarpet,/area/stellardelight/deck3/clownmimeoffice) +"Xc" = (/obj/structure/lattice,/obj/machinery/atmospherics/unary/vent_scrubber/on,/obj/structure/cable/green{icon_state = "1-2"},/obj/effect/landmark/vermin,/obj/effect/mouse_hole_spawner{dir = 8},/turf/simulated/open,/area/crew_quarters/bar) +"Xd" = (/obj/machinery/atmospherics/pipe/manifold4w/hidden,/turf/simulated/floor/airless,/area/maintenance/stellardelight/deck3/starboardcent) +"Xe" = (/obj/structure/lattice,/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/turf/simulated/open,/area/stellardelight/deck2/fore) +"Xf" = (/obj/machinery/atmospherics/unary/vent_pump/on,/turf/simulated/open,/area/stellardelight/deck2/port) +"Xi" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/wood,/area/stellardelight/deck3/cafe) +"Xl" = (/obj/machinery/door/firedoor/glass,/obj/structure/window/bay/reinforced,/obj/structure/low_wall/bay/reinforced/steel,/turf/simulated/floor,/area/maintenance/stellardelight/deck3/foreportroomb) +"Xm" = (/obj/structure/table/alien{name = "fancy table"},/obj/item/device/radio/intercom{dir = 1; frequency = 1351; name = "station intercom (Science)"; pixel_y = 24},/obj/random/paicard{pixel_x = 4},/obj/item/weapon/paper_bin{pixel_x = 1; pixel_y = 9},/obj/item/weapon/paper/monitorkey,/obj/item/device/megaphone,/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/obj/item/weapon/folder/white_rd,/turf/simulated/floor/tiled/techfloor,/area/crew_quarters/heads/hor) +"Xo" = (/obj/structure/cable/blue{icon_state = "1-4"},/obj/machinery/power/apc/angled{dir = 8},/obj/structure/cable/blue{icon_state = "0-4"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/turf/simulated/floor/tiled/techfloor/grid,/area/ai_server_room) +"Xr" = (/obj/structure/sign/warning/secure_area{pixel_y = 32},/turf/simulated/floor/tiled/techfloor/grid,/area/ai_cyborg_station) +"Xv" = (/obj/structure/frame,/turf/simulated/floor,/area/maintenance/stellardelight/deck3/foreportrooma) +"XA" = (/obj/structure/lattice,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/turf/simulated/open,/area/stellardelight/deck2/central) +"XB" = (/turf/simulated/wall/bay/steel,/area/maintenance/stellardelight/substation/command) +"XC" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 8},/obj/structure/cable{icon_state = "1-2"},/turf/simulated/floor/tiled,/area/stellardelight/deck3/portdock) +"XD" = (/obj/structure/cable/green{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden{dir = 1},/obj/structure/sign/warning/evac{pixel_x = -32},/obj/effect/landmark{name = "lightsout"},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 8},/turf/simulated/floor/tiled,/area/stellardelight/deck3/starboarddock) +"XE" = (/obj/machinery/door/firedoor/glass,/obj/structure/cable/green{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/door/airlock/angled_bay/standard/glass/common{dir = 4; name = "Cryogenic Storage"},/turf/simulated/floor/tiled/steel_ridged,/area/stellardelight/deck3/cryo) +"XF" = (/obj/structure/lattice,/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/turf/simulated/open,/area/stellardelight/deck2/central) +"XG" = (/obj/structure/bed/chair{dir = 4},/turf/simulated/floor/carpet/tealcarpet,/area/crew_quarters/heads/cmo) +"XH" = (/obj/structure/lattice,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/structure/cable/green{icon_state = "2-8"},/obj/structure/cable/green{icon_state = "4-8"},/turf/simulated/open,/area/crew_quarters/bar) +"XI" = (/obj/structure/cable/green{icon_state = "1-8"},/turf/simulated/floor/tiled/techfloor/grid,/area/maintenance/stellardelight/deck3/foreportroomb) +"XJ" = (/obj/machinery/power/apc/angled{dir = 8},/obj/structure/cable/blue,/turf/simulated/floor/tiled/dark,/area/lawoffice) +"XK" = (/turf/simulated/wall/bay/r_wall/blue,/area/ai_server_room) +"XO" = (/obj/machinery/computer/security,/obj/machinery/status_display{pixel_y = 32},/turf/simulated/floor/tiled/dark,/area/crew_quarters/heads/hos) +"XT" = (/obj/structure/cable/green{icon_state = "1-2"},/turf/simulated/floor,/area/maintenance/stellardelight/deck3/portfore) +"XV" = (/obj/structure/cable/green{icon_state = "4-8"},/turf/simulated/floor,/area/maintenance/stellardelight/deck3/foreportroomb) +"XX" = (/obj/machinery/holoplant,/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/turf/simulated/floor/tiled/techfloor/grid,/area/tcommsat/computer) +"XY" = (/obj/structure/cable/green{icon_state = "1-2"},/obj/structure/frame,/turf/simulated/floor,/area/maintenance/stellardelight/deck3/foreportrooma) +"XZ" = (/obj/machinery/door/firedoor/glass,/obj/machinery/atmospherics/pipe/simple/hidden{dir = 10},/obj/machinery/door/airlock/angled_bay/external/glass{frequency = 1380; id_tag = null; locked = 1; name = "Docking Port Airlock"},/obj/effect/map_helper/airlock/door/int_door,/obj/machinery/access_button{command = "cycle_interior"; dir = 1; frequency = 1380; master_tag = "sd_escape_center_left"; pixel_x = -32; req_one_access = list(13)},/turf/simulated/floor/tiled/steel_ridged,/area/stellardelight/deck3/aft) +"Yb" = (/obj/machinery/atmospherics/unary/vent_pump/high_volume{dir = 4; frequency = 1379; id_tag = "portmaint_airpump"},/obj/machinery/light/small{dir = 1},/turf/simulated/floor/airless,/area/maintenance/stellardelight/deck3/portcent) +"Yc" = (/obj/structure/cable/green{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/manifold/hidden{dir = 1},/turf/simulated/floor/tiled,/area/stellardelight/deck3/aft) +"Yd" = (/obj/structure/cable/green{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4},/turf/simulated/floor,/area/maintenance/stellardelight/deck3/portaft) +"Yg" = (/turf/simulated/wall/bay/r_wall/steel,/area/maintenance/stellardelight/deck3/portaft) +"Yj" = (/obj/structure/girder/displaced,/turf/simulated/floor/tiled/techfloor/grid,/area/maintenance/stellardelight/deck3/forestarroomb) +"Yk" = (/obj/structure/cable/green{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/turf/simulated/floor,/area/maintenance/stellardelight/deck3/portcent) +"Yl" = (/obj/structure/cable/green{icon_state = "2-8"},/obj/structure/cable/green{icon_state = "1-2"},/turf/simulated/floor,/area/maintenance/stellardelight/deck3/portfore) +"Ym" = (/obj/machinery/atmospherics/pipe/manifold/hidden{dir = 1},/turf/simulated/floor/airless,/area/maintenance/stellardelight/deck3/portcent) +"Yo" = (/obj/structure/bed/chair/office/dark{dir = 4},/turf/simulated/floor,/area/maintenance/stellardelight/deck3/aftstarroom) +"Yp" = (/obj/machinery/button/remote/blast_door{desc = "A remote control-switch for shutters."; id = "cafe"; name = "Cafe Shutters"; pixel_y = 28; req_one_access = list(25)},/turf/simulated/floor/lino,/area/stellardelight/deck3/cafe) +"Ys" = (/obj/machinery/embedded_controller/radio/airlock/airlock_controller{dir = 4; id_tag = "starmaint_airlock"; pixel_x = -24; req_access = null; req_one_access = list(13); tag_airpump = "starmaint_airpump"; tag_chamber_sensor = "starmaint_sensor"; tag_exterior_door = "starmaint_exterior"; tag_interior_door = "starmaint_interior"},/turf/simulated/floor/airless,/area/maintenance/stellardelight/deck3/starboardcent) +"Yu" = (/obj/structure/cable/green{icon_state = "1-2"},/obj/structure/closet/crate,/obj/random/contraband,/obj/random/maintenance/research,/obj/random/maintenance/research,/obj/random/maintenance/research,/obj/random/maintenance,/obj/random/maintenance,/obj/random/maintenance,/obj/random/mre,/obj/random/snack,/turf/simulated/floor,/area/maintenance/stellardelight/deck3/portfore) +"Yv" = (/obj/machinery/light_switch{dir = 4; pixel_x = -25},/turf/simulated/floor/tiled,/area/crew_quarters/heads/hop) +"Yw" = (/obj/structure/lattice,/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/turf/simulated/open,/area/stellardelight/deck2/port) +"Yx" = (/obj/structure/closet/emcloset,/obj/random/maintenance/cargo,/obj/random/maintenance/cargo,/obj/random/maintenance/clean,/turf/simulated/floor,/area/maintenance/stellardelight/deck3/starboardcent) +"Yy" = (/obj/structure/lattice,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/open,/area/stellardelight/deck2/starboard) +"Yz" = (/turf/simulated/wall/bay/r_wall/steel,/area/maintenance/stellardelight/deck3/portcent) +"YA" = (/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/obj/structure/cable{icon_state = "1-2"},/turf/simulated/floor/tiled,/area/stellardelight/deck3/aft) +"YB" = (/obj/structure/cable/blue{icon_state = "1-2"},/turf/simulated/floor,/area/maintenance/stellardelight/deck3/forestarroomb) +"YC" = (/obj/item/device/radio/intercom{dir = 1; name = "Station Intercom (General)"; pixel_y = 24},/obj/structure/closet/secure_closet/RD,/obj/item/device/aicard,/obj/item/clothing/glasses/omnihud/rnd,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/item/device/retail_scanner/science,/turf/simulated/floor/tiled/techfloor,/area/crew_quarters/heads/hor) +"YD" = (/obj/structure/table/steel,/turf/simulated/floor,/area/maintenance/stellardelight/deck3/portfore) +"YE" = (/obj/structure/table/standard,/obj/random/soap,/obj/machinery/power/apc/angled{dir = 1},/obj/structure/cable/green{icon_state = "0-4"},/obj/machinery/light{dir = 8},/turf/simulated/floor/tiled,/area/holodeck_control) +"YH" = (/obj/item/modular_computer/console/preset/command,/obj/structure/sign/poster{dir = 8},/obj/machinery/newscaster{pixel_y = 28},/turf/simulated/floor/tiled,/area/crew_quarters/heads/chief) +"YJ" = (/obj/structure/cable/green{icon_state = "2-4"},/obj/structure/cable/green{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/turf/simulated/floor,/area/maintenance/stellardelight/deck3/portaft) +"YK" = (/obj/structure/window/reinforced{dir = 4; pixel_x = 4},/turf/simulated/open,/area/stellardelight/deck3/aft) +"YL" = (/obj/structure/table/reinforced,/obj/item/weapon/paper_bin{pixel_x = -3; pixel_y = 7},/obj/item/weapon/folder/blue_hop,/obj/item/weapon/pen,/obj/machinery/light,/turf/simulated/floor/tiled,/area/crew_quarters/heads/hop) +"YN" = (/turf/simulated/wall/bay/r_wall/steel,/area/stellardelight/deck3/portdock) +"YO" = (/obj/structure/cable/green{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/turf/simulated/floor,/area/maintenance/stellardelight/deck3/portaft) +"YQ" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/turf/simulated/floor/carpet/tealcarpet,/area/crew_quarters/heads/cmo) +"YR" = (/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 8},/obj/structure/cable{icon_state = "1-2"},/turf/simulated/floor/tiled,/area/stellardelight/deck3/aft) +"YS" = (/obj/structure/table/steel,/obj/random/coin/sometimes,/turf/simulated/floor,/area/maintenance/stellardelight/deck3/aftstarroom) +"YU" = (/obj/structure/lattice,/turf/simulated/open,/area/crew_quarters/bar) +"Zd" = (/turf/simulated/wall/fancy_shuttle{fancy_shuttle_tag = "sdboat"},/area/shuttle/sdboat/aft{base_turf = /turf/simulated/floor/reinforced/airless}) +"Ze" = (/turf/simulated/floor/bluegrid{name = "Mainframe Base"; nitrogen = 100; oxygen = 0; temperature = 80},/area/tcommsat/chamber) +"Zf" = (/obj/structure/cable/green{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/turf/simulated/floor,/area/maintenance/stellardelight/deck3/portcent) +"Zi" = (/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/obj/effect/floor_decal/shuttles/right,/obj/structure/cable{icon_state = "1-2"},/turf/simulated/floor/tiled,/area/stellardelight/deck3/portdock) +"Zj" = (/obj/structure/bed/chair,/obj/machinery/status_display{pixel_y = 32},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 1},/turf/simulated/floor/tiled,/area/stellardelight/deck3/aft) +"Zk" = (/obj/machinery/light/small{dir = 8},/obj/structure/cable/green{icon_state = "1-2"},/turf/simulated/floor,/area/maintenance/stellardelight/deck3/portfore) +"Zl" = (/obj/structure/lattice,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/open,/area/stellardelight/deck2/port) +"Zm" = (/obj/structure/cable/blue{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/light_switch{dir = 4; pixel_x = -24; pixel_y = 29},/turf/simulated/floor/tiled/techfloor/grid,/area/ai_cyborg_station) +"Zn" = (/obj/structure/bed/chair,/turf/simulated/floor/tiled/techfloor/grid,/area/maintenance/stellardelight/deck3/foreportrooma) +"Zp" = (/obj/machinery/light/small{dir = 4},/obj/structure/cable/green{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor,/area/maintenance/stellardelight/deck3/portcent) +"Zt" = (/obj/structure/lattice,/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/open,/area/stellardelight/deck2/central) +"Zu" = (/obj/effect/floor_decal/spline/plain{dir = 6},/obj/structure/table/bench/marble,/turf/simulated/floor/lino,/area/stellardelight/deck3/cafe) +"Zw" = (/obj/machinery/porta_turret/ai_defense,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/turf/simulated/floor/bluegrid,/area/ai) +"ZB" = (/obj/machinery/alarm/angled{dir = 4},/turf/simulated/floor,/area/maintenance/stellardelight/deck3/portaft) +"ZC" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/turf/simulated/open,/area/stellardelight/deck2/starboard) +"ZE" = (/obj/structure/cable/green{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4},/obj/machinery/hologram/holopad,/turf/simulated/floor/tiled,/area/stellardelight/deck3/aft) +"ZF" = (/obj/structure/bed/chair{dir = 8},/turf/simulated/floor/carpet/oracarpet,/area/crew_quarters/heads/chief) +"ZH" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden{dir = 1},/obj/structure/cable/green{icon_state = "1-2"},/obj/machinery/hologram/holopad,/turf/simulated/floor/tiled,/area/stellardelight/deck3/starboarddock) +"ZK" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/monotile,/area/stellardelight/deck3/commandhall) +"ZL" = (/obj/machinery/door/firedoor/glass,/obj/structure/window/bay/reinforced,/obj/machinery/door/blast/angled/open{dir = 4; id = "readingroom3"},/obj/structure/low_wall/bay/reinforced/steel,/turf/simulated/floor,/area/stellardelight/deck3/readingroom) +"ZM" = (/obj/structure/lattice,/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4},/obj/structure/cable/green{icon_state = "4-8"},/turf/simulated/open,/area/stellardelight/deck2/starboard) +"ZN" = (/obj/item/device/radio/intercom{dir = 4; pixel_x = 24},/turf/simulated/floor/tiled/techfloor/grid,/area/ai) +"ZQ" = (/obj/machinery/door/firedoor/glass,/obj/structure/window/bay/reinforced,/obj/structure/low_wall/bay/reinforced/steel,/turf/simulated/floor,/area/maintenance/stellardelight/deck3/forestarrooma) +"ZS" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/turf/simulated/open,/area/stellardelight/deck2/port) +"ZV" = (/obj/machinery/door/firedoor/glass,/obj/structure/window/bay/reinforced,/obj/machinery/door/blast/angled/open{dir = 4; id = "readingroom1"},/obj/structure/low_wall/bay/reinforced/steel,/turf/simulated/floor,/area/stellardelight/deck3/readingroom) +"ZX" = (/obj/machinery/light{dir = 8},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/turf/simulated/floor/tiled/techfloor/grid,/area/ai_upload) +"ZZ" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/green{icon_state = "1-2"},/turf/simulated/floor,/area/stellardelight/deck2/fore) + +(1,1,1) = {" +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhElJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhElJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhElJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhNLNLJhJhJhNLNLJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhNLNLNLNLJhNLNLNLNLJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhNLJhJhNLNLNLSKSKSKunAekoFHNLSKNLFHunAekoSKSKSKNLNLNLJhJhNLJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhNLunGoAekoNLJhJhJhNLafSKydewNLJhNLRxeXSKafNLJhJhJhNLunAevQkoNLJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhNLNLVMafJhydAeAeAegJAeHxJhNLydAeAeAeeXNLJhmMAeAeAeAeAeeXJhafVMNLNLJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhNLNLNLNLafSKNLJhJhJhafTEeXJhJhNLJhJhJhNLJhJhydOpNLJhJhJhNLSKafNLNLNLNLJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhNLNLNLNLuneXJhJhJhJhSKafNLJhJhJhSKJhJhJhSKJhJhJhNLNLSKJhJhJhJhydkoNLNLNLNLJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhNLunUwAeAeeXJhJhJhJhSKSKafJhJhJhJhSKJhJhJhSKJhJhJhJhNLSKSKJhJhJhJhydAeAeEVkoNLJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhNLVMafNLNLSKJhJhJhSKSKSKeIfsCACACAQpCACACAQpCACACAQpQpSKSKSKJhJhJhSKNLNLafVMNLJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhNLuneXJhJhSKJhJhSKSKSKQpQpXcqpqpqpYUqpqpqpYUqpqpqpqpQpQpSKSKSKJhJhSKJhJhydkoNLJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhNLafJhJhhDhDhDSRSRSRhDQpqpDdqpqpqpYUqpqpqpYUqpqpqpqpbVJxJxZQZQZQJxJxJxJhJhafNLJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhSKafJhhDhDUcXvWLShqMHRQpqpDHkUkUkUXHUSUSUSjaiNiNiNiNeVammRmRmRViqspLJxJxJhafSKJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhafhDhDFWilUqZnZnUqqMQpqpYUqpqpqpDdqpqpqpoPqpqpqpqpqpJxaSaSaSpqaSKVLVJxJxafJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhkQhDcZDYilogDMzQPqxbQpqpYUqpqpqpDdqpqpqpoPqpqpqpqpqpJxpESbSbAiSbSbSbsjJxKrJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhkPmQkQnOilXYWMogpkDMPqOoQpqpYUqpqpqpDdqpqpqpoPqpqpqpqpqpJxIbeRbJHVtFtFxNTiMcRhVgREJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhElJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhkPkPsXHOPVilXYOFUqWIWIUqXvQpqpOPNFNFNFOQVmVmVmFbjCjCjCjCggJxSbSbSbSbSbSbSbNjaSJxymREREJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhFHJhmQDpcKJnMPSpLJililFYilXvXvQpqpcaqpqpqpDdqpUXqpoPqpqpqpqpqpJxWFAyaDaDNzAQaSGJemduQVKqVgJhqbJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhNLgwAeVaKQXThDhDhDhDhDhDhDhDhDhDQpQpQpQpQpQpTaQpQpQpdNQpQpQpQpQpJxJxJxJxJxJxJxJxJxJxJxcLTPhTqyOxNLJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhElJhJhJhJhJhJhJhJhNLNLafSKkPXTXTRLztVDgjpNpNDCnezWHfqFCpqFqFbaqFZZHqneHfUAqFHfqFqFCpqFHfzWnedxapFETdfDUeEZzfDQRESKxmNLNLJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhNLNLNLafJhmQKgpfxIdLJYfhXVXVlhvFljIegGCUgGgGIegGmmbnbIgOFjmjmpmjmjnamjmpCwgmqWsRsRTSsRsRyyulDQVgJhxmNLNLNLJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhNLNLNLNLafJhmQizNsXlxPxPnXpNpNDCqFqitVqFCpqFqFtVqFsOtVoXqFaqqFtVqFqFCpqFtVsdqFdxFEFEYBFEFEFDzfDQVgJhxmNLNLNLNLJhzkJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhNLNLNLNLafJhkPWsNsRLpNpNrjpNpNDCqFqiqFcbcbcbcbcbcbcbrcvOrcEJEJEJEJEJEJEJqFsdqFdxEfEfhzEfEfEZzfDQREJhxmNLNLNLNLJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhNLNLNLNLafJhkPYuNsRLpNxPJcxPpNDCqFqiqFcbYHICNOgyklHspoHWtJrxToXaVElkoDEJqFsdqFdxUbGBhzEfYjEZzfDQREJhxmNLNLNLNLJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhNLNLNLNLafJhkPZkrWRLzphjIjhjNGDCqFqiqFcbSBQfUdZFAPHsaQxwaQrxpdXGPRGlGREJqFsdqFdxYjYjVxirOREZRiWBREJhxmNLNLNLNLJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhNLNLTEUwWdAeVaYlNsRLcHeyXIxPpNDCqFqiqFcbHahXEYnsVejnBKzbxUBzmIYQhpviVBEJqFsdqFdxYjYjacEflAEZtcTPhTqyTVuHweNLNLJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhunAeAeeXNLSKkPXTeFRLpNpNpNpNpNDCCbXesJcbBMhXhXfaarHsaQtTaQrxasyBviviJjEJIVwyIDdxEfEfEfEfEfEZDQDQRESKNLOJqyqyEUJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhafNLNLNLNLJhmQXTIPXlnvxPxPpNpNDCqFqiqFcbEEJUGWVrvfHsaQtTaQrxSPAETpFMFOEJqFsdqFdxFEFEFEFEFEEZDQDQREJhNLNLNLNLxmJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhafNLNLNLJhJhmQXTYDXlyYkVxPpNpNDCqFqiqFcbcbcbcbcbcbcbsftTAwEJEJEJEJEJEJEJqFsdqFdxPsFEFERgFEFDDQDQVgJhJhNLNLNLxmJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhafNLNLNLJhJhkPXTbCRLztEHyYpNMZDCqFqiqFzNubXOUTEtPeGQjOtTLznPpVYCXmJvjMujqFsdqFdxeEuEUFFEovFDDQDQVgJhJhNLNLNLxmJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhafNLNLJhJhJhkPXTmszXzXzXzXyZzXoZqFqiqFzNhcxSnHwqpOGQaQzBaQnPDIsAolOtgsujqFsdqFdxdxdxdxdxdxEZDQDQREJhJhJhNLNLxmJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhafNLNLJhJhJhmQXTNsZLAtmduUKIDOoZCpkOCpzNgLBHgbdDUBFgBKzbBKevBQMGmOtZzvujOaDfCpEcchkuuMMrDuCCUUDQREJhJhJhNLNLxmJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhafNLJhJhJhJhmQXTNsZLqCQKzXKIqgoZqFqiqFzNUHBHBHdYauGQaQtTaQnPavbxtZtZhUujqFsdqFEclVmFxpPpXbjyDQMuREJhJhJhJhNLxmJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhafNLJhJhJhJhkPJiHkzXzXzXzXGHLmoZqFqiqFzNODtOdHMNmDGQjKUGSZnPBrKGGiuVsCujqFsdqFEczFVkxoipQWjyDQzAREJhJhJhJhNLxmJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhafJhJhJhJhJhmQXTNswtAtCoNJKIAfoZqFqiqFzNzNzNzNzNzNzNeLwQKwujujujujujujujqFsdqFEcNZzCJmfjDWCCDQLnREJhJhJhJhJhxmJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhVMJhJhJhJhJhmQXTNswtqCQKzXoEBdoZMvXesJWOJdBqJsEOFCDVwVEWiIDVPCPopmBqOKWOIVwyKFEcEcEcEcEcISCCDQLnREJhJhJhJhJhiYJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhkPXTNszXzXzXzXKIAmoZqFqiqFWOMgxMMlLvyCdUbEbEbEdUXJzogEWWAjWOqFsdqFXBhOhrkpREbBVgDQLnVgJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhElJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhmQXTNsZVAthelUKIyqoZqFqiqFWOBYxYSAhudZTvbEbEbETvfThuWqxYSEWOqFsdqFXBGmalbmbhHLVgDQLnVgJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhmQXTNsZVqCQKzXqxxvoZqFqiqFWOrlxYxYhuaxdUbEbEbEdUayhuxYxYHvWOqFsdqFXByiiiiiREbBREDQLnREJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhkPULKWzXzXzXzXzXHQzXiQqiqFWObjkayIbOatdUaQaQaQdUatbOyIkabjWOqFsdhCBpBFBpBpmebBREezRKREJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhElJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhYzMyOXHmuJbloItpZpYzwaDDwaWOWOWOWOWOWOWOQTbUQTWOWOWOWOWOWOWOaJRjaJmeEvOMrHbrbBxHxHhBmeJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhYzEiSzSzSzopSzehYkYzoWrSoWnWfdsiJEYpOygqGjIIntinAXCRazTljDinowFLowmeIobSoCqfptDEDEInmeJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhmfJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhYzYzYzYzyRYzYzgARMYzQFjTZSOzGgrLlDrLbYHBxyiyiybgcPAnMsWakNinOEaNwcmeutDZmemeaBmemememeJhJhJhJhJhElJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhLrJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhElJhJhJhJhNLNLYzYbYmFmyRsNWQYzoWrSoWOzeUeUjmeUeUHBTmGjNfinYveDkTwYjhinowFLowmeTsWAaBdkMwodmeNLNLJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhNLNLNQOdVRzwYzMROXYzdTrSoWnWJZLwWtLwLwZuTmFrSQinininyMinininowFLyPmeIoWAmeYshywMxuNLNLJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhTEAemaFyGFIYYzVKSzCfhYFtPmnjppBthbXiXivhPLRlTFyJxgQoMIfOzmTkNhOIKsPdQPnuUgHhONSVnfqyweJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhNLNLYzgcQSEIyRZfcSYzWlIgoWnWQixZxZxZxZrgGjGjGjZKRnyeiPyoIlRnoweYRGmexHWAaBebXdLRmeNLNLJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhFHJhJhJhJhJhJhJhJhYgYgYzNKrpYzYzMRHmYzoWIgoWOzqcmrxZxZzEeaabaeTOZKRnUkrAyodoRnoweYowmeOGAHmetCJamemebybyJhJhJhJhJhJhJhJhFHJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhafJhJhJhJhJhJhJhJhYgvAYJYOLDYdGSfGSDYzQFMkZSOznFgkxZxZWDCdQBiVVqQEPJijDNyoaHinOEWGZCmemTzLhERqLytkGqLibyJhJhJhJhJhJhJhJhafJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhafNLJhJhJhJhJhJhJhYgdExTFGFScpnwbPSDYzoWIgoWnWLKzEnzxZnkSUQBiVWHWNRnTjYLaKqZinoweYowmeYxxHyfKJKJqSETKJbyJhJhJhJhJhJhJhNLafJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhafNLJhJhJhJhJhJhJhYgDTxTYgYgYgYzYzYzYzoWIgoWnWnWOzOzOznWnWQBiVybfSininininininoweYowmemememebybybyETlebyJhJhJhJhJhJhJhNLafJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhydAekoJhJhJhJhJhJhkidMxTYgoWCSoWoWoWXfoWIgoWsxnxnxWpnxnxzzrcvwiEzznxnxWpnxnxsxoweYowxRowowowPaowbyuYwwCKJhJhJhJhJhJhunAeeXJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhNLNLafJhJhJhJhJhJhkibdxTYgCSYwxdxdxdobxdCzZlHemgmgXAjYjYszaMMFvtRTXFXFHZZtZtbTCJhPCJfECJCJCJwRaCbyuYwwCKJhJhJhJhJhJhafNLNLJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhNLTEewNLJhJhJhJhJhYgNExTYgoWufoWoWoWBLoWaEoWsxnxnxlYnxTxRXWyAUKiRXTxnxlYnxnxsxowsnoweQowowowYyowbyAsMBbyJhJhJhJhJhNLRxOpNLJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhNLNLafNLJhJhJhJhJhYgnVxTYgoWufoWadadadadadadadadadadscscscscscscscscscscscscscthpXGkGkGkGkowYyowbyifKtbyJhJhJhJhJhNLafNLNLJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhNLNLafNLNLJhJhJhJhYgZBoMYgoWufoWadqnjEZeZeQCZeZejEqnscwSbKVsbLVsTLwSscwSpAwSscepLbGkdEdEGkowYyowbymKivbyJhJhJhJhNLNLafNLNLJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhNLNLNLafNLNLJhJhJhJhYgdExTYgNdMkZSadbZcmcWcYeleCeKfkghscgQgSVsVsVsVsusscKMajtnscMpJKGkdEdEGkOEkjZCbyifKJbyJhJhJhJhNLNLafNLNLNLJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhNLNLNLafNLNLNLJhJhJhYgNRBZYgoWufoWadZeZegUgWZeRdibZeZesciKiRVsIQVsrZVGscdSDwlPscUjfMGkdEdEGkowYyowbyATUQbyJhJhJhNLNLNLafNLNLNLJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhNLNLNLNLafNLNLNLNLJhSKYgdExTYgoWufoWadUKkcksDyliDylolweoscKHRcTLTLTLIQNPscMKCestscHcTyGkdEdEGkowYyowbyifKJbySKJhNLNLNLNLafNLNLNLNLJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhNLNLNLNLRxAeAeAeAeAeAevqhdINYgoWufoWadkwZeqngUrsibqQMOqUscKYQsOlOlOlJgbsscWiCetXscTngHGkdEdEGkLfYyowbyifHFurAeAeAeAeAeAeewNLNLNLNLJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhElJhJhJhJhJhJhJhJhJhJhJhJhJhJhNLNLNLNLafNLNLNLNLSKJhYgdExiLTJuzHhGadlxlEZelHmCnmSmnCoAscQGTKOloROlGPVsscscVQscscqOthGkdEdEMACHApuXBgNenDbyJhSKNLNLNLNLafNLNLNLNLJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhNLNLNLTEewNLNLNLNLNLNLYgdEdEYgoWqPoWadOjhwZeqnDyqnSmpxpYscegGaqvqArBGPIQscvTanKUXrHTAxGkdEdEsZowmSowbyiSBGbyNLNLNLNLNLNLRxOpNLNLNLJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhNLNLNLNLafNLNLNLNLNLNLYgdEdEYgoWqPoWadHtsKEesKuvkbtLsKslscQGeuOlHAOlGPwGscQIanbWsIlLthGkGkGksZowmSowbyjoLYbyNLNLNLNLNLNLafNLNLNLNLJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhNLNLNLNLafNLNLNLNLNLNLYgdELoYgoWqPoWqquBznuBznELznznznznscQGxhOlOlOlGPVsscyVanJOwvHTthsQGetQOAowmSowbyKzLYbyNLNLNLNLNLNLafNLNLNLNLJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhNLNLNLNLafNLNLNLNLJhJhYgdEdEYgoWqPoWqqOekFuBtWuwBlzncccOscnpkBrNIUmAZwtqscoNkXvSCTIGctuTvbVtOAowmSowbyDkLYbyJhJhNLNLNLNLafNLNLNLNLJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhzkJhJhNLNLNLNLafNLNLNLNLSKJhYgfPSwYgQFjLZSqqHXFvuBznOCznzniLvNscnMrZMVIQsrTIZNscuceSJJRQAxthwoxjwdOAOEdbOYbyqYGcbyJhSKNLNLNLNLafNLNLNLNLJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhNLNLNLNLafNLNLNLNLSKSKYgHYdEYgoWqPoWqqsuUfxzxBycyEzYAqASscuIndCngNHSlQTLsctyQLNWSkthDeyHyHyHczowmSyPbyAKlFbySKSKNLNLNLNLafNLNLNLNLJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhNLNLNLNLafNLNLNLNLJhSKkieddEYgWlqPEuqqXXGDpWpWLhpWDPdydVscwSscscJzscscwSscAzeSWXhFthLejPWZEdowowmSowbyLdWrCKSKJhNLNLNLNLafNLNLNLNLJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhNLNLNLafNLNLNLJhJhJhkiBmdEYgCSIHNIqqqqqqqqqqqqqqqqoYqqscscscAZPjAZscscscthsbthththTBBCLPCcokokRzZMffKDMWCKJhJhJhNLNLNLafNLNLNLJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhNLNLNLafNLSKSKJhJhJhYgJWdEIiIiIiIOaFNNlvckGfCuMEXKzDTMBjXKBkbMzirbBsthSLluoTthqXSFIZenzyEdowowVpowbyvyLYbyJhJhJhSKSKNLafNLNLNLJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhNLTEewJhSKSKIiIiIiIiIiLSIiQuIiIiIiIioVkrSfpcUIXKRZVWxeXKXKRuGhfvXKthTrwNHNthnLpcIZenPXaAaAaAaAaAaAaApzhQhQhQhQSKSKJhRxOpNLJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhNLNLafJhSKNLIiqzqzqzqzqzqzqzqzqzqzIiOfRvpcpcaXXKuZnSFhMJXKVCJPVCthOSwNDsKxthGvpcIZenIWaAywwKRHejnraAawlqlquDhQNLSKJhafNLNLJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhNLSKafJhNLNLIiqzqzqzqzqzqzqzqzqzqzIicuRvpcEReiXKTYFhFhuQXKwAJQLCthTrwNqKpSthktERIZenRNaAbbzarnzalTaAawlqlqQvhQNLNLJhafSKNLJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhSKafNLNLNLIiqzqzqzqzqzqzqzqzqzqzIiHdeNWxagahXKXofbDLQmOwcwKSzgciZmbQFUypthakagYRcqsUaAObfzFRfzgRaAzVrqrqAlhQNLNLNLafSKJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhElJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhSKafNLNLNLIiqzqzqzqzqzqzqzqzqzqzIiHHRvWxQnRIXKdnFhGUNmXKZXFehKthiJzMqdnNthRIYKYRlJENRotHjdwWJkPxaAjplqlqVZhQNLNLNLafSKJhJhzkJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhNLafNLNLNLIiqzqzqzqzqzqzqzqzqzqzIilmiWWUQnRIXKCGDhOvIuXKUOhttzthnNPWLxnNthRIYKxOpbdrOUOUOUOUOUOUOUOUlqaatuhQNLNLNLafNLJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhNLNLafNLNLNLIiqzqzqzqzqzqzqzqzqzqzIiIiTfxWEdEdXKXKXKXKXKXKVCisVCththththththEdEdgVGEEdOUiCrhzJrmzroSOUNUBnlqhQNLNLNLafNLNLJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhNLNLNLafNLNLNLIiqzqzqzqzqzqzqzqzqzqzIiYEimytjPwPWfcxnZZjltCVTJdjPEpBFfZjnZysHwUyjPYAVNHiOUiCrhCYuzzroSOUlqlqnThQNLNLNLafNLNLNLJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhNLNLNLNLafNLNLNLIiqzqzqzqzqzqzqzqzqzqzePNTzICPpKZEtgpKAYYcwgpKdFvvMCpKEFYcoypKpKPcpKMUCyBeXENcuWcIEhVbMiOUlqlqxEhQNLNLNLafNLNLNLNLJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhElJhJhJhJhJhJhJhJhNLNLNLNLafNLNLNLIiqzqzqzqzqzqzqzqzqzqzIiaoqNItMxKfMxMxQxtGSlMxMxOuMxMxxAtGQxMxMxPAMxvGSNaGOUiCrhCYmnzroSOUlqYoYShQNLNLNLafNLNLNLNLJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhNLNLNLNLafNLNLNLIiqzqzqzqzqzqzqzqzqzqzIiIiyFoOYNEdEdEdEdgMOqImoqoqoqImcsgMEdEdEdEduqBJmouqOUiCrhkYAvzroSOUKkMHHohQNLNLNLafNLNLNLNLJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhNLTEAeAeewNLNLNLIiIiIiIiIiIiIiIiIiIiIiIiOglaZiYNhfsMSCsMBBOqImoqoqoqImcsBBsMSCsMOcuqLIpGcyOUOUOUOUOUOUOUOUhQhQhQhQNLNLNLRxAeAeOpNLJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhNLNLNLNLafSeIzIzIzhkIzIzIzIzhkIzIzdhNLYNJRVcekYNsMsMsMsMBBKyImoqJSoqKocABBsMsMsMsMuqkWQZJouqNLSeIzIzhkIzIzIzIzhkIzIzIzdhafNLNLNLNLJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhNLNLNLNLafpTsMsMsMeJWKbebebeWKmisMPTNLaimXSTNqaisMsMsMsMVSTATAXZEdosTATAyjsMsMsMsMjgKbfWvJjgNLpTsMsMsMsMsMsMsMsMsMsMsMPTafNLNLNLNLJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhNLNLNLNLafpTsMsMsMWKWKwrWjjcWKWKsMPTNLaimXSTNqaisMsMsMsMsMsMEdBREdouEdsMsMsMsMsMsMjgKbfWvJjgNLpTsMsMsMsMsMsMsMsMsMsMsMPTafNLNLNLNLJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhNLNLNLNLafpTsMsMsMWKKjBbyaExmhWKsMPTNLYNNkSTBVYNsMsMsMsMsMsMEdJAEdQJEdsMsMsMsMsMsMuqmqfWvPuqNLpTsMsMsMsMsMsMsMsMsMsMsMPTafNLNLNLNLJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhNLNLNLNLafpTsMsMsMWKWKSJPlSJWKWKsMPTNLaiXCjVYNYNYNsMsMsMsMsMsMsMCxsMsMsMsMsMsMsMuququqexoUjgNLpTsMsMsMsMsMsMsMsMsMsMsMPTafNLNLNLNLJhJhJhJhJhJhJhJhElJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhEsJhNLNLNLNLafpTsMsMsMdQglVwLOVwgldQsMPTNLaiHgTWqeCDtRsMsMsMsMsMsMsMsMsMsMsMsMsMsMsMVorrnBNyhZjgNLpTsMsMsMsMsMsMsMsMsMsMsMPTafNLNLNLNLJhsEJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhNLNLNLNLafpTsMsMsMZdRYVwLOVwIrZdsMPTNLaiKTpCYNYNYNsMsMsMsMsMsMsMsMsMsMsMsMsMsMsMuququqXDxCjgNLpTsMsMsMsMsMsMsMsMsMsMsMPTafNLNLNLNLJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhNLTEAeAeewpTsMsMIaZdaPVwLOVwWgZdIaPTNLYNukPDvIYNsMsMsMsMsMsMsMsMsMsMsMsMsMsMsMsMsMuqNidfpluqNLpTsMsMsMsMsMsMsMsMsMsMsMPTRxAeAeOpNLJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhNLNLNLNLafpTsMsMZdZdZdRwlBZdZdZdZdetqLYNKLdwNqaisMsMsMsMsMsMsMsMsMsMsMsMsMsMsMsMsMjgKbsPlCuqWuiZsMsMsMsMsMsMsMsMsMsMsMPTafNLNLNLNLJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhNLNLNLNLafpTsMsMZdWnrXcnhRRwriADZdYNaiYNIROrNqaisMsMsMsMsMsMsMsMsMsMsMsMsMsMsMsMsMjgKbZHDnuqjguqsMsMsMsMsMsMsMsMsMsMsMPTafNLNLNLNLJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhNLNLNLNLafpTsMsMVhBWMXiwMXsavXQekzBAMossSnmbNqaisMsMsMsMsMsMsMsMsMsMsMsMsMsMsMsMsMjgKbvotbNXwmySsMvEsMsMsMsMsMsMsMsMsMPTafNLNLNLNLJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhNLNLNLunWdbpsMsMgilcfgzSkZZdWwxfgiYNaiYNUVEgTcYNsMsMsMsMsMsMsMsMsMsMsMsMsMsMsMsMsMuqKvNxLQuqjguqsMsMsMsMsMsMsMsMsMsMsMvaLWkoNLNLNLJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhNLNLafNLyWsMsMgiuiZdZdwZPBUDRWgiHuqLYNYNhNYNYNhfsMsMsMsMsMsMsMsMsMsMsMsMsMsMsMOcuquqHPuquqWuqEsMsMsMsMsMsMsMsMsMsMsMnhNLafNLNLJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhElJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhSKNLafNLyWsMsMQhEXZdxLmvxLZdKevrPTNLNLNLyWsMsMsMsMsMsMsMsMsMsMsMsMsMsMsMsMsMsMsMsMsMnhNLNLNLpTsMsMsMsMsMsMsMsMsMsMsMnhNLafNLSKJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhNLSKJhafNLyWsMsMhgNSZdsMsMsMZdNSZdPTNLNLNLyWsMsMsMsMsMsMsMsMsMsMsMsMsMsMsMsMsMsMsMsMsMnhNLNLNLpTsMsMsMsMsMsMsMsMsMsMsMnhNLafJhSKNLJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhNLNLJhafNLyWsMsMsMsMsMsMsMsMsMsMsMPTNLNLNLyWsMsMsMsMsMsMsMsMsMsMsMsMsMsMsMsMsMsMsMsMsMnhNLNLNLpTsMsMsMsMsMsMsMsMsMsMsMnhNLafJhNLNLJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhNLNLNLafJhdBIKIKIKIKIKIKIKIKIKDiIKEnAeAeAetKsMsMsMsMsMsMsMsMsMsMsMsMsMsMsMsMsMsMsMsMsMGTAeAeAekkIKURIKIKIKIKIKIKIKIKIKFIJhafNLNLNLJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhNLTEAeeXJhJhJhSKSKJhJhJhJhJhJhafSKJhJhNLTEtKsMsMsMsMsMsMsMsMsMsMsMsMsMsMsMsMsMsMsMsMsMGTOpNLJhJhSKafJhJhJhJhJhJhSKSKJhJhJhydAeOpNLJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhNLNLNLNLJhJhNLNLNLNLNLNLNLNLNLafNLNLJhNLNLyWsMsMsMsMsMsMsMsMsMsMsMsMsMsMsMsMsMsMsMsMsMnhNLNLJhNLNLafNLNLNLNLNLNLNLNLNLJhJhNLNLNLNLJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhNLNLNLJhJhJhNLNLNLNLNLNLTEAeAeeXNLNLJhJhJhyWsMsMsMsMsMsMsMsMsMsMsMsMsMsMsMsMsMsMsMsMsMnhJhJhJhNLNLydAeAeAeOpNLNLNLNLNLJhJhJhNLNLNLJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhNLNLNLJhJhJhJhNLNLNLNLNLNLNLNLNLNLJhJhJhJhyWsMsMsMsMsMsMsMsMsMsMsMsMsMsMsMsMsMsMsMsMsMnhJhJhJhJhNLNLNLNLNLNLNLNLNLNLJhJhJhJhNLNLNLJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhNLNLJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhyWsMsMsMsMsMsMsMsMsMsMsMsMsMsMsMsMsMsMsMsMsMnhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhNLNLJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhNLNLJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhyWsMsMsMsMsMsMsMsMsMsMsMsMsMsMsMsMsMsMsMsMsMnhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhNLNLJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhNLJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhyWsMsMsMsMsMsMsMsMsMsMsMsMsMsMsMsMsMsMsMsMsMnhJhJhJhJhJhJhJhJhJhJhJhJhJhzkJhJhJhJhJhJhNLJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhNLJhJhJhJhJhJhJhJhJhJhJhJhElJhJhJhJhJhJhJhdBIKIKIKIKIKIKIKIKVzIKIKIKgBIKIKIKIKIKIKIKIKFIJhJhJhJhJhJhJhJhJhElJhJhJhJhJhJhJhJhJhJhNLJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhzkJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhElJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhElJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +JhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +COJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +TeJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJhJh +>>>>>>> 5e30d29614... Merge pull request #14566 from Heroman3003/wall-locker-color "} >>>>>>> 8d2bffb1e0e... Merge pull request #12155 from Very-Soft/item_bank diff --git a/maps/submaps/admin_use_vr/ert.dm b/maps/submaps/admin_use_vr/ert.dm index bfa9a49c5c..4bed750cba 100644 --- a/maps/submaps/admin_use_vr/ert.dm +++ b/maps/submaps/admin_use_vr/ert.dm @@ -93,6 +93,10 @@ name = "\improper NRV Von Braun - Cannon Control Room" icon_state = "security_sub" +/area/ship/ert/brig + name = "\improper NRV Von Braun - Prisoner Holding Area" + icon_state = "brig" + /area/shuttle/ert_ship_boat name = "\improper NRB Robineau" icon_state = "yellow" diff --git a/maps/submaps/admin_use_vr/ert.dmm b/maps/submaps/admin_use_vr/ert.dmm index 9de4da08c6..7119cfd85f 100644 --- a/maps/submaps/admin_use_vr/ert.dmm +++ b/maps/submaps/admin_use_vr/ert.dmm @@ -10,15 +10,73 @@ /turf/simulated/floor/reinforced/airless, /area/ship/ert/barracks) "ac" = ( +/obj/effect/shuttle_landmark/premade/ert_ship_port, +/turf/space, +/area/space) +"ad" = ( +/obj/machinery/light/no_nightshift, +/obj/machinery/porta_turret/stationary/CIWS, +/turf/simulated/floor/reinforced/airless, +/area/ship/ert/barracks) +"ae" = ( /obj/machinery/light/no_nightshift, /obj/machinery/porta_turret/stationary/CIWS, /turf/simulated/floor/reinforced/airless, /area/ship/ert/dock_port) -"ad" = ( +"af" = ( /obj/structure/hull_corner, /turf/simulated/floor/reinforced/airless, /area/ship/ert/dock_port) -"ae" = ( +"ag" = ( +/obj/machinery/door/airlock/external, +/obj/effect/map_helper/airlock/door/ext_door, +/turf/simulated/floor/tiled/techfloor, +/area/ship/ert/dock_port) +"ah" = ( +/obj/structure/hull_corner{ + dir = 8 + }, +/turf/simulated/floor/reinforced/airless, +<<<<<<< HEAD +/area/ship/ert/mech_bay) +"ag" = ( +/obj/machinery/pointdefense{ +======= +/area/ship/ert/barracks) +"aj" = ( +/obj/machinery/power/pointdefense{ +>>>>>>> c55e7a1c3b... Merge pull request #14538 from KillianKirilenko/kk-vbupg + id_tag = "vonbraun_pd" + }, +/turf/simulated/floor/reinforced/airless, +/area/ship/ert/engine) +"al" = ( +/obj/structure/hull_corner/long_horiz{ + dir = 6 + }, +/turf/simulated/floor/reinforced/airless, +/area/ship/ert/hallways_aft) +"ap" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/machinery/door/firedoor/border_only, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/machinery/door/blast/regular/open{ + dir = 4; + id = "braun_blast_shields"; + name = "Blast Shield" + }, +/turf/simulated/floor/tiled/techfloor, +/area/ship/ert/barracks) +"aq" = ( +/obj/machinery/atmospherics/pipe/simple/visible, +/obj/machinery/meter, +/turf/simulated/floor/tiled/techfloor, +/area/ship/ert/atmos) +"au" = ( /obj/machinery/door/airlock/external, /obj/effect/map_helper/airlock/door/ext_door, /obj/machinery/airlock_sensor/airlock_exterior{ @@ -29,267 +87,103 @@ /obj/effect/map_helper/airlock/sensor/ext_sensor, /turf/simulated/floor/tiled/techfloor, /area/ship/ert/dock_port) -"af" = ( -/obj/machinery/light/no_nightshift, -/turf/simulated/floor/reinforced/airless, +"av" = ( +/turf/simulated/floor/tiled/techmaint, /area/ship/ert/mech_bay) -"ag" = ( -/obj/machinery/pointdefense{ - id_tag = "vonbraun_pd" - }, -/turf/simulated/floor/reinforced/airless, -/area/ship/ert/mech_bay) -"ah" = ( -/turf/simulated/floor/reinforced/airless, -/area/ship/ert/mech_bay) -"ai" = ( -/obj/machinery/porta_turret/stationary/CIWS, -/turf/simulated/floor/reinforced/airless, -/area/ship/ert/mech_bay) -"aj" = ( -/obj/machinery/light/no_nightshift, -/turf/simulated/floor/reinforced/airless, -/area/ship/ert/engine) -"ak" = ( -/obj/machinery/atmospherics/pipe/simple/visible{ - dir = 6 - }, -/turf/simulated/wall/rshull, -/area/ship/ert/dock_port) -"al" = ( -/obj/machinery/atmospherics/unary/vent_pump/high_volume{ - dir = 8 - }, -/obj/effect/map_helper/airlock/atmos/chamber_pump, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/structure/sign/vacuum{ - pixel_x = -32 - }, +"ay" = ( +/obj/effect/floor_decal/industrial/outline/grey, +<<<<<<< HEAD +/obj/structure/dispenser/oxygen, +======= +/obj/machinery/gear_dispenser/suit/ert, /turf/simulated/floor/tiled/techfloor, -/area/ship/ert/dock_port) -"am" = ( -/obj/machinery/airlock_sensor{ +/area/ship/ert/barracks) +"aB" = ( +/obj/structure/hull_corner, +/turf/simulated/floor/reinforced/airless, +/area/ship/ert/barracks) +"aC" = ( +/obj/structure/cable/yellow{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/wall/shull, +/area/ship/ert/med_surg) +"aD" = ( +/obj/item/weapon/circuitboard/aiupload, +/obj/item/weapon/circuitboard/borgupload, +/obj/item/weapon/circuitboard/smes, +/obj/item/weapon/aiModule/nanotrasen, +/obj/item/weapon/aiModule/reset, +/obj/item/weapon/aiModule/freeformcore, +/obj/item/weapon/aiModule/protectStation, +/obj/item/weapon/aiModule/quarantine, +/obj/item/weapon/aiModule/paladin, +/obj/item/weapon/aiModule/robocop, +/obj/item/weapon/aiModule/safeguard, +/obj/structure/table/steel_reinforced, +/obj/item/weapon/smes_coil, +/obj/item/weapon/smes_coil, +/obj/item/device/t_scanner/advanced{ + pixel_x = -3 + }, +/obj/item/device/t_scanner/advanced{ + pixel_x = 3 + }, +/obj/machinery/power/apc/hyper{ + alarms_hidden = 1; + name = "VB APC - South"; + pixel_y = -24 + }, +/obj/structure/cable/yellow, +>>>>>>> c55e7a1c3b... Merge pull request #14538 from KillianKirilenko/kk-vbupg +/turf/simulated/floor/tiled/techfloor, +/area/ship/ert/eng_storage) +"aE" = ( +/obj/structure/table/rack/steel, +/obj/item/clothing/accessory/storage/black_vest{ + pixel_x = -4; + pixel_y = -4 + }, +/obj/item/clothing/accessory/storage/black_vest{ + pixel_x = -2; + pixel_y = -2 + }, +/obj/item/clothing/accessory/storage/black_vest, +/obj/item/clothing/accessory/storage/black_vest{ + pixel_x = 2; + pixel_y = 2 + }, +/obj/item/clothing/accessory/storage/black_vest{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/clothing/accessory/storage/black_vest{ + pixel_x = 6; + pixel_y = 6 + }, +/obj/machinery/power/apc/hyper{ + alarms_hidden = 1; + dir = 4; + name = "VB APC - East"; pixel_x = 24 }, -/obj/effect/map_helper/airlock/sensor/chamber_sensor, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor, -/area/ship/ert/dock_port) -"an" = ( -/obj/machinery/light/no_nightshift{ - dir = 1 - }, -/obj/effect/floor_decal/industrial/outline/grey, -/obj/structure/dispenser/oxygen, -/turf/simulated/floor/tiled/techfloor, -/area/ship/ert/barracks) -"ao" = ( -/obj/structure/table/rack/steel, -/obj/item/weapon/tank/jetpack/oxygen{ - pixel_x = -4; - pixel_y = -4 - }, -/obj/item/weapon/tank/jetpack/oxygen{ - pixel_x = -2; - pixel_y = -2 - }, -/obj/item/weapon/tank/jetpack/oxygen, -/obj/item/weapon/tank/jetpack/oxygen{ - pixel_x = 2; - pixel_y = 2 - }, -/obj/item/weapon/tank/jetpack/oxygen{ - pixel_x = 4; - pixel_y = 4 - }, -/obj/item/weapon/tank/jetpack/oxygen{ - pixel_x = 6; - pixel_y = 6 - }, +/obj/structure/cable/yellow, /obj/effect/floor_decal/industrial/outline/grey, /turf/simulated/floor/tiled/techfloor, /area/ship/ert/barracks) -"ap" = ( -/obj/machinery/portable_atmospherics/canister/oxygen, -/obj/effect/floor_decal/industrial/outline/blue, -/turf/simulated/floor/tiled/techfloor, -/area/ship/ert/barracks) -"aq" = ( -/obj/machinery/telecomms/relay, -/turf/simulated/floor/tiled/techfloor, +"aF" = ( +/obj/structure/hull_corner/long_horiz{ + dir = 6 + }, +/turf/simulated/floor/reinforced/airless, /area/ship/ert/atmos) -"ar" = ( -/obj/structure/table/rack/steel, -/obj/item/toy/plushie/squid/blue{ - desc = "A small, cute and loveable squid friend. This one is blue. Despite the name, it seems no more or less deadly than your regular plush squid."; - name = "NT 'Deathsquid' Plushie" - }, -/obj/effect/floor_decal/industrial/outline/grey, -/obj/item/device/mapping_unit/deathsquad, -/obj/item/device/holomap_beacon/deathsquad, -/obj/item/device/holomap_beacon/deathsquad, -/obj/item/device/holomap_beacon/deathsquad, -/obj/item/device/holomap_beacon/deathsquad, -/turf/simulated/floor/tiled/techfloor, -/area/ship/ert/barracks) -"as" = ( -/obj/machinery/light_switch{ - pixel_y = 23 - }, -/obj/structure/table/woodentable, -/obj/item/device/flashlight/lamp, -/obj/item/device/holomap_beacon/ert, -/obj/item/device/holomap_beacon/ert, -/obj/item/device/mapping_unit/ert, -/turf/simulated/floor/wood, -/area/ship/ert/commander) -"at" = ( -/obj/item/device/mapping_unit/ert, -/turf/simulated/floor/wood, -/area/ship/ert/commander) -"ar" = ( -/obj/structure/table/rack/steel, -/obj/item/toy/plushie/squid/blue{ - desc = "A small, cute and loveable squid friend. This one is blue. Despite the name, it seems no more or less deadly than your regular plush squid."; - name = "NT 'Deathsquid' Plushie" - }, -/obj/effect/floor_decal/industrial/outline/grey, -/obj/item/device/mapping_unit/deathsquad, -/obj/item/device/holomap_beacon/deathsquad, -/obj/item/device/holomap_beacon/deathsquad, -/obj/item/device/holomap_beacon/deathsquad, -/obj/item/device/holomap_beacon/deathsquad, -/turf/simulated/floor/tiled/techfloor, -/area/ship/ert/barracks) -"as" = ( -/obj/machinery/light_switch{ - pixel_y = 23 - }, -/obj/structure/table/woodentable, -/obj/item/device/flashlight/lamp, -/obj/item/device/holomap_beacon/ert, -/obj/item/device/holomap_beacon/ert, -/obj/item/device/mapping_unit/ert, -/turf/simulated/floor/wood, -/area/ship/ert/commander) -"at" = ( -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/wood, -/area/ship/ert/commander) -"au" = ( -/obj/machinery/light/no_nightshift{ - dir = 1 - }, -/obj/effect/floor_decal/industrial/outline/grey, -/obj/structure/table/rack/steel, -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/item/weapon/rig/ert/medical, -/obj/item/weapon/rig/ert/medical, -/obj/item/weapon/rig/ert/medical, -/obj/item/weapon/rig/ert/medical, -/obj/item/weapon/rig/ert/medical, -/obj/item/weapon/rig/ert/medical, -/obj/item/clothing/suit/armor/vest/ert/medical, -/obj/item/clothing/suit/armor/vest/ert/medical, -/obj/item/clothing/suit/armor/vest/ert/medical, -/obj/item/clothing/suit/armor/vest/ert/medical, -/obj/item/clothing/suit/armor/vest/ert/medical, -/obj/item/clothing/suit/armor/vest/ert/medical, -/obj/item/clothing/head/helmet/ert/medical, -/obj/item/clothing/head/helmet/ert/medical, -/obj/item/clothing/head/helmet/ert/medical, -/obj/item/clothing/head/helmet/ert/medical, -/obj/item/clothing/head/helmet/ert/medical, -/obj/item/clothing/head/helmet/ert/medical, -/turf/simulated/floor/tiled/techfloor, -/area/ship/ert/barracks) -"av" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/turf/simulated/floor/tiled/techfloor, -/area/ship/ert/gunnery) -"aw" = ( -/obj/structure/table/rack/steel, -/obj/effect/floor_decal/industrial/outline/grey, -/obj/item/clothing/mask/gas{ - pixel_x = -4; - pixel_y = -4 - }, -/obj/item/clothing/mask/gas{ - pixel_x = -2; - pixel_y = -2 - }, -/obj/item/clothing/mask/gas, -/obj/item/clothing/mask/gas{ - pixel_x = 2; - pixel_y = 2 - }, -/obj/item/clothing/mask/gas{ - pixel_x = 4; - pixel_y = 4 - }, -/obj/item/clothing/mask/gas{ - pixel_x = 6; - pixel_y = 6 - }, -/obj/item/clothing/mask/gas/half, -/obj/item/clothing/mask/gas/half, -/obj/item/clothing/mask/gas/half, -/obj/item/clothing/mask/gas/half, -/obj/item/clothing/mask/gas/half, -/obj/item/clothing/mask/gas/half, -/turf/simulated/floor/tiled/techfloor, -/area/ship/ert/barracks) -"ax" = ( -/obj/structure/hull_corner{ - dir = 8 - }, -/turf/simulated/shuttle/plating/airless/carry, -/area/shuttle/ert_ship_boat) -"ay" = ( -/obj/structure/table/rack/steel, -/obj/effect/floor_decal/industrial/outline/grey, -/obj/item/clothing/mask/gas{ - pixel_x = -4; - pixel_y = -4 - }, -/obj/item/clothing/mask/gas{ - pixel_x = -2; - pixel_y = -2 - }, -/obj/item/clothing/mask/gas, -/obj/item/clothing/mask/gas{ - pixel_x = 2; - pixel_y = 2 - }, -/obj/item/clothing/mask/gas{ - pixel_x = 4; - pixel_y = 4 - }, -/obj/item/clothing/mask/gas{ - pixel_x = 6; - pixel_y = 6 - }, -/obj/item/clothing/shoes/magboots/adv, -/obj/item/clothing/shoes/magboots/adv, -/obj/item/clothing/shoes/magboots/adv, -/obj/item/clothing/shoes/magboots/adv, -/obj/item/clothing/shoes/magboots/adv, -/obj/item/clothing/shoes/magboots/adv, -/turf/simulated/floor/tiled/techfloor, -/area/ship/ert/barracks) -"az" = ( +"aG" = ( +/obj/machinery/light/no_nightshift, +/turf/simulated/floor/reinforced/airless, +/area/ship/ert/mech_bay) +"aH" = ( /obj/structure/table/rack/steel, /obj/item/weapon/storage/backpack/ert/security{ pixel_y = -3 @@ -298,9 +192,53 @@ /obj/item/weapon/storage/backpack/ert/security{ pixel_y = 3 }, +<<<<<<< HEAD +/obj/structure/table/woodentable, +/obj/item/device/flashlight/lamp, +/obj/item/device/holomap_beacon/ert, +/obj/item/device/holomap_beacon/ert, +/obj/item/device/mapping_unit/ert, +/turf/simulated/floor/wood, +/area/ship/ert/commander) +"at" = ( +/obj/item/device/mapping_unit/ert, +/turf/simulated/floor/wood, +/area/ship/ert/commander) +"ar" = ( +/obj/structure/table/rack/steel, +/obj/item/toy/plushie/squid/blue{ + desc = "A small, cute and loveable squid friend. This one is blue. Despite the name, it seems no more or less deadly than your regular plush squid."; + name = "NT 'Deathsquid' Plushie" + }, +/obj/effect/floor_decal/industrial/outline/grey, +/obj/item/device/mapping_unit/deathsquad, +/obj/item/device/holomap_beacon/deathsquad, +/obj/item/device/holomap_beacon/deathsquad, +/obj/item/device/holomap_beacon/deathsquad, +/obj/item/device/holomap_beacon/deathsquad, +/turf/simulated/floor/tiled/techfloor, +/area/ship/ert/barracks) +"as" = ( +/obj/machinery/light_switch{ + pixel_y = 23 + }, +/obj/structure/table/woodentable, +/obj/item/device/flashlight/lamp, +/obj/item/device/holomap_beacon/ert, +/obj/item/device/holomap_beacon/ert, +/obj/item/device/mapping_unit/ert, +/turf/simulated/floor/wood, +/area/ship/ert/commander) +"at" = ( +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" +======= /obj/effect/floor_decal/industrial/outline/grey, /obj/item/weapon/storage/backpack/ert/security{ pixel_y = 6 +>>>>>>> c55e7a1c3b... Merge pull request #14538 from KillianKirilenko/kk-vbupg }, /obj/item/weapon/storage/backpack/ert/security{ pixel_y = 9 @@ -316,59 +254,149 @@ /obj/item/clothing/suit/space/void/responseteam/security, /turf/simulated/floor/tiled/techfloor, /area/ship/ert/barracks) -"aA" = ( -/obj/structure/table/rack/steel, -/obj/item/weapon/rig/ert/security, -/obj/item/weapon/rig/ert/security, -/obj/item/weapon/rig/ert/security, -/obj/item/weapon/rig/ert/security, -/obj/item/weapon/rig/ert/security, -/obj/item/weapon/rig/ert/security, -/obj/item/clothing/suit/armor/vest/ert/security, -/obj/item/clothing/suit/armor/vest/ert/security, -/obj/item/clothing/suit/armor/vest/ert/security, -/obj/item/clothing/suit/armor/vest/ert/security, -/obj/item/clothing/suit/armor/vest/ert/security, -/obj/item/clothing/suit/armor/vest/ert/security, -/obj/item/clothing/head/helmet/ert/security, -/obj/item/clothing/head/helmet/ert/security, -/obj/item/clothing/head/helmet/ert/security, -/obj/item/clothing/head/helmet/ert/security, -/obj/item/clothing/head/helmet/ert/security, -/obj/item/clothing/head/helmet/ert/security, +<<<<<<< HEAD +"av" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, +======= +"aJ" = ( +/obj/machinery/atmospherics/pipe/simple/visible/universal, +>>>>>>> c55e7a1c3b... Merge pull request #14538 from KillianKirilenko/kk-vbupg /turf/simulated/floor/tiled/techfloor, -/area/ship/ert/barracks) -"aB" = ( -/obj/effect/floor_decal/industrial/outline/grey, +/area/ship/ert/atmos) +"aQ" = ( +/obj/structure/sign/department/operational{ + name = "MEDICAL & SURGERY" + }, +/turf/simulated/wall/shull, +/area/ship/ert/med_surg) +"aV" = ( +/obj/machinery/power/pointdefense{ + id_tag = "vonbraun_pd" + }, +/obj/structure/cable/yellow{ + d2 = 4; + dir = 4; + icon_state = "0-4" + }, +/turf/simulated/floor/reinforced/airless, +/area/ship/ert/eng_storage) +"aZ" = ( +/obj/structure/table/steel_reinforced, +/obj/fiftyspawner/phoron, +/obj/fiftyspawner/glass, +/obj/fiftyspawner/glass, +/obj/fiftyspawner/glass, +/obj/fiftyspawner/glass, +/obj/fiftyspawner/steel, +/obj/fiftyspawner/steel, +/obj/fiftyspawner/steel, +/obj/fiftyspawner/steel, +/obj/fiftyspawner/plasteel, +/obj/fiftyspawner/plasteel, +/obj/fiftyspawner/plasteel, +/obj/fiftyspawner/plasteel, +/obj/fiftyspawner/rglass, +/obj/fiftyspawner/rglass, +/obj/fiftyspawner/rglass, +/obj/fiftyspawner/phoronglass, +/obj/fiftyspawner/phoronglass, +/obj/fiftyspawner/rods, +/obj/fiftyspawner/rods, +/obj/fiftyspawner/rods, +/obj/fiftyspawner/rods, +/turf/simulated/floor/tiled/techfloor, +/area/ship/ert/eng_storage) +"be" = ( +/obj/machinery/light/no_nightshift{ + dir = 4 + }, +/obj/effect/floor_decal/corner/yellow{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/sign/warning/engineering_access{ + pixel_x = -32 + }, +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/floor_decal/corner/red{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/ship/ert/hallways_aft) +"bn" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/machinery/alarm/alarms_hidden{ + dir = 1; + pixel_y = -26 + }, +/obj/effect/floor_decal/corner/white{ + dir = 8 + }, +/turf/simulated/floor/tiled/techmaint, +/area/ship/ert/hangar) +"br" = ( +/obj/machinery/porta_turret/stationary/CIWS, +/turf/simulated/floor/reinforced/airless, +/area/ship/ert/mech_bay) +"bv" = ( +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/door/airlock/glass_security{ + name = "ORB Control"; + req_one_access = list(103) + }, +/turf/simulated/floor/tiled/techmaint, +/area/ship/ert/mech_bay) +"bw" = ( /obj/structure/table/rack/steel, -/obj/structure/table/rack/steel, -/obj/item/weapon/storage/belt/utility/chief/full{ +/obj/item/weapon/storage/box/frags{ + pixel_x = -2; pixel_y = -2 }, -/obj/item/weapon/storage/belt/utility/chief/full, -/obj/item/weapon/storage/belt/utility/chief/full{ +/obj/item/weapon/storage/box/frags{ + pixel_x = 2; pixel_y = 2 }, -/obj/item/weapon/storage/belt/utility/chief/full{ - pixel_y = 4 +/obj/machinery/power/apc/hyper{ + alarms_hidden = 1; + dir = 4; + name = "VB APC - East"; + pixel_x = 24 }, -/obj/item/weapon/storage/belt/utility/chief/full{ - pixel_y = 6 +/obj/structure/cable/yellow, +/obj/effect/floor_decal/industrial/outline/grey, +/turf/simulated/floor/tiled/techfloor, +/area/ship/ert/armoury_dl) +"bB" = ( +/obj/structure/hull_corner{ + dir = 1 }, -/obj/item/weapon/tank/emergency/oxygen/double, -/obj/item/weapon/tank/emergency/oxygen/double, -/obj/item/weapon/tank/emergency/oxygen/double, -/obj/item/weapon/tank/emergency/oxygen/double, -/obj/item/weapon/tank/emergency/oxygen/double, -/obj/item/weapon/storage/belt/explorer/pathfinder{ - name = "ERT belt" - }, -/obj/item/weapon/storage/belt/explorer/pathfinder{ - name = "ERT belt" - }, -/obj/item/weapon/storage/belt/explorer/pathfinder{ - name = "ERT belt" +/turf/space, +/area/space) +"bG" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 }, +<<<<<<< HEAD /turf/simulated/floor/tiled/techfloor, /area/ship/ert/barracks) "aC" = ( @@ -376,151 +404,147 @@ id_tag = "vonbraun_pd" }, /turf/simulated/floor/reinforced/airless, +======= +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/white, +>>>>>>> c55e7a1c3b... Merge pull request #14538 from KillianKirilenko/kk-vbupg /area/ship/ert/med_surg) -"aD" = ( +"bI" = ( +/obj/structure/railing/grey{ + dir = 4 + }, +/obj/structure/railing/grey{ + dir = 1 + }, +/obj/item/weapon/paper/vonbraun_shields, /obj/structure/table/steel_reinforced, -/obj/machinery/alarm/alarms_hidden{ - dir = 1; - pixel_y = -26 - }, -/obj/fiftyspawner/tritium, -/obj/fiftyspawner/tritium, /turf/simulated/floor/tiled/techfloor, -/area/ship/ert/eng_storage) -"aE" = ( -/obj/machinery/alarm/alarms_hidden{ - dir = 1; - pixel_y = -26 - }, -/obj/structure/table/rack/steel, -/obj/item/weapon/rig/ert/engineer, -/obj/item/weapon/rig/ert/engineer, -/obj/item/weapon/rig/ert/engineer, -/obj/item/weapon/rig/ert/engineer, -/obj/item/weapon/rig/ert/engineer, -/obj/item/weapon/rig/ert/engineer, -/obj/item/clothing/suit/armor/vest/ert/engineer, -/obj/item/clothing/suit/armor/vest/ert/engineer, -/obj/item/clothing/suit/armor/vest/ert/engineer, -/obj/item/clothing/suit/armor/vest/ert/engineer, -/obj/item/clothing/suit/armor/vest/ert/engineer, -/obj/item/clothing/suit/armor/vest/ert/engineer, -/obj/item/clothing/head/helmet/ert/engineer, -/obj/item/clothing/head/helmet/ert/engineer, -/obj/item/clothing/head/helmet/ert/engineer, -/obj/item/clothing/head/helmet/ert/engineer, -/obj/item/clothing/head/helmet/ert/engineer, -/obj/item/clothing/head/helmet/ert/engineer, -/turf/simulated/floor/tiled/techfloor, -/area/ship/ert/barracks) -"aF" = ( -/obj/machinery/porta_turret/stationary/CIWS, +/area/ship/ert/bridge) +"bJ" = ( /turf/simulated/floor/reinforced/airless, -/area/ship/ert/atmos) -"aG" = ( -/obj/structure/table/rack/steel, -/obj/item/weapon/storage/backpack/ert/medical{ - pixel_y = -3 - }, -/obj/item/weapon/storage/backpack/ert/medical, -/obj/item/weapon/storage/backpack/ert/medical{ - pixel_y = 3 +/area/ship/ert/gunnery) +"bM" = ( +/obj/machinery/light/no_nightshift{ + dir = 1 }, /obj/effect/floor_decal/industrial/outline/grey, -/obj/machinery/light/no_nightshift, -/obj/item/weapon/storage/backpack/ert/medical{ - pixel_y = 6 - }, -/obj/item/weapon/storage/backpack/ert/medical{ - pixel_y = 9 - }, -/obj/item/weapon/storage/backpack/ert/medical{ - pixel_y = 12 - }, -/obj/item/clothing/suit/space/void/responseteam/medical, -/obj/item/clothing/suit/space/void/responseteam/medical, -/obj/item/clothing/suit/space/void/responseteam/medical, -/obj/item/clothing/suit/space/void/responseteam/medical, -/obj/item/clothing/suit/space/void/responseteam/medical, -/obj/item/clothing/suit/space/void/responseteam/medical, -/turf/simulated/floor/tiled/techfloor, -/area/ship/ert/barracks) -"aH" = ( -/obj/item/weapon/storage/belt/medical/emt{ - pixel_y = -4 - }, -/obj/item/weapon/storage/belt/medical/emt{ - pixel_y = -2 - }, -/obj/item/weapon/storage/belt/medical/emt, -/obj/item/weapon/storage/belt/medical/emt{ - pixel_y = 2 - }, -/obj/item/weapon/storage/belt/medical/emt{ - pixel_y = 4 - }, -/obj/item/weapon/storage/belt/medical/emt{ - pixel_y = 6 - }, -/obj/item/clothing/accessory/storage/white_vest{ - pixel_y = -4 - }, -/obj/item/clothing/accessory/storage/white_vest{ - pixel_y = -2 - }, -/obj/item/clothing/accessory/storage/white_vest, -/obj/item/clothing/accessory/storage/white_vest{ - pixel_y = 2 - }, -/obj/item/clothing/accessory/storage/white_vest{ - pixel_y = 4 - }, -/obj/item/clothing/accessory/storage/white_vest{ - pixel_y = 6 - }, /obj/structure/table/rack/steel, -/obj/effect/floor_decal/industrial/outline/grey, -/obj/item/weapon/storage/belt/explorer/pathfinder{ - name = "ERT belt" - }, -/obj/item/weapon/storage/belt/explorer/pathfinder{ - name = "ERT belt" - }, -/obj/item/weapon/storage/belt/explorer/pathfinder{ - name = "ERT belt" - }, -/turf/simulated/floor/tiled/techfloor, -/area/ship/ert/barracks) -"aI" = ( /obj/structure/cable/yellow{ d1 = 1; d2 = 2; icon_state = "1-2" }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 +/obj/item/weapon/rig/ert/medical, +/obj/item/weapon/rig/ert/medical, +/obj/item/weapon/rig/ert/medical, +/obj/item/weapon/rig/ert/medical, +/obj/item/weapon/rig/ert/medical, +/obj/item/weapon/rig/ert/medical, +/obj/item/clothing/suit/armor/vest/ert/medical, +/obj/item/clothing/suit/armor/vest/ert/medical, +/obj/item/clothing/suit/armor/vest/ert/medical, +/obj/item/clothing/suit/armor/vest/ert/medical, +/obj/item/clothing/suit/armor/vest/ert/medical, +/obj/item/clothing/suit/armor/vest/ert/medical, +/obj/item/clothing/head/helmet/ert/medical, +/obj/item/clothing/head/helmet/ert/medical, +/obj/item/clothing/head/helmet/ert/medical, +/obj/item/clothing/head/helmet/ert/medical, +/obj/item/clothing/head/helmet/ert/medical, +/obj/item/clothing/head/helmet/ert/medical, +/turf/simulated/floor/tiled/techfloor, +/area/ship/ert/barracks) +"bO" = ( +/obj/machinery/shipsensors{ + dir = 1 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 +/turf/simulated/floor/reinforced/airless, +/area/ship/ert/atmos) +"bR" = ( +/obj/machinery/porta_turret/stationary/CIWS, +/turf/simulated/floor/reinforced/airless, +/area/ship/ert/atmos) +"bW" = ( +/turf/simulated/floor/reinforced/airless, +/area/ship/ert/atmos) +"ca" = ( +/obj/machinery/porta_turret/stationary/CIWS, +/turf/simulated/floor/reinforced/airless, +/area/ship/ert/gunnery) +"cb" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 }, /obj/structure/cable/yellow{ - d1 = 2; - d2 = 4; - icon_state = "2-4" + d1 = 1; + d2 = 2; + icon_state = "1-2" }, -/turf/simulated/floor/tiled/techmaint, -/area/ship/ert/med) -"aJ" = ( -/obj/item/device/multitool/station_buffered, /turf/simulated/floor/tiled/techfloor, -/area/ship/ert/atmos) -"aK" = ( +/area/ship/ert/hallways_aft) +"ch" = ( +/obj/machinery/power/pointdefense{ + id_tag = "vonbraun_pd" + }, +/obj/structure/cable/yellow{ + d2 = 2; + icon_state = "0-2" + }, +/turf/simulated/floor/reinforced/airless, +/area/ship/ert/gunnery) +"ci" = ( +/turf/simulated/floor/reinforced/airless, +/area/ship/ert/med_surg) +"cl" = ( +/obj/effect/shuttle_landmark/premade/ert_ship_near_aft, +/turf/space, +/area/space) +"co" = ( +/obj/item/roller_holder, +/obj/item/roller/adv, +/obj/item/roller/adv{ + pixel_y = 6 + }, +/obj/item/roller/adv{ + pixel_y = 12 + }, +/obj/machinery/light/no_nightshift, +/obj/effect/floor_decal/industrial/outline, +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techfloor, +/area/ship/ert/med) +"cs" = ( +/obj/machinery/light/no_nightshift, +/turf/simulated/floor/reinforced/airless, +/area/ship/ert/hallways_aft) +"cu" = ( +/obj/machinery/light/no_nightshift, +/turf/simulated/floor/reinforced/airless, +/area/ship/ert/barracks) +"cv" = ( +/obj/machinery/shieldgen, +/obj/effect/floor_decal/industrial/outline/blue, +/turf/simulated/floor/tiled/techfloor, +/area/ship/ert/eng_storage) +"cz" = ( /obj/effect/floor_decal/industrial/warning{ dir = 1 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, +<<<<<<< HEAD /obj/effect/floor_decal/corner/white{ dir = 10 }, @@ -540,62 +564,60 @@ /area/ship/ert/med_surg) "aV" = ( /obj/machinery/pointdefense{ +======= +/turf/simulated/floor/tiled/techfloor, +/area/ship/ert/brig) +"cJ" = ( +/obj/machinery/power/pointdefense{ +>>>>>>> c55e7a1c3b... Merge pull request #14538 from KillianKirilenko/kk-vbupg id_tag = "vonbraun_pd" }, /turf/simulated/floor/reinforced/airless, -/area/ship/ert/eng_storage) -"bp" = ( -/obj/machinery/atmospherics/pipe/simple/visible/universal, +/area/ship/ert/hallways_aft) +"cM" = ( +/obj/structure/table/steel_reinforced, /turf/simulated/floor/tiled/techfloor, -/area/ship/ert/atmos) -"br" = ( -/obj/structure/table/rack/steel, -/obj/effect/floor_decal/industrial/outline/grey, -/obj/item/weapon/tank/jetpack/carbondioxide{ - pixel_x = -4; - pixel_y = -4 +/area/ship/ert/hallways_aft) +"cO" = ( +/obj/machinery/bodyscanner{ + dir = 8 }, -/obj/item/weapon/tank/jetpack/carbondioxide{ - pixel_x = -2; - pixel_y = -2 +/obj/machinery/light/no_nightshift{ + dir = 8 }, -/obj/item/weapon/tank/jetpack/carbondioxide, -/obj/item/weapon/tank/jetpack/carbondioxide{ - pixel_x = 2; - pixel_y = 2 - }, -/obj/item/weapon/tank/jetpack/carbondioxide{ - pixel_x = 4; - pixel_y = 4 - }, -/obj/item/weapon/tank/jetpack/carbondioxide{ - pixel_x = 6; - pixel_y = 6 - }, -/turf/simulated/floor/tiled/techfloor, -/area/ship/ert/barracks) -"bt" = ( -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/light/no_nightshift, -/turf/simulated/floor/tiled/techmaint, -/area/ship/ert/bridge) -"bv" = ( -/obj/structure/grille, -/obj/machinery/door/firedoor/border_only, -/obj/structure/window/reinforced/full, -/obj/structure/window/reinforced{ +/turf/simulated/floor/tiled/white, +/area/ship/ert/med_surg) +"cR" = ( +/obj/machinery/light/no_nightshift{ dir = 1 }, +/obj/machinery/porta_turret/stationary/CIWS, +/turf/simulated/floor/reinforced/airless, +/area/ship/ert/med) +"cS" = ( +/turf/simulated/wall/shull, +/area/ship/ert/hallways_aft) +"cV" = ( +/obj/structure/table/steel_reinforced, +/obj/fiftyspawner/durasteel, +/obj/fiftyspawner/durasteel, +/obj/fiftyspawner/durasteel, +/obj/fiftyspawner/durasteel, +/obj/fiftyspawner/titanium_glass, +/obj/fiftyspawner/titanium_glass, +/obj/fiftyspawner/titanium_glass, +/obj/fiftyspawner/titanium_glass, +/obj/fiftyspawner/plastitanium_glass, +/obj/fiftyspawner/plastitanium_glass, +/obj/fiftyspawner/plastitanium_glass, +/obj/fiftyspawner/plastitanium_glass, +/turf/simulated/floor/tiled/techfloor, +/area/ship/ert/eng_storage) +"cW" = ( +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 6 + }, +<<<<<<< HEAD /obj/structure/window/reinforced, /turf/simulated/floor/airless, /area/ship/ert/gunnery) @@ -611,14 +633,23 @@ ======= >>>>>>> 7f76eb5c10d... Merge pull request #12174 from Novacat/nova-basicfixes "bJ" = ( +======= +/turf/simulated/wall/rshull, +/area/ship/ert/dock_port) +"cY" = ( +>>>>>>> c55e7a1c3b... Merge pull request #14538 from KillianKirilenko/kk-vbupg /obj/machinery/atmospherics/unary/vent_pump/high_volume{ dir = 8 }, /obj/effect/map_helper/airlock/atmos/chamber_pump, -/obj/machinery/light/no_nightshift{ - dir = 8 +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/structure/sign/vacuum{ + pixel_x = -32 }, /turf/simulated/floor/tiled/techfloor, +<<<<<<< HEAD /area/ship/ert/dock_star) "bM" = ( /turf/simulated/wall/rshull, @@ -661,124 +692,1252 @@ /obj/machinery/atmospherics/pipe/tank/air{ dir = 4; start_pressure = 740.5 +======= +/area/ship/ert/dock_port) +"db" = ( +/obj/structure/cable/yellow{ + d2 = 2; + icon_state = "0-2" + }, +/obj/machinery/power/apc/hyper{ + alarms_hidden = 1; + dir = 4; + name = "VB APC - East"; + pixel_x = 24 + }, +/turf/simulated/floor/tiled/techmaint, +/area/ship/ert/mech_bay) +"dd" = ( +/obj/machinery/airlock_sensor{ + pixel_x = 24 + }, +/obj/effect/map_helper/airlock/sensor/chamber_sensor, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 }, /turf/simulated/floor/tiled/techfloor, /area/ship/ert/dock_port) -"cu" = ( -/obj/machinery/light/no_nightshift, -/obj/machinery/porta_turret/stationary/CIWS, -/turf/simulated/floor/reinforced/airless, -/area/ship/ert/barracks) -"cv" = ( -/obj/machinery/shield_gen, -/obj/effect/floor_decal/industrial/outline/blue, -/turf/simulated/floor/tiled/techfloor, -/area/ship/ert/eng_storage) -"cC" = ( -/obj/effect/floor_decal/corner/white{ - dir = 4 - }, -/obj/machinery/light_switch{ - dir = 8; - pixel_x = 23 - }, -/turf/simulated/floor/tiled/techfloor, -/area/ship/ert/eng_storage) -"cH" = ( -/obj/machinery/computer/ship/disperser{ - dir = 8 - }, -/obj/item/weapon/paper/vonbraun_cannon, -/turf/simulated/floor/tiled/techfloor, -/area/ship/ert/gunnery) -"cJ" = ( +"dg" = ( /obj/machinery/light/no_nightshift{ dir = 1 }, -/turf/simulated/floor/reinforced/airless, -/area/ship/ert/hallways_aft) -"cO" = ( -/obj/machinery/computer/operating, -/turf/simulated/floor/tiled/white, -/area/ship/ert/med_surg) -"cP" = ( -/obj/machinery/recharge_station, +/obj/effect/floor_decal/industrial/outline/grey, +/obj/structure/dispenser/oxygen, +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" +>>>>>>> c55e7a1c3b... Merge pull request #14538 from KillianKirilenko/kk-vbupg + }, /turf/simulated/floor/tiled/techfloor, -/area/ship/ert/bridge) -"cS" = ( -/turf/simulated/wall/shull, -/area/ship/ert/hallways_aft) -"cV" = ( -/obj/machinery/vending/assist, +/area/ship/ert/barracks) +"dj" = ( +/obj/structure/table/rack/steel, +/obj/item/taperoll/engineering{ + pixel_x = -6; + pixel_y = -6 + }, +/obj/item/taperoll/engineering{ + pixel_x = -2; + pixel_y = -2 + }, +/obj/item/taperoll/engineering{ + pixel_x = 2; + pixel_y = 2 + }, +/obj/item/taperoll/engineering{ + pixel_x = 6; + pixel_y = 6 + }, +/obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/tiled/techfloor, /area/ship/ert/eng_storage) -"cW" = ( -/obj/machinery/atmospherics/pipe/simple/visible{ +"dk" = ( +/obj/structure/table/rack/steel, +/obj/item/weapon/gun/projectile/heavysniper, +/obj/item/ammo_magazine/ammo_box/b145, +/obj/item/ammo_magazine/ammo_box/b145, +/obj/effect/floor_decal/industrial/outline/grey, +/obj/machinery/alarm/alarms_hidden{ + dir = 1; + pixel_y = -26 + }, +/obj/machinery/light/no_nightshift, +/turf/simulated/floor/tiled/techfloor, +/area/ship/ert/armoury_dl) +"dn" = ( +/obj/machinery/portable_atmospherics/canister/oxygen, +/obj/effect/floor_decal/industrial/outline/blue, +/turf/simulated/floor/tiled/techfloor, +/area/ship/ert/barracks) +"dq" = ( +/turf/simulated/wall/shull, +/area/ship/ert/med_surg) +"ds" = ( +/obj/machinery/door/blast/shutters{ + density = 0; + icon_state = "shutter0"; + id = "braun_cells_privacy"; + name = "Privacy Shutters"; + opacity = 0 + }, +/obj/structure/grille, +/obj/structure/window/titanium/full, +/obj/structure/window/titanium{ + dir = 1 + }, +/obj/structure/window/titanium, +/obj/structure/window/titanium{ dir = 4 }, -/obj/machinery/meter, -/obj/machinery/power/apc/hyper{ - alarms_hidden = 1; - dir = 1; - name = "VB APC - North"; - pixel_y = 24 +/obj/structure/cable/yellow{ + d2 = 8; + icon_state = "0-8" }, /obj/structure/cable/yellow{ d2 = 2; icon_state = "0-2" }, -/obj/machinery/light/small{ +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/tiled/techmaint, +/area/ship/ert/brig) +"dx" = ( +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/ship/ert/med) +"dA" = ( +/obj/effect/floor_decal/industrial/outline/blue, +/obj/machinery/portable_atmospherics/canister/carbon_dioxide/engine_setup, +/turf/simulated/floor/tiled/techfloor, +/area/ship/ert/barracks) +"dC" = ( +/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/tiled/techmaint, +/area/ship/ert/bridge) +"dR" = ( +/obj/machinery/shield_capacitor, +/obj/effect/floor_decal/industrial/outline/blue, +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techfloor, +/area/ship/ert/eng_storage) +"dT" = ( +/obj/effect/floor_decal/corner/red{ + dir = 9 + }, +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/tiled/techmaint, +/area/ship/ert/hangar) +"dV" = ( +/turf/simulated/floor/tiled/techfloor, +/area/ship/ert/barracks) +"dW" = ( +/obj/structure/cable/yellow{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/wall/rshull, +/area/ship/ert/gunnery) +"dX" = ( +/obj/structure/table/rack/steel, +/obj/effect/floor_decal/industrial/outline/grey, +/obj/item/weapon/tank/jetpack/carbondioxide{ + pixel_x = -4; + pixel_y = -4 + }, +/obj/item/weapon/tank/jetpack/carbondioxide{ + pixel_x = -2; + pixel_y = -2 + }, +/obj/item/weapon/tank/jetpack/carbondioxide, +/obj/item/weapon/tank/jetpack/carbondioxide{ + pixel_x = 2; + pixel_y = 2 + }, +/obj/item/weapon/tank/jetpack/carbondioxide{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/weapon/tank/jetpack/carbondioxide{ + pixel_x = 6; + pixel_y = 6 + }, +/turf/simulated/floor/tiled/techfloor, +/area/ship/ert/barracks) +"dY" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/machinery/door/blast/regular{ + closed_layer = 4; + dir = 4; + id = "NRV_DELTA"; + layer = 4 + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor/tiled/techfloor, +/area/ship/ert/barracks) +"dZ" = ( +/obj/machinery/recharge_station, +/turf/simulated/floor/tiled/techfloor, +/area/ship/ert/bridge) +"ee" = ( +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +<<<<<<< HEAD +/obj/machinery/pointdefense{ + id_tag = "vonbraun_pd" + }, +/turf/simulated/floor/reinforced/airless, +/area/ship/ert/gunnery) +/obj/machinery/power/pointdefense{ + id_tag = "vonbraun_pd" + }, +/turf/simulated/floor/reinforced/airless, +/area/ship/ert/gunnery) +/turf/space, +/area/space) +"dX" = ( +======= +/turf/simulated/wall/rshull, +/area/ship/ert/mech_bay) +"ef" = ( +>>>>>>> c55e7a1c3b... Merge pull request #14538 from KillianKirilenko/kk-vbupg +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/firedoor/border_only, +/obj/machinery/door/airlock/engineering{ + req_one_access = list(103) + }, /turf/simulated/floor/tiled/techfloor, /area/ship/ert/dock_port) -"cY" = ( +"es" = ( +/obj/machinery/door/airlock/glass_command{ + req_one_access = list(103) + }, +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +<<<<<<< HEAD +/obj/item/clothing/glasses/night{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/clothing/glasses/night{ + pixel_x = 6; + pixel_y = 6 + }, +/obj/machinery/firealarm/alarms_hidden{ + pixel_y = 26 + }, +/obj/effect/floor_decal/industrial/outline/grey, +/turf/simulated/floor/tiled/techfloor, +/area/ship/ert/barracks) +"eg" = ( +/obj/structure/table/rack/steel, +/obj/item/clothing/glasses/night{ + pixel_x = -4; + pixel_y = -4 + }, +/obj/item/clothing/glasses/night{ + pixel_x = -2; + pixel_y = -2 + }, +/obj/item/clothing/glasses/night, +/obj/item/clothing/glasses/night{ + pixel_x = 2; + pixel_y = 2 + }, +/obj/item/clothing/glasses/night{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/clothing/glasses/night{ + pixel_x = 6; + pixel_y = 6 + }, +/obj/machinery/atm{ + pixel_y = 26 + }, +/obj/effect/floor_decal/industrial/outline/grey, +/turf/simulated/floor/tiled/techfloor, +/area/ship/ert/barracks) +"ej" = ( +/obj/machinery/door/blast/regular{ + id = "Von_Braun_Cannon"; + name = "Cannon Firing Port" + }, +/turf/simulated/floor/reinforced/airless, +/area/ship/ert/gunnery) +"es" = ( +/obj/structure/closet/crate{ + dir = 2 + }, +/obj/item/ammo_magazine/m9mml/ap, +/obj/item/ammo_magazine/m9mml/ap, +/obj/item/ammo_magazine/m9mml/ap, +/obj/item/ammo_magazine/m9mml/ap, +/obj/item/ammo_magazine/m9mml/ap, +/obj/item/ammo_magazine/m9mml/ap, +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/industrial/outline/red, +======= +/obj/machinery/door/firedoor/border_only, +>>>>>>> c55e7a1c3b... Merge pull request #14538 from KillianKirilenko/kk-vbupg +/turf/simulated/floor/tiled/techmaint, +/area/ship/ert/bridge) +"et" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor, +<<<<<<< HEAD +/area/ship/ert/teleporter) +======= +/area/ship/ert/engine) +"eG" = ( +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/firedoor/multi_tile{ + dir = 1; + req_one_access = list(103) + }, +/obj/machinery/door/airlock/multi_tile/glass{ + dir = 1; + name = "Outfitting"; + req_one_access = list(103) + }, +/turf/simulated/floor/tiled/techmaint, +/area/ship/ert/barracks) +>>>>>>> c55e7a1c3b... Merge pull request #14538 from KillianKirilenko/kk-vbupg +"eH" = ( +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/wall/rshull, +/area/ship/ert/gunnery) +"eI" = ( +/obj/machinery/door/firedoor/border_only, +/obj/machinery/door/airlock/glass{ + req_one_access = list(103) + }, +/obj/structure/sign/warning/airlock{ + pixel_y = -32 + }, +/turf/simulated/floor/tiled/techmaint, +/area/ship/ert/dock_star) +"eJ" = ( +/obj/machinery/shield_diffuser, +/obj/machinery/door/blast/regular/open{ + dir = 2; + id = "ERT_Blast_Windows"; + name = "Blast Shield" + }, +/obj/machinery/door/blast/regular{ + id = "ERT_Shuttle_Fore" + }, +/turf/simulated/floor/tiled/techmaint, +/area/shuttle/ert_ship_boat) +"eX" = ( +/obj/effect/landmark/late_antag/ert, +/obj/structure/table/bench/steel, +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techfloor, +/area/ship/ert/barracks) +"fe" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/techmaint, +/area/ship/ert/hallways) +"ff" = ( +/obj/machinery/vending/food, +/obj/effect/floor_decal/industrial/outline/grey, +/turf/simulated/floor/tiled/techfloor, +/area/ship/ert/barracks) +"fj" = ( +/obj/machinery/vending/security, +/turf/simulated/floor/tiled/techfloor, +/area/ship/ert/barracks) +"fk" = ( +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/wall/rshull, +/area/ship/ert/gunnery) +"fn" = ( +/obj/machinery/power/pointdefense{ + id_tag = "vonbraun_pd" + }, +/obj/structure/cable/yellow{ + d2 = 4; + dir = 4; + icon_state = "0-4" + }, +/turf/simulated/floor/reinforced/airless, +/area/ship/ert/med) +"fo" = ( +/obj/machinery/light/no_nightshift{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning, +/obj/structure/table/steel_reinforced, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor, +<<<<<<< HEAD +/area/ship/ert/dock_star) +"fx" = ( +/obj/structure/table/steel_reinforced, +/obj/machinery/light/no_nightshift{ + dir = 8 + }, +/obj/machinery/firealarm/alarms_hidden{ + pixel_y = 26 + }, +/obj/machinery/light_switch{ + dir = 4; + pixel_x = -23 + }, +/obj/item/rig_module/sprinter{ + pixel_x = -4; + pixel_y = 4 +======= +/area/ship/ert/brig) +"fp" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/obj/effect/landmark{ + name = "Commando" + }, +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/tiled/techfloor, +/area/ship/ert/barracks) +"fr" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/structure/cable/yellow{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/tiled/techmaint, +/area/ship/ert/eng_storage) +"ft" = ( +/obj/machinery/sleeper{ + dir = 4 +>>>>>>> c55e7a1c3b... Merge pull request #14538 from KillianKirilenko/kk-vbupg + }, +/obj/machinery/light/no_nightshift{ + dir = 4 + }, +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +<<<<<<< HEAD +======= +/turf/simulated/floor/tiled/white, +/area/ship/ert/med_surg) +"fu" = ( +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +>>>>>>> c55e7a1c3b... Merge pull request #14538 from KillianKirilenko/kk-vbupg +/turf/simulated/floor/tiled/techfloor, +/area/ship/ert/hallways_aft) +"fx" = ( +/obj/structure/table/rack/steel, +/obj/effect/floor_decal/industrial/outline/grey, +/obj/item/clothing/mask/gas{ + pixel_x = -4; + pixel_y = -4 + }, +/obj/item/clothing/mask/gas{ + pixel_x = -2; + pixel_y = -2 + }, +/obj/item/clothing/mask/gas, +/obj/item/clothing/mask/gas{ + pixel_x = 2; + pixel_y = 2 + }, +/obj/item/clothing/mask/gas{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/clothing/mask/gas{ + pixel_x = 6; + pixel_y = 6 + }, +/obj/item/clothing/shoes/magboots/adv, +/obj/item/clothing/shoes/magboots/adv, +/obj/item/clothing/shoes/magboots/adv, +/obj/item/clothing/shoes/magboots/adv, +/obj/item/clothing/shoes/magboots/adv, +/obj/item/clothing/shoes/magboots/adv, +/turf/simulated/floor/tiled/techfloor, +/area/ship/ert/barracks) +"fE" = ( +/obj/structure/hull_corner{ + dir = 8 + }, +/turf/space, +/area/space) +"fS" = ( +/obj/machinery/alarm/alarms_hidden{ + dir = 1; + pixel_y = -26 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/ship/ert/hallways_aft) +"fV" = ( +/obj/structure/bed/chair/bay/shuttle, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/ert_ship_boat) +"fW" = ( +/obj/effect/floor_decal/corner/yellow{ + dir = 8 + }, +/obj/effect/floor_decal/corner/red{ + dir = 6 + }, +/obj/machinery/light/no_nightshift, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/light_switch{ + dir = 1; + pixel_y = -23 + }, +/turf/simulated/floor/tiled/techmaint, +/area/ship/ert/hallways) +"fZ" = ( +/obj/machinery/door/blast/regular{ + closed_layer = 4; + dir = 4; + id = "NRV_DELTA"; + layer = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/ship/ert/barracks) +"ga" = ( +/obj/structure/table/steel_reinforced, +/obj/machinery/light/no_nightshift{ + dir = 1 + }, +/obj/item/device/defib_kit/compact/combat/loaded{ + pixel_y = -3 + }, +/obj/item/device/defib_kit/compact/combat/loaded{ + pixel_y = 3 + }, +/turf/simulated/floor/tiled/techfloor, +/area/ship/ert/med) +"gf" = ( +/obj/structure/table/steel_reinforced, +/obj/item/weapon/storage/firstaid/surgery, +/obj/item/weapon/storage/firstaid/surgery, +/obj/item/weapon/surgical/bone_clamp, +/obj/item/weapon/surgical/bone_clamp, +/obj/item/weapon/surgical/scalpel/manager, +/obj/item/weapon/surgical/scalpel/manager, +/obj/item/weapon/surgical/circular_saw/manager, +/obj/item/weapon/surgical/circular_saw/manager, +/obj/item/stack/nanopaste, +/obj/item/stack/nanopaste, +/turf/simulated/floor/tiled/techfloor, +<<<<<<< HEAD +/area/ship/ert/eng_storage) +======= +/area/ship/ert/med) +"gi" = ( +/obj/structure/closet/crate/medical, +/obj/item/weapon/storage/box/autoinjectors, +/obj/item/weapon/storage/box/beakers, +/obj/item/weapon/storage/box/bodybags, +/obj/item/weapon/storage/box/bodybags{ + pixel_x = 2; + pixel_y = 2 + }, +/obj/item/weapon/storage/box/gloves, +/obj/item/weapon/storage/box/freezer, +/obj/item/weapon/storage/box/masks, +/obj/effect/floor_decal/industrial/outline, +/obj/item/weapon/storage/box/bodybags, +/obj/item/weapon/storage/box/bodybags, +/turf/simulated/floor/tiled/techfloor, +/area/ship/ert/med) +"gk" = ( +/obj/machinery/light/no_nightshift, +/obj/machinery/teleport/hub, +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/techmaint, +/area/ship/ert/teleporter) +"gl" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/landmark{ + name = "Commando" + }, +/turf/simulated/floor/tiled/techmaint, +/area/ship/ert/barracks) +>>>>>>> c55e7a1c3b... Merge pull request #14538 from KillianKirilenko/kk-vbupg +"gn" = ( +/obj/structure/cable/yellow{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/turf/simulated/floor/tiled/techfloor, +/area/ship/ert/atmos) +<<<<<<< HEAD +"gx" = ( +/obj/structure/table/rack/steel, +/obj/item/weapon/melee/baton{ + pixel_x = -6 + }, +/obj/item/weapon/melee/baton{ + pixel_x = -2 + }, +/obj/item/weapon/melee/baton{ + pixel_x = 2 +======= +"go" = ( +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/wall/rshull, +/area/ship/ert/eng_storage) +"gp" = ( +/obj/effect/map_helper/airlock/sensor/chamber_sensor, +/obj/machinery/airlock_sensor{ + pixel_x = 24 +>>>>>>> c55e7a1c3b... Merge pull request #14538 from KillianKirilenko/kk-vbupg + }, +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/tiled/techfloor, +/area/ship/ert/dock_star) +"gq" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/white, +/area/ship/ert/med_surg) +"gs" = ( +/obj/machinery/door/airlock/external, +/obj/effect/map_helper/airlock/door/ext_door, +/turf/simulated/floor/tiled/techfloor, +/area/ship/ert/dock_star) +"gx" = ( +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/wall/rshull, +/area/ship/ert/hallways_aft) +"gA" = ( +/obj/machinery/atmospherics/pipe/manifold/visible{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor, +/area/ship/ert/atmos) +"gF" = ( +/obj/structure/table/steel_reinforced, +/obj/item/rig_module/chem_dispenser/combat, +/obj/item/rig_module/chem_dispenser/combat, +/obj/item/rig_module/chem_dispenser/injector, +/obj/item/rig_module/chem_dispenser/injector, +/obj/item/rig_module/device/healthscanner, +/obj/item/rig_module/device/healthscanner, +/obj/item/rig_module/device/healthscanner, +/obj/item/rig_module/device/healthscanner, +/turf/simulated/floor/tiled/techfloor, +/area/ship/ert/mech_bay) +"gN" = ( +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, /obj/machinery/firealarm/alarms_hidden{ dir = 1; pixel_y = -26 }, /turf/simulated/floor/tiled/techfloor, -/area/ship/ert/engine) -"db" = ( -/obj/machinery/door/airlock/glass_external, -/obj/effect/map_helper/airlock/door/int_door, -/turf/simulated/floor/tiled/techfloor, -/area/ship/ert/gunnery) -"dd" = ( -/obj/machinery/atmospherics/pipe/manifold/visible, -/turf/simulated/wall/shull, -/area/ship/ert/dock_port) -"dg" = ( -/obj/machinery/atmospherics/unary/vent_pump/high_volume{ - dir = 8 - }, -/obj/effect/map_helper/airlock/atmos/chamber_pump, -/obj/machinery/light/no_nightshift{ - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor, -/area/ship/ert/dock_port) -"dk" = ( -/obj/effect/floor_decal/industrial/warning{ +/area/ship/ert/atmos) +"gP" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ dir = 1 }, -/obj/machinery/portable_atmospherics/powered/pump/filled, +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/tiled/techfloor, +/area/ship/ert/teleporter) +"gQ" = ( +/obj/machinery/door/firedoor, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced, +/obj/machinery/door/blast/regular/open{ + dir = 8; + id = "ERT_Blast_Windows"; + name = "Blast Shield" + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/ert_ship_boat) +"gR" = ( +/obj/machinery/atmospherics/pipe/tank/air{ + dir = 4; + start_pressure = 740.5 + }, +/turf/simulated/floor/tiled/techfloor, +/area/ship/ert/dock_port) +"gT" = ( +/obj/machinery/cryopod/ert_ship, +/turf/simulated/floor/tiled/white, +/area/ship/ert/med_surg) +"gV" = ( +/obj/effect/floor_decal/corner/white{ + dir = 6 + }, +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, /turf/simulated/floor/tiled/techmaint, -/area/ship/ert/hangar) -"dn" = ( -/obj/machinery/embedded_controller/radio/airlock/docking_port_multi{ - dir = 8; - id_tag = "von_braun_port"; - master_tag = "von_braun_master"; - name = "Port Docking Control"; - pixel_x = 22 +/area/ship/ert/eng_storage) +"gW" = ( +/obj/structure/table/steel_reinforced, +/obj/item/rig_module/device/rcd{ + pixel_x = -4; + pixel_y = -4 + }, +/obj/item/rig_module/device/rcd{ + pixel_x = -2; + pixel_y = -2 + }, +/obj/item/rig_module/device/plasmacutter{ + pixel_x = 2; + pixel_y = 2 + }, +/obj/item/rig_module/device/plasmacutter{ + pixel_x = 4; + pixel_y = 4 }, /turf/simulated/floor/tiled/techfloor, +/area/ship/ert/mech_bay) +"gX" = ( +/obj/structure/table/rack/steel, +/obj/item/ammo_magazine/m9mmp90{ + pixel_x = 12 + }, +/obj/item/ammo_magazine/m9mmp90{ + pixel_x = 10 + }, +/obj/item/ammo_magazine/m9mmp90{ + pixel_x = 8 + }, +/obj/item/ammo_magazine/m9mmp90{ + pixel_x = 6 + }, +/obj/item/ammo_magazine/m9mmp90{ + pixel_x = 4 + }, +/obj/item/ammo_magazine/m9mmp90{ + pixel_x = 2 + }, +/obj/item/ammo_magazine/m9mmp90, +/obj/item/ammo_magazine/m9mmp90{ + pixel_x = -2 + }, +/obj/item/ammo_magazine/m9mmp90{ + pixel_x = -4 + }, +/obj/item/ammo_magazine/m9mmp90{ + pixel_x = -6 + }, +/obj/item/ammo_magazine/m9mmp90{ + pixel_x = -8 + }, +/obj/item/ammo_magazine/m9mmp90{ + pixel_x = -10 + }, +/obj/effect/floor_decal/industrial/outline/grey, +/obj/item/weapon/gun/projectile/automatic/p90{ + pixel_y = -6 + }, +/obj/item/weapon/gun/projectile/automatic/p90{ + pixel_y = -2 + }, +/obj/item/weapon/gun/projectile/automatic/p90{ + pixel_y = 2 + }, +/obj/item/weapon/gun/projectile/automatic/p90{ + pixel_y = 6 + }, +/turf/simulated/floor/tiled/techfloor, +/area/ship/ert/armoury_dl) +"gY" = ( +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, +/obj/effect/catwalk_plated/techmaint, +/turf/simulated/floor/plating, +/area/ship/ert/brig) +"gZ" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/yellow{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/tiled/white, +/area/ship/ert/med_surg) +"ha" = ( +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/door/firedoor/border_only, +/obj/machinery/door/airlock/highsecurity{ + name = "Teleporter Chamber"; + req_one_access = list(103) + }, +<<<<<<< HEAD +======= +/turf/simulated/floor/tiled/techmaint, +/area/ship/ert/teleporter) +"hb" = ( +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/wall/rshull, +/area/ship/ert/med_surg) +"hc" = ( +/obj/machinery/sleep_console{ + dir = 4 + }, +>>>>>>> c55e7a1c3b... Merge pull request #14538 from KillianKirilenko/kk-vbupg +/turf/simulated/floor/tiled/white, +/area/ship/ert/med_surg) +"hd" = ( +/obj/machinery/power/apc/hyper{ + alarms_hidden = 1; + dir = 4; + name = "VB APC - East"; + pixel_x = 24 + }, +/obj/structure/cable/yellow, +/obj/machinery/embedded_controller/radio/docking_port_multi{ + child_names_txt = "Port Airlock Control;Starboard Airlock Control"; + child_tags_txt = "von_braun_port;von_braun_star"; + dir = 1; + id_tag = "von_braun_master"; + pixel_y = -22 + }, +/obj/machinery/light/no_nightshift, +/turf/simulated/floor/tiled/techfloor, +/area/ship/ert/bridge) +"hj" = ( +/obj/structure/table/steel_reinforced, +/obj/item/rig_module/device/drill{ + pixel_y = -4 + }, +/obj/item/rig_module/device/drill{ + pixel_y = 4 + }, +/obj/item/rig_module/maneuvering_jets{ + pixel_x = -5 + }, +/obj/item/rig_module/maneuvering_jets{ + pixel_x = -2 + }, +/obj/item/rig_module/maneuvering_jets{ + pixel_x = 1 + }, +/obj/item/rig_module/maneuvering_jets{ + pixel_x = 4 + }, +/obj/item/rig_module/maneuvering_jets{ + pixel_x = 7 + }, +/obj/item/rig_module/maneuvering_jets{ + pixel_x = 10 + }, +/turf/simulated/floor/tiled/techfloor, +/area/ship/ert/mech_bay) +"hl" = ( +/obj/effect/floor_decal/corner/red{ + dir = 8 + }, +/obj/structure/reagent_dispensers/foam, +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/floor_decal/industrial/outline, +/turf/simulated/floor/tiled/techmaint, +/area/ship/ert/hangar) +<<<<<<< HEAD +"hW" = ( +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 1 + }, +/obj/machinery/pointdefense{ + id_tag = "vonbraun_pd" + }, +/obj/machinery/light/no_nightshift{ + dir = 8 + }, +/turf/simulated/floor/reinforced/airless, +/area/ship/ert/hangar) +"hW" = ( +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 1 + }, +/obj/machinery/power/pointdefense{ + id_tag = "vonbraun_pd" + }, +/obj/machinery/light/no_nightshift{ + dir = 8 + }, +/turf/simulated/floor/reinforced/airless, +/area/ship/ert/hangar) +"hY" = ( +/obj/structure/hull_corner{ + dir = 4 +======= +"hq" = ( +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" +>>>>>>> c55e7a1c3b... Merge pull request #14538 from KillianKirilenko/kk-vbupg + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/light_switch{ + dir = 8; + pixel_x = 23 + }, +/turf/simulated/floor/tiled/techmaint, +/area/ship/ert/dock_star) +"hs" = ( +/obj/machinery/atmospherics/pipe/manifold/visible, +/turf/simulated/wall/shull, /area/ship/ert/dock_port) -"dp" = ( +"hv" = ( +/obj/structure/closet/medical_wall{ + pixel_x = 32 + }, +/obj/item/weapon/storage/firstaid/adv{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/weapon/storage/firstaid/adv{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/weapon/storage/firstaid/fire{ + pixel_x = 2; + pixel_y = 2 + }, +/obj/item/weapon/storage/firstaid/fire{ + pixel_x = 2; + pixel_y = 2 + }, +/obj/item/weapon/storage/firstaid/o2, +/obj/item/weapon/storage/firstaid/o2, +/obj/item/weapon/storage/firstaid/toxin{ + pixel_x = -2; + pixel_y = -2 + }, +<<<<<<< HEAD +/obj/effect/floor_decal/industrial/outline/grey, +/turf/simulated/floor/tiled/techfloor, +/area/ship/ert/barracks) +"ib" = ( +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 8 + }, +/obj/machinery/pointdefense{ + id_tag = "vonbraun_pd" + }, +/obj/machinery/light/no_nightshift{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 8 + }, +/obj/machinery/power/pointdefense{ + id_tag = "vonbraun_pd" + }, +/obj/machinery/light/no_nightshift{ + dir = 8 + }, +/turf/simulated/floor/reinforced/airless, +/area/ship/ert/hangar) +"ij" = ( +/turf/simulated/floor/tiled/white, +/area/ship/ert/med_surg) +"ik" = ( +/obj/structure/cable/yellow{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/tiled/techmaint, +/area/ship/ert/dock_port) +"ip" = ( +/turf/simulated/floor/tiled/techmaint, +/area/ship/ert/barracks) +"ix" = ( +/obj/machinery/door/firedoor/border_only, +/obj/machinery/door/airlock/glass{ + req_one_access = list(103) + }, +/obj/structure/sign/warning/airlock{ + pixel_y = -32 + }, +======= +/obj/item/weapon/storage/firstaid/toxin{ + pixel_x = -2; + pixel_y = -2 + }, +/turf/simulated/floor/tiled/techfloor, +/area/ship/ert/med) +"hx" = ( +/obj/machinery/light/no_nightshift{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor, +/area/ship/ert/hallways_aft) +"hA" = ( +/obj/machinery/power/pointdefense{ + id_tag = "vonbraun_pd" + }, +/obj/machinery/light/no_nightshift{ + dir = 4 + }, +/obj/structure/cable/yellow{ + d2 = 4; + icon_state = "0-4" + }, +/turf/simulated/floor/reinforced/airless, +/area/ship/ert/engine) +"hF" = ( +>>>>>>> c55e7a1c3b... Merge pull request #14538 from KillianKirilenko/kk-vbupg +/turf/simulated/floor/tiled/techmaint, +/area/ship/ert/teleporter) +"hN" = ( +/obj/structure/closet/wardrobe/ert, +/obj/item/modular_computer/tablet/preset/custom_loadout/elite, +/obj/item/weapon/storage/box/survival/comp{ + starts_with = list(/obj/item/weapon/tool/prybar/red,/obj/item/clothing/glasses/goggles,/obj/item/weapon/reagent_containers/hypospray/autoinjector,/obj/item/stack/medical/bruise_pack,/obj/item/device/flashlight/glowstick,/obj/item/weapon/reagent_containers/food/snacks/candy/proteinbar,/obj/item/clothing/mask/breath,/obj/item/weapon/tank/emergency/oxygen/engi) + }, +/obj/machinery/light/no_nightshift{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/outline/grey, +/obj/item/modular_computer/laptop/preset/custom_loadout/elite, +/turf/simulated/floor/tiled/techfloor, +<<<<<<< HEAD +/area/ship/ert/med) +"iO" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/turf/simulated/floor/tiled/techmaint, +======= +>>>>>>> c55e7a1c3b... Merge pull request #14538 from KillianKirilenko/kk-vbupg +/area/ship/ert/barracks) +"hQ" = ( +/obj/machinery/door/airlock/glass_medical{ + name = "Medical Bay"; + req_access = list(103) + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +<<<<<<< HEAD +======= +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/white, +/area/ship/ert/med_surg) +"hS" = ( +/obj/structure/closet/wardrobe/ert, +/obj/item/modular_computer/tablet/preset/custom_loadout/elite, +/obj/item/weapon/storage/box/survival/comp{ + starts_with = list(/obj/item/weapon/tool/prybar/red,/obj/item/clothing/glasses/goggles,/obj/item/weapon/reagent_containers/hypospray/autoinjector,/obj/item/stack/medical/bruise_pack,/obj/item/device/flashlight/glowstick,/obj/item/weapon/reagent_containers/food/snacks/candy/proteinbar,/obj/item/clothing/mask/breath,/obj/item/weapon/tank/emergency/oxygen/engi) + }, +/obj/machinery/light/no_nightshift{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/outline/grey, +/obj/item/modular_computer/laptop/preset/custom_loadout/elite, +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techfloor, +/area/ship/ert/barracks) +"hU" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/structure/ship_munition/disperser_charge/explosive, +/turf/simulated/floor/reinforced, +/area/ship/ert/hallways_aft) +"hV" = ( +/obj/structure/closet/crate{ + dir = 2 + }, +/obj/item/ammo_magazine/m9mml/ap, +/obj/item/ammo_magazine/m9mml/ap, +/obj/item/ammo_magazine/m9mml/ap, +/obj/item/ammo_magazine/m9mml/ap, +/obj/item/ammo_magazine/m9mml/ap, +/obj/item/ammo_magazine/m9mml/ap, +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/industrial/outline/red, +/turf/simulated/floor/tiled/techmaint, +/area/ship/ert/armoury_dl) +"hY" = ( /obj/structure/table/rack/steel, /obj/item/weapon/rig/ert/assetprotection{ pixel_x = -4; @@ -804,31 +1963,61 @@ /obj/effect/floor_decal/industrial/outline/grey, /turf/simulated/floor/tiled/techfloor, /area/ship/ert/barracks) -"dq" = ( +"ia" = ( +/turf/simulated/wall/shull, +/area/ship/ert/dock_port) +"ii" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/fuel{ + dir = 4 + }, +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techfloor, +/area/ship/ert/engine) +"ij" = ( +>>>>>>> c55e7a1c3b... Merge pull request #14538 from KillianKirilenko/kk-vbupg +/turf/simulated/floor/tiled/white, +/area/ship/ert/med_surg) +"ik" = ( +/obj/structure/table/rack/steel, +/obj/item/toy/plushie/squid/blue{ + desc = "A small, cute and loveable squid friend. This one is blue. Despite the name, it seems no more or less deadly than your regular plush squid."; + name = "NT 'Deathsquid' Plushie" + }, +/obj/effect/floor_decal/industrial/outline/grey, +/obj/item/device/mapping_unit/deathsquad, +/obj/item/device/holomap_beacon/deathsquad, +/obj/item/device/holomap_beacon/deathsquad, +/obj/item/device/holomap_beacon/deathsquad, +/obj/item/device/holomap_beacon/deathsquad, +/turf/simulated/floor/tiled/techfloor, +/area/ship/ert/barracks) +"ip" = ( +/turf/simulated/floor/tiled/techmaint, +/area/ship/ert/barracks) +"ir" = ( +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, /turf/simulated/wall/shull, /area/ship/ert/med_surg) -"ds" = ( -/obj/structure/table/rack, -/obj/item/weapon/storage/backpack/ert/commander, -/obj/item/clothing/suit/space/void/responseteam/command, -/obj/item/clothing/head/helmet/ert/command, -/obj/item/clothing/suit/armor/vest/ert/command, -/turf/simulated/floor/wood, -/area/ship/ert/commander) -"dx" = ( -/obj/effect/floor_decal/corner/white{ - dir = 9 +"is" = ( +/obj/machinery/computer/cryopod/ert{ + pixel_y = 32 }, -/turf/simulated/floor/tiled/techmaint, -/area/ship/ert/med) -"dA" = ( -/obj/machinery/door/airlock/glass_medical{ - name = "Medical Bay"; - req_access = list(103) - }, -/turf/simulated/floor/tiled/techmaint, -/area/ship/ert/hangar) -"dB" = ( +/turf/simulated/floor/tiled/white, +/area/ship/ert/med_surg) +"iw" = ( +/obj/machinery/door/window/brigdoor/northleft, +/turf/simulated/floor/tiled/techfloor, +/area/ship/ert/hallways_aft) +"ix" = ( /obj/structure/table/rack/steel, /obj/item/clothing/suit/armor/swat{ pixel_x = -4; @@ -902,23 +2091,201 @@ }, /obj/effect/floor_decal/industrial/outline/grey, /turf/simulated/floor/tiled/techfloor, +<<<<<<< HEAD +/area/ship/ert/armoury_st) +"kh" = ( +/obj/machinery/light/no_nightshift{ + dir = 8 +======= /area/ship/ert/barracks) -"dT" = ( -/obj/machinery/door/firedoor, -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/structure/window/reinforced, -/obj/machinery/door/blast/regular/open{ - dir = 8; - id = "ERT_Blast_Windows"; - name = "Blast Shield" +"iz" = ( +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" }, -/obj/structure/window/reinforced{ +/turf/simulated/wall/shull, +/area/ship/ert/mech_bay) +"iC" = ( +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" +>>>>>>> c55e7a1c3b... Merge pull request #14538 from KillianKirilenko/kk-vbupg + }, +/turf/simulated/floor/tiled/techfloor, +/area/ship/ert/eng_storage) +"iD" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/ship/ert/bridge) +"iF" = ( +/obj/machinery/porta_turret/stationary/CIWS, +/turf/simulated/floor/reinforced/airless, +/area/ship/ert/med_surg) +"iG" = ( +/obj/machinery/vending/tool, +/obj/machinery/light/no_nightshift{ + dir = 1 + }, +<<<<<<< HEAD +/turf/simulated/floor/tiled/techmaint, +/area/ship/ert/hallways_aft) +"km" = ( +/obj/effect/floor_decal/corner/white{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/ship/ert/med) +"kt" = ( +/obj/machinery/door/blast/regular/open{ + id = "ERT_Shuttle_Rear"; + name = "Boarding Hatch" + }, +/obj/machinery/button/remote/blast_door{ + id = "ERT_Shuttle_Rear"; + name = "ERT Shuttle Access"; + pixel_y = 24; + req_access = list(103) +======= +/turf/simulated/floor/tiled/techfloor, +/area/ship/ert/eng_storage) +"iK" = ( +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/table/steel_reinforced, +/obj/item/weapon/gun/energy/sizegun, +/obj/item/weapon/gun/energy/sizegun, +/turf/simulated/floor/tiled/techfloor, +/area/ship/ert/brig) +"iO" = ( +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/light/no_nightshift{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor, +/area/ship/ert/dock_port) +"iR" = ( +/obj/machinery/airlock_sensor{ + pixel_y = 21 + }, +/obj/effect/map_helper/airlock/sensor/int_sensor, +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/techfloor, +/area/ship/ert/dock_port) +"iT" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 +>>>>>>> c55e7a1c3b... Merge pull request #14538 from KillianKirilenko/kk-vbupg + }, +/turf/simulated/floor/tiled/techmaint, +/area/ship/ert/hallways) +"iW" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +<<<<<<< HEAD +/turf/simulated/floor/tiled/techfloor, +/area/ship/ert/med) +"kz" = ( +/obj/structure/closet/crate{ + dir = 1 +======= +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/firealarm/alarms_hidden{ + pixel_y = 26 +>>>>>>> c55e7a1c3b... Merge pull request #14538 from KillianKirilenko/kk-vbupg + }, +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/white, +/area/ship/ert/med_surg) +"iX" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/landmark{ + name = "Commando" + }, +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techmaint, +/area/ship/ert/barracks) +"iY" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + 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/tiled/white, +/area/ship/ert/med_surg) +"jb" = ( +/obj/machinery/autolathe{ + desc = "Your typical Autolathe. It appears to have much more options than your regular one, however..."; + hacked = 1; + name = "Unlocked Autolathe" + }, +/turf/simulated/floor/tiled/techfloor, +/area/ship/ert/eng_storage) +"jn" = ( +/obj/effect/floor_decal/corner/white{ + dir = 4 + }, +/obj/machinery/light_switch{ + dir = 8; + pixel_x = 23 + }, +/turf/simulated/floor/tiled/techfloor, +/area/ship/ert/eng_storage) +"jt" = ( +/obj/machinery/computer/ship/sensors, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/structure/railing/grey{ dir = 1 }, /turf/simulated/floor/tiled/techfloor, -/area/shuttle/ert_ship_boat) -"dV" = ( +/area/ship/ert/bridge) +"jv" = ( /obj/structure/table/rack/steel, /obj/item/clothing/glasses/thermal{ pixel_x = -4; @@ -944,668 +2311,403 @@ /obj/effect/floor_decal/industrial/outline/grey, /turf/simulated/floor/tiled/techfloor, /area/ship/ert/barracks) -"dW" = ( -/obj/structure/hull_corner{ - dir = 8 +"jy" = ( +/obj/item/device/aicard, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 }, -/obj/machinery/pointdefense{ - id_tag = "vonbraun_pd" +/obj/machinery/light_switch{ + dir = 1; + pixel_y = -23 }, -/turf/simulated/floor/reinforced/airless, -/area/ship/ert/gunnery) -/obj/machinery/power/pointdefense{ - id_tag = "vonbraun_pd" - }, -/turf/simulated/floor/reinforced/airless, -/area/ship/ert/gunnery) -/turf/space, -/area/space) -"dX" = ( -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/door/firedoor/border_only, -/obj/machinery/door/airlock/engineering{ - req_one_access = list(103) - }, -/turf/simulated/floor/tiled/techfloor, -/area/ship/ert/dock_port) -"dY" = ( -/obj/machinery/door/airlock/glass_external, -/obj/effect/map_helper/airlock/door/int_door, -/obj/machinery/door/firedoor/multi_tile, -/turf/simulated/floor/tiled/techfloor, -/area/ship/ert/dock_port) -"ee" = ( -/obj/machinery/door/airlock/glass_external, -/obj/effect/map_helper/airlock/door/int_door, -/turf/simulated/floor/tiled/techfloor, -/area/ship/ert/dock_port) -"ef" = ( -/obj/structure/table/rack/steel, -/obj/item/clothing/glasses/night{ - pixel_x = -4; - pixel_y = -4 - }, -/obj/item/clothing/glasses/night{ - pixel_x = -2; - pixel_y = -2 - }, -/obj/item/clothing/glasses/night, -/obj/item/clothing/glasses/night{ - pixel_x = 2; - pixel_y = 2 - }, -/obj/item/clothing/glasses/night{ - pixel_x = 4; - pixel_y = 4 - }, -/obj/item/clothing/glasses/night{ - pixel_x = 6; - pixel_y = 6 - }, -/obj/machinery/firealarm/alarms_hidden{ - pixel_y = 26 - }, -/obj/effect/floor_decal/industrial/outline/grey, -/turf/simulated/floor/tiled/techfloor, -/area/ship/ert/barracks) -"eg" = ( -/obj/structure/table/rack/steel, -/obj/item/clothing/glasses/night{ - pixel_x = -4; - pixel_y = -4 - }, -/obj/item/clothing/glasses/night{ - pixel_x = -2; - pixel_y = -2 - }, -/obj/item/clothing/glasses/night, -/obj/item/clothing/glasses/night{ - pixel_x = 2; - pixel_y = 2 - }, -/obj/item/clothing/glasses/night{ - pixel_x = 4; - pixel_y = 4 - }, -/obj/item/clothing/glasses/night{ - pixel_x = 6; - pixel_y = 6 - }, -/obj/machinery/atm{ - pixel_y = 26 - }, -/obj/effect/floor_decal/industrial/outline/grey, -/turf/simulated/floor/tiled/techfloor, -/area/ship/ert/barracks) -"ej" = ( -/obj/machinery/door/blast/regular{ - id = "Von_Braun_Cannon"; - name = "Cannon Firing Port" - }, -/turf/simulated/floor/reinforced/airless, -/area/ship/ert/gunnery) -"es" = ( -/obj/structure/closet/crate{ - dir = 2 - }, -/obj/item/ammo_magazine/m9mml/ap, -/obj/item/ammo_magazine/m9mml/ap, -/obj/item/ammo_magazine/m9mml/ap, -/obj/item/ammo_magazine/m9mml/ap, -/obj/item/ammo_magazine/m9mml/ap, -/obj/item/ammo_magazine/m9mml/ap, -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/effect/floor_decal/industrial/outline/red, -/turf/simulated/floor/tiled/techmaint, -/area/ship/ert/armoury_dl) -"et" = ( -/obj/machinery/atmospherics/pipe/manifold4w/visible/fuel, -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/machinery/door/blast/regular/open{ - id = "VB_Rear_Blast"; - name = "Blast Shield" - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/ship/ert/engine) -"eD" = ( -/obj/structure/hull_corner{ - dir = 4 - }, -/turf/simulated/floor/reinforced/airless, -/area/ship/ert/med) -"eF" = ( -/obj/effect/floor_decal/industrial/warning, -/turf/simulated/floor/tiled/techfloor, -/area/ship/ert/teleporter) -"eH" = ( -/obj/structure/sign/department/cargo{ - name = "ENGINEERING SUPPLIES" - }, -/turf/simulated/wall/rshull, -/area/ship/ert/bridge) -"eI" = ( -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ +/obj/structure/table/hardwoodtable, +/turf/simulated/floor/wood, +/area/ship/ert/commander) +"jz" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 4 }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, /turf/simulated/floor/tiled/techmaint, -/area/ship/ert/eng_storage) -"eL" = ( -/mob/living/simple_mob/animal/passive/mimepet, -/turf/simulated/floor/wood, -/area/ship/ert/commander) -"eO" = ( -/obj/effect/map_helper/airlock/atmos/chamber_pump, -/obj/effect/map_helper/airlock/sensor/chamber_sensor, -/obj/machinery/atmospherics/unary/vent_pump/high_volume{ +/area/ship/ert/barracks) +"jA" = ( +/obj/machinery/door/blast/shutters{ + density = 0; + dir = 2; + icon_state = "shutter0"; + id = "braun_cells_privacy"; + name = "Privacy Shutters"; + opacity = 0 + }, +/obj/structure/grille, +/obj/structure/window/titanium/full, +/obj/structure/window/titanium{ dir = 1 }, -/obj/machinery/embedded_controller/radio/airlock/airlock_controller{ - id_tag = "vb_cannon_loader"; - pixel_x = 24; - pixel_y = 23 - }, -/obj/machinery/airlock_sensor{ - pixel_x = -25; - pixel_y = 22 - }, -/turf/simulated/floor/airless, -/area/ship/ert/gunnery) -"eP" = ( -/obj/structure/table/steel_reinforced, -/obj/machinery/atmospherics/unary/vent_pump/on, -/obj/item/weapon/storage/box/cdeathalarm_kit{ - pixel_x = -1; - pixel_y = -1 - }, -/obj/item/weapon/storage/box/cdeathalarm_kit{ - pixel_x = 1; - pixel_y = 1 - }, -/turf/simulated/floor/tiled/techfloor, -/area/ship/ert/barracks) -"eX" = ( -/obj/structure/table/steel_reinforced, -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/obj/item/weapon/storage/box/backup_kit{ - pixel_x = -1; - pixel_y = -1 - }, -/obj/item/weapon/storage/box/backup_kit{ - pixel_x = 1; - pixel_y = 1 - }, -/turf/simulated/floor/tiled/techfloor, -/area/ship/ert/barracks) -"ff" = ( -/obj/machinery/vending/fitness, -/turf/simulated/floor/tiled/techfloor, -/area/ship/ert/barracks) -"fj" = ( -/obj/machinery/door/blast/regular{ - closed_layer = 4; - dir = 4; - id = "NRV_DELTA"; - layer = 4 - }, -/turf/simulated/floor/tiled/techfloor, -/area/ship/ert/barracks) -"fk" = ( -/obj/machinery/atmospherics/pipe/simple/visible{ +/obj/structure/window/titanium, +/obj/structure/window/titanium{ dir = 4 }, -/obj/machinery/meter, -/obj/machinery/power/apc/hyper{ - alarms_hidden = 1; - name = "VB APC - South"; - pixel_y = -24 +/obj/structure/cable/yellow{ + d2 = 8; + icon_state = "0-8" }, /obj/structure/cable/yellow, -/obj/machinery/light/small{ +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/tiled/techmaint, +/area/ship/ert/brig) +"jB" = ( +/obj/machinery/alarm/alarms_hidden{ + dir = 8; + pixel_x = 26 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/ship/ert/brig) +"jD" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ dir = 4 }, -/turf/simulated/floor/tiled/techfloor, -/area/ship/ert/dock_star) -"fx" = ( -/obj/structure/table/steel_reinforced, -/obj/machinery/light/no_nightshift{ - dir = 8 - }, -/obj/machinery/firealarm/alarms_hidden{ - pixel_y = 26 - }, -/obj/machinery/light_switch{ - dir = 4; - pixel_x = -23 - }, -/obj/item/rig_module/sprinter{ - pixel_x = -4; - pixel_y = 4 - }, -/obj/item/rig_module/sprinter{ - pixel_x = 4; - pixel_y = 4 - }, -/obj/item/rig_module/rescue_pharm{ - pixel_y = -2 - }, -/turf/simulated/floor/tiled/techfloor, -/area/ship/ert/mech_bay) -"fE" = ( -/obj/structure/table/steel_reinforced, -/obj/item/rig_module/mounted{ - pixel_x = -4; - pixel_y = -4 - }, -/obj/item/rig_module/mounted/egun{ - pixel_x = -2; - pixel_y = -2 - }, -/obj/item/rig_module/mounted/egun, -/obj/item/rig_module/mounted/egun{ - pixel_x = 2; - pixel_y = 2 - }, -/obj/item/rig_module/mounted/egun{ - pixel_x = 4; - pixel_y = 4 - }, -/turf/simulated/floor/tiled/techfloor, -/area/ship/ert/mech_bay) -"fP" = ( -/obj/structure/table/steel_reinforced, -/obj/item/rig_module/chem_dispenser/combat, -/obj/item/rig_module/chem_dispenser/combat, -/obj/item/rig_module/chem_dispenser/injector, -/obj/item/rig_module/chem_dispenser/injector, -/obj/item/rig_module/device/healthscanner, -/obj/item/rig_module/device/healthscanner, -/obj/item/rig_module/device/healthscanner, -/obj/item/rig_module/device/healthscanner, -/turf/simulated/floor/tiled/techfloor, -/area/ship/ert/mech_bay) -"fU" = ( -/obj/structure/table/steel_reinforced, -/obj/item/rig_module/device/rcd{ - pixel_x = -4; - pixel_y = -4 - }, -/obj/item/rig_module/device/rcd{ - pixel_x = -2; - pixel_y = -2 - }, -/obj/item/rig_module/device/plasmacutter{ - pixel_x = 2; - pixel_y = 2 - }, -/obj/item/rig_module/device/plasmacutter{ - pixel_x = 4; - pixel_y = 4 - }, -/turf/simulated/floor/tiled/techfloor, -/area/ship/ert/mech_bay) -"fZ" = ( -/obj/structure/table/steel_reinforced, -/obj/item/rig_module/device/drill{ - pixel_y = -4 - }, -/obj/item/rig_module/device/drill{ - pixel_y = 4 - }, -/obj/item/rig_module/maneuvering_jets{ - pixel_x = -5 - }, -/obj/item/rig_module/maneuvering_jets{ - pixel_x = -2 - }, -/obj/item/rig_module/maneuvering_jets{ - pixel_x = 1 - }, -/obj/item/rig_module/maneuvering_jets{ - pixel_x = 4 - }, -/obj/item/rig_module/maneuvering_jets{ - pixel_x = 7 - }, -/obj/item/rig_module/maneuvering_jets{ - pixel_x = 10 - }, -/turf/simulated/floor/tiled/techfloor, -/area/ship/ert/mech_bay) -"ga" = ( -/obj/structure/sign/department/operational{ - name = "MEDICAL & SURGERY" - }, -/turf/simulated/wall/shull, -/area/ship/ert/med_surg) -"gf" = ( -/obj/machinery/bodyscanner{ - dir = 8 - }, -/obj/machinery/light/no_nightshift{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/ship/ert/med_surg) -"gh" = ( -/obj/machinery/light/no_nightshift{ - dir = 8 - }, -/obj/machinery/button/remote/blast_door{ - description_fluff = "\\(OOC) DO NOT TOUCH THIS BUTTON WITHOUT THE EXPLICIT PERMISSION OF AN ADMINISTRATOR."; - dir = 4; - id = "NRV_MECHS"; - name = "MECH BAY CONTROL"; - pixel_x = -25; - req_one_access = list(108) - }, -/turf/simulated/floor/tiled/techfloor, -/area/ship/ert/gunnery) -"gk" = ( -/obj/machinery/shieldwallgen, -/obj/effect/floor_decal/industrial/outline/blue, -/turf/simulated/floor/tiled/techfloor, -/area/ship/ert/eng_storage) -"gn" = ( -/obj/machinery/light/no_nightshift, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/machinery/light_switch{ - dir = 1; - pixel_y = -23 - }, -/turf/simulated/floor/tiled/techfloor, -/area/ship/ert/atmos) -"gx" = ( -/obj/structure/table/rack/steel, -/obj/item/weapon/melee/baton{ - pixel_x = -6 - }, -/obj/item/weapon/melee/baton{ - pixel_x = -2 - }, -/obj/item/weapon/melee/baton{ - pixel_x = 2 - }, -/obj/item/weapon/melee/baton{ - pixel_x = 6 - }, -/obj/item/weapon/shield/riot{ - pixel_x = -6 - }, -/obj/item/weapon/shield/riot{ - pixel_x = -2 - }, -/obj/item/weapon/shield/riot{ - pixel_x = 2 - }, -/obj/item/weapon/shield/riot{ - pixel_x = 6 - }, -/obj/effect/floor_decal/industrial/outline/grey, -/obj/machinery/recharger/wallcharger{ - pixel_x = -23; - pixel_y = 5 - }, -/obj/machinery/recharger/wallcharger{ - pixel_x = -23; - pixel_y = -4 - }, -/obj/machinery/recharger/wallcharger{ - pixel_x = -23; - pixel_y = -12 - }, -/turf/simulated/floor/tiled/techfloor, -/area/ship/ert/armoury_st) -"gA" = ( -/turf/simulated/floor/tiled/techfloor, -/area/ship/ert/atmos) -"gF" = ( +/turf/simulated/floor/tiled/techmaint, +/area/ship/ert/barracks) +"jJ" = ( /obj/machinery/light/no_nightshift{ dir = 1 }, -/obj/effect/floor_decal/industrial/warning{ - dir = 10 +/obj/machinery/porta_turret/stationary/CIWS, +/turf/simulated/floor/reinforced/airless, +/area/ship/ert/eng_storage) +"jK" = ( +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" }, +/turf/simulated/floor/tiled/techmaint, +/area/ship/ert/barracks) +"jQ" = ( +/obj/structure/ship_munition/disperser_charge/emp, +/obj/effect/floor_decal/industrial/warning, /obj/structure/railing, /turf/simulated/floor/reinforced, /area/ship/ert/gunnery) -"gN" = ( +"jU" = ( +/obj/structure/ship_munition/disperser_charge/emp, +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/reinforced, +/area/ship/ert/gunnery) +"jY" = ( +/obj/machinery/atmospherics/unary/vent_pump/on, +/turf/simulated/floor/tiled/techmaint, +/area/ship/ert/barracks) +"jZ" = ( +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/table/steel_reinforced, +/obj/item/device/laser_pointer/upgraded, +/obj/item/device/laser_pointer/upgraded, +/obj/item/device/flash, +/obj/item/device/flash, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor, +/area/ship/ert/brig) +"kg" = ( +/obj/structure/ship_munition/disperser_charge/emp, +/obj/effect/floor_decal/industrial/warning, +/obj/structure/railing, +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/reinforced, +/area/ship/ert/gunnery) +"kh" = ( +/obj/machinery/firealarm/alarms_hidden{ + pixel_y = 26 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/ship/ert/hallways_aft) +"kk" = ( +/obj/machinery/light/no_nightshift{ + dir = 1 + }, +/turf/simulated/floor/reinforced/airless, +/area/ship/ert/engine) +"kl" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/machinery/alarm/alarms_hidden{ + dir = 1; + pixel_y = -26 + }, +/turf/simulated/floor/tiled/techmaint, +/area/ship/ert/dock_port) +"km" = ( +/obj/machinery/chem_master, +/turf/simulated/floor/tiled/techfloor, +/area/ship/ert/med) +"kp" = ( +/obj/machinery/light/no_nightshift{ + dir = 4 + }, +/obj/machinery/atmospherics/portables_connector/fuel{ + dir = 8 + }, +<<<<<<< HEAD +======= +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/floor_decal/industrial/outline/red, +>>>>>>> c55e7a1c3b... Merge pull request #14538 from KillianKirilenko/kk-vbupg +/turf/simulated/floor/tiled/techfloor, +/area/ship/ert/engine) +"kt" = ( +/obj/structure/table/rack/steel, +/obj/item/weapon/gun/energy/netgun{ + pixel_y = -4 + }, +/obj/effect/floor_decal/industrial/outline/grey, +/obj/item/weapon/gun/energy/sniperrifle{ + battery_lock = 0; + pixel_y = 6 + }, +<<<<<<< HEAD +/turf/simulated/floor/tiled/techfloor, +/area/ship/ert/barracks) +"mr" = ( +/obj/structure/reagent_dispensers/water_cooler/full, +/turf/simulated/floor/tiled/techfloor, +/area/ship/ert/barracks) +"mt" = ( +/obj/structure/cable/green, +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" +======= +/turf/simulated/floor/tiled/techfloor, +/area/ship/ert/armoury_st) +"kw" = ( +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/techfloor, +/area/ship/ert/teleporter) +"kx" = ( +/obj/structure/table/steel_reinforced, +/obj/item/weapon/storage/box/pillbottles, +/obj/item/weapon/storage/box/pillbottles, +/turf/simulated/floor/tiled/techfloor, +/area/ship/ert/med) +"ky" = ( +/obj/structure/table/steel_reinforced, +/obj/item/weapon/storage/firstaid/surgery, +/obj/machinery/light/no_nightshift{ + dir = 8 + }, +/obj/item/weapon/surgical/bone_clamp, +/obj/item/weapon/surgical/scalpel/manager, +/obj/item/weapon/surgical/circular_saw/manager, +/obj/item/stack/nanopaste, +/turf/simulated/floor/tiled/white, +/area/ship/ert/med_surg) +"kz" = ( +/obj/effect/floor_decal/corner/red{ + dir = 6 + }, +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/techmaint, +/area/ship/ert/hallways) +"kE" = ( +/obj/machinery/light/no_nightshift, +/obj/machinery/firealarm/alarms_hidden{ + dir = 1; + pixel_y = -26 +>>>>>>> c55e7a1c3b... Merge pull request #14538 from KillianKirilenko/kk-vbupg + }, +/obj/machinery/power/port_gen/pacman/mrs, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +<<<<<<< HEAD +/turf/simulated/floor/tiled/techmaint, +/area/ship/ert/armoury_dl) +"mC" = ( /obj/structure/cable/yellow{ d1 = 2; d2 = 4; icon_state = "2-4" }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/turf/simulated/floor/tiled/techfloor, -/area/ship/ert/atmos) -"gR" = ( -/obj/machinery/power/apc/hyper{ - alarms_hidden = 1; - dir = 4; - name = "VB APC - East"; - pixel_x = 24 - }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/techmaint, +/area/ship/ert/barracks) +"mF" = ( /obj/structure/cable/yellow{ - d2 = 2; - icon_state = "0-2" + d1 = 4; + d2 = 8; + icon_state = "4-8" }, +/turf/simulated/floor/tiled/techmaint, +/area/ship/ert/barracks) +"mH" = ( +/obj/structure/bed/chair/bay/shuttle, +/obj/machinery/recharger/wallcharger{ + pixel_x = -23; + pixel_y = 5 +======= /turf/simulated/floor/tiled/techfloor, -/area/ship/ert/engine) -"gW" = ( -/obj/machinery/disposal/deliveryChute{ - dir = 8 - }, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/obj/structure/railing, -/obj/effect/floor_decal/industrial/warning, -/turf/simulated/floor/reinforced, -/area/ship/ert/gunnery) -"gX" = ( +/area/ship/ert/eng_storage) +"kG" = ( /obj/structure/table/rack/steel, -/obj/item/weapon/storage/box/emps{ - pixel_x = -2; - pixel_y = -2 +/obj/item/weapon/gun/projectile/automatic/z8{ + pixel_y = 3 +>>>>>>> c55e7a1c3b... Merge pull request #14538 from KillianKirilenko/kk-vbupg }, -/obj/item/weapon/storage/box/emps{ - pixel_x = 2; - pixel_y = 2 +/obj/item/weapon/gun/projectile/automatic/z8{ + pixel_y = -3 + }, +/obj/item/ammo_magazine/m762, +/obj/item/ammo_magazine/m762, +/obj/item/ammo_magazine/m762, +/obj/item/ammo_magazine/m762, +/obj/item/ammo_magazine/m762, +/obj/item/ammo_magazine/m762, +/obj/item/ammo_magazine/m762, +/obj/item/ammo_magazine/m762, +/obj/item/ammo_magazine/m762/ap, +/obj/item/ammo_magazine/m762/ap, +/obj/item/ammo_magazine/m762/ap, +/obj/item/ammo_magazine/m762/ap, +/obj/machinery/light_switch{ + dir = 1; + pixel_y = -23 }, /obj/effect/floor_decal/industrial/outline/grey, /turf/simulated/floor/tiled/techfloor, /area/ship/ert/armoury_dl) -"gZ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 +"kJ" = ( +/turf/simulated/wall/rshull, +/area/ship/ert/atmos) +"kL" = ( +/obj/machinery/atmospherics/pipe/tank/air, +/turf/simulated/floor/airless, +/area/ship/ert/gunnery) +"kM" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 }, +/obj/effect/landmark{ + name = "Commando" + }, +/obj/effect/catwalk_plated/techmaint, +/turf/simulated/floor/plating, +/area/ship/ert/barracks) +"kO" = ( +/turf/simulated/floor/reinforced/airless, +/area/ship/ert/dock_port) +"kP" = ( +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 10 + }, +/turf/simulated/floor/tiled/techfloor, +/area/ship/ert/atmos) +"kQ" = ( +/obj/structure/sink{ + dir = 4; + pixel_x = 12; + pixel_y = 8 + }, +/obj/structure/medical_stand, /turf/simulated/floor/tiled/white, /area/ship/ert/med_surg) -"ha" = ( +<<<<<<< HEAD +"mR" = ( +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" +======= +"kS" = ( +/obj/machinery/light/no_nightshift{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor, +/area/ship/ert/atmos) +"kT" = ( +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 6 + }, +/turf/simulated/floor/tiled/techfloor, +/area/ship/ert/atmos) +"kW" = ( +/obj/machinery/computer/teleporter{ + dir = 1 + }, +/turf/simulated/floor/tiled/techmaint, +/area/ship/ert/teleporter) +"kX" = ( +/obj/machinery/porta_turret/stationary/CIWS, +/turf/simulated/floor/reinforced/airless, +/area/ship/ert/engine) +"lm" = ( /obj/structure/cable/yellow{ d1 = 1; d2 = 2; icon_state = "1-2" }, -/turf/simulated/floor/tiled/techmaint, -/area/ship/ert/bridge) -"hj" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/wall/rshull, -/area/ship/ert/gunnery) -"hk" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only, -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/simple/visible, -/turf/simulated/floor/airless, -/area/ship/ert/gunnery) -"hs" = ( -/obj/machinery/pointdefense_control{ - id_tag = "vonbraun_pd" - }, -/obj/machinery/light/no_nightshift{ - dir = 1 - }, +/turf/simulated/wall/shull, +/area/ship/ert/hallways_aft) +"ls" = ( +/obj/machinery/door/airlock/glass_external, +/obj/effect/map_helper/airlock/door/int_door, /turf/simulated/floor/tiled/techfloor, -/area/ship/ert/bridge) -"hv" = ( -/obj/machinery/sleeper{ - dir = 8 - }, -/obj/machinery/light/no_nightshift{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/ship/ert/med_surg) -"hx" = ( -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/machinery/light/no_nightshift{ - dir = 8 +/area/ship/ert/dock_port) +"lv" = ( +/obj/machinery/embedded_controller/radio/airlock/docking_port_multi{ + dir = 8; + id_tag = "von_braun_port"; + master_tag = "von_braun_master"; + name = "Port Docking Control"; + pixel_x = 22 +>>>>>>> c55e7a1c3b... Merge pull request #14538 from KillianKirilenko/kk-vbupg }, /turf/simulated/floor/tiled/techfloor, /area/ship/ert/dock_port) -"hH" = ( -/obj/machinery/airlock_sensor{ - pixel_y = 21 - }, -/obj/effect/map_helper/airlock/sensor/int_sensor, -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/techfloor, -/area/ship/ert/dock_port) -"hN" = ( -/obj/structure/cable/yellow{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/machinery/alarm/alarms_hidden{ - pixel_y = 26 - }, -/turf/simulated/floor/tiled/techfloor, -/area/ship/ert/engineering) -"hP" = ( -/obj/machinery/autolathe{ - desc = "Your typical Autolathe. It appears to have much more options than your regular one, however..."; - hacked = 1; - name = "Unlocked Autolathe" - }, -/turf/simulated/floor/tiled/techfloor, -/area/ship/ert/eng_storage) -"hS" = ( -/obj/structure/closet/crate/freezer, -/obj/item/weapon/reagent_containers/blood/OMinus, -/obj/item/weapon/reagent_containers/blood/OMinus, -/obj/item/weapon/reagent_containers/blood/OMinus, -/obj/item/weapon/reagent_containers/blood/OMinus, -/obj/item/weapon/reagent_containers/blood/OMinus, -/obj/item/weapon/reagent_containers/blood/OMinus, -/obj/item/weapon/reagent_containers/blood/OMinus, -/obj/item/weapon/reagent_containers/blood/OMinus, -/obj/machinery/light_switch{ - dir = 1; - pixel_y = -23 - }, -/obj/effect/floor_decal/industrial/outline, -/turf/simulated/floor/tiled/white, -/area/ship/ert/med_surg) -"hU" = ( -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/unary/vent_pump/on, -/turf/simulated/floor/tiled/techmaint, -/area/ship/ert/dock_port) -"hV" = ( -/obj/effect/floor_decal/corner/red{ - dir = 9 - }, -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/simulated/floor/tiled/techmaint, -/area/ship/ert/hangar) -"hW" = ( -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 1 - }, -/obj/machinery/pointdefense{ - id_tag = "vonbraun_pd" - }, -/obj/machinery/light/no_nightshift{ - dir = 8 - }, -/turf/simulated/floor/reinforced/airless, -/area/ship/ert/hangar) -"hW" = ( -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 1 - }, -/obj/machinery/power/pointdefense{ - id_tag = "vonbraun_pd" - }, -/obj/machinery/light/no_nightshift{ - dir = 8 - }, -/turf/simulated/floor/reinforced/airless, -/area/ship/ert/hangar) -"hY" = ( -/obj/structure/hull_corner{ - dir = 4 - }, -/turf/simulated/floor/reinforced/airless, -/area/ship/ert/dock_star) -"ia" = ( +"lx" = ( /obj/structure/table/rack/steel, /obj/item/clothing/accessory/holster/leg{ pixel_x = -4; @@ -1631,445 +2733,136 @@ /obj/effect/floor_decal/industrial/outline/grey, /turf/simulated/floor/tiled/techfloor, /area/ship/ert/barracks) -"ib" = ( -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 8 - }, -/obj/machinery/pointdefense{ - id_tag = "vonbraun_pd" - }, -/obj/machinery/light/no_nightshift{ - dir = 8 - }, -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 8 - }, -/obj/machinery/power/pointdefense{ - id_tag = "vonbraun_pd" - }, -/obj/machinery/light/no_nightshift{ - dir = 8 - }, -/turf/simulated/floor/reinforced/airless, -/area/ship/ert/hangar) -"ij" = ( -/turf/simulated/floor/tiled/white, -/area/ship/ert/med_surg) -"ik" = ( -/obj/structure/cable/yellow{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/turf/simulated/floor/tiled/techmaint, -/area/ship/ert/dock_port) -"ip" = ( -/turf/simulated/floor/tiled/techmaint, -/area/ship/ert/barracks) -"ix" = ( -/obj/machinery/door/firedoor/border_only, -/obj/machinery/door/airlock/glass{ - req_one_access = list(103) - }, -/obj/structure/sign/warning/airlock{ - pixel_y = -32 - }, -/turf/simulated/floor/tiled/techmaint, -/area/ship/ert/dock_star) -"iy" = ( -/obj/machinery/alarm/alarms_hidden{ - dir = 1; - pixel_y = -26 - }, -/turf/simulated/floor/tiled/techfloor, -/area/ship/ert/bridge) -"iz" = ( -/obj/structure/ship_munition/disperser_charge/emp, -/obj/effect/floor_decal/industrial/warning, -/turf/simulated/floor/reinforced, -/area/ship/ert/gunnery) -"iB" = ( -/turf/simulated/wall/shull, -/area/ship/ert/dock_port) -"iC" = ( -/obj/item/device/healthanalyzer/phasic{ - pixel_x = 2; - pixel_y = 2 - }, -/obj/item/device/healthanalyzer/phasic, -/obj/item/device/healthanalyzer/phasic{ - pixel_x = -2; - pixel_y = -2 - }, -/obj/structure/table/rack/steel, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/obj/effect/floor_decal/industrial/outline, -/turf/simulated/floor/tiled/techfloor, -/area/ship/ert/med) -"iO" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/turf/simulated/floor/tiled/techmaint, -/area/ship/ert/barracks) -"iR" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/turf/simulated/floor/tiled/techmaint, -/area/ship/ert/barracks) -"iW" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/turf/simulated/floor/tiled/white, -/area/ship/ert/med_surg) -"iX" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/techmaint, -/area/ship/ert/barracks) -"jn" = ( -/obj/machinery/chem_master, -/turf/simulated/floor/tiled/techfloor, -/area/ship/ert/med) -"jv" = ( -/obj/machinery/computer/cryopod/ert{ - pixel_y = 32 - }, -/turf/simulated/floor/tiled/white, -/area/ship/ert/med_surg) -"jz" = ( -/obj/machinery/atmospherics/unary/vent_pump/on, -/turf/simulated/floor/tiled/techmaint, -/area/ship/ert/barracks) -"jA" = ( -/turf/simulated/floor/tiled/techfloor, -/area/ship/ert/teleporter) -"jD" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/turf/simulated/floor/tiled/techmaint, -/area/ship/ert/barracks) -"jI" = ( -/obj/machinery/teleport/station, -/turf/simulated/floor/tiled/techfloor, -/area/ship/ert/teleporter) -"jK" = ( -/obj/machinery/door/airlock/glass_engineering{ - name = "Engineering"; - req_access = list(103) - }, -/turf/simulated/floor/tiled/techmaint, -/area/ship/ert/mech_bay) -"jQ" = ( -/turf/simulated/floor/tiled/techmaint, -/area/ship/ert/mech_bay) -"jU" = ( -/obj/machinery/atmospherics/unary/vent_pump/on, -/turf/simulated/floor/tiled/techmaint, -/area/ship/ert/mech_bay) -"jY" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/turf/simulated/floor/tiled/techmaint, -/area/ship/ert/mech_bay) -"kf" = ( -/obj/structure/table/rack/steel, -/obj/item/weapon/gun/projectile/automatic/pdw{ - pixel_y = 6 - }, -/obj/item/weapon/gun/projectile/automatic/pdw{ - pixel_y = 4 - }, -/obj/item/weapon/gun/projectile/automatic/pdw{ - pixel_y = 2 - }, -/obj/item/weapon/gun/projectile/automatic/pdw, -/obj/item/weapon/gun/projectile/automatic/pdw{ - pixel_y = -2 - }, -/obj/item/weapon/gun/projectile/automatic/pdw{ - pixel_y = -4 - }, -/obj/item/ammo_magazine/m9mml{ - pixel_x = 10 - }, -/obj/item/ammo_magazine/m9mml{ - pixel_x = 8 - }, -/obj/item/ammo_magazine/m9mml{ - pixel_x = 6 - }, -/obj/item/ammo_magazine/m9mml{ - pixel_x = 4 - }, -/obj/item/ammo_magazine/m9mml{ - pixel_x = 2 - }, -/obj/item/ammo_magazine/m9mml, -/obj/item/ammo_magazine/m9mml{ - pixel_x = -2 - }, -/obj/item/ammo_magazine/m9mml{ - pixel_x = -4 - }, -/obj/item/ammo_magazine/m9mml{ - pixel_x = -6 - }, -/obj/item/ammo_magazine/m9mml{ - pixel_x = -8 - }, -/obj/item/ammo_magazine/m9mml{ - pixel_x = -10 - }, -/obj/item/ammo_magazine/m9mml{ - pixel_x = -12 - }, -/obj/effect/floor_decal/industrial/outline/grey, -/turf/simulated/floor/tiled/techfloor, -/area/ship/ert/armoury_st) -"kh" = ( -/obj/machinery/light/no_nightshift{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/turf/simulated/floor/tiled/techmaint, -/area/ship/ert/hallways_aft) -"km" = ( -/obj/effect/floor_decal/corner/white{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor, -/area/ship/ert/med) -"kt" = ( -/obj/machinery/door/blast/regular/open{ - id = "ERT_Shuttle_Rear"; - name = "Boarding Hatch" - }, -/obj/machinery/button/remote/blast_door{ - id = "ERT_Shuttle_Rear"; - name = "ERT Shuttle Access"; - pixel_y = 24; - req_access = list(103) - }, -/turf/simulated/floor/tiled/techmaint, -/area/shuttle/ert_ship_boat) -"kx" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/machinery/door/firedoor/border_only, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor, -/area/ship/ert/med) -"kz" = ( -/obj/structure/closet/crate{ - dir = 1 - }, -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/item/weapon/plastique, -/obj/item/weapon/plastique, -/obj/item/weapon/plastique, -/obj/item/weapon/plastique, -/obj/effect/floor_decal/industrial/outline/red, -/obj/item/weapon/plastique, -/obj/item/weapon/plastique, -/obj/item/weapon/plastique, -/obj/item/weapon/plastique, -/turf/simulated/floor/tiled/techmaint, -/area/ship/ert/armoury_dl) -"kG" = ( -/obj/effect/floor_decal/corner/white{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/turf/simulated/floor/tiled/techmaint, -/area/ship/ert/hangar) -"kJ" = ( -/turf/simulated/wall/rshull, -/area/ship/ert/atmos) -"kL" = ( -/obj/machinery/light/no_nightshift{ - dir = 4 - }, -/turf/simulated/floor/reinforced/airless, -/area/ship/ert/engine) -"kM" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/techmaint, -/area/ship/ert/barracks) -"kO" = ( -/obj/structure/hull_corner{ - dir = 8 - }, -/turf/simulated/floor/reinforced/airless, -/area/ship/ert/barracks) -"kP" = ( -/obj/machinery/atmospherics/pipe/tank/air{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor, -/area/ship/ert/atmos) -"kS" = ( -/obj/machinery/atmospherics/pipe/simple/visible{ - dir = 10 - }, -/turf/simulated/floor/tiled/techfloor, -/area/ship/ert/atmos) -"kT" = ( -/obj/machinery/light/no_nightshift{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor, -/area/ship/ert/atmos) -"kW" = ( -/turf/simulated/wall/shull, -/area/ship/ert/dock_star) -"kX" = ( -/obj/machinery/atmospherics/pipe/manifold/visible{ - dir = 1 - }, -/turf/simulated/wall/shull, -/area/ship/ert/dock_star) -"kY" = ( -/obj/machinery/atmospherics/pipe/simple/visible{ - dir = 6 - }, -/turf/simulated/floor/tiled/techfloor, -/area/ship/ert/atmos) -"lm" = ( -/obj/effect/floor_decal/industrial/outline/blue, -/obj/machinery/portable_atmospherics/canister/carbon_dioxide/engine_setup, -/turf/simulated/floor/tiled/techfloor, -/area/ship/ert/barracks) -"lq" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/obj/effect/floor_decal/industrial/warning, -/turf/simulated/floor/tiled/techfloor, -/area/ship/ert/teleporter) -"ls" = ( -/obj/machinery/atmospherics/portables_connector{ - dir = 8 - }, -/obj/machinery/portable_atmospherics/canister/empty, -/obj/effect/floor_decal/industrial/outline/grey, -/turf/simulated/floor/tiled/techfloor, -/area/ship/ert/atmos) -"lu" = ( -/turf/simulated/floor/tiled/techmaint, -/area/ship/ert/hallways_aft) -"lv" = ( -/obj/structure/closet/wardrobe/ert, -/obj/item/modular_computer/tablet/preset/custom_loadout/elite, -/obj/item/weapon/storage/box/survival/comp{ - starts_with = list(/obj/item/weapon/tool/prybar/red,/obj/item/clothing/glasses/goggles,/obj/item/weapon/reagent_containers/hypospray/autoinjector,/obj/item/stack/medical/bruise_pack,/obj/item/device/flashlight/glowstick,/obj/item/weapon/reagent_containers/food/snacks/candy/proteinbar,/obj/item/clothing/mask/breath,/obj/item/weapon/tank/emergency/oxygen/engi) - }, -/obj/effect/floor_decal/industrial/outline/grey, -/obj/item/modular_computer/laptop/preset/custom_loadout/elite, -/turf/simulated/floor/tiled/techfloor, -/area/ship/ert/barracks) -"lx" = ( -/obj/machinery/door/airlock/external, -/obj/machinery/airlock_sensor/airlock_exterior{ - pixel_x = 24; - pixel_y = -11 - }, -/obj/effect/map_helper/airlock/door/ext_door, -/obj/effect/map_helper/airlock/sensor/ext_sensor, -/turf/simulated/floor/tiled/techfloor, -/area/ship/ert/dock_star) "lz" = ( /obj/structure/cable/yellow{ - d1 = 4; + d1 = 1; d2 = 8; - icon_state = "4-8" + icon_state = "1-8" }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 4; + icon_state = "1-4" }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/techmaint, -/area/ship/ert/med) +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/effect/catwalk_plated/techmaint, +/turf/simulated/floor/plating, +/area/ship/ert/eng_storage) "lB" = ( -/obj/item/modular_computer/console/preset/engineering{ - dir = 4 +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 }, /turf/simulated/floor/tiled/techfloor, /area/ship/ert/engineering) -"lL" = ( -/turf/simulated/floor/tiled/techmaint, -/area/ship/ert/dock_port) -"lO" = ( -/obj/machinery/alarm/alarms_hidden{ - dir = 1; - pixel_y = -26 +"lE" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/machinery/light_switch{ + pixel_y = 23 + }, +/turf/simulated/floor/tiled/techfloor, +/area/ship/ert/teleporter) +"lR" = ( +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 }, /turf/simulated/floor/tiled/techmaint, /area/ship/ert/hallways_aft) -"lR" = ( +"lU" = ( +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor, +/area/ship/ert/hallways_aft) +"lZ" = ( +/turf/simulated/floor/reinforced/airless, +/area/ship/ert/engine) +"md" = ( +/obj/structure/table/rack/steel, +/obj/item/ammo_magazine/ammo_box/b12g/pellet, +/obj/item/ammo_magazine/ammo_box/b12g/pellet, +/obj/item/ammo_magazine/ammo_box/b12g, +/obj/item/ammo_magazine/ammo_box/b12g, +/obj/item/ammo_magazine/ammo_box/b12g/emp, +/obj/item/ammo_magazine/ammo_box/b12g/flash, +/obj/item/ammo_magazine/ammo_box/b12g/beanbag, +/obj/item/ammo_magazine/ammo_box/b12g/beanbag, +/obj/item/ammo_magazine/ammo_box/b12g/stunshell, +/obj/effect/floor_decal/industrial/outline/grey, +/obj/item/weapon/gun/projectile/automatic/as24{ + pixel_y = 3 + }, +/obj/item/weapon/gun/projectile/automatic/as24{ + pixel_y = -3 + }, +/turf/simulated/floor/tiled/techfloor, +/area/ship/ert/armoury_dl) +"mg" = ( +/obj/structure/bed/chair/bay/shuttle{ + dir = 4 + }, +/obj/machinery/button/remote/blast_door{ + dir = 8; + id = "ERT_Blast_Windows"; + name = "Emergency Blast Shields"; + pixel_x = 55; + req_one_access = list(101) + }, +/turf/simulated/floor/tiled/techmaint, +/area/shuttle/ert_ship_boat) +"mh" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/techmaint, +/area/ship/ert/med) +"mj" = ( +/turf/simulated/floor/tiled/techmaint, +/area/ship/ert/dock_port) +"ml" = ( +/obj/machinery/light/no_nightshift, +/obj/structure/sign/vacuum{ + pixel_y = -32 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/tiled/techmaint, +/area/ship/ert/hangar) +"mp" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/fuel{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techfloor, +/area/ship/ert/engine) +"mq" = ( /obj/machinery/firealarm/alarms_hidden{ dir = 1; pixel_y = -26 }, /turf/simulated/floor/tiled/techmaint, /area/ship/ert/dock_port) -"lV" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/machinery/alarm/alarms_hidden{ - dir = 1; - pixel_y = -26 - }, -/turf/simulated/floor/tiled/techmaint, -/area/ship/ert/dock_port) -"lX" = ( -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/light_switch{ - dir = 8; - pixel_x = 23 - }, -/turf/simulated/floor/tiled/techmaint, -/area/ship/ert/dock_port) -"lZ" = ( -/turf/simulated/floor/reinforced/airless, -/area/ship/ert/engine) -"mb" = ( +"mr" = ( /obj/structure/table/rack/steel, /obj/item/weapon/storage/belt/security/tactical{ pixel_x = -4; @@ -2116,50 +2909,17 @@ /obj/effect/floor_decal/industrial/outline/grey, /turf/simulated/floor/tiled/techfloor, /area/ship/ert/barracks) -"mh" = ( -/obj/structure/closet/crate/freezer, -/obj/item/weapon/reagent_containers/blood/OMinus, -/obj/item/weapon/reagent_containers/blood/OMinus, -/obj/item/weapon/reagent_containers/blood/OMinus, -/obj/item/weapon/reagent_containers/blood/OMinus, -/obj/item/weapon/reagent_containers/blood/OMinus, -/obj/item/weapon/reagent_containers/blood/OMinus, -/obj/item/weapon/reagent_containers/blood/OMinus, -/obj/item/weapon/reagent_containers/blood/OMinus, -/obj/effect/floor_decal/industrial/outline, -/turf/simulated/floor/tiled/white, -/area/ship/ert/med_surg) -"mj" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/obj/effect/landmark{ - name = "Commando" - }, -/turf/simulated/floor/tiled/techfloor, -/area/ship/ert/barracks) -"mq" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/obj/effect/landmark{ - name = "Commando" - }, -/turf/simulated/floor/tiled/techfloor, -/area/ship/ert/barracks) -"mr" = ( -/obj/structure/reagent_dispensers/water_cooler/full, -/turf/simulated/floor/tiled/techfloor, -/area/ship/ert/barracks) "mt" = ( -/obj/structure/cable/green, /obj/structure/cable/green{ - d2 = 2; - icon_state = "0-2" + d1 = 1; + d2 = 8; + icon_state = "1-8" }, -/obj/structure/cable/green{ - d2 = 4; - icon_state = "0-4" +/obj/machinery/power/apc/hyper{ + alarms_hidden = 1; + dir = 4; + name = "VB APC - East"; + pixel_x = 24 }, /obj/structure/cable/green{ d2 = 8; @@ -2167,232 +2927,69 @@ }, /turf/simulated/floor/tiled/techfloor, /area/ship/ert/engineering) -"my" = ( -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, +"mv" = ( /turf/simulated/floor/tiled/techmaint, -/area/ship/ert/armoury_dl) -"mC" = ( -/obj/structure/cable/yellow{ - d1 = 2; - d2 = 4; - icon_state = "2-4" +/area/shuttle/ert_ship_boat) +"mz" = ( +/obj/machinery/button/flasher{ + pixel_x = -9; + pixel_y = 22 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/techmaint, -/area/ship/ert/barracks) -"mF" = ( -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" +/obj/machinery/button/remote/blast_door{ + id = "braun_cells_privacy"; + name = "Privacy Shutter Controls"; + pixel_x = 8; + pixel_y = 25; + req_access = list(103) }, -/turf/simulated/floor/tiled/techmaint, -/area/ship/ert/barracks) -"mH" = ( -/obj/structure/bed/chair/bay/shuttle, -/obj/machinery/recharger/wallcharger{ - pixel_x = -23; - pixel_y = 5 +/obj/effect/floor_decal/industrial/warning{ + dir = 1 }, -/obj/machinery/recharger/wallcharger{ - pixel_x = -23; - pixel_y = -4 +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 }, -/obj/machinery/recharger/wallcharger{ - pixel_x = -23; - pixel_y = -12 +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 }, /turf/simulated/floor/tiled/techfloor, -/area/shuttle/ert_ship_boat) +/area/ship/ert/brig) +"mC" = ( +/obj/effect/landmark{ + name = "Commando" + }, +/turf/simulated/floor/tiled/techfloor, +/area/ship/ert/barracks) "mI" = ( +/obj/effect/landmark{ + name = "Commando" + }, /obj/structure/cable/yellow{ d1 = 4; d2 = 8; icon_state = "4-8" }, -/obj/machinery/door/firedoor/multi_tile{ - dir = 1; - req_one_access = list(103) - }, -/obj/machinery/door/airlock/multi_tile/glass{ - dir = 1; - req_one_access = list(103) - }, -/turf/simulated/floor/tiled/techmaint, +/turf/simulated/floor/tiled/techfloor, /area/ship/ert/barracks) "mJ" = ( -/obj/structure/table/steel_reinforced, -/obj/fiftyspawner/durasteel, -/obj/fiftyspawner/durasteel, -/obj/fiftyspawner/durasteel, -/obj/fiftyspawner/durasteel, -/obj/fiftyspawner/titanium_glass, -/obj/fiftyspawner/titanium_glass, -/obj/fiftyspawner/titanium_glass, -/obj/fiftyspawner/titanium_glass, -/obj/fiftyspawner/plastitanium_glass, -/obj/fiftyspawner/plastitanium_glass, -/obj/fiftyspawner/plastitanium_glass, -/obj/fiftyspawner/plastitanium_glass, +/obj/machinery/teleport/station, /turf/simulated/floor/tiled/techfloor, -/area/ship/ert/eng_storage) +/area/ship/ert/teleporter) "mN" = ( -/obj/machinery/sleep_console{ - dir = 4 +/obj/structure/medical_stand, +/obj/structure/sink{ + dir = 4; + pixel_x = 12; + pixel_y = 8 }, /turf/simulated/floor/tiled/white, /area/ship/ert/med_surg) "mR" = ( /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/turf/simulated/floor/tiled/techmaint, -/area/ship/ert/barracks) -"mT" = ( -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/turf/simulated/floor/tiled/techmaint, -/area/ship/ert/barracks) -"mV" = ( -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/techmaint, -/area/ship/ert/barracks) -"mZ" = ( -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/door/firedoor/multi_tile{ - dir = 1 - }, -/obj/machinery/door/airlock/multi_tile/glass{ - dir = 1; - req_one_access = list(103) - }, -/turf/simulated/floor/tiled/techmaint, -/area/ship/ert/barracks) -"na" = ( -/obj/machinery/airlock_sensor{ - pixel_y = -23 - }, -/obj/effect/map_helper/airlock/sensor/int_sensor, -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/techfloor, -/area/ship/ert/dock_star) -"nb" = ( -/obj/structure/table/rack/steel, -/obj/item/weapon/gun/energy/xray{ - pixel_y = -3 - }, -/obj/item/weapon/gun/energy/xray{ - pixel_y = 3 - }, -/obj/machinery/light/no_nightshift, -/obj/machinery/firealarm/alarms_hidden{ - dir = 1; - pixel_y = -26 - }, -/obj/effect/floor_decal/industrial/outline/grey, -/turf/simulated/floor/tiled/techfloor, -/area/ship/ert/armoury_dl) -"nc" = ( -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, -/obj/effect/catwalk_plated/techmaint, -/turf/simulated/floor/plating, -/area/ship/ert/barracks) -"nl" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/machinery/door/firedoor/border_only, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced, -/turf/simulated/floor/tiled/techfloor, -/area/ship/ert/med_surg) -"nn" = ( -/obj/machinery/door/airlock/glass_engineering{ - name = "Engineering"; - req_access = list(103) - }, -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/door/firedoor/multi_tile{ - dir = 1 - }, -/turf/simulated/floor/tiled/techmaint, -/area/ship/ert/mech_bay) -"no" = ( -/obj/machinery/photocopier, -/turf/simulated/floor/wood, -/area/ship/ert/commander) -"np" = ( -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 + d1 = 2; + d2 = 4; + icon_state = "2-4" }, +<<<<<<< HEAD /turf/simulated/floor/tiled/techmaint, /area/ship/ert/mech_bay) "nq" = ( @@ -2409,44 +3006,18 @@ /turf/simulated/floor/reinforced/airless, /area/ship/ert/gunnery) "nt" = ( -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/techmaint, -/area/ship/ert/mech_bay) -"nv" = ( -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/turf/simulated/floor/tiled/techmaint, -/area/ship/ert/mech_bay) -"nx" = ( -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, +======= /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/door/firedoor/border_only, -/obj/machinery/door/airlock/glass_engineeringatmos{ - req_one_access = list(103) +/obj/structure/cable/yellow{ + d1 = 2; + d2 = 8; + icon_state = "2-8" }, /turf/simulated/floor/tiled/techmaint, -/area/ship/ert/atmos) -"nz" = ( +/area/ship/ert/barracks) +"mV" = ( +>>>>>>> c55e7a1c3b... Merge pull request #14538 from KillianKirilenko/kk-vbupg /obj/structure/cable/yellow{ d1 = 4; d2 = 8; @@ -2458,6 +3029,79 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, +/turf/simulated/floor/tiled/techmaint, +/area/ship/ert/barracks) +"mX" = ( +/obj/machinery/light/no_nightshift{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/warning, +/obj/structure/table/steel_reinforced, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/ship/ert/brig) +"mZ" = ( +/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/tiled/techmaint, +/area/ship/ert/barracks) +"nb" = ( +/obj/structure/table/steel_reinforced, +/obj/machinery/atmospherics/unary/vent_pump/on, +/obj/item/weapon/storage/box/cdeathalarm_kit{ + pixel_x = -1; + pixel_y = -1 + }, +/obj/item/weapon/storage/box/cdeathalarm_kit{ + pixel_x = 1; + pixel_y = 1 + }, +/turf/simulated/floor/tiled/techfloor, +/area/ship/ert/barracks) +"nc" = ( +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/turf/simulated/floor/tiled/techmaint, +/area/ship/ert/barracks) +"nl" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/machinery/door/firedoor/border_only, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced, +/turf/simulated/floor/tiled/techfloor, +/area/ship/ert/med_surg) +"nn" = ( +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +<<<<<<< HEAD /obj/machinery/door/airlock/glass_security{ req_one_access = list(103) }, @@ -2501,35 +3145,37 @@ /obj/item/device/binoculars, /obj/item/device/survivalcapsule{ pixel_x = 3 - }, -/obj/item/device/survivalcapsule{ - pixel_x = -3 - }, -/turf/simulated/floor/wood, -/area/ship/ert/commander) -"og" = ( -/obj/machinery/door/firedoor/glass, -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/structure/window/reinforced, -/obj/machinery/door/blast/regular/open{ - dir = 8; - id = "ERT_Blast_Windows"; - name = "Blast Shield" - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor, -/area/shuttle/ert_ship_boat) -"oi" = ( -/turf/simulated/wall/shull, -/area/ship/ert/hangar) -"oj" = ( -/obj/machinery/alarm/alarms_hidden{ - pixel_y = 26 +======= +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 8; + icon_state = "1-8" }, /turf/simulated/floor/tiled/techmaint, +/area/ship/ert/barracks) +"np" = ( +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" +>>>>>>> c55e7a1c3b... Merge pull request #14538 from KillianKirilenko/kk-vbupg + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/door/firedoor/multi_tile{ + dir = 1 + }, +/obj/machinery/door/airlock/multi_tile/glass{ + dir = 1; + name = "Outfitting"; + req_one_access = list(103) + }, +/turf/simulated/floor/tiled/techmaint, +<<<<<<< HEAD /area/ship/ert/hallways_aft) "ok" = ( /obj/machinery/alarm/alarms_hidden{ @@ -2538,6 +3184,170 @@ /turf/simulated/floor/tiled/techfloor, /area/ship/ert/engine) "op" = ( +/obj/machinery/firealarm/alarms_hidden{ + pixel_y = 26 +======= +/area/ship/ert/barracks) +"nq" = ( +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/wall/rshull, +/area/ship/ert/barracks) +"nt" = ( +/obj/structure/table/steel_reinforced, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/item/weapon/storage/box/backup_kit{ + pixel_x = -1; + pixel_y = -1 +>>>>>>> c55e7a1c3b... Merge pull request #14538 from KillianKirilenko/kk-vbupg + }, +/obj/item/weapon/storage/box/backup_kit{ + pixel_x = 1; + pixel_y = 1 + }, +/turf/simulated/floor/tiled/techfloor, +/area/ship/ert/barracks) +"nv" = ( +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, +/obj/effect/catwalk_plated/techmaint, +/turf/simulated/floor/plating, +/area/ship/ert/barracks) +"nx" = ( +/obj/machinery/vending/fitness{ + prices = list() + }, +/turf/simulated/floor/tiled/techfloor, +/area/ship/ert/barracks) +"nz" = ( +/obj/machinery/light/no_nightshift{ + dir = 8 + }, +/obj/machinery/button/remote/blast_door{ + description_fluff = "\\(OOC) DO NOT TOUCH THIS BUTTON WITHOUT THE EXPLICIT PERMISSION OF AN ADMINISTRATOR."; + dir = 4; + id = "NRV_MECHS"; + name = "MECH BAY CONTROL"; + pixel_x = -25; + req_one_access = list(108) + }, +<<<<<<< HEAD +/turf/simulated/floor/tiled/techmaint, +/area/ship/ert/eng_storage) +"oQ" = ( +/obj/effect/floor_decal/corner/white{ + dir = 9 +======= +/turf/simulated/floor/tiled/techfloor, +/area/ship/ert/gunnery) +"nB" = ( +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" +>>>>>>> c55e7a1c3b... Merge pull request #14538 from KillianKirilenko/kk-vbupg + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/ship/ert/mech_bay) +"nC" = ( +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techfloor, +/area/ship/ert/gunnery) +"nM" = ( +/obj/machinery/light/no_nightshift{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 10 + }, +/obj/structure/railing, +/turf/simulated/floor/reinforced, +/area/ship/ert/gunnery) +"nS" = ( +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/floor_decal/corner/red{ + dir = 8 + }, +/turf/simulated/floor/tiled/techmaint, +/area/ship/ert/hallways_aft) +"nU" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/machinery/button/remote/blast_door{ + dir = 1; + id = "ERT_Shuttle_Fore"; + name = "ERT Deployment Access"; + pixel_y = -25; + req_access = list(103) + }, +/turf/simulated/floor/tiled/techmaint, +/area/shuttle/ert_ship_boat) +"nX" = ( +/obj/machinery/atmospherics/pipe/simple/visible/fuel{ + dir = 10 + }, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/machinery/door/blast/regular/open{ + id = "VB_Rear_Blast"; + name = "Blast Shield" + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/ship/ert/engine) +"nY" = ( +/obj/machinery/door/blast/regular/open{ + dir = 4; + id = "braun_blast_shields"; + name = "Blast Shield" + }, +/turf/space, +/area/space) +"ob" = ( +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/tiled/techfloor, +/area/ship/ert/engineering) +"oi" = ( +/obj/machinery/disposal/deliveryChute{ + dir = 8 + }, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/obj/structure/railing, +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/reinforced, +/area/ship/ert/gunnery) +"ok" = ( /obj/machinery/firealarm/alarms_hidden{ pixel_y = 26 }, @@ -2546,45 +3356,163 @@ }, /turf/simulated/floor/tiled/techfloor, /area/ship/ert/engine) -"os" = ( -/obj/machinery/atmospherics/pipe/manifold/visible{ - dir = 4 +"om" = ( +/obj/structure/table/rack/steel, +/obj/item/weapon/gun/launcher/grenade{ + pixel_y = 3 }, +/obj/item/weapon/gun/launcher/grenade{ + pixel_y = -3 + }, +/obj/effect/floor_decal/industrial/outline/grey, /turf/simulated/floor/tiled/techfloor, -/area/ship/ert/atmos) -"oy" = ( -/obj/machinery/atmospherics/pipe/manifold/visible{ +/area/ship/ert/armoury_dl) +"oo" = ( +/obj/structure/table/rack/steel, +/obj/item/weapon/gun/energy/taser{ + pixel_y = 3 + }, +/obj/item/weapon/gun/energy/taser{ + pixel_y = 1 + }, +/obj/item/weapon/gun/energy/taser{ + pixel_y = -1 + }, +/obj/item/weapon/gun/energy/taser{ + pixel_y = -3 + }, +/obj/effect/floor_decal/industrial/outline/grey, +/turf/simulated/floor/tiled/techfloor, +/area/ship/ert/armoury_st) +"op" = ( +/obj/machinery/atmospherics/pipe/tank/phoron{ dir = 8 }, /turf/simulated/floor/tiled/techfloor, +/area/ship/ert/engine) +"ot" = ( +/obj/machinery/door/airlock/glass_engineering{ + name = "Engineering Control"; + req_access = list(103) + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/door/firedoor/border_only, +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techmaint, +/area/ship/ert/engineering) +"ox" = ( +/obj/machinery/power/apc/hyper{ + alarms_hidden = 1; + dir = 4; + name = "VB APC - East"; + pixel_x = 24 + }, +/obj/machinery/vending/nifsoft_shop{ + categories = 111; + desc = "For all your mindware and mindware accessories. Now paid for by Central!"; + dir = 8; + emagged = 1; + name = "ERT NIFSoft Vendor" + }, +/obj/structure/cable/yellow{ + d2 = 8; + icon_state = "0-8" + }, +/turf/simulated/floor/tiled/techfloor, +/area/ship/ert/hallways) +"oy" = ( +/obj/machinery/atmospherics/portables_connector{ + dir = 8 + }, +/obj/machinery/portable_atmospherics/canister/empty, +/obj/effect/floor_decal/industrial/outline/grey, +/turf/simulated/floor/tiled/techfloor, /area/ship/ert/atmos) -"oC" = ( -/obj/machinery/portable_atmospherics/canister/air, -/obj/effect/floor_decal/industrial/outline, +"oz" = ( +/obj/machinery/atmospherics/unary/vent_pump/on, +/obj/structure/table/steel_reinforced, +/obj/item/weapon/rcd/advanced/loaded{ + desc = "A device used to rapidly build and deconstruct. This version works faster, and has a much larger capacity than a standard model, but doesn't work at range. Reload with compressed matter cartridges."; + name = "emergency rapid construction device"; + pixel_y = 3; + ranged = 0 + }, +/obj/item/weapon/rcd/advanced/loaded{ + desc = "A device used to rapidly build and deconstruct. This version works faster, and has a much larger capacity than a standard model, but doesn't work at range. Reload with compressed matter cartridges."; + name = "emergency rapid construction device"; + pixel_y = -3; + ranged = 0 + }, /turf/simulated/floor/tiled/techfloor, /area/ship/ert/eng_storage) +"oC" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/machinery/alarm/alarms_hidden{ + pixel_y = 26 + }, +/turf/simulated/floor/tiled/techmaint, +/area/ship/ert/dock_star) "oN" = ( /obj/effect/shuttle_landmark/premade/ert_ship_near_fore, /turf/space, /area/space) "oO" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ +/obj/machinery/airlock_sensor{ + pixel_y = -23 + }, +/obj/effect/map_helper/airlock/sensor/int_sensor, +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/techfloor, +/area/ship/ert/dock_star) +"oV" = ( +/obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, +/turf/simulated/wall/rshull, +/area/ship/ert/gunnery) +"oX" = ( /obj/structure/cable/yellow{ - d1 = 2; - d2 = 4; - icon_state = "2-4" + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/techmaint, +/area/ship/ert/barracks) +"pf" = ( +/obj/effect/landmark/map_data/ert_ship, +/turf/space, +/area/space) +"pg" = ( +/obj/machinery/door/firedoor/border_only, +/obj/machinery/door/airlock/glass{ + req_one_access = list(103) }, /turf/simulated/floor/tiled/techmaint, +/area/ship/ert/dock_port) +"pm" = ( +/obj/machinery/portable_atmospherics/canister/air, +/obj/effect/floor_decal/industrial/outline, +/turf/simulated/floor/tiled/techfloor, /area/ship/ert/eng_storage) -"oQ" = ( -/obj/effect/floor_decal/corner/white{ - dir = 9 +"pn" = ( +/obj/item/modular_computer/console/preset/engineering{ + dir = 4 }, +/turf/simulated/floor/tiled/techfloor, +/area/ship/ert/engineering) +"po" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -2596,55 +3524,90 @@ d2 = 8; icon_state = "4-8" }, +/obj/structure/cable/yellow{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, /turf/simulated/floor/tiled/techmaint, /area/ship/ert/med) -"oV" = ( -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; - icon_state = "1-2" +"pq" = ( +/obj/structure/table/rack/steel, +/obj/item/weapon/storage/toolbox/mechanical{ + pixel_x = -4; + pixel_y = -6 }, +/obj/item/weapon/storage/toolbox/mechanical{ + pixel_x = -4; + pixel_y = -2 + }, +/obj/item/weapon/storage/toolbox/electrical{ + pixel_x = -4; + pixel_y = 2 + }, +/obj/item/weapon/storage/toolbox/electrical{ + pixel_x = -4; + pixel_y = 6 + }, +/obj/item/weapon/storage/briefcase/inflatable{ + pixel_x = 4; + pixel_y = -6 + }, +/obj/item/weapon/storage/briefcase/inflatable{ + pixel_x = 4; + pixel_y = -2 + }, +/obj/item/weapon/storage/briefcase/inflatable{ + pixel_x = 4; + pixel_y = 2 + }, +/obj/item/weapon/storage/briefcase/inflatable{ + pixel_x = 4; + pixel_y = 6 + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/techfloor, +/area/ship/ert/eng_storage) +"pr" = ( /obj/machinery/light/no_nightshift{ dir = 8 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/techmaint, -/area/ship/ert/dock_port) -"oW" = ( +/obj/structure/ship_munition/disperser_charge/explosive, +/obj/machinery/firealarm/alarms_hidden{ + dir = 1; + pixel_y = -26 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/structure/railing{ + dir = 1 + }, +/turf/simulated/floor/reinforced, +/area/ship/ert/gunnery) +"pt" = ( /obj/structure/table/rack/steel, -/obj/item/clothing/accessory/storage/black_vest{ - pixel_x = -4; - pixel_y = -4 - }, -/obj/item/clothing/accessory/storage/black_vest{ - pixel_x = -2; - pixel_y = -2 - }, -/obj/item/clothing/accessory/storage/black_vest, -/obj/item/clothing/accessory/storage/black_vest{ - pixel_x = 2; - pixel_y = 2 - }, -/obj/item/clothing/accessory/storage/black_vest{ - pixel_x = 4; - pixel_y = 4 - }, -/obj/item/clothing/accessory/storage/black_vest{ - pixel_x = 6; - pixel_y = 6 - }, -/obj/machinery/power/apc/hyper{ - alarms_hidden = 1; - dir = 4; - name = "VB APC - East"; - pixel_x = 24 - }, -/obj/structure/cable/yellow, -/obj/effect/floor_decal/industrial/outline/grey, +/obj/item/weapon/rig/ert/security, +/obj/item/weapon/rig/ert/security, +/obj/item/weapon/rig/ert/security, +/obj/item/weapon/rig/ert/security, +/obj/item/weapon/rig/ert/security, +/obj/item/weapon/rig/ert/security, +/obj/item/clothing/suit/armor/vest/ert/security, +/obj/item/clothing/suit/armor/vest/ert/security, +/obj/item/clothing/suit/armor/vest/ert/security, +/obj/item/clothing/suit/armor/vest/ert/security, +/obj/item/clothing/suit/armor/vest/ert/security, +/obj/item/clothing/suit/armor/vest/ert/security, +/obj/item/clothing/head/helmet/ert/security, +/obj/item/clothing/head/helmet/ert/security, +/obj/item/clothing/head/helmet/ert/security, +/obj/item/clothing/head/helmet/ert/security, +/obj/item/clothing/head/helmet/ert/security, +/obj/item/clothing/head/helmet/ert/security, /turf/simulated/floor/tiled/techfloor, /area/ship/ert/barracks) -"oX" = ( +"pv" = ( /obj/structure/table/rack/steel, /obj/effect/floor_decal/industrial/outline/grey, /obj/item/clothing/gloves/yellow{ @@ -2681,35 +3644,269 @@ }, /turf/simulated/floor/tiled/techfloor, /area/ship/ert/barracks) -"pb" = ( -/obj/structure/medical_stand, -/obj/structure/sink{ - dir = 4; - pixel_x = 12; - pixel_y = 8 +"pw" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 }, -/turf/simulated/floor/tiled/white, -/area/ship/ert/med_surg) -"pf" = ( -/obj/effect/landmark/map_data/ert_ship, -/turf/space, -/area/space) -"pg" = ( -/obj/effect/landmark{ - name = "Commando" +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/door/firedoor/border_only, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/door/blast/regular/open{ + dir = 2; + id = "braun_blast_shields"; + name = "Blast Shield" + }, +/turf/simulated/floor/tiled/techfloor, +/area/ship/ert/bridge) +"px" = ( +/obj/machinery/door/firedoor/border_only, +/obj/machinery/door/airlock/glass{ + req_one_access = list(103) + }, +/turf/simulated/floor/tiled/techmaint, +/area/ship/ert/dock_star) +"pA" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/door/firedoor/border_only, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/visible, +/turf/simulated/floor/airless, +/area/ship/ert/gunnery) +"pD" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/simulated/floor/tiled/techmaint, +/area/shuttle/ert_ship_boat) +"pE" = ( +/obj/machinery/button/remote/blast_door{ + dir = 1; + id = "Von_Braun_Cannon"; + name = "Cannon Port Access"; + pixel_y = -24; + req_one_access = list(103) + }, +/turf/simulated/floor/tiled/techmaint, +/area/ship/ert/gunnery) +"pG" = ( +/obj/machinery/alarm/alarms_hidden{ + dir = 1; + pixel_y = -26 + }, +/obj/structure/table/rack/steel, +/obj/item/weapon/rig/ert/engineer, +/obj/item/weapon/rig/ert/engineer, +/obj/item/weapon/rig/ert/engineer, +/obj/item/weapon/rig/ert/engineer, +/obj/item/weapon/rig/ert/engineer, +/obj/item/weapon/rig/ert/engineer, +/obj/item/clothing/suit/armor/vest/ert/engineer, +/obj/item/clothing/suit/armor/vest/ert/engineer, +/obj/item/clothing/suit/armor/vest/ert/engineer, +/obj/item/clothing/suit/armor/vest/ert/engineer, +/obj/item/clothing/suit/armor/vest/ert/engineer, +/obj/item/clothing/suit/armor/vest/ert/engineer, +/obj/item/clothing/head/helmet/ert/engineer, +/obj/item/clothing/head/helmet/ert/engineer, +/obj/item/clothing/head/helmet/ert/engineer, +/obj/item/clothing/head/helmet/ert/engineer, +/obj/item/clothing/head/helmet/ert/engineer, +/obj/item/clothing/head/helmet/ert/engineer, +/turf/simulated/floor/tiled/techfloor, +/area/ship/ert/barracks) +"pK" = ( +/obj/structure/table/rack/steel, +/obj/item/weapon/storage/backpack/ert/medical{ + pixel_y = -3 + }, +/obj/item/weapon/storage/backpack/ert/medical, +/obj/item/weapon/storage/backpack/ert/medical{ + pixel_y = 3 + }, +/obj/effect/floor_decal/industrial/outline/grey, +/obj/machinery/light/no_nightshift, +/obj/item/weapon/storage/backpack/ert/medical{ + pixel_y = 6 + }, +/obj/item/weapon/storage/backpack/ert/medical{ + pixel_y = 9 + }, +/obj/item/weapon/storage/backpack/ert/medical{ + pixel_y = 12 + }, +/obj/item/clothing/suit/space/void/responseteam/medical, +/obj/item/clothing/suit/space/void/responseteam/medical, +/obj/item/clothing/suit/space/void/responseteam/medical, +/obj/item/clothing/suit/space/void/responseteam/medical, +/obj/item/clothing/suit/space/void/responseteam/medical, +/obj/item/clothing/suit/space/void/responseteam/medical, +/turf/simulated/floor/tiled/techfloor, +/area/ship/ert/barracks) +"pM" = ( +/obj/item/weapon/storage/belt/medical/emt{ + pixel_y = -4 + }, +/obj/item/weapon/storage/belt/medical/emt{ + pixel_y = -2 + }, +/obj/item/weapon/storage/belt/medical/emt, +/obj/item/weapon/storage/belt/medical/emt{ + pixel_y = 2 + }, +/obj/item/weapon/storage/belt/medical/emt{ + pixel_y = 4 + }, +/obj/item/weapon/storage/belt/medical/emt{ + pixel_y = 6 + }, +/obj/item/clothing/accessory/storage/white_vest{ + pixel_y = -4 + }, +/obj/item/clothing/accessory/storage/white_vest{ + pixel_y = -2 + }, +/obj/item/clothing/accessory/storage/white_vest, +/obj/item/clothing/accessory/storage/white_vest{ + pixel_y = 2 + }, +/obj/item/clothing/accessory/storage/white_vest{ + pixel_y = 4 + }, +/obj/item/clothing/accessory/storage/white_vest{ + pixel_y = 6 + }, +/obj/structure/table/rack/steel, +/obj/effect/floor_decal/industrial/outline/grey, +/obj/item/weapon/storage/belt/explorer/pathfinder{ + name = "ERT belt" + }, +/obj/item/weapon/storage/belt/explorer/pathfinder{ + name = "ERT belt" + }, +/obj/item/weapon/storage/belt/explorer/pathfinder{ + name = "ERT belt" }, /turf/simulated/floor/tiled/techfloor, /area/ship/ert/barracks) -"pm" = ( -/obj/effect/floor_decal/corner/yellow{ - dir = 9 +"pN" = ( +/obj/structure/disposaloutlet, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/airless, +/area/ship/ert/gunnery) +"pO" = ( +/obj/machinery/light/no_nightshift, +/turf/simulated/floor/reinforced/airless, +/area/ship/ert/gunnery) +"pP" = ( +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 5 + }, +/turf/simulated/wall/rshull, +/area/ship/ert/dock_star) +"pQ" = ( +/obj/machinery/light/no_nightshift{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/structure/table/steel_reinforced, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/ship/ert/brig) +"pS" = ( +/obj/effect/shuttle_landmark/premade/ert_ship_near_port, +/turf/space, +/area/space) +"pU" = ( +/obj/structure/sign/department/medbay{ + name = "MEDICAL OUTFITTING & SUPPLIES" + }, +/turf/simulated/wall/shull, +/area/ship/ert/med) +"pV" = ( +/turf/simulated/wall/shull, +/area/ship/ert/atmos) +"pY" = ( +/obj/machinery/power/pointdefense{ + id_tag = "vonbraun_pd" + }, +/obj/structure/cable/yellow{ + d2 = 4; + icon_state = "0-4" + }, +/turf/simulated/floor/reinforced/airless, +/area/ship/ert/engine) +"pZ" = ( +/obj/machinery/door/firedoor/border_only, +/obj/machinery/door/airlock/glass_security{ + name = "Delta Armoury"; + req_one_access = list(103) + }, +/obj/machinery/door/blast/regular{ + closed_layer = 4; + id = "NRV_DELTA"; + layer = 4 }, /turf/simulated/floor/tiled/techmaint, +/area/ship/ert/armoury_dl) +"qa" = ( +/obj/structure/closet/crate/medical, +/obj/item/weapon/storage/mre/menu11, +/obj/item/weapon/storage/mre/menu11, +/obj/item/weapon/storage/mre/menu11, +/obj/item/weapon/storage/mre/menu11, +/obj/item/stack/nanopaste/advanced, +/obj/item/stack/nanopaste/advanced, +/obj/item/stack/nanopaste/advanced, +/obj/item/weapon/reagent_containers/food/drinks/drinkingglass/fitnessflask/glucose, +/obj/item/weapon/storage/pill_bottle/iron, +/obj/item/weapon/storage/pill_bottle/iron, +/obj/item/weapon/storage/pill_bottle/sleevingcure/full, +/obj/item/weapon/storage/box/syringes, +/obj/item/weapon/storage/box/syringes{ + pixel_x = 2; + pixel_y = 2 + }, +/obj/machinery/light_switch{ + dir = 8; + pixel_x = 23 + }, +/obj/effect/floor_decal/industrial/outline, +/turf/simulated/floor/tiled/techfloor, /area/ship/ert/med) -"po" = ( -/obj/machinery/door/airlock/glass_medical{ - name = "Medical Bay"; - req_access = list(103) +"qc" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/ship/ert/med_surg) +"ql" = ( +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -2718,50 +3915,13 @@ dir = 4 }, /obj/structure/cable/yellow{ - d1 = 4; + d1 = 2; d2 = 8; - icon_state = "4-8" + icon_state = "2-8" }, -/turf/simulated/floor/tiled/white, -/area/ship/ert/med_surg) -"pq" = ( -/obj/structure/table/steel_reinforced, -/obj/item/bodybag/cryobag{ - pixel_x = -4; - pixel_y = -4 - }, -/obj/item/bodybag/cryobag{ - pixel_x = -2; - pixel_y = -2 - }, -/obj/item/bodybag/cryobag, -/obj/item/bodybag/cryobag{ - pixel_x = 2; - pixel_y = 2 - }, -/obj/item/bodybag/cryobag{ - pixel_x = 4; - pixel_y = 4 - }, -/obj/item/bodybag/cryobag{ - pixel_x = 6; - pixel_y = 6 - }, -/turf/simulated/floor/tiled/techfloor, -/area/ship/ert/med) -"pr" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/machinery/door/firedoor/border_only, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/simulated/floor/airless, -/area/ship/ert/gunnery) -"pt" = ( +/turf/simulated/floor/tiled/techmaint, +/area/ship/ert/eng_storage) +"qo" = ( /obj/structure/table/rack/steel, /obj/item/clothing/suit/space/void/responseteam/janitor{ pixel_y = -2 @@ -2786,12 +3946,51 @@ /obj/machinery/light/no_nightshift, /turf/simulated/floor/tiled/techfloor, /area/ship/ert/barracks) -"pv" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +"qp" = ( +/obj/machinery/door/airlock/glass_engineering{ + name = "Engineering"; + req_access = list(103) + }, +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/door/firedoor/border_only, /turf/simulated/floor/tiled/techmaint, -/area/ship/ert/barracks) -"pz" = ( +/area/ship/ert/engineering) +"qq" = ( +/obj/machinery/power/thermoregulator, +/obj/effect/floor_decal/industrial/outline, +/turf/simulated/floor/tiled/techfloor, +/area/ship/ert/eng_storage) +"qt" = ( +/obj/structure/cable/green, +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, +/turf/simulated/floor/tiled/techfloor, +/area/ship/ert/engineering) +"qw" = ( +/obj/structure/bed/pod, +/turf/simulated/floor/tiled/techfloor/grid, +/area/ship/ert/brig) +"qy" = ( /obj/structure/cable/yellow{ d1 = 4; d2 = 8; @@ -2803,112 +4002,20 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, -/obj/machinery/door/firedoor/multi_tile{ - dir = 1 - }, -/obj/machinery/door/airlock/multi_tile/glass{ - dir = 1; - req_one_access = list(103) +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 8; + icon_state = "1-8" }, /turf/simulated/floor/tiled/techmaint, -/area/ship/ert/med) -"pA" = ( -/obj/structure/ship_munition/disperser_charge/explosive, -/obj/effect/floor_decal/industrial/warning, -/turf/simulated/floor/reinforced, -/area/ship/ert/hallways_aft) -"pE" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/turf/simulated/floor/reinforced/airless, -/area/ship/ert/gunnery) -"pG" = ( -/obj/structure/closet{ - name = "custodial" - }, -/obj/item/weapon/reagent_containers/spray/cleaner{ - pixel_x = -6 - }, -/obj/item/weapon/reagent_containers/spray/cleaner{ - pixel_x = -2 - }, -/obj/item/weapon/reagent_containers/spray/cleaner{ - pixel_x = 2 - }, -/obj/item/weapon/reagent_containers/spray/cleaner{ - pixel_x = 6 - }, -/obj/item/weapon/reagent_containers/glass/bucket{ - pixel_x = 6 - }, -/obj/item/weapon/reagent_containers/glass/bucket{ - pixel_x = 2 - }, -/obj/item/weapon/reagent_containers/glass/bucket{ - pixel_x = -2 - }, -/obj/item/weapon/reagent_containers/glass/bucket{ - pixel_x = -6 - }, -/obj/item/weapon/mop{ - pixel_x = 6 - }, -/obj/item/weapon/mop{ - pixel_x = 2 - }, -/obj/item/weapon/mop{ - pixel_x = -2 - }, -/obj/item/weapon/mop{ - pixel_x = -6 - }, -/obj/item/weapon/rig/ert/janitor, -/obj/item/device/lightreplacer{ - pixel_y = -2 - }, -/obj/item/device/lightreplacer{ - pixel_y = 2 - }, -/obj/item/weapon/storage/box/lights/mixed{ - pixel_x = -1; - pixel_y = -1 - }, -/obj/item/weapon/storage/box/lights/mixed{ - pixel_x = 1; - pixel_y = 1 - }, -/obj/machinery/light/no_nightshift, -/turf/simulated/floor/tiled/techfloor, -/area/ship/ert/barracks) -"pI" = ( -/obj/structure/table/rack/steel, -/obj/effect/floor_decal/industrial/outline/grey, -/obj/item/weapon/gun/energy/pulse_rifle{ - pixel_y = 6 - }, -/obj/item/weapon/gun/energy/pulse_rifle{ - pixel_y = 4 - }, -/obj/item/weapon/gun/energy/pulse_rifle{ - pixel_y = 2 - }, -/obj/item/weapon/gun/energy/pulse_rifle, -/obj/item/weapon/gun/energy/pulse_rifle{ - pixel_y = -2 - }, -/obj/item/weapon/gun/energy/pulse_rifle{ - pixel_y = -4 - }, -/turf/simulated/floor/tiled/techfloor, -/area/ship/ert/armoury_dl) -"pK" = ( +/area/ship/ert/mech_bay) +"qz" = ( /obj/structure/sign/department/eng{ name = "RIG AND MECH BAY" }, /turf/simulated/wall/shull, /area/ship/ert/mech_bay) -"pM" = ( +"qD" = ( /obj/structure/table/steel_reinforced, /obj/item/rig_module/mounted/taser{ pixel_x = -4; @@ -2940,19 +4047,13 @@ }, /turf/simulated/floor/tiled/techfloor, /area/ship/ert/mech_bay) -"pN" = ( -/obj/machinery/embedded_controller/radio/airlock/docking_port_multi{ - dir = 8; - id_tag = "von_braun_star"; - master_tag = "von_braun_master"; - name = "Starboard Docking Control"; - pixel_x = 22 +"qF" = ( +/obj/machinery/light/no_nightshift{ + dir = 1 }, -/turf/simulated/floor/tiled/techfloor, -/area/ship/ert/dock_star) -"pO" = ( -/obj/machinery/light/no_nightshift, +/obj/machinery/porta_turret/stationary/CIWS, /turf/simulated/floor/reinforced/airless, +<<<<<<< HEAD /area/ship/ert/gunnery) "pS" = ( /obj/effect/shuttle_landmark/premade/ert_ship_near_port, @@ -2997,128 +4098,126 @@ /turf/simulated/floor/tiled/techfloor, /area/ship/ert/mech_bay) "ql" = ( +======= +/area/ship/ert/dock_star) +"qJ" = ( +/turf/simulated/wall/shull, +/area/ship/ert/hallways) +"qP" = ( +>>>>>>> c55e7a1c3b... Merge pull request #14538 from KillianKirilenko/kk-vbupg /obj/structure/cable/yellow{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/techmaint, -/area/ship/ert/med) -"qo" = ( -/turf/simulated/floor/tiled/techfloor, -/area/ship/ert/mech_bay) -"qt" = ( -/obj/structure/cable/green{ d1 = 4; d2 = 8; icon_state = "4-8" }, -/obj/structure/table/steel_reinforced, -/obj/fiftyspawner/uranium, -/obj/fiftyspawner/uranium, -/turf/simulated/floor/tiled/techfloor, -/area/ship/ert/engineering) -"qy" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 +/obj/machinery/door/firedoor/multi_tile{ + dir = 1 }, +<<<<<<< HEAD +======= +/obj/machinery/door/airlock/glass_engineering{ + name = "RIG Bay & ORB Access"; + req_access = list(103) + }, +>>>>>>> c55e7a1c3b... Merge pull request #14538 from KillianKirilenko/kk-vbupg /turf/simulated/floor/tiled/techmaint, -/area/ship/ert/gunnery) -"qz" = ( -/obj/machinery/light/no_nightshift{ - dir = 8 - }, -/obj/structure/ship_munition/disperser_charge/explosive, -/obj/machinery/firealarm/alarms_hidden{ - dir = 1; - pixel_y = -26 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/structure/railing{ - dir = 1 - }, -/turf/simulated/floor/reinforced, -/area/ship/ert/gunnery) -"qA" = ( -/obj/effect/floor_decal/corner/white{ - dir = 8 - }, -/obj/machinery/light/no_nightshift{ - dir = 1 - }, -/obj/machinery/alarm/alarms_hidden{ - pixel_y = 26 - }, -/obj/machinery/recharge_station, -/turf/simulated/floor/tiled/techfloor, -/area/ship/ert/med) -"qD" = ( -/obj/structure/ship_munition/disperser_charge/explosive, -/obj/machinery/alarm/alarms_hidden{ - dir = 1; - pixel_y = -26 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/turf/simulated/floor/reinforced, -/area/ship/ert/gunnery) -"qF" = ( -/obj/machinery/light/no_nightshift{ - dir = 1 - }, -/obj/machinery/porta_turret/stationary/CIWS, -/turf/simulated/floor/reinforced/airless, -/area/ship/ert/eng_storage) -"qJ" = ( -/obj/structure/table/rack/steel, -/obj/effect/floor_decal/industrial/outline/grey, -/obj/item/ammo_magazine/m545{ - pixel_x = -8 - }, -/obj/item/ammo_magazine/m545{ - pixel_x = -5 - }, -/obj/item/ammo_magazine/m545{ - pixel_x = -2 - }, -/obj/item/ammo_magazine/m545{ - pixel_x = 1 - }, -/obj/item/ammo_magazine/m545{ - pixel_x = 4 - }, -/obj/item/ammo_magazine/m545{ - pixel_x = 7 - }, -/obj/item/weapon/gun/projectile/automatic/sts35{ - pixel_y = -2 - }, -/obj/item/weapon/gun/projectile/automatic/sts35{ - pixel_y = 2 - }, -/turf/simulated/floor/tiled/techfloor, -/area/ship/ert/armoury_st) -"qP" = ( +/area/ship/ert/mech_bay) +"qR" = ( +/obj/machinery/light/no_nightshift, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 + dir = 5 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 +/obj/machinery/light_switch{ + dir = 1; + pixel_y = -23 + }, +/turf/simulated/floor/tiled/techfloor, +/area/ship/ert/atmos) +"ra" = ( +/obj/machinery/power/pointdefense{ + id_tag = "vonbraun_pd" }, /obj/structure/cable/yellow{ - d1 = 1; d2 = 8; - icon_state = "1-8" + icon_state = "0-8" }, +/turf/simulated/floor/reinforced/airless, +/area/ship/ert/med_surg) +"rc" = ( +/obj/structure/table/rack/steel, +/obj/item/weapon/gun/projectile/automatic/l6_saw{ + pixel_y = 3 + }, +/obj/item/weapon/gun/projectile/automatic/l6_saw{ + pixel_y = -3 + }, +/obj/item/ammo_magazine/m545saw{ + pixel_x = 6 + }, +/obj/item/ammo_magazine/m545saw{ + pixel_x = 2 + }, +/obj/item/ammo_magazine/m545saw{ + pixel_x = -2 + }, +/obj/item/ammo_magazine/m545saw{ + pixel_x = -6 + }, +/obj/effect/floor_decal/industrial/outline/grey, +/turf/simulated/floor/tiled/techfloor, +/area/ship/ert/armoury_dl) +"rh" = ( +/turf/simulated/floor/reinforced/airless, +/area/ship/ert/med) +"rn" = ( +/obj/machinery/alarm/alarms_hidden{ + dir = 1; + pixel_y = -26 + }, +/turf/simulated/floor/tiled/white, +/area/ship/ert/med_surg) +"rp" = ( +/turf/simulated/floor/tiled/techfloor, +/area/ship/ert/gunnery) +"rr" = ( +/obj/structure/cable/yellow{ + d2 = 2; + icon_state = "0-2" + }, +/obj/machinery/power/apc/hyper{ + alarms_hidden = 1; + dir = 8; + name = "VB APC - West"; + pixel_x = -24 + }, +/turf/simulated/floor/tiled/techfloor, +/area/ship/ert/gunnery) +"rs" = ( +/obj/machinery/power/apc/hyper{ + alarms_hidden = 1; + dir = 4; + name = "VB APC - East"; + pixel_x = 24 + }, +/obj/structure/cable/yellow{ + d2 = 2; + icon_state = "0-2" + }, +/turf/simulated/floor/tiled/techfloor, +/area/ship/ert/engine) +"rt" = ( +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +<<<<<<< HEAD /turf/simulated/floor/tiled/techmaint, /area/ship/ert/gunnery) "qR" = ( @@ -3140,38 +4239,72 @@ /area/ship/ert/gunnery) "rs" = ( /obj/machinery/atmospherics/pipe/simple/visible/universal, -/turf/simulated/floor/tiled/techfloor, -/area/ship/ert/engine) -"rt" = ( -/obj/machinery/atmospherics/pipe/tank/air{ - dir = 4; - start_pressure = 740.5 +======= +/obj/structure/cable/yellow{ + d1 = 2; + d2 = 8; + icon_state = "2-8" }, -/turf/simulated/floor/tiled/techfloor, -/area/ship/ert/dock_star) +/turf/simulated/wall/rshull, +/area/ship/ert/engine) "ry" = ( -/obj/machinery/light/no_nightshift{ - dir = 1 +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 4; + icon_state = "1-4" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 + dir = 9 }, -/obj/machinery/light_switch{ - pixel_y = 23 - }, -/obj/structure/table/steel_reinforced, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/techfloor, /area/ship/ert/engineering) "rA" = ( /obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + dir = 10 + }, +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +>>>>>>> c55e7a1c3b... Merge pull request #14538 from KillianKirilenko/kk-vbupg +/turf/simulated/floor/tiled/techfloor, +/area/ship/ert/engine) +"rN" = ( +/obj/structure/table/steel_reinforced, +/obj/item/rig_module/mounted{ + pixel_x = -4; + pixel_y = -4 + }, +/obj/item/rig_module/mounted/egun{ + pixel_x = -2; + pixel_y = -2 + }, +/obj/item/rig_module/mounted/egun, +/obj/item/rig_module/mounted/egun{ + pixel_x = 2; + pixel_y = 2 + }, +/obj/item/rig_module/mounted/egun{ + pixel_x = 4; + pixel_y = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/ship/ert/mech_bay) +"rO" = ( +/obj/structure/table/steel_reinforced, +/obj/machinery/light/no_nightshift{ dir = 8 }, -/obj/effect/floor_decal/industrial/warning{ - dir = 8 +/obj/machinery/firealarm/alarms_hidden{ + pixel_y = 26 }, -/obj/structure/window/reinforced{ - dir = 8 +/obj/machinery/light_switch{ + dir = 4; + pixel_x = -23 }, +<<<<<<< HEAD /turf/simulated/floor/tiled/techfloor, /area/ship/ert/engine) "rD" = ( @@ -3187,24 +4320,105 @@ "rO" = ( /turf/simulated/floor/tiled/techfloor, /area/ship/ert/gunnery) -"rR" = ( -/obj/machinery/atmospherics/pipe/tank/phoron{ - dir = 8 +======= +/obj/item/rig_module/sprinter{ + pixel_x = -4; + pixel_y = 4 }, -/obj/machinery/light/no_nightshift{ - dir = 4 +/obj/item/rig_module/sprinter{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/rig_module/rescue_pharm{ + pixel_y = -2 + }, +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" }, /turf/simulated/floor/tiled/techfloor, -/area/ship/ert/engine) +/area/ship/ert/mech_bay) +"rP" = ( +/obj/machinery/atmospherics/unary/vent_pump/on, +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techfloor, +/area/ship/ert/hallways_aft) +>>>>>>> c55e7a1c3b... Merge pull request #14538 from KillianKirilenko/kk-vbupg +"rR" = ( +/obj/structure/cable/yellow{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/tiled/techmaint, +/area/ship/ert/dock_port) "rS" = ( -/obj/machinery/atmospherics/portables_connector{ +/obj/machinery/atmospherics/pipe/manifold/visible{ dir = 4 }, -/obj/machinery/portable_atmospherics/canister/oxygen, -/obj/effect/floor_decal/industrial/outline/blue, /turf/simulated/floor/tiled/techfloor, /area/ship/ert/atmos) "rV" = ( +/obj/machinery/door/firedoor/border_only, +/obj/machinery/door/airlock/glass{ + req_one_access = list(103) + }, +/obj/structure/sign/warning/airlock{ + pixel_y = 32 + }, +/turf/simulated/floor/tiled/techmaint, +/area/ship/ert/dock_port) +"sc" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/machinery/door/firedoor/border_only, +/obj/machinery/door/blast/regular/open{ + id = "VB_Rear_Blast"; + name = "Blast Shield" + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/ship/ert/engineering) +"sd" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/techmaint, +/area/ship/ert/eng_storage) +"sf" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techmaint, +/area/ship/ert/barracks) +"sk" = ( /obj/machinery/door/airlock/glass_medical{ name = "Medical Bay"; req_access = list(103) @@ -3214,96 +4428,80 @@ /obj/machinery/door/firedoor/multi_tile, /turf/simulated/floor/tiled/techmaint, /area/ship/ert/hangar) -"sd" = ( -/obj/effect/floor_decal/corner/yellow{ - dir = 9 +"sq" = ( +/obj/structure/table/rack, +/obj/item/weapon/storage/secure/briefcase/nsfw_pack_hybrid, +/obj/item/weapon/storage/belt/explorer/pathfinder{ + name = "ERT belt" }, -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/techmaint, -/area/ship/ert/med) -"sf" = ( -/obj/structure/table/steel_reinforced, -/obj/machinery/chemical_dispenser/ert, -/obj/item/weapon/reagent_containers/glass/beaker/large, -/turf/simulated/floor/tiled/techfloor, -/area/ship/ert/med) -"so" = ( -/obj/machinery/light/no_nightshift, -/obj/effect/floor_decal/industrial/outline/grey, +/turf/simulated/floor/wood, +/area/ship/ert/commander) +"sr" = ( /obj/structure/table/rack/steel, -/obj/item/clothing/accessory/storage/brown_vest{ +/obj/item/clothing/glasses/night{ + pixel_x = -4; pixel_y = -4 }, -/obj/item/clothing/accessory/storage/brown_vest{ +/obj/item/clothing/glasses/night{ + pixel_x = -2; pixel_y = -2 }, -/obj/item/clothing/accessory/storage/brown_vest, -/obj/item/clothing/accessory/storage/brown_vest{ +/obj/item/clothing/glasses/night, +/obj/item/clothing/glasses/night{ + pixel_x = 2; pixel_y = 2 }, -/obj/item/clothing/accessory/storage/brown_vest{ +/obj/item/clothing/glasses/night{ + pixel_x = 4; pixel_y = 4 }, -/obj/item/clothing/accessory/storage/brown_vest{ +/obj/item/clothing/glasses/night{ + pixel_x = 6; pixel_y = 6 }, -/turf/simulated/floor/tiled/techfloor, -/area/ship/ert/barracks) -"sp" = ( -/turf/simulated/wall/rshull, -/area/ship/ert/commander) -"sq" = ( -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; - icon_state = "1-2" +/obj/machinery/atm{ + pixel_y = 26 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/techmaint, -/area/ship/ert/dock_port) -"sr" = ( -/obj/machinery/vending/food, /obj/effect/floor_decal/industrial/outline/grey, /turf/simulated/floor/tiled/techfloor, /area/ship/ert/barracks) "sw" = ( -/obj/machinery/firealarm/alarms_hidden{ - pixel_y = 26 +/obj/machinery/door/blast/shutters{ + density = 0; + dir = 2; + icon_state = "shutter0"; + id = "braun_cells_privacy"; + name = "Privacy Shutters"; + opacity = 0 }, -/turf/simulated/floor/tiled/techfloor, -/area/ship/ert/teleporter) -"sz" = ( -/obj/structure/closet/wardrobe/ert, -/obj/item/modular_computer/tablet/preset/custom_loadout/elite, -/obj/item/weapon/storage/box/survival/comp{ - starts_with = list(/obj/item/weapon/tool/prybar/red,/obj/item/clothing/glasses/goggles,/obj/item/weapon/reagent_containers/hypospray/autoinjector,/obj/item/stack/medical/bruise_pack,/obj/item/device/flashlight/glowstick,/obj/item/weapon/reagent_containers/food/snacks/candy/proteinbar,/obj/item/clothing/mask/breath,/obj/item/weapon/tank/emergency/oxygen/engi) - }, -/obj/machinery/light/no_nightshift, -/obj/effect/floor_decal/industrial/outline/grey, -/obj/item/modular_computer/laptop/preset/custom_loadout/elite, -/turf/simulated/floor/tiled/techfloor, -/area/ship/ert/barracks) -"sA" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 +/obj/machinery/door/airlock/glass{ + req_one_access = list(103) }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 1 + }, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/tiled/techfloor, +/area/ship/ert/brig) +"sy" = ( +/obj/effect/floor_decal/corner/red{ + dir = 1 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ dir = 4 }, -/obj/item/modular_computer/console/preset/medical{ - dir = 8 +/turf/simulated/floor/tiled/techmaint, +/area/ship/ert/hangar) +"sz" = ( +/obj/structure/filingcabinet/filingcabinet, +/turf/simulated/floor/wood, +/area/ship/ert/commander) +"sA" = ( +/obj/machinery/door/airlock/glass_command{ + req_one_access = list(103) }, +<<<<<<< HEAD /turf/simulated/floor/tiled/techfloor, /area/ship/ert/bridge) "sB" = ( @@ -3317,82 +4515,100 @@ /turf/simulated/floor/reinforced/airless, /area/ship/ert/barracks) "sC" = ( +======= +>>>>>>> c55e7a1c3b... Merge pull request #14538 from KillianKirilenko/kk-vbupg /obj/structure/cable/yellow{ d1 = 4; d2 = 8; icon_state = "4-8" }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/turf/simulated/floor/tiled/techmaint, -/area/ship/ert/dock_star) -"sF" = ( -/obj/structure/table/rack/steel, -/obj/item/clothing/glasses/graviton{ - pixel_x = -2; - pixel_y = -2 - }, -/obj/item/clothing/glasses/graviton, -/obj/item/clothing/glasses/graviton{ - pixel_x = 2; - pixel_y = 2 - }, -/obj/item/clothing/glasses/graviton{ - pixel_x = 4; - pixel_y = 4 - }, -/obj/effect/floor_decal/industrial/outline/grey, -/turf/simulated/floor/tiled/techfloor, -/area/ship/ert/barracks) -"sH" = ( -/obj/machinery/computer/ship/sensors, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 + dir = 4 }, -/obj/structure/railing/grey{ - dir = 1 +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 }, -/turf/simulated/floor/tiled/techfloor, +/obj/machinery/door/firedoor/border_only, +/turf/simulated/floor/tiled/techmaint, /area/ship/ert/bridge) -"sJ" = ( -/obj/structure/table/rack/steel, -/obj/item/clothing/accessory/storage/black_vest{ - pixel_x = -4; - pixel_y = -4 - }, -/obj/item/clothing/accessory/storage/black_vest{ - pixel_x = -2; - pixel_y = -2 - }, -/obj/item/clothing/accessory/storage/black_vest, -/obj/item/clothing/accessory/storage/black_vest{ - pixel_x = 2; - pixel_y = 2 - }, -/obj/item/clothing/accessory/storage/black_vest{ - pixel_x = 4; - pixel_y = 4 - }, -/obj/item/clothing/accessory/storage/black_vest{ - pixel_x = 6; - pixel_y = 6 +"sE" = ( +/obj/structure/table/steel_reinforced, +/obj/machinery/light/no_nightshift{ + dir = 4 }, /obj/machinery/alarm/alarms_hidden{ + dir = 8; + pixel_x = 26 + }, +/obj/item/weapon/reagent_containers/spray/cleaner, +/obj/item/weapon/reagent_containers/spray/cleaner, +/turf/simulated/floor/tiled/techfloor, +/area/ship/ert/brig) +"sF" = ( +/obj/machinery/atmospherics/unary/vent_pump/on, +/turf/simulated/floor/tiled/techmaint, +/area/ship/ert/mech_bay) +"sI" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/door/firedoor/multi_tile{ + dir = 1 + }, +/obj/machinery/door/airlock/glass_security{ + name = "Delta Armoury"; + req_one_access = list(103) + }, +/obj/machinery/door/blast/regular{ + closed_layer = 4; + id = "NRV_DELTA"; + layer = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/ship/ert/armoury_dl) +"sM" = ( +/obj/structure/bed/chair/bay/shuttle{ + dir = 1 + }, +/obj/machinery/recharger/wallcharger{ + pixel_x = -23; + pixel_y = -12 + }, +/obj/machinery/recharger/wallcharger{ + pixel_x = -23; + pixel_y = -4 + }, +/obj/machinery/recharger/wallcharger{ + pixel_x = -23; + pixel_y = 5 + }, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/ert_ship_boat) +"sN" = ( +/obj/machinery/light/no_nightshift{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/ship/ert/teleporter) +"sR" = ( +/obj/structure/table/rack/steel, +/obj/item/weapon/gun/energy/xray{ + pixel_y = -3 + }, +/obj/item/weapon/gun/energy/xray{ + pixel_y = 3 + }, +/obj/machinery/light/no_nightshift, +/obj/machinery/firealarm/alarms_hidden{ dir = 1; pixel_y = -26 }, /obj/effect/floor_decal/industrial/outline/grey, /turf/simulated/floor/tiled/techfloor, -/area/ship/ert/barracks) -"sS" = ( -/obj/machinery/shieldwallgen, -/obj/machinery/light/no_nightshift{ - dir = 1 - }, -/obj/effect/floor_decal/industrial/outline/blue, -/turf/simulated/floor/tiled/techfloor, -/area/ship/ert/eng_storage) +/area/ship/ert/armoury_dl) "sU" = ( /obj/structure/cable/yellow{ d1 = 4; @@ -3406,37 +4622,65 @@ dir = 4 }, /turf/simulated/floor/tiled/techmaint, -/area/ship/ert/med) +/area/ship/ert/eng_storage) "sW" = ( +<<<<<<< HEAD /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 5 }, /turf/simulated/floor/tiled/techmaint, /area/ship/ert/eng_storage) +======= +/obj/structure/cable/yellow{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/light/no_nightshift{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor, +/area/ship/ert/dock_star) +>>>>>>> c55e7a1c3b... Merge pull request #14538 from KillianKirilenko/kk-vbupg "sX" = ( +/obj/structure/bed/chair/bay/comfy/captain{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, /obj/structure/cable/yellow{ d1 = 4; d2 = 8; icon_state = "4-8" }, +/obj/machinery/button/remote/blast_door{ + dir = 8; + id = "braun_blast_shields"; + name = "Blast Shields Control"; + pixel_x = 32; + pixel_y = 35; + req_one_access = list(101) + }, /turf/simulated/floor/tiled/techmaint, -/area/ship/ert/hallways) +/area/ship/ert/bridge) "ta" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/door/firedoor/multi_tile, -/obj/machinery/door/airlock/multi_tile/glass{ - req_one_access = list(103) +/obj/machinery/airlock_sensor{ + dir = 8; + pixel_x = 22; + pixel_y = -24 }, -/turf/simulated/floor/tiled/techmaint, -/area/ship/ert/hangar) -"tg" = ( -/obj/effect/floor_decal/corner/white{ - dir = 6 +/obj/effect/map_helper/airlock/sensor/int_sensor, +/turf/simulated/floor/tiled/techfloor, +/area/ship/ert/gunnery) +"th" = ( +/obj/structure/hull_corner{ + dir = 4 }, -/turf/simulated/floor/tiled/techmaint, +/turf/simulated/floor/reinforced/airless, /area/ship/ert/med) -"tp" = ( +"tn" = ( /obj/structure/cable/yellow{ d1 = 1; d2 = 2; @@ -3445,36 +4689,71 @@ /obj/machinery/light/no_nightshift{ dir = 8 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/techmaint, -/area/ship/ert/dock_star) -"tx" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ +/area/ship/ert/hallways_aft) +"tp" = ( +/obj/machinery/door/airlock/glass_external, +/obj/effect/map_helper/airlock/door/int_door, +/turf/simulated/floor/tiled/techfloor, +/area/ship/ert/gunnery) +"ts" = ( +/obj/effect/floor_decal/industrial/warning{ dir = 1 }, -/turf/simulated/floor/tiled/white, -/area/ship/ert/med_surg) -"tA" = ( -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 }, +/obj/effect/floor_decal/corner/white, /turf/simulated/floor/tiled/techmaint, -/area/ship/ert/dock_star) -"tE" = ( -/obj/structure/sign/department/dock{ - name = "ROBINEAU DOCK" - }, -/turf/simulated/wall/shull, /area/ship/ert/hangar) +"tv" = ( +/obj/effect/floor_decal/corner/white{ + dir = 8 + }, +/obj/machinery/light/no_nightshift{ + dir = 1 + }, +/obj/machinery/alarm/alarms_hidden{ + pixel_y = 26 + }, +/obj/machinery/recharge_station, +/turf/simulated/floor/tiled/techfloor, +/area/ship/ert/med) +"tx" = ( +/obj/effect/map_helper/airlock/atmos/chamber_pump, +/obj/effect/map_helper/airlock/sensor/chamber_sensor, +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ + dir = 1 + }, +/obj/machinery/embedded_controller/radio/airlock/airlock_controller{ + id_tag = "vb_cannon_loader"; + pixel_x = 24; + pixel_y = 23 + }, +/obj/machinery/airlock_sensor{ + pixel_x = -25; + pixel_y = 22 + }, +/turf/simulated/floor/airless, +/area/ship/ert/gunnery) +"tA" = ( +/obj/machinery/door/airlock/glass_external, +/obj/effect/map_helper/airlock/door/ext_door, +/turf/simulated/floor/airless, +/area/ship/ert/gunnery) +"tE" = ( +/obj/effect/map_helper/airlock/sensor/ext_sensor, +/obj/machinery/airlock_sensor/airlock_exterior{ + dir = 4; + pixel_x = 24; + pixel_y = 24 + }, +/turf/simulated/floor/airless, +/area/ship/ert/gunnery) "tH" = ( /turf/simulated/wall/rshull, /area/ship/ert/armoury_st) +<<<<<<< HEAD "tK" = ( /obj/machinery/atmospherics/unary/vent_pump/on, /obj/machinery/door/window/brigdoor/northleft, @@ -3484,45 +4763,66 @@ /obj/machinery/atmospherics/pipe/simple/visible/fuel{ dir = 9 }, -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/machinery/door/blast/regular/open{ - id = "VB_Rear_Blast"; - name = "Blast Shield" - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/ship/ert/engine) -"tV" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/obj/machinery/light/no_nightshift, -/turf/simulated/floor/tiled/techmaint, -/area/shuttle/ert_ship_boat) +======= "tW" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/obj/machinery/light/no_nightshift{ - dir = 1 - }, -/obj/machinery/embedded_controller/radio/simple_docking_controller{ - id_tag = "ert_boarding_shuttle"; - pixel_x = -8; - pixel_y = 22 - }, -/turf/simulated/floor/tiled/techmaint, -/area/shuttle/ert_ship_boat) -"tX" = ( +>>>>>>> c55e7a1c3b... Merge pull request #14538 from KillianKirilenko/kk-vbupg /obj/structure/grille, /obj/structure/window/reinforced/full, /obj/machinery/door/firedoor/border_only, /obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/door/blast/regular/open{ + dir = 2; + id = "braun_blast_shields"; + name = "Blast Shield" + }, +/turf/simulated/floor/tiled/techfloor, +/area/ship/ert/armoury_st) +"tX" = ( +/turf/simulated/wall/shull, +/area/ship/ert/hangar) +"tZ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/techmaint, +/area/ship/ert/gunnery) +"ua" = ( +/obj/structure/table/steel_reinforced, +/obj/machinery/chemical_dispenser/full, +/obj/item/weapon/reagent_containers/glass/beaker/large, +/turf/simulated/floor/tiled/techfloor, +/area/ship/ert/med) +"uc" = ( +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/light/no_nightshift{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/ship/ert/bridge) +"ue" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 1 }, +<<<<<<< HEAD /obj/structure/window/reinforced, /turf/simulated/floor/tiled/techfloor, /area/ship/ert/mech_bay) @@ -3545,30 +4845,129 @@ dir = 1 }, /obj/effect/floor_decal/industrial/outline, -/turf/simulated/floor/tiled/techfloor, -/area/ship/ert/med) -"uh" = ( -/obj/machinery/atmospherics/pipe/simple/visible/fuel{ - dir = 10 +======= +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" }, -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/machinery/door/blast/regular/open{ - id = "VB_Rear_Blast"; - name = "Blast Shield" +/turf/simulated/floor/tiled/white, +/area/ship/ert/med_surg) +"uf" = ( +/obj/machinery/light/no_nightshift{ + dir = 8 + }, +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +>>>>>>> c55e7a1c3b... Merge pull request #14538 from KillianKirilenko/kk-vbupg +/turf/simulated/floor/tiled/techfloor, +/area/ship/ert/engine) +"uh" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 8 }, /obj/structure/window/reinforced{ dir = 8 }, -/turf/simulated/floor/plating, -/area/ship/ert/engine) -"um" = ( -/obj/machinery/vending/engineering, /turf/simulated/floor/tiled/techfloor, +/area/ship/ert/engine) +"uj" = ( +/obj/structure/hull_corner{ + dir = 1 + }, +/turf/simulated/floor/reinforced/airless, /area/ship/ert/eng_storage) -"un" = ( -/obj/machinery/door/airlock/glass_medical{ - name = "Medical Bay"; +"uq" = ( +/obj/machinery/light/no_nightshift{ + dir = 1 + }, +/turf/simulated/floor/airless, +/area/ship/ert/gunnery) +"us" = ( +/obj/item/weapon/storage/box/trackimp, +/obj/item/weapon/storage/box/cdeathalarm_kit, +/obj/item/weapon/stamp/centcomm, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/table/hardwoodtable, +/turf/simulated/floor/wood, +/area/ship/ert/commander) +"ut" = ( +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/ship/ert/hallways_aft) +"uu" = ( +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/turf/simulated/floor/tiled/techmaint, +/area/ship/ert/hallways_aft) +"uD" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel, +<<<<<<< HEAD +/obj/machinery/atmospherics/unary/vent_scrubber/on, +======= +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +>>>>>>> c55e7a1c3b... Merge pull request #14538 from KillianKirilenko/kk-vbupg +/turf/simulated/floor/tiled/techfloor, +/area/ship/ert/engine) +"uE" = ( +/obj/structure/hull_corner/long_horiz{ + dir = 5 + }, +/turf/simulated/floor/reinforced/airless, +/area/ship/ert/hallways_aft) +"uG" = ( +/obj/structure/window/reinforced, +/obj/effect/floor_decal/industrial/warning, +/obj/structure/cable/yellow, +/obj/machinery/shieldwallgen{ + anchored = 1; + name = "secured shield generator"; + req_access = list(103); + state = 1 + }, +/obj/effect/floor_decal/industrial/outline/blue, +/turf/simulated/floor/tiled/techfloor, +/area/ship/ert/teleporter) +"uJ" = ( +/obj/machinery/light/no_nightshift, +/turf/simulated/floor/tiled/techfloor, +/area/ship/ert/hallways_aft) +"uK" = ( +/obj/machinery/atmospherics/pipe/tank/phoron{ + dir = 8 + }, +/obj/machinery/light/no_nightshift{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/ship/ert/engine) +"uS" = ( +/obj/machinery/door/airlock/glass_engineering{ + name = "Engine Bay"; req_access = list(103) }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -3577,72 +4976,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/techmaint, -/area/ship/ert/med) -"uq" = ( -/obj/structure/sign/department/medbay, -/turf/simulated/wall/shull, -/area/ship/ert/med_surg) -"us" = ( -/turf/simulated/floor/tiled/techfloor, -/area/ship/ert/bridge) -"uu" = ( -/obj/machinery/firealarm/alarms_hidden{ - pixel_y = 26 - }, -/turf/simulated/floor/tiled/techmaint, -/area/ship/ert/dock_star) -"ux" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/fuel, -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/turf/simulated/floor/tiled/techfloor, -/area/ship/ert/engine) -"uE" = ( -/obj/machinery/atmospherics/unary/vent_pump/high_volume{ - dir = 8 - }, -/obj/effect/map_helper/airlock/atmos/chamber_pump, -/obj/effect/floor_decal/industrial/warning, -/obj/structure/sign/vacuum{ - pixel_x = -32 - }, -/turf/simulated/floor/tiled/techfloor, -/area/ship/ert/dock_star) -"uG" = ( -/obj/item/modular_computer/console/preset/sysadmin{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor, -/area/ship/ert/bridge) -"uJ" = ( -/obj/structure/cable/yellow{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/light/no_nightshift{ - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor, -/area/ship/ert/dock_star) -"uK" = ( -/obj/machinery/atmospherics/pipe/manifold/visible/yellow{ - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor, -/area/ship/ert/engine) -"uS" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, +<<<<<<< HEAD /obj/structure/cable/yellow{ d1 = 1; d2 = 4; @@ -3653,34 +4987,7 @@ "vb" = ( /obj/machinery/sleeper{ dir = 4 - }, -/obj/machinery/light/no_nightshift{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/ship/ert/med_surg) -"vd" = ( -/obj/machinery/atmospherics/pipe/tank/phoron{ - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor, -/area/ship/ert/engine) -"vg" = ( -/obj/machinery/atmospherics/pipe/simple/visible, -/obj/machinery/meter, -/turf/simulated/floor/tiled/techfloor, -/area/ship/ert/atmos) -"vi" = ( -/obj/machinery/door/airlock/glass_engineering{ - name = "Engineering"; - req_access = list(103) - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, +======= /obj/machinery/door/firedoor/border_only, /obj/structure/cable/yellow{ d1 = 4; @@ -3690,110 +4997,156 @@ /obj/machinery/door/blast/regular/open{ id = "VB_Rear_Blast"; name = "Blast Shield" +>>>>>>> c55e7a1c3b... Merge pull request #14538 from KillianKirilenko/kk-vbupg }, /turf/simulated/floor/tiled/techmaint, /area/ship/ert/engineering) -"vt" = ( -/obj/effect/floor_decal/corner/yellow{ - dir = 8 - }, -/obj/effect/floor_decal/corner/red{ - dir = 6 - }, -/obj/machinery/light/no_nightshift, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ +"vb" = ( +/obj/machinery/light/no_nightshift{ dir = 4 }, +/turf/simulated/floor/reinforced/airless, +/area/ship/ert/engine) +"vd" = ( +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/wall/rshull, +/area/ship/ert/engine) +"vi" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, -/obj/machinery/light_switch{ - dir = 1; - pixel_y = -23 - }, -/turf/simulated/floor/tiled/techmaint, -/area/ship/ert/hallways) -"vv" = ( -/obj/machinery/firealarm/alarms_hidden{ - dir = 1; - pixel_y = -26 - }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 + dir = 4 + }, +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" }, /turf/simulated/floor/tiled/techmaint, +/area/ship/ert/engineering) +"vn" = ( +/obj/machinery/recharge_station, +/turf/simulated/floor/tiled/techfloor, +/area/ship/ert/med) +"vo" = ( +/obj/structure/window/reinforced, +/obj/machinery/computer/shuttle_control/explore/ert_ship_boat{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/simulated/floor/tiled/techmaint, +/area/shuttle/ert_ship_boat) +"vp" = ( +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/light/no_nightshift{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/techmaint, +<<<<<<< HEAD /area/ship/ert/hallways_aft) +======= +/area/ship/ert/dock_star) +"vt" = ( +/obj/item/modular_computer/console/preset/sysadmin{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor, +/area/ship/ert/bridge) +"vw" = ( +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 4 + }, +/obj/machinery/meter, +/obj/machinery/power/apc/hyper{ + alarms_hidden = 1; + dir = 1; + name = "VB APC - North"; + pixel_y = 24 + }, +/obj/structure/cable/yellow{ + d2 = 2; + icon_state = "0-2" + }, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/ship/ert/dock_port) +>>>>>>> c55e7a1c3b... Merge pull request #14538 from KillianKirilenko/kk-vbupg "vK" = ( /turf/simulated/wall/rshull, /area/ship/ert/gunnery) -"vQ" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/obj/effect/floor_decal/industrial/warning, -/turf/simulated/floor/tiled/techfloor, -/area/ship/ert/teleporter) "vX" = ( /turf/simulated/wall/shull, /area/ship/ert/engineering) "wd" = ( -/obj/structure/sign/department/conference_room{ - name = "OUTFITTING" +/obj/machinery/atmospherics/pipe/tank/air{ + dir = 4 }, -/turf/simulated/wall/rshull, -/area/ship/ert/bridge) +/turf/simulated/floor/tiled/techfloor, +/area/ship/ert/atmos) "wh" = ( -/obj/machinery/light/no_nightshift{ - dir = 1 +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" }, -/turf/simulated/floor/airless, +/turf/simulated/floor/tiled/techfloor, /area/ship/ert/gunnery) "wi" = ( +/obj/machinery/light/no_nightshift{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, /obj/structure/cable/yellow{ d1 = 1; d2 = 2; icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/door/firedoor/multi_tile, -/obj/machinery/door/airlock/multi_tile/glass{ - req_one_access = list(103) - }, /turf/simulated/floor/tiled/techmaint, -/area/ship/ert/hallways) -"wl" = ( -/obj/structure/table/rack/steel, -/obj/item/weapon/gun/energy/gun{ - pixel_y = 6 +/area/ship/ert/hallways_aft) +"wp" = ( +/turf/simulated/wall/shull, +/area/ship/ert/med) +"wq" = ( +/obj/machinery/door/blast/shutters{ + density = 0; + dir = 2; + icon_state = "shutter0"; + id = "braun_cells_privacy"; + name = "Privacy Shutters"; + opacity = 0 }, -/obj/item/weapon/gun/energy/gun{ - pixel_y = 4 +/obj/structure/grille, +/obj/structure/window/titanium/full, +/obj/structure/window/titanium{ + dir = 1 }, -/obj/item/weapon/gun/energy/gun{ - pixel_y = 2 +/obj/structure/window/titanium, +/obj/structure/cable/yellow{ + d2 = 4; + icon_state = "0-4" }, -/obj/item/weapon/gun/energy/gun, -/obj/item/weapon/gun/energy/gun{ - pixel_y = -2 - }, -/obj/item/weapon/gun/energy/gun{ - pixel_y = -4 - }, -/obj/effect/floor_decal/industrial/outline/grey, -/turf/simulated/floor/tiled/techfloor, -/area/ship/ert/armoury_st) -"wn" = ( -/obj/structure/sign/department/telecoms{ - name = "TELEPORTER" - }, -/turf/simulated/wall/rshull, -/area/ship/ert/teleporter) -"wo" = ( -/obj/machinery/light/no_nightshift, -/obj/machinery/teleport/hub, -/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/firedoor/glass, /turf/simulated/floor/tiled/techmaint, +<<<<<<< HEAD /area/ship/ert/teleporter) "wp" = ( /obj/machinery/sleep_console, @@ -3807,6 +5160,246 @@ /area/ship/ert/hallways_aft) "wt" = ( /obj/structure/table/steel_reinforced, +/obj/item/weapon/storage/firstaid/bonemed{ + pixel_x = 4; + pixel_y = 4 +======= +/area/ship/ert/brig) +"wC" = ( +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 +>>>>>>> c55e7a1c3b... Merge pull request #14538 from KillianKirilenko/kk-vbupg + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/light_switch{ + dir = 8; + pixel_x = 23 + }, +/turf/simulated/floor/tiled/techmaint, +/area/ship/ert/dock_port) +"wG" = ( +/obj/structure/reagent_dispensers/water_cooler/full, +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/techfloor, +/area/ship/ert/barracks) +"wI" = ( +/obj/machinery/door/firedoor/multi_tile{ + dir = 1 + }, +/obj/machinery/door/airlock/glass_medical{ + name = "Medical Bay"; + req_access = list(103) + }, +<<<<<<< HEAD +/turf/simulated/floor/tiled/techfloor, +/area/ship/ert/med) +"wG" = ( +/obj/structure/hull_corner/long_horiz{ + dir = 5 + }, +/turf/simulated/floor/reinforced/airless, +/area/ship/ert/engine) +======= +/turf/simulated/floor/tiled/white, +/area/ship/ert/med_surg) +"wM" = ( +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/wall/shull, +/area/ship/ert/med_surg) +>>>>>>> c55e7a1c3b... Merge pull request #14538 from KillianKirilenko/kk-vbupg +"wO" = ( +/obj/machinery/light/no_nightshift, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/techmaint, +/area/ship/ert/engineering) +"wU" = ( +/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/tiled/techmaint, +/area/ship/ert/barracks) +"wX" = ( +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/ship/ert/med) +"wZ" = ( +<<<<<<< HEAD +/obj/machinery/oxygen_pump/anesthetic, +/turf/simulated/wall/shull, +/area/ship/ert/med_surg) +======= +/obj/machinery/power/apc/hyper{ + alarms_hidden = 1; + name = "VB APC - South"; + pixel_y = -24 + }, +/obj/structure/cable/yellow, +/turf/simulated/floor/tiled/white, +/area/ship/ert/med_surg) +"xc" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techmaint, +/area/ship/ert/barracks) +>>>>>>> c55e7a1c3b... Merge pull request #14538 from KillianKirilenko/kk-vbupg +"xe" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/airlock/glass_security{ + name = "Prisoner Containment"; + req_one_access = list(103) + }, +/obj/machinery/door/firedoor/border_only, +/turf/simulated/floor/tiled/techmaint, +/area/ship/ert/brig) +"xg" = ( +/obj/structure/sign/department/conference_room{ + name = "OUTFITTING" + }, +/turf/simulated/wall/rshull, +/area/ship/ert/bridge) +"xo" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/floor_decal/corner/white{ + dir = 10 + }, +/turf/simulated/floor/tiled/techmaint, +/area/ship/ert/hangar) +"xq" = ( +/obj/structure/bed/chair/bay/shuttle, +/obj/machinery/light/no_nightshift{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/ert_ship_boat) +"xs" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/techmaint, +/area/ship/ert/brig) +"xt" = ( +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/techmaint, +/area/ship/ert/barracks) +"xv" = ( +/obj/structure/table/rack/steel, +/obj/item/weapon/melee/baton{ + pixel_x = -6 + }, +/obj/item/weapon/melee/baton{ + pixel_x = -2 + }, +/obj/item/weapon/melee/baton{ + pixel_x = 2 + }, +/obj/item/weapon/melee/baton{ + pixel_x = 6 + }, +/obj/item/weapon/shield/riot{ + pixel_x = -6 + }, +/obj/item/weapon/shield/riot{ + pixel_x = -2 + }, +/obj/item/weapon/shield/riot{ + pixel_x = 2 + }, +/obj/item/weapon/shield/riot{ + pixel_x = 6 + }, +/obj/effect/floor_decal/industrial/outline/grey, +/obj/machinery/recharger/wallcharger{ + pixel_x = -23; + pixel_y = 5 + }, +/obj/machinery/recharger/wallcharger{ + pixel_x = -23; + pixel_y = -4 + }, +/obj/machinery/recharger/wallcharger{ + pixel_x = -23; + pixel_y = -12 + }, +/turf/simulated/floor/tiled/techfloor, +/area/ship/ert/armoury_st) +"xx" = ( +/obj/machinery/power/pointdefense{ + id_tag = "vonbraun_pd" + }, +/obj/structure/cable/yellow{ + d2 = 2; + icon_state = "0-2" + }, +/turf/simulated/floor/reinforced/airless, +/area/ship/ert/hallways_aft) +"xz" = ( +/obj/structure/table/steel_reinforced, /obj/item/weapon/storage/firstaid/bonemed{ pixel_x = 4; pixel_y = 4 @@ -3825,57 +5418,44 @@ }, /turf/simulated/floor/tiled/techfloor, /area/ship/ert/med) -"wG" = ( -/obj/structure/hull_corner/long_horiz{ - dir = 5 +"xC" = ( +/turf/simulated/floor/tiled/techmaint, +/area/ship/ert/dock_star) +"xD" = ( +/obj/structure/table/rack/steel, +/obj/item/clothing/glasses/night{ + pixel_x = -4; + pixel_y = -4 }, -/turf/simulated/floor/reinforced/airless, -/area/ship/ert/engine) -"wO" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 +/obj/item/clothing/glasses/night{ + pixel_x = -2; + pixel_y = -2 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 +/obj/item/clothing/glasses/night, +/obj/item/clothing/glasses/night{ + pixel_x = 2; + pixel_y = 2 }, +/obj/item/clothing/glasses/night{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/clothing/glasses/night{ + pixel_x = 6; + pixel_y = 6 + }, +/obj/machinery/firealarm/alarms_hidden{ + pixel_y = 26 + }, +/obj/effect/floor_decal/industrial/outline/grey, /obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" + d1 = 1; + d2 = 2; + icon_state = "1-2" }, -/turf/simulated/floor/tiled/techmaint, -/area/ship/ert/engineering) -"wU" = ( -/turf/simulated/wall/shull, -/area/ship/ert/hallways) -"wX" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/turf/simulated/floor/tiled/techmaint, -/area/ship/ert/med) -"wZ" = ( -/obj/machinery/oxygen_pump/anesthetic, -/turf/simulated/wall/shull, -/area/ship/ert/med_surg) -"xe" = ( -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/light/no_nightshift{ - dir = 1 - }, -/turf/simulated/floor/tiled/techmaint, -/area/ship/ert/bridge) -"xg" = ( +/turf/simulated/floor/tiled/techfloor, +/area/ship/ert/barracks) +"xG" = ( /obj/structure/table/rack/steel, /obj/effect/floor_decal/industrial/outline/grey, /obj/item/weapon/gun/energy/gun/nuclear{ @@ -3896,7 +5476,21 @@ }, /turf/simulated/floor/tiled/techfloor, /area/ship/ert/armoury_st) -"xh" = ( +"xK" = ( +/obj/machinery/door/airlock/centcom{ + name = "Commander's Quarters"; + req_access = list(103) + }, +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/door/firedoor/border_only, +/turf/simulated/floor/tiled/techmaint, +/area/ship/ert/commander) +"xM" = ( /obj/structure/table/rack/steel, /obj/machinery/light_switch{ pixel_y = 23 @@ -3954,26 +5548,90 @@ }, /turf/simulated/floor/tiled/techfloor, /area/ship/ert/armoury_st) -"xi" = ( +"xO" = ( +/obj/effect/floor_decal/industrial/warning, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/ship/ert/hangar) +"xR" = ( +/obj/machinery/light/no_nightshift{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/structure/table/steel_reinforced, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor, +/area/ship/ert/brig) +"xU" = ( +/obj/effect/floor_decal/corner/white{ + dir = 9 + }, +/turf/simulated/floor/tiled/techmaint, +/area/ship/ert/med) +"xX" = ( +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/floor_decal/corner/blue{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/ship/ert/bridge) +"xZ" = ( +/obj/item/modular_computer/console/preset/ert{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor, +/area/ship/ert/bridge) +"ya" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/techmaint, +/area/ship/ert/gunnery) +"yf" = ( /obj/structure/table/rack/steel, /obj/effect/floor_decal/industrial/outline/grey, /obj/item/ammo_magazine/m545{ - pixel_x = 7 - }, -/obj/item/ammo_magazine/m545{ - pixel_x = 4 - }, -/obj/item/ammo_magazine/m545{ - pixel_x = 1 - }, -/obj/item/ammo_magazine/m545{ - pixel_x = -2 + pixel_x = -8 }, /obj/item/ammo_magazine/m545{ pixel_x = -5 }, /obj/item/ammo_magazine/m545{ - pixel_x = -8 + pixel_x = -2 + }, +/obj/item/ammo_magazine/m545{ + pixel_x = 1 + }, +/obj/item/ammo_magazine/m545{ + pixel_x = 4 + }, +/obj/item/ammo_magazine/m545{ + pixel_x = 7 }, /obj/item/weapon/gun/projectile/automatic/sts35{ pixel_y = -2 @@ -3983,7 +5641,44 @@ }, /turf/simulated/floor/tiled/techfloor, /area/ship/ert/armoury_st) -"xt" = ( +"yg" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/machinery/light/no_nightshift{ + dir = 1 + }, +/obj/machinery/embedded_controller/radio/simple_docking_controller{ + id_tag = "ert_boarding_shuttle"; + pixel_x = -8; + pixel_y = 22 + }, +/turf/simulated/floor/tiled/techmaint, +/area/shuttle/ert_ship_boat) +"yi" = ( +/obj/structure/table/rack/steel, +/obj/effect/floor_decal/industrial/outline/grey, +/obj/item/weapon/gun/projectile/automatic/z8{ + pixel_y = -3 + }, +/obj/item/weapon/gun/projectile/automatic/z8{ + pixel_y = 3 + }, +/obj/item/ammo_magazine/m762, +/obj/item/ammo_magazine/m762, +/obj/item/ammo_magazine/m762, +/obj/item/ammo_magazine/m762, +/obj/item/ammo_magazine/m762, +/obj/item/ammo_magazine/m762, +/obj/item/ammo_magazine/m762, +/obj/item/ammo_magazine/m762, +/obj/item/ammo_magazine/m762/ap, +/obj/item/ammo_magazine/m762/ap, +/obj/item/ammo_magazine/m762/ap, +/obj/item/ammo_magazine/m762/ap, +/turf/simulated/floor/tiled/techfloor, +/area/ship/ert/armoury_dl) +"yj" = ( /obj/structure/table/rack/steel, /obj/item/weapon/storage/box/flashbangs, /obj/item/weapon/storage/box/flashbangs, @@ -4002,90 +5697,57 @@ /obj/item/weapon/storage/box/empslite, /turf/simulated/floor/tiled/techfloor, /area/ship/ert/armoury_st) -"xv" = ( -/obj/structure/table/rack/steel, -/obj/item/weapon/gun/energy/ionrifle/pistol{ - pixel_y = 4 +"yl" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/machinery/door/firedoor/border_only, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 1 }, -/obj/item/weapon/gun/energy/ionrifle/pistol, -/obj/item/weapon/gun/energy/ionrifle{ - pixel_y = -4 - }, -/obj/item/weapon/gun/energy/ionrifle{ - pixel_y = -8 - }, -/obj/machinery/power/apc/hyper{ - alarms_hidden = 1; +/obj/machinery/door/blast/regular/open{ dir = 4; - name = "VB APC - East"; - pixel_x = 24 + id = "braun_blast_shields"; + name = "Blast Shield" + }, +/turf/simulated/floor/tiled/techfloor, +/area/ship/ert/hallways_aft) +"yo" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 }, /obj/structure/cable/yellow{ - d2 = 2; - icon_state = "0-2" + d1 = 1; + d2 = 8; + icon_state = "1-8" }, -/obj/effect/floor_decal/industrial/outline/grey, -/turf/simulated/floor/tiled/techfloor, -/area/ship/ert/armoury_st) -"xx" = ( -/obj/machinery/light/no_nightshift, -/turf/simulated/floor/reinforced/airless, -/area/ship/ert/hallways_aft) -"xz" = ( -/obj/structure/closet/medical_wall{ - pixel_x = 32 +/turf/simulated/floor/tiled/techmaint, +/area/ship/ert/gunnery) +"yr" = ( +/obj/structure/bed/chair/bay/shuttle{ + dir = 1 }, -/obj/item/weapon/storage/firstaid/adv{ - pixel_x = 4; - pixel_y = 4 - }, -/obj/item/weapon/storage/firstaid/adv{ - pixel_x = 4; - pixel_y = 4 - }, -/obj/item/weapon/storage/firstaid/fire{ - pixel_x = 2; - pixel_y = 2 - }, -/obj/item/weapon/storage/firstaid/fire{ - pixel_x = 2; - pixel_y = 2 - }, -/obj/item/weapon/storage/firstaid/o2, -/obj/item/weapon/storage/firstaid/o2, -/obj/item/weapon/storage/firstaid/toxin{ - pixel_x = -2; - pixel_y = -2 - }, -/obj/item/weapon/storage/firstaid/toxin{ - pixel_x = -2; - pixel_y = -2 - }, -/turf/simulated/floor/tiled/techfloor, -/area/ship/ert/med) -"xA" = ( -/obj/effect/floor_decal/industrial/outline/grey, -/obj/machinery/gear_dispenser/suit/ert, -/turf/simulated/floor/tiled/techfloor, -/area/ship/ert/barracks) -"xC" = ( -/obj/machinery/atmospherics/unary/vent_pump/on, -/obj/structure/table/steel_reinforced, -/obj/item/weapon/rcd/advanced/loaded{ - desc = "A device used to rapidly build and deconstruct. This version works faster, and has a much larger capacity than a standard model, but doesn't work at range. Reload with compressed matter cartridges."; - name = "emergency rapid construction device"; - pixel_y = 3; - ranged = 0 - }, -/obj/item/weapon/rcd/advanced/loaded{ - desc = "A device used to rapidly build and deconstruct. This version works faster, and has a much larger capacity than a standard model, but doesn't work at range. Reload with compressed matter cartridges."; - name = "emergency rapid construction device"; - pixel_y = -3; - ranged = 0 +/obj/machinery/light/no_nightshift{ + dir = 4 }, /turf/simulated/floor/tiled/techfloor, +<<<<<<< HEAD /area/ship/ert/eng_storage) "xG" = ( +======= +/area/shuttle/ert_ship_boat) +"ys" = ( +/obj/structure/hull_corner{ + dir = 1 + }, +/turf/simulated/shuttle/plating/airless/carry, +/area/shuttle/ert_ship_boat) +"yv" = ( +/obj/machinery/computer/ship/sensors, +/turf/simulated/floor/tiled/techfloor, +/area/ship/ert/gunnery) +"yx" = ( +>>>>>>> c55e7a1c3b... Merge pull request #14538 from KillianKirilenko/kk-vbupg /obj/machinery/portable_atmospherics/canister/air, /obj/machinery/alarm/alarms_hidden{ pixel_y = 26 @@ -4097,80 +5759,96 @@ /obj/effect/floor_decal/industrial/outline, /turf/simulated/floor/tiled/techmaint, /area/ship/ert/hangar) -"xM" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 +"yz" = ( +/turf/space, +/area/space) +"yB" = ( +/obj/structure/grille, +/obj/machinery/door/firedoor/border_only, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced{ + dir = 1 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/techmaint, -/area/ship/ert/hangar) -"xO" = ( +/obj/structure/window/reinforced, +/turf/simulated/floor/airless, +/area/ship/ert/gunnery) +"yD" = ( /obj/effect/floor_decal/industrial/warning, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ +/turf/simulated/floor/airless, +/area/ship/ert/gunnery) +"yF" = ( +/obj/machinery/sleeper{ dir = 4 }, -/turf/simulated/floor/tiled/techmaint, -/area/ship/ert/hangar) -"xU" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ +/obj/machinery/light/no_nightshift{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/ship/ert/med_surg) +"yG" = ( +/obj/machinery/light/no_nightshift{ dir = 1 }, +/obj/machinery/atmospherics/unary/engine{ + dir = 4 + }, +/turf/space, +/area/ship/ert/engine) +"yH" = ( +/obj/machinery/alarm/alarms_hidden{ + dir = 1; + pixel_y = -26 + }, /obj/structure/cable/yellow{ d1 = 1; d2 = 2; icon_state = "1-2" }, -/turf/simulated/floor/tiled/white, -/area/ship/ert/med_surg) -"xZ" = ( -/obj/structure/table/rack/steel, -/obj/item/weapon/gun/launcher/grenade{ - pixel_y = 3 - }, -/obj/item/weapon/gun/launcher/grenade{ - pixel_y = -3 - }, -/obj/effect/floor_decal/industrial/outline/grey, /turf/simulated/floor/tiled/techfloor, -/area/ship/ert/armoury_dl) -"ya" = ( +/area/ship/ert/engine) +"yJ" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/techmaint, /area/ship/ert/hallways_aft) -"yf" = ( -/obj/effect/floor_decal/industrial/warning, -/obj/machinery/space_heater, -/obj/machinery/light/no_nightshift{ - dir = 1 +"yM" = ( +/obj/machinery/atmospherics/pipe/tank/air{ + dir = 4; + start_pressure = 740.5 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 +/turf/simulated/floor/tiled/techfloor, +/area/ship/ert/dock_star) +"yP" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 }, /turf/simulated/floor/tiled/techmaint, /area/ship/ert/hangar) -"yg" = ( -/obj/machinery/door/firedoor/glass, -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/machinery/door/blast/regular/open{ - dir = 2; - id = "ERT_Blast_Windows"; - name = "Blast Shield" +"yR" = ( +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" }, -/obj/structure/window/reinforced{ +/obj/machinery/light/no_nightshift{ dir = 8 }, -/obj/structure/window/reinforced{ - dir = 4 +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/techmaint, +/area/ship/ert/dock_port) +"yU" = ( +/obj/structure/table/rack/steel, +/obj/effect/floor_decal/corner/red, +/obj/item/device/radio/off{ + pixel_x = -4; + pixel_y = -4 }, -/obj/machinery/shield_diffuser, -/turf/simulated/floor/tiled/techfloor, -/area/shuttle/ert_ship_boat) -"yi" = ( -/obj/effect/floor_decal/corner/white{ - dir = 10 +/obj/item/device/radio/off{ + pixel_x = -2; + pixel_y = -2 }, +<<<<<<< HEAD /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, @@ -4204,65 +5882,36 @@ pixel_y = 4 }, /obj/item/weapon/storage/firstaid/fire{ +======= +/obj/item/device/radio/off, +/obj/item/device/radio/off{ +>>>>>>> c55e7a1c3b... Merge pull request #14538 from KillianKirilenko/kk-vbupg pixel_x = 2; pixel_y = 2 }, -/obj/item/weapon/storage/firstaid/adv, -/obj/item/weapon/storage/firstaid/adv{ - pixel_x = -2; - pixel_y = -2 +/obj/item/device/radio/off{ + pixel_x = 4; + pixel_y = 4 }, -/obj/effect/floor_decal/corner/yellow{ - dir = 8 - }, -/obj/machinery/firealarm/alarms_hidden{ - pixel_y = 26 +/obj/item/device/radio/off{ + pixel_x = 6; + pixel_y = 6 }, +/obj/effect/floor_decal/industrial/outline/grey, /turf/simulated/floor/tiled/techfloor, -/area/ship/ert/med) -"yv" = ( +/area/ship/ert/hallways) +"yX" = ( /obj/effect/floor_decal/industrial/warning, -/obj/machinery/pipedispenser/orderable, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, -/turf/simulated/floor/tiled/techmaint, -/area/ship/ert/hangar) -"yx" = ( -/obj/effect/floor_decal/industrial/warning, -/obj/machinery/pipedispenser/disposal/orderable, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 +/obj/machinery/embedded_controller/radio/simple_docking_controller{ + id_tag = "ert_boarding_shuttle_dock"; + pixel_y = 22 }, /turf/simulated/floor/tiled/techmaint, /area/ship/ert/hangar) -"yz" = ( -/turf/space, -/area/space) -"yB" = ( -/obj/effect/floor_decal/industrial/warning, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/machinery/firealarm/alarms_hidden{ - pixel_y = 26 - }, -/turf/simulated/floor/tiled/techmaint, -/area/ship/ert/hangar) -"yC" = ( -/obj/machinery/vending/engivend, -/turf/simulated/floor/tiled/techfloor, -/area/ship/ert/eng_storage) -"yD" = ( -/obj/machinery/light/no_nightshift{ - dir = 1 - }, -/obj/structure/sign/vacuum{ - pixel_y = 32 - }, -/obj/effect/floor_decal/industrial/warning, -/turf/simulated/floor/tiled/techmaint, -/area/ship/ert/hangar) +<<<<<<< HEAD "yG" = ( /obj/structure/ship_munition/disperser_charge/explosive, /obj/effect/floor_decal/industrial/warning{ @@ -4305,29 +5954,34 @@ "yX" = ( /turf/simulated/wall/rshull, /area/ship/ert/hangar) +======= +>>>>>>> c55e7a1c3b... Merge pull request #14538 from KillianKirilenko/kk-vbupg "yY" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/machinery/door/firedoor/border_only, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor, +/turf/simulated/floor/reinforced/airless, /area/ship/ert/barracks) "za" = ( /obj/effect/floor_decal/industrial/warning{ - dir = 8 + dir = 4 }, -/turf/simulated/floor/reinforced/airless, -/area/ship/ert/hangar) +/obj/machinery/button/remote/blast_door{ + id = "ERT_Shuttle_Fore"; + name = "ERT Deployment Access"; + pixel_y = 24; + req_access = list(103) + }, +/turf/simulated/floor/tiled/techmaint, +/area/shuttle/ert_ship_boat) "zb" = ( +/obj/effect/floor_decal/corner/white{ + dir = 6 + }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, +<<<<<<< HEAD /obj/machinery/firealarm/alarms_hidden{ pixel_y = 26 }, @@ -4336,141 +5990,237 @@ "zc" = ( /turf/simulated/wall/shull, /area/ship/ert/eng_storage) +======= +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/techmaint, +/area/ship/ert/med) +>>>>>>> c55e7a1c3b... Merge pull request #14538 from KillianKirilenko/kk-vbupg "zg" = ( -/obj/item/modular_computer/console/preset/engineering{ - dir = 4 +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 }, -/obj/structure/panic_button{ - pixel_x = -32 +/obj/machinery/alarm/alarms_hidden{ + pixel_y = 26 }, +/obj/machinery/porta_turret/industrial/teleport_defense, +/obj/effect/floor_decal/industrial/outline/red, /turf/simulated/floor/tiled/techfloor, -/area/ship/ert/bridge) +/area/ship/ert/teleporter) "zh" = ( -/obj/machinery/button/remote/blast_door{ - id = "VB_Rear_Blast"; - name = "Emergency Blast Doors"; - pixel_y = 24; - req_access = list(103) +/obj/machinery/light/no_nightshift{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/machinery/light_switch{ + pixel_y = 23 }, /obj/structure/table/steel_reinforced, /turf/simulated/floor/tiled/techfloor, /area/ship/ert/engineering) "zk" = ( -/obj/machinery/light/no_nightshift{ +/obj/machinery/atmospherics/pipe/manifold/visible/yellow{ dir = 8 }, +<<<<<<< HEAD /obj/machinery/atmospherics/pipe/simple/hidden/fuel, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +======= +>>>>>>> c55e7a1c3b... Merge pull request #14538 from KillianKirilenko/kk-vbupg /turf/simulated/floor/tiled/techfloor, /area/ship/ert/engine) "zo" = ( -/obj/item/modular_computer/console/preset/command{ +/obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 1 }, +/obj/effect/floor_decal/industrial/warning, /turf/simulated/floor/tiled/techfloor, +/area/ship/ert/teleporter) +"zs" = ( +/obj/structure/cable/yellow{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/techmaint, /area/ship/ert/bridge) -"zr" = ( +"zO" = ( +/obj/machinery/vending/engivend, +/turf/simulated/floor/tiled/techfloor, +/area/ship/ert/eng_storage) +"zR" = ( +/obj/machinery/alarm/alarms_hidden{ + pixel_y = 26 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/ship/ert/hallways_aft) +"zT" = ( /obj/effect/floor_decal/industrial/warning{ dir = 1 }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/machinery/alarm/alarms_hidden{ - dir = 1; - pixel_y = -26 - }, -/obj/effect/floor_decal/corner/white{ - dir = 8 - }, -/turf/simulated/floor/tiled/techmaint, -/area/ship/ert/hangar) -"zs" = ( -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/yellow{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/effect/catwalk_plated/techmaint, -/turf/simulated/floor/plating, -/area/ship/ert/hallways) -"zB" = ( -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/effect/floor_decal/corner/blue{ - dir = 4 - }, -/turf/simulated/floor/tiled/techmaint, -/area/ship/ert/bridge) -"zP" = ( -/obj/machinery/atmospherics/unary/vent_pump/on, -/turf/simulated/floor/wood, -/area/ship/ert/commander) -"zT" = ( -/obj/structure/cable/yellow{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/simulated/floor/wood, -/area/ship/ert/commander) -"Af" = ( -/obj/machinery/power/apc/hyper{ - alarms_hidden = 1; - dir = 4; - name = "VB APC - East"; - pixel_x = 24 - }, -/obj/structure/cable/yellow, -/obj/machinery/embedded_controller/radio/docking_port_multi{ - child_names_txt = "Port Airlock Control;Starboard Airlock Control"; - child_tags_txt = "von_braun_port;von_braun_star"; - dir = 1; - id_tag = "von_braun_master"; - pixel_y = -22 - }, -/obj/machinery/light/no_nightshift, /turf/simulated/floor/tiled/techfloor, -/area/ship/ert/bridge) -"Ah" = ( +/area/ship/ert/brig) +"Ad" = ( +/obj/structure/closet/crate/freezer, +/obj/item/weapon/reagent_containers/blood/OMinus, +/obj/item/weapon/reagent_containers/blood/OMinus, +/obj/item/weapon/reagent_containers/blood/OMinus, +/obj/item/weapon/reagent_containers/blood/OMinus, +/obj/item/weapon/reagent_containers/blood/OMinus, +/obj/item/weapon/reagent_containers/blood/OMinus, +/obj/item/weapon/reagent_containers/blood/OMinus, +/obj/item/weapon/reagent_containers/blood/OMinus, +/obj/effect/floor_decal/industrial/outline, +/turf/simulated/floor/tiled/white, +/area/ship/ert/med_surg) +"Af" = ( +/obj/machinery/light/no_nightshift, +/obj/effect/floor_decal/industrial/outline/grey, +/obj/structure/table/rack/steel, +/obj/item/clothing/accessory/storage/brown_vest{ + pixel_y = -4 + }, +/obj/item/clothing/accessory/storage/brown_vest{ + pixel_y = -2 + }, +/obj/item/clothing/accessory/storage/brown_vest, +/obj/item/clothing/accessory/storage/brown_vest{ + pixel_y = 2 + }, +/obj/item/clothing/accessory/storage/brown_vest{ + pixel_y = 4 + }, +/obj/item/clothing/accessory/storage/brown_vest{ + pixel_y = 6 + }, +/turf/simulated/floor/tiled/techfloor, +/area/ship/ert/barracks) +"Ao" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/turf/simulated/floor/wood, +/area/ship/ert/commander) +"Ap" = ( +/obj/machinery/vending/coffee{ + dir = 1; + prices = list() + }, +/turf/simulated/floor/tiled/techfloor, +/area/ship/ert/hallways_aft) +"Aq" = ( +/obj/structure/cable/yellow{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/wood, +/area/ship/ert/commander) +"Ar" = ( +/obj/effect/floor_decal/industrial/outline/grey, +/obj/structure/table/rack/steel, +/obj/structure/table/rack/steel, +/obj/item/weapon/storage/belt/utility/chief/full{ + pixel_y = -2 + }, +/obj/item/weapon/storage/belt/utility/chief/full, +/obj/item/weapon/storage/belt/utility/chief/full{ + pixel_y = 2 + }, +/obj/item/weapon/storage/belt/utility/chief/full{ + pixel_y = 4 + }, +/obj/item/weapon/storage/belt/utility/chief/full{ + pixel_y = 6 + }, +/obj/item/weapon/tank/emergency/oxygen/double, +/obj/item/weapon/tank/emergency/oxygen/double, +/obj/item/weapon/tank/emergency/oxygen/double, +/obj/item/weapon/tank/emergency/oxygen/double, +/obj/item/weapon/tank/emergency/oxygen/double, +/obj/item/weapon/storage/belt/explorer/pathfinder{ + name = "ERT belt" + }, +/obj/item/weapon/storage/belt/explorer/pathfinder{ + name = "ERT belt" + }, +/obj/item/weapon/storage/belt/explorer/pathfinder{ + name = "ERT belt" + }, +/turf/simulated/floor/tiled/techfloor, +/area/ship/ert/barracks) +"Av" = ( /obj/structure/cable/yellow{ d1 = 4; d2 = 8; icon_state = "4-8" }, /obj/machinery/atmospherics/unary/vent_scrubber/on, -/obj/structure/table/woodentable, /obj/item/weapon/implantpad, /obj/item/weapon/implanter, /obj/item/weapon/storage/box/admints, +/obj/structure/table/hardwoodtable, /turf/simulated/floor/wood, /area/ship/ert/commander) -"Ai" = ( -/obj/machinery/firealarm/alarms_hidden{ - pixel_y = 26 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 +"Ax" = ( +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/tiled/techfloor, +/area/ship/ert/teleporter) +"Ay" = ( +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" }, +/turf/simulated/floor/tiled/techfloor, +/area/ship/ert/bridge) +"Az" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/techmaint, -/area/ship/ert/hallways_aft) -"An" = ( +/area/ship/ert/barracks) +"AC" = ( +/obj/structure/bed/chair/bay/shuttle, +/obj/machinery/recharger/wallcharger{ + pixel_x = -23; + pixel_y = 5 + }, +/obj/machinery/recharger/wallcharger{ + pixel_x = -23; + pixel_y = -4 + }, +/obj/machinery/recharger/wallcharger{ + pixel_x = -23; + pixel_y = -12 + }, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/ert_ship_boat) +"AI" = ( +/turf/simulated/wall/shull, +/area/ship/ert/eng_storage) +"AK" = ( /obj/machinery/power/apc/hyper{ alarms_hidden = 1; dir = 4; @@ -4483,6 +6233,7 @@ }, /turf/simulated/floor/wood, /area/ship/ert/commander) +<<<<<<< HEAD "Ao" = ( /obj/item/modular_computer/console/preset/medical{ dir = 4 @@ -4562,10 +6313,185 @@ "AZ" = ( /obj/machinery/alarm/alarms_hidden{ pixel_y = 26 +======= +"AN" = ( +/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/wall/rshull, +/area/ship/ert/engine) +"AS" = ( +/obj/structure/closet{ + name = "custodial" + }, +/obj/item/weapon/reagent_containers/spray/cleaner{ + pixel_x = -6 + }, +/obj/item/weapon/reagent_containers/spray/cleaner{ + pixel_x = -2 +>>>>>>> c55e7a1c3b... Merge pull request #14538 from KillianKirilenko/kk-vbupg + }, +/obj/item/weapon/reagent_containers/spray/cleaner{ + pixel_x = 2 + }, +/obj/item/weapon/reagent_containers/spray/cleaner{ + pixel_x = 6 + }, +/obj/item/weapon/reagent_containers/glass/bucket{ + pixel_x = 6 + }, +/obj/item/weapon/reagent_containers/glass/bucket{ + pixel_x = 2 + }, +/obj/item/weapon/reagent_containers/glass/bucket{ + pixel_x = -2 + }, +/obj/item/weapon/reagent_containers/glass/bucket{ + pixel_x = -6 + }, +/obj/item/weapon/mop{ + pixel_x = 6 + }, +/obj/item/weapon/mop{ + pixel_x = 2 + }, +/obj/item/weapon/mop{ + pixel_x = -2 + }, +/obj/item/weapon/mop{ + pixel_x = -6 + }, +/obj/item/weapon/rig/ert/janitor, +/obj/item/device/lightreplacer{ + pixel_y = -2 + }, +/obj/item/device/lightreplacer{ + pixel_y = 2 + }, +/obj/item/weapon/storage/box/lights/mixed{ + pixel_x = -1; + pixel_y = -1 + }, +/obj/item/weapon/storage/box/lights/mixed{ + pixel_x = 1; + pixel_y = 1 + }, +/obj/machinery/light/no_nightshift, +/turf/simulated/floor/tiled/techfloor, +/area/ship/ert/barracks) +"AT" = ( +/obj/item/device/healthanalyzer/phasic{ + pixel_x = 2; + pixel_y = 2 + }, +/obj/item/device/healthanalyzer/phasic, +/obj/item/device/healthanalyzer/phasic{ + pixel_x = -2; + pixel_y = -2 + }, +/obj/structure/table/rack/steel, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/outline, +/turf/simulated/floor/tiled/techfloor, +/area/ship/ert/med) +"AW" = ( +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/wall/rshull, +/area/ship/ert/engine) +"AX" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/ship/ert/barracks) +"AY" = ( +/obj/machinery/firealarm/alarms_hidden{ + pixel_y = 26 }, /turf/simulated/floor/tiled/techfloor, -/area/ship/ert/bridge) +/area/ship/ert/teleporter) "Bb" = ( +/obj/machinery/firealarm/alarms_hidden{ + pixel_y = 26 + }, +/obj/item/modular_computer/console/preset/security, +/turf/simulated/floor/tiled/techfloor, +/area/ship/ert/bridge) +"Bc" = ( +/obj/item/modular_computer/console/preset/security, +/turf/simulated/floor/tiled/techfloor, +/area/ship/ert/bridge) +"Bf" = ( +/obj/item/modular_computer/console/preset/research, +/turf/simulated/floor/tiled/techfloor, +/area/ship/ert/bridge) +"Bl" = ( +/obj/structure/ship_munition/disperser_charge/explosive, +/obj/machinery/alarm/alarms_hidden{ + dir = 1; + pixel_y = -26 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/reinforced, +/area/ship/ert/gunnery) +"Bo" = ( +/turf/simulated/wall/shull, +/area/ship/ert/barracks) +"Bp" = ( +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/door/firedoor/multi_tile, +/obj/machinery/door/airlock/multi_tile/glass{ + req_one_access = list(103) + }, +/turf/simulated/floor/tiled/techmaint, +/area/ship/ert/hallways) +"Bq" = ( +/obj/item/modular_computer/console/preset/medical, +/turf/simulated/floor/tiled/techfloor, +/area/ship/ert/bridge) +"Br" = ( +/obj/machinery/shieldwallgen, +/obj/machinery/light/no_nightshift{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/outline/blue, +/turf/simulated/floor/tiled/techfloor, +/area/ship/ert/eng_storage) +"Bx" = ( +/obj/structure/table/steel_reinforced, +/obj/machinery/alarm/alarms_hidden{ + dir = 1; + pixel_y = -26 + }, +/obj/fiftyspawner/tritium, +/obj/fiftyspawner/tritium, +/turf/simulated/floor/tiled/techfloor, +/area/ship/ert/eng_storage) +"BE" = ( /obj/effect/floor_decal/corner/blue{ dir = 8 }, @@ -4590,7 +6516,7 @@ }, /turf/simulated/floor/tiled/techmaint, /area/ship/ert/hallways) -"Bc" = ( +"BF" = ( /obj/structure/cable/yellow{ d1 = 4; d2 = 8; @@ -4604,7 +6530,28 @@ }, /turf/simulated/floor/tiled/techmaint, /area/ship/ert/hallways) -"Bf" = ( +"BI" = ( +/turf/simulated/floor/reinforced/airless, +/area/ship/ert/engineering) +"BK" = ( +/obj/machinery/light/no_nightshift{ + dir = 1 + }, +/turf/simulated/floor/reinforced/airless, +/area/ship/ert/engineering) +"BM" = ( +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/turf/simulated/floor/tiled/techmaint, +/area/ship/ert/mech_bay) +"BU" = ( /obj/effect/floor_decal/corner/red{ dir = 6 }, @@ -4627,244 +6574,161 @@ }, /turf/simulated/floor/tiled/techmaint, /area/ship/ert/hallways) -"Bj" = ( -/obj/machinery/shieldgen, +"Cf" = ( +/turf/simulated/wall/shull, +/area/ship/ert/mech_bay) +"Ck" = ( +/obj/machinery/door/airlock/glass_medical{ + name = "Medical Bay"; + req_access = list(103) + }, +/turf/simulated/floor/tiled/techmaint, +/area/ship/ert/hangar) +"Cn" = ( +/obj/machinery/computer/ship/helm{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/techfloor, +/area/ship/ert/bridge) +"Cr" = ( +/obj/machinery/door/airlock/glass_medical{ + name = "Medical Bay"; + req_access = list(103) + }, +/obj/machinery/door/firedoor/border_only, +/turf/simulated/floor/tiled/techmaint, +/area/ship/ert/med_surg) +"Cv" = ( +/obj/machinery/door/firedoor/multi_tile{ + dir = 1 + }, +/obj/machinery/door/airlock/glass_medical{ + name = "Medical Bay"; + req_access = list(103) + }, +/turf/simulated/floor/tiled/techmaint, +/area/ship/ert/med) +"Cx" = ( +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techfloor, +/area/ship/ert/barracks) +"CC" = ( +/obj/machinery/shieldwallgen{ + anchored = 1; + name = "secured shield generator"; + req_access = list(103); + state = 1 + }, +/obj/structure/window/reinforced, +/obj/effect/floor_decal/industrial/warning, +/obj/structure/cable/yellow, /obj/effect/floor_decal/industrial/outline/blue, /turf/simulated/floor/tiled/techfloor, -/area/ship/ert/eng_storage) -"Bl" = ( -/obj/machinery/disperser/back{ - dir = 4 +/area/ship/ert/teleporter) +"CH" = ( +/obj/machinery/door/firedoor, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced, +/obj/machinery/door/blast/regular/open{ + dir = 4; + id = "ERT_Blast_Windows"; + name = "Blast Shield" }, -/turf/simulated/floor/airless, -/area/ship/ert/gunnery) -"Bo" = ( -/turf/simulated/wall/shull, -/area/ship/ert/barracks) -"Bp" = ( -/obj/structure/table/rack/steel, -/obj/item/weapon/gun/projectile/automatic/z8{ - pixel_y = 3 +/obj/structure/window/reinforced{ + dir = 1 }, -/obj/item/weapon/gun/projectile/automatic/z8{ - pixel_y = -3 - }, -/obj/item/ammo_magazine/m762, -/obj/item/ammo_magazine/m762, -/obj/item/ammo_magazine/m762, -/obj/item/ammo_magazine/m762, -/obj/item/ammo_magazine/m762, -/obj/item/ammo_magazine/m762, -/obj/item/ammo_magazine/m762, -/obj/item/ammo_magazine/m762, -/obj/item/ammo_magazine/m762/ap, -/obj/item/ammo_magazine/m762/ap, -/obj/item/ammo_magazine/m762/ap, -/obj/item/ammo_magazine/m762/ap, -/obj/machinery/light_switch{ - dir = 1; - pixel_y = -23 - }, -/obj/effect/floor_decal/industrial/outline/grey, /turf/simulated/floor/tiled/techfloor, -/area/ship/ert/armoury_dl) -"Bq" = ( -/obj/machinery/door/airlock/glass_security{ - req_one_access = list(103) - }, -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/techmaint, -/area/ship/ert/armoury_st) -"Br" = ( -/turf/simulated/floor/tiled/techmaint, -/area/ship/ert/eng_storage) -"Bx" = ( -/obj/structure/bed/chair/bay/chair/padded/blue, -/turf/simulated/floor/tiled/techfloor, -/area/ship/ert/med) -"BE" = ( -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/techmaint, -/area/ship/ert/armoury_st) -"BF" = ( -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/turf/simulated/floor/tiled/techmaint, -/area/ship/ert/armoury_st) -"BI" = ( -/obj/structure/hull_corner/long_horiz{ - dir = 5 - }, -/turf/simulated/floor/reinforced/airless, -/area/ship/ert/engineering) -"BK" = ( -/obj/machinery/shipsensors, -/turf/simulated/floor/reinforced/airless, -/area/ship/ert/engineering) -"BM" = ( -/obj/machinery/computer/ship/sensors, -/turf/simulated/floor/tiled/techfloor, -/area/ship/ert/gunnery) -"BU" = ( -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/techmaint, -/area/ship/ert/armoury_st) -"BW" = ( -/turf/simulated/floor/tiled/techmaint, -/area/ship/ert/hallways) -"Ce" = ( +/area/shuttle/ert_ship_boat) +"CK" = ( /obj/structure/cable/yellow{ d1 = 1; d2 = 8; icon_state = "1-8" }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, /turf/simulated/floor/tiled/techmaint, -/area/ship/ert/armoury_st) -"Cf" = ( -/obj/structure/ship_munition/disperser_charge/emp, -/obj/effect/floor_decal/industrial/warning, -/obj/structure/railing, -/turf/simulated/floor/reinforced, -/area/ship/ert/gunnery) -"Ci" = ( -/turf/simulated/floor/reinforced/airless, -/area/ship/ert/eng_storage) -"Cn" = ( -/obj/machinery/power/apc/hyper{ - alarms_hidden = 1; - dir = 4; - name = "VB APC - East"; - pixel_x = 24 - }, -/obj/machinery/vending/nifsoft_shop{ - categories = 111; - desc = "For all your mindware and mindware accessories. Now paid for by Central!"; - dir = 8; - emagged = 1; - name = "ERT NIFSoft Vendor" - }, -/obj/structure/cable/yellow{ - d2 = 8; - icon_state = "0-8" - }, -/turf/simulated/floor/tiled/techfloor, -/area/ship/ert/hallways) -"Cq" = ( -/obj/effect/floor_decal/corner/white{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, +/area/ship/ert/dock_star) +"CL" = ( /obj/structure/cable/yellow{ d1 = 4; d2 = 8; icon_state = "4-8" }, -/turf/simulated/floor/tiled/techmaint, -/area/ship/ert/med) -"Cr" = ( -/obj/machinery/porta_turret/stationary/CIWS, -/turf/simulated/floor/reinforced/airless, -/area/ship/ert/med_surg) -"Cx" = ( -/turf/simulated/wall/shull, -/area/ship/ert/mech_bay) -"CH" = ( -/obj/machinery/door/firedoor/border_only, -/obj/structure/fans/hardlight, -/obj/machinery/door/blast/regular{ - id = "Von_Braun_Hangar"; - name = "Hangar Blast Door" - }, -/turf/simulated/floor/reinforced, -/area/ship/ert/hangar) -"CI" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/machinery/door/firedoor/border_only, -/obj/structure/window/reinforced{ +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor, -/area/ship/ert/armoury_st) -"CL" = ( -/obj/effect/floor_decal/corner/red{ - dir = 8 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/turf/simulated/floor/tiled/techmaint, -/area/ship/ert/hangar) -"CM" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 + dir = 4 }, /turf/simulated/floor/tiled/techmaint, -/area/ship/ert/hangar) +/area/ship/ert/armoury_st) +"CM" = ( +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/ship/ert/armoury_st) "CN" = ( +<<<<<<< HEAD /obj/machinery/atmospherics/pipe/simple/hidden/fuel, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +======= +/obj/machinery/atmospherics/pipe/simple/visible/universal, +>>>>>>> c55e7a1c3b... Merge pull request #14538 from KillianKirilenko/kk-vbupg /turf/simulated/floor/tiled/techfloor, /area/ship/ert/engine) "CP" = ( -/obj/machinery/door/firedoor/multi_tile{ +/obj/machinery/atmospherics/unary/vent_pump/on{ dir = 1 }, -/obj/machinery/door/airlock/multi_tile/glass{ - dir = 1; - req_one_access = list(103) +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" }, /turf/simulated/floor/tiled/white, /area/ship/ert/med_surg) "CR" = ( -/obj/machinery/light/no_nightshift, -/turf/simulated/floor/reinforced/airless, -/area/ship/ert/med_surg) +/obj/machinery/computer/ship/disperser{ + dir = 8 + }, +/obj/item/weapon/paper/vonbraun_cannon, +/turf/simulated/floor/tiled/techfloor, +/area/ship/ert/gunnery) "CT" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 4 }, /turf/simulated/floor/tiled/techfloor, /area/ship/ert/atmos) "CZ" = ( +<<<<<<< HEAD /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/light/no_nightshift{ dir = 8 @@ -4885,9 +6749,164 @@ /turf/simulated/floor/tiled/techfloor, /area/ship/ert/barracks) "Dh" = ( +======= +>>>>>>> c55e7a1c3b... Merge pull request #14538 from KillianKirilenko/kk-vbupg /obj/structure/grille, /obj/structure/window/reinforced/full, /obj/machinery/door/firedoor/border_only, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/simulated/floor/airless, +/area/ship/ert/gunnery) +"Dd" = ( +/obj/structure/table/rack/steel, +/obj/item/weapon/tank/jetpack/oxygen{ + pixel_x = -4; + pixel_y = -4 + }, +/obj/item/weapon/tank/jetpack/oxygen{ + pixel_x = -2; + pixel_y = -2 + }, +/obj/item/weapon/tank/jetpack/oxygen, +/obj/item/weapon/tank/jetpack/oxygen{ + pixel_x = 2; + pixel_y = 2 + }, +/obj/item/weapon/tank/jetpack/oxygen{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/weapon/tank/jetpack/oxygen{ + pixel_x = 6; + pixel_y = 6 + }, +/obj/effect/floor_decal/industrial/outline/grey, +/turf/simulated/floor/tiled/techfloor, +/area/ship/ert/barracks) +"Dh" = ( +/obj/machinery/button/remote/blast_door{ + id = "VB_Rear_Blast"; + name = "Emergency Blast Doors"; + pixel_y = 24; + req_access = list(103) + }, +/obj/structure/table/steel_reinforced, +/turf/simulated/floor/tiled/techfloor, +/area/ship/ert/engineering) +"Dk" = ( +/obj/structure/sign/nosmoking_1, +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/wall/rshull, +/area/ship/ert/engine) +"Dm" = ( +/obj/structure/table/steel_reinforced, +/obj/item/stack/cable_coil, +/obj/item/stack/cable_coil, +/obj/item/stack/cable_coil, +/obj/item/stack/cable_coil, +/obj/item/stack/cable_coil, +/obj/item/stack/cable_coil, +/obj/item/weapon/grenade/chem_grenade/metalfoam, +/obj/item/weapon/grenade/chem_grenade/metalfoam, +/obj/item/weapon/grenade/chem_grenade/metalfoam, +/obj/item/weapon/grenade/chem_grenade/metalfoam, +/obj/item/weapon/grenade/chem_grenade/metalfoam, +/obj/item/weapon/grenade/chem_grenade/metalfoam, +/obj/machinery/light/no_nightshift, +/turf/simulated/floor/tiled/techfloor, +/area/ship/ert/eng_storage) +"Dn" = ( +/turf/simulated/floor/tiled/techfloor, +/area/ship/ert/atmos) +"Do" = ( +/obj/machinery/light/no_nightshift, +/turf/simulated/floor/reinforced/airless, +/area/ship/ert/engine) +"Dp" = ( +/obj/item/device/perfect_tele_beacon/stationary{ + tele_name = "NRB Robineau"; + tele_network = "centcom" + }, +/turf/simulated/floor/tiled/techmaint, +/area/shuttle/ert_ship_boat) +"Dt" = ( +/obj/machinery/disperser/back{ + dir = 4 + }, +/turf/simulated/floor/airless, +/area/ship/ert/gunnery) +"Du" = ( +/obj/machinery/button/remote/blast_door{ + dir = 1; + id = "ERT_Shuttle_Rear"; + name = "ERT Shuttle Access"; + pixel_y = -25; + req_access = list(103) + }, +/obj/machinery/door/blast/regular/open{ + id = "ERT_Shuttle_Rear"; + name = "Boarding Hatch" + }, +/turf/simulated/floor/tiled/techmaint, +/area/shuttle/ert_ship_boat) +"Dx" = ( +/obj/machinery/disperser/middle{ + dir = 4 + }, +/turf/simulated/floor/airless, +/area/ship/ert/gunnery) +"Dy" = ( +/obj/machinery/door/window/brigdoor/southright, +/turf/simulated/floor/tiled/techfloor, +/area/ship/ert/hallways_aft) +"DJ" = ( +/obj/effect/floor_decal/corner/white{ + dir = 6 + }, +/turf/simulated/floor/tiled/techmaint, +/area/ship/ert/eng_storage) +"DK" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor, +/area/ship/ert/atmos) +"DM" = ( +/obj/structure/table/steel_reinforced, +/obj/item/weapon/storage/firstaid/fire{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/weapon/storage/firstaid/fire{ + pixel_x = 2; + pixel_y = 2 + }, +/obj/item/weapon/storage/firstaid/adv, +/obj/item/weapon/storage/firstaid/adv{ + pixel_x = -2; + pixel_y = -2 + }, +/obj/effect/floor_decal/corner/yellow{ + dir = 8 + }, +/obj/machinery/firealarm/alarms_hidden{ + pixel_y = 26 + }, +/turf/simulated/floor/tiled/techfloor, +/area/ship/ert/med) +"DN" = ( +/obj/machinery/atmospherics/pipe/manifold4w/visible/fuel, +/obj/structure/grille, +/obj/structure/window/reinforced/full, /obj/machinery/door/blast/regular/open{ id = "VB_Rear_Blast"; name = "Blast Shield" @@ -4895,59 +6914,1408 @@ /obj/structure/window/reinforced{ dir = 8 }, -/obj/structure/window/reinforced{ +/turf/simulated/floor/plating, +/area/ship/ert/engine) +"DQ" = ( +/obj/machinery/disperser/front{ dir = 4 }, +/turf/simulated/floor/airless, +/area/ship/ert/gunnery) +"DS" = ( +/turf/simulated/wall/rshull, +/area/ship/ert/hallways_aft) +"Eb" = ( +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/firedoor/border_only, +/obj/machinery/door/airlock/glass_security{ + name = "Delta Armoury"; + req_one_access = list(103) + }, +<<<<<<< HEAD +======= +/obj/machinery/door/blast/regular{ + closed_layer = 4; + id = "NRV_DELTA"; + layer = 4 + }, +>>>>>>> c55e7a1c3b... Merge pull request #14538 from KillianKirilenko/kk-vbupg +/turf/simulated/floor/tiled/techmaint, +/area/ship/ert/armoury_dl) +"Ed" = ( +/obj/machinery/door/blast/regular{ + id = "Von_Braun_Cannon"; + name = "Cannon Firing Port" + }, +/turf/simulated/floor/reinforced/airless, +/area/ship/ert/gunnery) +"Ee" = ( +/obj/structure/table/rack/steel, +/obj/item/weapon/gun/energy/plasmastun{ + pixel_y = -3 + }, +/obj/item/weapon/gun/energy/plasmastun{ + pixel_y = 3 + }, +/obj/effect/floor_decal/industrial/outline/grey, /turf/simulated/floor/tiled/techfloor, -/area/ship/ert/engineering) -"Di" = ( +/area/ship/ert/armoury_dl) +"Em" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/blast/regular{ + closed_layer = 4; + dir = 4; + id = "NRV_DELTA"; + layer = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/ship/ert/armoury_dl) +"Eo" = ( +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/tiled/techmaint, +/area/ship/ert/dock_star) +"Eq" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/simulated/floor/reinforced/airless, +/area/ship/ert/gunnery) +"Ev" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/light/no_nightshift{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel, +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techfloor, +/area/ship/ert/engine) +"EB" = ( +/obj/structure/table/rack/steel, +/obj/item/weapon/gun/energy/sniperrifle{ + battery_lock = 0; + pixel_y = -3 + }, +/obj/item/weapon/gun/energy/sniperrifle{ + battery_lock = 0; + pixel_y = 3 + }, +/obj/effect/floor_decal/industrial/outline/grey, +/turf/simulated/floor/tiled/techfloor, +/area/ship/ert/armoury_dl) +"ED" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/wood, +/area/ship/ert/commander) +"EF" = ( +/obj/machinery/shield_capacitor, +/obj/effect/floor_decal/industrial/outline/blue, +/turf/simulated/floor/tiled/techfloor, +/area/ship/ert/eng_storage) +"EP" = ( +/obj/machinery/atmospherics/unary/engine{ + dir = 4 + }, +/turf/space, +/area/ship/ert/engine) +"Fd" = ( +/obj/machinery/atmospherics/portables_connector{ + dir = 4 + }, +/obj/machinery/portable_atmospherics/canister/oxygen, +/obj/effect/floor_decal/industrial/outline/blue, +/turf/simulated/floor/tiled/techfloor, +/area/ship/ert/atmos) +"Ff" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/ship/ert/hangar) +"Fg" = ( +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/wood, +/area/ship/ert/commander) +"Fl" = ( +/obj/structure/table/rack/steel, +/obj/item/weapon/storage/box/handcuffs{ + pixel_x = -2; + pixel_y = -2 + }, +/obj/item/weapon/storage/box/handcuffs{ + pixel_x = 2; + pixel_y = 2 + }, +/obj/effect/floor_decal/corner/red{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/outline/grey, +/turf/simulated/floor/tiled/techfloor, +<<<<<<< HEAD +/area/ship/ert/armoury_dl) +"Fz" = ( +/obj/structure/bed/chair/bay/chair/padded/blue{ + dir = 1 + }, +/turf/simulated/floor/tiled/techmaint, +/area/ship/ert/bridge) +"FD" = ( +/turf/simulated/floor/tiled/techmaint, +/area/ship/ert/bridge) +"FF" = ( +/obj/effect/shuttle_landmark/premade/ert_ship_port, +/turf/space, +/area/space) +"FJ" = ( +/obj/machinery/door/airlock/glass_command{ + req_one_access = list(103) +======= +/area/ship/ert/hallways) +"Fq" = ( +/obj/structure/table/rack/steel, +/obj/item/weapon/gun/energy/gun/burst{ + pixel_y = 3 +>>>>>>> c55e7a1c3b... Merge pull request #14538 from KillianKirilenko/kk-vbupg + }, +/obj/item/weapon/gun/energy/gun/burst{ + pixel_y = -3 + }, +/obj/item/weapon/gun/energy/lasershotgun{ + pixel_y = -3 + }, +<<<<<<< HEAD +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/techmaint, +/area/ship/ert/hallways) +"FM" = ( +/obj/effect/floor_decal/corner/yellow{ + dir = 10 +======= +/obj/item/weapon/gun/energy/lasershotgun{ + pixel_y = 3 + }, +/obj/effect/floor_decal/industrial/outline/grey, +/obj/machinery/recharger/wallcharger{ + pixel_x = -23; + pixel_y = -12 +>>>>>>> c55e7a1c3b... Merge pull request #14538 from KillianKirilenko/kk-vbupg + }, +/obj/machinery/recharger/wallcharger{ + pixel_x = -23; + pixel_y = -4 + }, +/obj/machinery/recharger/wallcharger{ + pixel_x = -23; + pixel_y = 5 + }, +/turf/simulated/floor/tiled/techfloor, +/area/ship/ert/armoury_dl) +"Fz" = ( +/obj/structure/bed/chair/comfy/black{ + dir = 8 + }, +/obj/machinery/light/no_nightshift{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/ship/ert/commander) +"FF" = ( +/obj/machinery/light/no_nightshift{ + dir = 1 + }, +/obj/machinery/alarm/alarms_hidden{ + pixel_y = 26 + }, +/turf/simulated/floor/wood, +/area/ship/ert/commander) +"FG" = ( +/obj/machinery/computer/operating, +/turf/simulated/floor/tiled/white, +/area/ship/ert/med_surg) +"FK" = ( +/obj/structure/bed/chair/bay/chair/padded/blue{ + dir = 8 + }, +/turf/simulated/floor/tiled/techmaint, +/area/ship/ert/bridge) +"FM" = ( +/obj/machinery/firealarm/alarms_hidden{ + dir = 1; + pixel_y = -26 + }, +/obj/item/modular_computer/console/preset/medical{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor, +/area/ship/ert/bridge) +"FN" = ( +/obj/structure/bed/chair/bay/chair/padded/blue{ + dir = 1 + }, +/turf/simulated/floor/tiled/techmaint, +/area/ship/ert/bridge) +"FO" = ( +/obj/machinery/light_switch{ + pixel_y = 23 + }, +/obj/structure/table/woodentable, +/obj/item/device/flashlight/lamp, +/obj/item/device/holomap_beacon/ert, +/obj/item/device/holomap_beacon/ert, +/obj/item/device/mapping_unit/ert, +/turf/simulated/floor/wood, +/area/ship/ert/commander) +"FP" = ( +/obj/structure/table/steel_reinforced, +/obj/item/weapon/cell/hyper, +/obj/item/weapon/cell/hyper, +/obj/item/weapon/cell/hyper, +/obj/item/weapon/cell/hyper, +/obj/item/weapon/cell/hyper, +/obj/item/weapon/cell/hyper, +/obj/item/weapon/cell/hyper, +/obj/item/weapon/cell/hyper, +/obj/machinery/cell_charger, +/obj/item/weapon/cell/hyper, +/obj/item/weapon/cell/hyper, +/obj/item/weapon/cell/hyper, +/obj/item/weapon/cell/hyper, +/obj/item/weapon/tool/screwdriver, +/obj/item/weapon/tool/wrench, +/obj/item/weapon/tool/crowbar, +/turf/simulated/floor/tiled/techfloor, +/area/ship/ert/mech_bay) +"FQ" = ( +/turf/simulated/floor/tiled/techfloor, +/area/ship/ert/bridge) +"FR" = ( +/turf/simulated/floor/tiled/techmaint, +/area/ship/ert/armoury_st) +"FS" = ( +/obj/item/modular_computer/console/preset/engineering{ + dir = 4 + }, +/obj/structure/panic_button{ + pixel_x = -32 + }, +/turf/simulated/floor/tiled/techfloor, +/area/ship/ert/bridge) +"FT" = ( +/obj/machinery/door/airlock/glass_command{ + req_one_access = list(103) + }, +/obj/machinery/door/firedoor/border_only, +/turf/simulated/floor/tiled/techmaint, +/area/ship/ert/bridge) +"FV" = ( +/obj/structure/table/rack/steel, +/obj/item/ammo_magazine/ammo_box/b12g/pellet, +/obj/item/ammo_magazine/ammo_box/b12g/pellet, +/obj/item/ammo_magazine/ammo_box/b12g, +/obj/item/ammo_magazine/ammo_box/b12g, +/obj/item/ammo_magazine/ammo_box/b12g/emp, +/obj/item/ammo_magazine/ammo_box/b12g/flash, +/obj/item/ammo_magazine/ammo_box/b12g/beanbag, +/obj/item/ammo_magazine/ammo_box/b12g/beanbag, +/obj/item/ammo_magazine/ammo_box/b12g/stunshell, +/obj/effect/floor_decal/industrial/outline/grey, +/obj/item/weapon/gun/projectile/shotgun/pump/combat{ + pixel_y = 3 + }, +/obj/item/weapon/gun/projectile/shotgun/pump/combat{ + pixel_y = -3 + }, +/turf/simulated/floor/tiled/techfloor, +/area/ship/ert/armoury_st) +"FW" = ( +/obj/structure/closet/walllocker/emerglocker{ + pixel_y = 32 + }, +/obj/structure/bed/pod, +/obj/item/weapon/bedsheet/blue, +/obj/structure/curtain/open/bed, +/turf/simulated/floor/wood, +/area/ship/ert/commander) +"FX" = ( +/obj/effect/floor_decal/corner/blue{ + dir = 9 + }, +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/techmaint, +/area/ship/ert/hallways) +"FY" = ( +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/techmaint, +/area/ship/ert/bridge) +"Gl" = ( +/turf/simulated/floor/tiled/techmaint, +/area/ship/ert/hallways) +"Gn" = ( +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/wall/rshull, +/area/ship/ert/med_surg) +"Gs" = ( +/obj/machinery/vending/engineering, +/turf/simulated/floor/tiled/techfloor, +/area/ship/ert/eng_storage) +"Gu" = ( +/obj/machinery/optable, +/turf/simulated/floor/tiled/white, +/area/ship/ert/med_surg) +"Gv" = ( +/turf/simulated/floor/tiled/techfloor, +/area/ship/ert/hallways_aft) +"Gw" = ( +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ + dir = 8 + }, +/obj/effect/map_helper/airlock/atmos/chamber_pump, +/obj/machinery/light/no_nightshift{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor, +/area/ship/ert/dock_port) +"GE" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/effect/shuttle_landmark/shuttle_initializer/ert_ship_boat, +/turf/simulated/floor/tiled/techmaint, +/area/shuttle/ert_ship_boat) +"GI" = ( +/obj/machinery/alarm/alarms_hidden{ + pixel_y = 26 + }, +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techfloor, +/area/ship/ert/engine) +"GJ" = ( +/turf/simulated/floor/reinforced/airless, +/area/ship/ert/dock_star) +"GK" = ( +/obj/effect/floor_decal/corner/red{ + dir = 6 + }, +/turf/simulated/floor/tiled/techmaint, +/area/ship/ert/hallways) +"GO" = ( +/obj/machinery/photocopier, +/turf/simulated/floor/wood, +/area/ship/ert/commander) +"GQ" = ( +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/turf/simulated/floor/wood, +/area/ship/ert/commander) +"GR" = ( +/obj/structure/closet/crate{ + dir = 2 + }, +/obj/effect/floor_decal/industrial/outline/red, +/turf/simulated/floor/tiled/techmaint, +/area/ship/ert/armoury_st) +"GS" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/structure/table/steel_reinforced, +/obj/item/weapon/rcd_ammo/large{ + pixel_x = -8; + pixel_y = -8 + }, +/obj/item/weapon/rcd_ammo/large{ + pixel_x = -6; + pixel_y = -6 + }, +/obj/item/weapon/rcd_ammo/large{ + pixel_x = -4; + pixel_y = -4 + }, +/obj/item/weapon/rcd_ammo/large{ + pixel_x = -2; + pixel_y = -2 + }, +/obj/item/weapon/rcd_ammo/large, +/obj/item/weapon/rcd_ammo/large{ + pixel_x = 2; + pixel_y = 2 + }, +/obj/item/weapon/rcd_ammo/large{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/weapon/rcd_ammo/large{ + pixel_x = 6; + pixel_y = 6 + }, +/turf/simulated/floor/tiled/techfloor, +/area/ship/ert/eng_storage) +"GT" = ( +/obj/effect/floor_decal/corner/white{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor, +/area/ship/ert/med) +"GU" = ( +/obj/structure/table/rack/steel, +/obj/effect/floor_decal/industrial/outline/grey, +/obj/item/weapon/gun/energy/pulse_rifle{ + pixel_y = 6 + }, +/obj/item/weapon/gun/energy/pulse_rifle{ + pixel_y = 4 + }, +/obj/item/weapon/gun/energy/pulse_rifle{ + pixel_y = 2 + }, +/obj/item/weapon/gun/energy/pulse_rifle, +/obj/item/weapon/gun/energy/pulse_rifle{ + pixel_y = -2 + }, +/obj/item/weapon/gun/energy/pulse_rifle{ + pixel_y = -4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/ship/ert/armoury_dl) +"GY" = ( +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/techmaint, +/area/ship/ert/dock_port) +"GZ" = ( +/obj/structure/shuttle/engine/propulsion{ + dir = 8 + }, +/turf/simulated/floor/reinforced, +/area/shuttle/ert_ship_boat) +"Hf" = ( +/turf/simulated/wall/rshull, +/area/ship/ert/engine) +"Hg" = ( +/obj/effect/floor_decal/corner/yellow{ + dir = 9 + }, +/turf/simulated/floor/tiled/techmaint, +/area/ship/ert/med) +"Ho" = ( +/obj/machinery/power/emitter, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/techfloor, +/area/ship/ert/eng_storage) +"Hp" = ( /obj/machinery/vending/medical{ req_access = null }, /turf/simulated/floor/tiled/techfloor, /area/ship/ert/med) -"Dn" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ +"Hu" = ( +/obj/effect/floor_decal/corner/red{ + dir = 9 + }, +/turf/simulated/floor/tiled/techmaint, +/area/ship/ert/hangar) +"Hz" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/structure/ship_munition/disperser_charge/emp, +/turf/simulated/floor/reinforced, +/area/ship/ert/hallways_aft) +"HB" = ( +/obj/structure/closet/wardrobe/ert, +/obj/item/modular_computer/tablet/preset/custom_loadout/elite, +/obj/item/weapon/storage/box/survival/comp{ + starts_with = list(/obj/item/weapon/tool/prybar/red,/obj/item/clothing/glasses/goggles,/obj/item/weapon/reagent_containers/hypospray/autoinjector,/obj/item/stack/medical/bruise_pack,/obj/item/device/flashlight/glowstick,/obj/item/weapon/reagent_containers/food/snacks/candy/proteinbar,/obj/item/clothing/mask/breath,/obj/item/weapon/tank/emergency/oxygen/engi) + }, +/obj/machinery/light/no_nightshift, +/obj/effect/floor_decal/industrial/outline/grey, +/obj/item/modular_computer/laptop/preset/custom_loadout/elite, +/turf/simulated/floor/tiled/techfloor, +/area/ship/ert/barracks) +"HC" = ( +/obj/structure/table/steel_reinforced, +/obj/item/bodybag/cryobag{ + pixel_x = -4; + pixel_y = -4 + }, +/obj/item/bodybag/cryobag{ + pixel_x = -2; + pixel_y = -2 + }, +/obj/item/bodybag/cryobag, +/obj/item/bodybag/cryobag{ + pixel_x = 2; + pixel_y = 2 + }, +/obj/item/bodybag/cryobag{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/bodybag/cryobag{ + pixel_x = 6; + pixel_y = 6 + }, +/turf/simulated/floor/tiled/techfloor, +/area/ship/ert/med) +"HE" = ( +/obj/structure/table/rack/steel, +/obj/item/clothing/glasses/graviton{ + pixel_x = -2; + pixel_y = -2 + }, +/obj/item/clothing/glasses/graviton, +/obj/item/clothing/glasses/graviton{ + pixel_x = 2; + pixel_y = 2 + }, +/obj/item/clothing/glasses/graviton{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/effect/floor_decal/industrial/outline/grey, +/turf/simulated/floor/tiled/techfloor, +/area/ship/ert/barracks) +"HH" = ( +/obj/effect/floor_decal/corner/red{ + dir = 9 + }, +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techmaint, +/area/ship/ert/hangar) +"HK" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/simulated/floor/tiled/techmaint, +/area/shuttle/ert_ship_boat) +"HL" = ( +/obj/machinery/door/blast/shutters{ + density = 0; + icon_state = "shutter0"; + id = "braun_cells_privacy"; + name = "Privacy Shutters"; + opacity = 0 + }, +/obj/machinery/door/airlock/glass{ + req_one_access = list(103) + }, +<<<<<<< HEAD +/obj/item/ammo_magazine/m762, +/obj/item/ammo_magazine/m762, +/obj/item/ammo_magazine/m762, +/obj/item/ammo_magazine/m762, +/obj/item/ammo_magazine/m762, +/obj/item/ammo_magazine/m762, +/obj/item/ammo_magazine/m762, +/obj/item/ammo_magazine/m762, +/obj/item/ammo_magazine/m762/ap, +/obj/item/ammo_magazine/m762/ap, +/obj/item/ammo_magazine/m762/ap, +/obj/item/ammo_magazine/m762/ap, +/turf/simulated/floor/tiled/techfloor, +/area/ship/ert/armoury_dl) +"Gr" = ( +/obj/machinery/power/emitter, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/techfloor, +/area/ship/ert/eng_storage) +"Gv" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/obj/machinery/door/window/brigdoor/southleft, +/turf/simulated/floor/tiled/techfloor, +/area/ship/ert/hallways_aft) +"Gw" = ( +/obj/structure/closet/wardrobe/ert, +/obj/item/modular_computer/tablet/preset/custom_loadout/elite, +/obj/item/weapon/storage/box/survival/comp{ + starts_with = list(/obj/item/weapon/tool/prybar/red,/obj/item/clothing/glasses/goggles,/obj/item/weapon/reagent_containers/hypospray/autoinjector,/obj/item/stack/medical/bruise_pack,/obj/item/device/flashlight/glowstick,/obj/item/weapon/reagent_containers/food/snacks/candy/proteinbar,/obj/item/clothing/mask/breath,/obj/item/weapon/tank/emergency/oxygen/engi) +======= +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 1 + }, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/tiled/techfloor, +/area/ship/ert/brig) +"HO" = ( +/turf/simulated/wall/rshull, +/area/shuttle/ert_ship_boat) +"HR" = ( +/obj/structure/table/rack/steel, +/obj/item/clothing/accessory/storage/black_vest{ + pixel_x = -4; + pixel_y = -4 + }, +/obj/item/clothing/accessory/storage/black_vest{ + pixel_x = -2; + pixel_y = -2 + }, +/obj/item/clothing/accessory/storage/black_vest, +/obj/item/clothing/accessory/storage/black_vest{ + pixel_x = 2; + pixel_y = 2 +>>>>>>> c55e7a1c3b... Merge pull request #14538 from KillianKirilenko/kk-vbupg + }, +/obj/item/clothing/accessory/storage/black_vest{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/clothing/accessory/storage/black_vest{ + pixel_x = 6; + pixel_y = 6 + }, +/obj/machinery/alarm/alarms_hidden{ + dir = 1; + pixel_y = -26 + }, +/obj/effect/floor_decal/industrial/outline/grey, +/turf/simulated/floor/tiled/techfloor, +/area/ship/ert/barracks) +"HT" = ( +/obj/machinery/door/firedoor, +/obj/structure/grille, +/obj/structure/window/titanium/full, +/obj/structure/window/titanium, +/obj/structure/window/titanium{ + dir = 1 + }, +/obj/structure/window/titanium{ dir = 4 }, +/obj/effect/floor_decal/techfloor{ + dir = 8 + }, +/turf/simulated/floor/tiled/techmaint, +/area/ship/ert/brig) +"Ia" = ( +/obj/machinery/power/pointdefense{ + id_tag = "vonbraun_pd" + }, +/obj/structure/cable/yellow, +/turf/simulated/floor/reinforced/airless, +/area/ship/ert/engine) +"Id" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/fuel{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techfloor, +/area/ship/ert/engine) +"If" = ( +/obj/machinery/door/airlock/glass_external, +/obj/effect/map_helper/airlock/door/int_door, +/obj/machinery/door/firedoor/multi_tile, +/turf/simulated/floor/tiled/techfloor, +/area/ship/ert/dock_star) +"Ii" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/door/firedoor/multi_tile, +/obj/machinery/door/airlock/multi_tile/glass{ + req_one_access = list(103) + }, +/turf/simulated/floor/tiled/techmaint, +/area/ship/ert/hangar) +"Il" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/machinery/light/no_nightshift, +/turf/simulated/floor/tiled/techmaint, +/area/shuttle/ert_ship_boat) +"Io" = ( +/obj/machinery/power/apc/hyper{ + alarms_hidden = 1; + dir = 4; + name = "VB APC - East"; + pixel_x = 24 + }, +/obj/structure/cable/yellow{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/alarm/alarms_hidden{ + dir = 1; + pixel_y = -26 + }, /turf/simulated/floor/tiled/techfloor, /area/ship/ert/atmos) -"Do" = ( +"Ip" = ( +/obj/structure/sign/department/dock{ + name = "ROBINEAU DOCK" + }, +/turf/simulated/wall/shull, +/area/ship/ert/hangar) +"Is" = ( +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/turf/simulated/floor/tiled/techmaint, +/area/ship/ert/barracks) +"Iu" = ( +/obj/machinery/power/pointdefense{ + id_tag = "vonbraun_pd" + }, +/obj/structure/cable/yellow{ + d2 = 4; + dir = 4; + icon_state = "0-4" + }, +/turf/simulated/floor/reinforced/airless, +/area/ship/ert/med_surg) +"Ix" = ( +/obj/machinery/door/blast/shutters{ + density = 0; + icon_state = "shutter0"; + id = "braun_cells_privacy"; + name = "Privacy Shutters"; + opacity = 0 + }, +/obj/structure/grille, +/obj/structure/window/titanium/full, +/obj/structure/window/titanium{ + dir = 1 + }, +/obj/structure/window/titanium, +/obj/structure/window/titanium{ + dir = 8 + }, +/obj/structure/cable/yellow{ + d2 = 2; + icon_state = "0-2" + }, +/obj/structure/cable/yellow{ + d2 = 4; + icon_state = "0-4" + }, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/tiled/techmaint, +/area/ship/ert/brig) +"II" = ( +/obj/machinery/door/firedoor/multi_tile{ + dir = 1 + }, +/obj/machinery/door/airlock/multi_tile/glass{ + dir = 1; + req_one_access = list(103) + }, +/turf/simulated/floor/tiled/white, +/area/ship/ert/med_surg) +"IK" = ( +/obj/machinery/door/blast/shutters{ + density = 0; + icon_state = "shutter0"; + id = "braun_cells_privacy"; + name = "Privacy Shutters"; + opacity = 0 + }, +/obj/structure/grille, +/obj/structure/window/titanium/full, +/obj/structure/window/titanium{ + dir = 1 + }, +/obj/structure/window/titanium, +/obj/structure/cable/yellow{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/tiled/techmaint, +/area/ship/ert/brig) +"Jd" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/turf/simulated/floor/tiled/techmaint, +/area/ship/ert/barracks) +"Je" = ( +/obj/machinery/oxygen_pump/anesthetic, +/turf/simulated/wall/shull, +/area/ship/ert/med_surg) +"Jf" = ( +/obj/item/modular_computer/console/preset/command{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor, +/area/ship/ert/bridge) +"Jg" = ( +/obj/machinery/light/no_nightshift{ + dir = 1 + }, +/turf/simulated/floor/reinforced/airless, +/area/ship/ert/med_surg) +"Jh" = ( +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/white, +/area/ship/ert/med_surg) +"Jk" = ( +/obj/item/modular_computer/console/preset/medical{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/ship/ert/bridge) +"Js" = ( +/obj/structure/ship_munition/disperser_charge/explosive, +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/reinforced, +/area/ship/ert/hallways_aft) +"Jx" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/machinery/door/firedoor/border_only, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced, +/turf/simulated/floor/tiled/techfloor, +/area/ship/ert/mech_bay) +"Jy" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +<<<<<<< HEAD +======= +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techmaint, +/area/ship/ert/hallways_aft) +"Jz" = ( +/obj/structure/bed/chair/bay/chair/padded/blue{ + dir = 8 + }, +>>>>>>> c55e7a1c3b... Merge pull request #14538 from KillianKirilenko/kk-vbupg +/turf/simulated/floor/tiled/techfloor, +/area/ship/ert/hallways_aft) +"JA" = ( +/obj/machinery/button/flasher{ + pixel_x = -9; + pixel_y = -22 + }, +/obj/machinery/button/remote/blast_door{ + dir = 1; + id = "braun_cells_privacy"; + name = "Privacy Shutter Controls"; + pixel_x = 9; + pixel_y = -24; + req_access = list(103) + }, +/obj/effect/floor_decal/industrial/warning, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/turf/simulated/floor/tiled/techfloor, +/area/ship/ert/brig) +"JE" = ( +/obj/structure/table/rack/steel, +/obj/effect/floor_decal/industrial/outline/grey, +/obj/item/ammo_magazine/m545{ + pixel_x = 7 + }, +/obj/item/ammo_magazine/m545{ + pixel_x = 4 + }, +/obj/item/ammo_magazine/m545{ + pixel_x = 1 + }, +/obj/item/ammo_magazine/m545{ + pixel_x = -2 + }, +/obj/item/ammo_magazine/m545{ + pixel_x = -5 + }, +/obj/item/ammo_magazine/m545{ + pixel_x = -8 + }, +/obj/item/weapon/gun/projectile/automatic/sts35{ + pixel_y = -2 + }, +/obj/item/weapon/gun/projectile/automatic/sts35{ + pixel_y = 2 + }, +/turf/simulated/floor/tiled/techfloor, +/area/ship/ert/armoury_st) +"JF" = ( +/obj/machinery/vending/assist, +/turf/simulated/floor/tiled/techfloor, +/area/ship/ert/eng_storage) +"JG" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/machinery/light/no_nightshift{ + dir = 8 + }, /obj/machinery/porta_turret/stationary/CIWS, /turf/simulated/floor/reinforced/airless, -/area/ship/ert/engine) -"Dt" = ( +/area/ship/ert/gunnery) +"JH" = ( +/obj/machinery/computer/ship/navigation{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, /obj/structure/railing/grey, -/obj/structure/railing/grey{ +/turf/simulated/floor/tiled/techfloor, +/area/ship/ert/bridge) +"JJ" = ( +/obj/machinery/light/no_nightshift, +/obj/machinery/atmospherics/unary/engine{ dir = 4 }, +/turf/space, +/area/ship/ert/engine) +"JM" = ( +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/turf/simulated/floor/tiled/techmaint, +/area/ship/ert/barracks) +"JW" = ( +/obj/machinery/atmospherics/pipe/simple/visible/fuel{ + dir = 9 + }, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/machinery/door/blast/regular/open{ + id = "VB_Rear_Blast"; + name = "Blast Shield" + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/ship/ert/engine) +"JX" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/techmaint, +/area/ship/ert/hallways_aft) +"JY" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/fuel{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor, +/area/ship/ert/engine) +"Kb" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/fuel, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techfloor, +/area/ship/ert/engine) +"Kd" = ( +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/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/effect/floor_decal/corner/red{ + dir = 9 + }, +/turf/simulated/floor/tiled/techmaint, +/area/ship/ert/hallways_aft) +"Kj" = ( +/obj/machinery/telecomms/relay, +/turf/simulated/floor/tiled/techfloor, +/area/ship/ert/atmos) +"Kk" = ( +/obj/machinery/door/airlock/glass_external, +/obj/effect/map_helper/airlock/door/int_door, +/obj/machinery/door/firedoor/multi_tile, +/turf/simulated/floor/tiled/techfloor, +/area/ship/ert/dock_port) +"Kq" = ( +/obj/machinery/ntnet_relay, +/turf/simulated/floor/tiled/techfloor, +/area/ship/ert/atmos) +"Kr" = ( +/turf/simulated/floor/wood, +/area/ship/ert/commander) +"Ks" = ( +/obj/machinery/power/apc/hyper{ + alarms_hidden = 1; + dir = 4; + name = "VB APC - East"; + pixel_x = 24 + }, +/obj/structure/cable/yellow{ + d2 = 2; + icon_state = "0-2" + }, +/turf/simulated/floor/tiled/techfloor, +/area/ship/ert/brig) +"Kt" = ( +/turf/simulated/floor/tiled/techfloor, +/area/ship/ert/teleporter) +"KB" = ( +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ + dir = 8 + }, +/obj/effect/map_helper/airlock/atmos/chamber_pump, +/obj/effect/floor_decal/industrial/warning, +/obj/structure/sign/vacuum{ + pixel_x = -32 + }, +/turf/simulated/floor/tiled/techfloor, +/area/ship/ert/dock_star) +"KD" = ( +/obj/machinery/door/window/brigdoor/northright, +/turf/simulated/floor/tiled/techfloor, +/area/ship/ert/hallways_aft) +"KF" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/white, +/area/ship/ert/med_surg) +"KG" = ( +/obj/machinery/embedded_controller/radio/airlock/docking_port_multi{ + dir = 8; + id_tag = "von_braun_star"; + master_tag = "von_braun_master"; + name = "Starboard Docking Control"; + pixel_x = 22 + }, +/turf/simulated/floor/tiled/techfloor, +/area/ship/ert/dock_star) +"KK" = ( +/mob/living/simple_mob/animal/passive/mimepet, +/turf/simulated/floor/wood, +/area/ship/ert/commander) +"KM" = ( +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/floor_decal/corner/blue, +/turf/simulated/floor/tiled/techmaint, +/area/ship/ert/bridge) +"KN" = ( +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/wall/shull, +/area/ship/ert/barracks) +"KO" = ( +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/techmaint, +/area/ship/ert/dock_star) +"KS" = ( +/obj/structure/table/rack/steel, +/obj/machinery/light/no_nightshift{ + dir = 1 + }, +/obj/machinery/firealarm/alarms_hidden{ + pixel_y = 26 + }, +/obj/item/weapon/gun/energy/laser{ + pixel_y = 6 + }, +/obj/item/weapon/gun/energy/laser{ + pixel_y = 4 + }, +/obj/effect/floor_decal/industrial/outline/grey, +/obj/item/weapon/gun/energy/laser{ + pixel_y = 2 + }, +/obj/item/weapon/gun/energy/laser, +/obj/item/weapon/gun/energy/laser{ + pixel_y = -2 + }, +/obj/item/weapon/gun/energy/laser{ + pixel_y = -4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/ship/ert/armoury_st) +"KT" = ( +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ + dir = 8 + }, +/obj/effect/map_helper/airlock/atmos/chamber_pump, +/obj/machinery/light/no_nightshift{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor, +/area/ship/ert/dock_star) +"KW" = ( +/obj/structure/table/rack, +/obj/item/weapon/hand_tele, +/obj/item/device/perfect_tele, +/obj/item/device/binoculars, +/obj/item/device/survivalcapsule{ + pixel_x = 3 + }, +/obj/item/device/survivalcapsule{ + pixel_x = -3 + }, +/turf/simulated/floor/wood, +/area/ship/ert/commander) +"La" = ( +/obj/machinery/vending/coffee{ + prices = list() + }, +/turf/simulated/floor/tiled/techfloor, +/area/ship/ert/hallways_aft) +"Ld" = ( +/obj/structure/table/steel_reinforced, +/obj/machinery/button/remote/blast_door{ + dir = 4; + id = "braun_cells_privacy"; + name = "Privacy Shutter Controls"; + pixel_x = -24; + pixel_y = -9; + req_access = list(103) + }, +/obj/item/weapon/handcuffs, +/obj/item/weapon/handcuffs, +/obj/item/weapon/handcuffs, +/obj/item/weapon/handcuffs, +/obj/item/weapon/handcuffs/legcuffs, +/obj/item/weapon/handcuffs/legcuffs, +/obj/item/weapon/handcuffs/legcuffs, +/obj/item/weapon/handcuffs/legcuffs, +/obj/machinery/firealarm/alarms_hidden{ + dir = 8; + pixel_x = -26; + pixel_y = 5 + }, +/turf/simulated/floor/tiled/techfloor, +/area/ship/ert/brig) +"Lh" = ( +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/structure/cable/yellow{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/tiled/techmaint, +/area/ship/ert/med) +"Lk" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/structure/railing/grey{ + dir = 1 + }, /obj/structure/table/steel_reinforced, /turf/simulated/floor/tiled/techfloor, /area/ship/ert/bridge) -"Du" = ( -/obj/effect/floor_decal/industrial/warning{ +"Lm" = ( +/obj/structure/table/rack/steel, +/obj/item/weapon/gun/energy/ionrifle/pistol{ + pixel_y = 4 + }, +/obj/item/weapon/gun/energy/ionrifle/pistol, +/obj/item/weapon/gun/energy/ionrifle{ + pixel_y = -4 + }, +/obj/item/weapon/gun/energy/ionrifle{ + pixel_y = -8 + }, +/obj/machinery/power/apc/hyper{ + alarms_hidden = 1; + dir = 4; + name = "VB APC - East"; + pixel_x = 24 + }, +/obj/structure/cable/yellow{ + d2 = 2; + icon_state = "0-2" + }, +/obj/effect/floor_decal/industrial/outline/grey, +/turf/simulated/floor/tiled/techfloor, +/area/ship/ert/armoury_st) +"Lq" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced{ dir = 4 }, -/obj/machinery/button/remote/blast_door{ - dir = 1; - id = "ERT_Shuttle_Fore"; - name = "ERT Deployment Access"; - pixel_y = -25; - req_access = list(103) +/obj/structure/window/reinforced{ + dir = 8 }, -/turf/simulated/floor/tiled/techmaint, -/area/shuttle/ert_ship_boat) -"Dx" = ( -/obj/machinery/door/firedoor/border_only, -/obj/machinery/door/airlock/glass{ - req_one_access = list(103) +/obj/machinery/door/blast/regular/open{ + dir = 2; + id = "braun_blast_shields"; + name = "Blast Shield" }, -/obj/structure/sign/warning/airlock{ - pixel_y = 32 +/turf/simulated/floor/tiled/techfloor, +/area/ship/ert/bridge) +"LA" = ( +/obj/structure/table/rack/steel, +/obj/item/weapon/material/knife/tacknife/combatknife{ + pixel_x = -7 + }, +/obj/item/weapon/material/knife/tacknife/combatknife{ + pixel_x = -4 + }, +/obj/item/weapon/material/knife/tacknife/combatknife{ + pixel_x = -1 + }, +/obj/item/weapon/material/knife/tacknife/combatknife{ + pixel_x = 2 + }, +/obj/item/weapon/material/knife/tacknife/combatknife{ + pixel_x = 5 + }, +/obj/item/weapon/material/knife/tacknife/combatknife{ + pixel_x = 8 + }, +/obj/effect/floor_decal/industrial/outline/grey, +/turf/simulated/floor/tiled/techfloor, +/area/ship/ert/hallways) +"LB" = ( +/obj/effect/floor_decal/corner/white{ + dir = 9 }, -/turf/simulated/floor/tiled/techmaint, -/area/ship/ert/dock_port) -"DJ" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -4961,39 +8329,1537 @@ }, /turf/simulated/floor/tiled/techmaint, /area/ship/ert/med) -"DK" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 +"LC" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/techmaint, +<<<<<<< HEAD +/area/ship/ert/bridge) +"JY" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/fuel, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/techfloor, -/area/ship/ert/atmos) -"DM" = ( -/obj/structure/table/steel_reinforced, -/obj/item/weapon/storage/firstaid/surgery, -/obj/item/weapon/storage/firstaid/surgery, -/obj/item/weapon/surgical/bone_clamp, -/obj/item/weapon/surgical/bone_clamp, -/obj/item/weapon/surgical/scalpel/manager, -/obj/item/weapon/surgical/scalpel/manager, -/obj/item/weapon/surgical/circular_saw/manager, -/obj/item/weapon/surgical/circular_saw/manager, -/obj/item/stack/nanopaste, -/obj/item/stack/nanopaste, +/area/ship/ert/engine) +"JZ" = ( +/obj/structure/table/rack/steel, +/obj/item/weapon/gun/projectile/heavysniper, +/obj/item/weapon/storage/box/sniperammo, +/obj/item/weapon/storage/box/sniperammo, +/obj/effect/floor_decal/industrial/outline/grey, +/obj/machinery/alarm/alarms_hidden{ + dir = 1; + pixel_y = -26 +======= +/area/ship/ert/hangar) +"LF" = ( +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techmaint, +/area/ship/ert/armoury_dl) +"LH" = ( /turf/simulated/floor/tiled/techfloor, -/area/ship/ert/med) -"DN" = ( -/obj/machinery/atmospherics/unary/engine{ +/area/ship/ert/eng_storage) +"LI" = ( +/obj/machinery/light/no_nightshift{ + dir = 8 +>>>>>>> c55e7a1c3b... Merge pull request #14538 from KillianKirilenko/kk-vbupg + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/techmaint, +/area/ship/ert/hallways_aft) +"LJ" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/tiled/techmaint, +<<<<<<< HEAD +/area/ship/ert/teleporter) +"Kk" = ( +/obj/effect/landmark/late_antag/ert, +/obj/structure/table/bench/steel, +/turf/simulated/floor/tiled/techfloor, +/area/ship/ert/barracks) +"Kq" = ( +/obj/machinery/light/no_nightshift{ dir = 4 }, -/turf/space, +/obj/machinery/atmospherics/portables_connector/fuel{ + dir = 8 + }, +======= +/area/ship/ert/med) +"LL" = ( +/obj/machinery/alarm/alarms_hidden{ + dir = 4; + pixel_x = -26 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/ship/ert/brig) +"LM" = ( +/turf/simulated/floor/reinforced/airless, +/area/ship/ert/eng_storage) +"LP" = ( +/obj/structure/table/steel_reinforced, +/obj/machinery/chemical_dispenser/biochemistry/full, +/obj/machinery/light/no_nightshift, +/obj/item/weapon/reagent_containers/glass/beaker/large, +>>>>>>> c55e7a1c3b... Merge pull request #14538 from KillianKirilenko/kk-vbupg +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techfloor, +/area/ship/ert/med) +"LR" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning/corner, +/turf/simulated/floor/tiled/techmaint, +/area/ship/ert/hangar) +"LV" = ( +/obj/effect/floor_decal/corner/blue{ + dir = 9 + }, +/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/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/techmaint, +/area/ship/ert/hallways) +"LW" = ( +/obj/machinery/door/airlock/glass_external, +/obj/effect/map_helper/airlock/door/int_door, +/turf/simulated/floor/tiled/techfloor, +/area/ship/ert/dock_star) +"LZ" = ( +/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/catwalk_plated/techmaint, +/turf/simulated/floor/plating, +/area/ship/ert/med) +"Mb" = ( +/obj/machinery/sleeper{ + dir = 8 + }, +/obj/machinery/light/no_nightshift{ + dir = 8 + }, +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/white, +/area/ship/ert/med_surg) +"Md" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/door/blast/regular/open{ + dir = 2; + id = "braun_blast_shields"; + name = "Blast Shield" + }, +/turf/simulated/floor/tiled/techfloor, +/area/ship/ert/armoury_st) +"Me" = ( +/obj/structure/table/rack/steel, +/obj/item/device/flash{ + pixel_x = -4; + pixel_y = -4 + }, +/obj/item/device/flash{ + pixel_x = -2; + pixel_y = -2 + }, +/obj/item/device/flash, +/obj/item/device/flash{ + pixel_x = 2; + pixel_y = 2 + }, +/obj/item/device/flash{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/device/flash{ + pixel_x = 6; + pixel_y = 6 + }, +/obj/effect/floor_decal/industrial/outline/grey, +/turf/simulated/floor/tiled/techfloor, +/area/ship/ert/hallways) +"Mi" = ( +/obj/machinery/door/window/brigdoor/southleft, +/turf/simulated/floor/tiled/techfloor, +/area/ship/ert/hallways_aft) +"Mj" = ( +/obj/machinery/door/airlock/glass_medical{ + name = "Medical Bay"; + req_access = list(103) + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +<<<<<<< HEAD +/obj/structure/table/steel_reinforced, +/turf/simulated/floor/tiled/techfloor, +/area/ship/ert/bridge) +"KM" = ( +/obj/structure/bed/chair/bay/chair/padded/blue{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/ship/ert/bridge) +"KO" = ( +/obj/machinery/vending/tool, +/obj/machinery/light/no_nightshift{ + dir = 1 +======= +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/techmaint, +/area/ship/ert/med) +"Mk" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" +>>>>>>> c55e7a1c3b... Merge pull request #14538 from KillianKirilenko/kk-vbupg + }, +/turf/simulated/floor/tiled/techfloor, +/area/ship/ert/teleporter) +"Mm" = ( +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/table/steel_reinforced, +/obj/item/weapon/melee/baton/loaded, +/obj/item/weapon/melee/baton/loaded, +/obj/item/weapon/cell/device/weapon, +/obj/item/weapon/cell/device/weapon, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/tiled/techfloor, +/area/ship/ert/brig) +"Mq" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/techmaint, +/area/shuttle/ert_ship_boat) +"Mr" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/machinery/portable_atmospherics/powered/pump/filled, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/ship/ert/hangar) +"Mt" = ( +/obj/structure/table/rack/steel, +/obj/item/weapon/gun/projectile/automatic/pdw{ + pixel_y = 6 + }, +/obj/item/weapon/gun/projectile/automatic/pdw{ + pixel_y = 4 + }, +/obj/item/weapon/gun/projectile/automatic/pdw{ + pixel_y = 2 + }, +/obj/item/weapon/gun/projectile/automatic/pdw, +/obj/item/weapon/gun/projectile/automatic/pdw{ + pixel_y = -2 + }, +/obj/item/weapon/gun/projectile/automatic/pdw{ + pixel_y = -4 + }, +/obj/item/ammo_magazine/m9mml{ + pixel_x = 10 + }, +/obj/item/ammo_magazine/m9mml{ + pixel_x = 8 + }, +/obj/item/ammo_magazine/m9mml{ + pixel_x = 6 + }, +/obj/item/ammo_magazine/m9mml{ + pixel_x = 4 + }, +/obj/item/ammo_magazine/m9mml{ + pixel_x = 2 + }, +/obj/item/ammo_magazine/m9mml, +/obj/item/ammo_magazine/m9mml{ + pixel_x = -2 + }, +/obj/item/ammo_magazine/m9mml{ + pixel_x = -4 + }, +/obj/item/ammo_magazine/m9mml{ + pixel_x = -6 + }, +/obj/item/ammo_magazine/m9mml{ + pixel_x = -8 + }, +/obj/item/ammo_magazine/m9mml{ + pixel_x = -10 + }, +/obj/item/ammo_magazine/m9mml{ + pixel_x = -12 + }, +/obj/effect/floor_decal/industrial/outline/grey, +/turf/simulated/floor/tiled/techfloor, +/area/ship/ert/armoury_st) +"Mx" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/machinery/portable_atmospherics/powered/scrubber, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/ship/ert/hangar) +"My" = ( +/obj/effect/floor_decal/industrial/warning, +/obj/machinery/space_heater, +/obj/machinery/light/no_nightshift{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/ship/ert/hangar) +"MC" = ( +/obj/effect/floor_decal/industrial/warning, +/obj/machinery/pipedispenser/orderable, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/ship/ert/hangar) +"MD" = ( +/obj/structure/table/rack/steel, +/obj/item/weapon/gun/energy/gun/martin{ + battery_lock = 0 + }, +/obj/item/weapon/gun/energy/gun/martin{ + battery_lock = 0 + }, +/obj/item/weapon/gun/energy/gun/martin{ + battery_lock = 0 + }, +/obj/item/weapon/gun/energy/gun/martin{ + battery_lock = 0 + }, +/obj/item/weapon/gun/energy/gun/martin{ + battery_lock = 0 + }, +/obj/item/weapon/gun/energy/gun/martin{ + battery_lock = 0 + }, +/obj/effect/floor_decal/industrial/outline/grey, +/obj/item/weapon/gun/energy/locked/frontier/holdout/unlocked, +/obj/item/weapon/gun/energy/locked/frontier/holdout/unlocked, +/obj/item/weapon/gun/energy/locked/frontier/holdout/unlocked, +/obj/item/weapon/gun/energy/locked/frontier/holdout/unlocked, +/obj/item/weapon/gun/energy/locked/frontier/holdout/unlocked, +/obj/item/weapon/gun/energy/locked/frontier/holdout/unlocked, +/obj/item/weapon/gun/energy/locked/frontier/holdout/unlocked{ + pixel_y = 6 + }, +/obj/item/weapon/gun/energy/locked/frontier/holdout/unlocked{ + pixel_y = 4 + }, +/obj/item/weapon/gun/energy/locked/frontier/holdout/unlocked{ + pixel_y = 2 + }, +/obj/item/weapon/gun/energy/locked/frontier/holdout/unlocked, +/obj/item/weapon/gun/energy/locked/frontier/holdout/unlocked{ + pixel_y = -2 + }, +/obj/item/weapon/gun/energy/locked/frontier/holdout/unlocked{ + pixel_y = -4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/ship/ert/armoury_st) +<<<<<<< HEAD +"LA" = ( +/obj/structure/table/rack/steel, +<<<<<<< HEAD +/obj/item/weapon/storage/box/shotgunshells/large, +/obj/item/weapon/storage/box/shotgunshells/large, +/obj/item/weapon/storage/box/shotgunammo/large, +/obj/item/weapon/storage/box/shotgunammo/large, +/obj/item/weapon/storage/box/empshells/large, +/obj/item/weapon/storage/box/flashshells/large, +/obj/item/weapon/storage/box/beanbags/large, +/obj/item/weapon/storage/box/beanbags/large, +/obj/item/weapon/storage/box/stunshells/large, +======= +/obj/item/ammo_magazine/ammo_box/b12g/pellet, +/obj/item/ammo_magazine/ammo_box/b12g/pellet, +/obj/item/ammo_magazine/ammo_box/b12g, +/obj/item/ammo_magazine/ammo_box/b12g, +/obj/item/ammo_magazine/ammo_box/b12g/emp, +/obj/item/ammo_magazine/ammo_box/b12g/flash, +/obj/item/ammo_magazine/ammo_box/b12g/beanbag, +/obj/item/ammo_magazine/ammo_box/b12g/beanbag, +/obj/item/ammo_magazine/ammo_box/b12g/stunshell, +>>>>>>> aa6720eacd... Merge pull request #13898 from KillianKirilenko/kk-talontweaks +/obj/effect/floor_decal/industrial/outline/grey, +/obj/item/weapon/gun/projectile/shotgun/pump/combat{ + pixel_y = 3 + }, +/obj/item/weapon/gun/projectile/shotgun/pump/combat{ + pixel_y = -3 +======= +"MK" = ( +/obj/machinery/light/no_nightshift{ + dir = 8 +>>>>>>> c55e7a1c3b... Merge pull request #14538 from KillianKirilenko/kk-vbupg + }, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techfloor, /area/ship/ert/engine) -"DQ" = ( +"ML" = ( +/obj/effect/floor_decal/industrial/warning, +/obj/machinery/pipedispenser/disposal/orderable, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/ship/ert/hangar) +"MQ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/structure/cable/yellow{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +<<<<<<< HEAD +/turf/simulated/floor/tiled/white, +======= +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/techmaint, +/area/ship/ert/eng_storage) +"MT" = ( +/obj/effect/floor_decal/corner/red{ + dir = 1 + }, +/obj/structure/reagent_dispensers/watertank/high, +/obj/effect/floor_decal/industrial/outline/blue, +/turf/simulated/floor/tiled/techmaint, +/area/ship/ert/hangar) +"MX" = ( +/obj/machinery/flasher, +/turf/simulated/floor/tiled/techfloor/grid, +/area/ship/ert/brig) +"MZ" = ( +/turf/simulated/wall/rshull, +>>>>>>> c55e7a1c3b... Merge pull request #14538 from KillianKirilenko/kk-vbupg +/area/ship/ert/med_surg) +"Nb" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/table/steel_reinforced, +/obj/fiftyspawner/uranium, +/obj/fiftyspawner/uranium, +/turf/simulated/floor/tiled/techfloor, +/area/ship/ert/engineering) +"Nd" = ( +/obj/structure/table/rack/steel, +/obj/effect/floor_decal/industrial/outline, +/obj/item/weapon/hand_labeler, +/turf/simulated/floor/tiled/techfloor, +/area/ship/ert/med) +"Nf" = ( +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/turf/simulated/floor/tiled/techmaint, +/area/ship/ert/armoury_st) +"Ng" = ( +/obj/machinery/door/blast/regular/open{ + id = "ERT_Shuttle_Rear"; + name = "Boarding Hatch" + }, +/obj/machinery/button/remote/blast_door{ + id = "ERT_Shuttle_Rear"; + name = "ERT Shuttle Access"; + pixel_y = 24; + req_access = list(103) + }, +/turf/simulated/floor/tiled/techmaint, +/area/shuttle/ert_ship_boat) +"Nh" = ( +/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/manifold/hidden/supply{ + dir = 1 + }, +<<<<<<< HEAD +/turf/simulated/floor/tiled/white, +/area/ship/ert/med_surg) +"LR" = ( +/obj/machinery/door/airlock/external, +/obj/effect/map_helper/airlock/door/ext_door, +/turf/simulated/floor/tiled/techfloor, +/area/ship/ert/dock_port) +"LV" = ( +/obj/structure/table/steel_reinforced, +======= +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/turf/simulated/floor/tiled/techmaint, +/area/ship/ert/brig) +"Nk" = ( +/obj/effect/floor_decal/industrial/warning, /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 8 }, +/obj/machinery/firealarm/alarms_hidden{ + pixel_y = 26 + }, +/turf/simulated/floor/tiled/techmaint, +/area/ship/ert/hangar) +"Np" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/fuel, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/cable/yellow{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +>>>>>>> c55e7a1c3b... Merge pull request #14538 from KillianKirilenko/kk-vbupg +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/catwalk_plated/techfloor, +/turf/simulated/floor/plating, +/area/ship/ert/engine) +"Nq" = ( +/obj/machinery/door/airlock/glass_engineering{ + name = "RIG Bay & ORB Access"; + req_access = list(103) + }, +/turf/simulated/floor/tiled/techmaint, +/area/ship/ert/mech_bay) +"Nu" = ( +/obj/machinery/light/no_nightshift{ + dir = 1 + }, +/obj/structure/sign/vacuum{ + pixel_y = 32 + }, +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/tiled/techmaint, +/area/ship/ert/hangar) +"NH" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +<<<<<<< HEAD +======= +/obj/machinery/atmospherics/binary/pump/fuel/on, +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/techfloor, +/area/ship/ert/engine) +"NJ" = ( +/obj/machinery/body_scanconsole, +>>>>>>> c55e7a1c3b... Merge pull request #14538 from KillianKirilenko/kk-vbupg +/turf/simulated/floor/tiled/white, +/area/ship/ert/med_surg) +"NN" = ( +/obj/machinery/computer/operating{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/ship/ert/med_surg) +"NP" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/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/tiled/techfloor, +<<<<<<< HEAD +/area/ship/ert/armoury_st) +"Me" = ( +/obj/structure/table/rack/steel, +<<<<<<< HEAD +/obj/item/weapon/storage/box/shotgunshells/large, +/obj/item/weapon/storage/box/shotgunshells/large, +/obj/item/weapon/storage/box/shotgunammo/large, +/obj/item/weapon/storage/box/shotgunammo/large, +/obj/item/weapon/storage/box/empshells/large, +/obj/item/weapon/storage/box/flashshells/large, +/obj/item/weapon/storage/box/beanbags/large, +/obj/item/weapon/storage/box/beanbags/large, +/obj/item/weapon/storage/box/stunshells/large, +======= +/obj/item/ammo_magazine/ammo_box/b12g/pellet, +/obj/item/ammo_magazine/ammo_box/b12g/pellet, +/obj/item/ammo_magazine/ammo_box/b12g, +/obj/item/ammo_magazine/ammo_box/b12g, +/obj/item/ammo_magazine/ammo_box/b12g/emp, +/obj/item/ammo_magazine/ammo_box/b12g/flash, +/obj/item/ammo_magazine/ammo_box/b12g/beanbag, +/obj/item/ammo_magazine/ammo_box/b12g/beanbag, +/obj/item/ammo_magazine/ammo_box/b12g/stunshell, +>>>>>>> aa6720eacd... Merge pull request #13898 from KillianKirilenko/kk-talontweaks +/obj/effect/floor_decal/industrial/outline/grey, +/obj/item/weapon/gun/projectile/automatic/as24{ + pixel_y = 3 +======= +/area/ship/ert/engine) +"NR" = ( +/obj/structure/cable/yellow{ + d1 = 2; + d2 = 4; + icon_state = "2-4" +>>>>>>> c55e7a1c3b... Merge pull request #14538 from KillianKirilenko/kk-vbupg + }, +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, +/obj/structure/cable/yellow{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/effect/catwalk_plated/techmaint, +/turf/simulated/floor/plating, +/area/ship/ert/engineering) +"NU" = ( +/obj/effect/floor_decal/corner/yellow{ + dir = 10 + }, +/obj/effect/floor_decal/corner/blue{ + dir = 1 + }, +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/light/no_nightshift{ + dir = 8 + }, +/turf/simulated/floor/tiled/techmaint, +/area/ship/ert/hallways) +"NY" = ( +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/light/no_nightshift, +/turf/simulated/floor/tiled/techmaint, +/area/ship/ert/hallways_aft) +"NZ" = ( +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +<<<<<<< HEAD +/area/shuttle/ert_ship_boat) +"Nk" = ( +/obj/machinery/pointdefense{ + id_tag = "vonbraun_pd" + }, +/obj/machinery/light/no_nightshift{ + dir = 4 + }, +/turf/simulated/floor/reinforced/airless, +/area/ship/ert/engine) +"Np" = ( +/obj/machinery/light/no_nightshift{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor, +/area/ship/ert/engine) +"Nq" = ( +/obj/structure/cable/yellow{ + d2 = 2; + icon_state = "0-2" + }, +/obj/machinery/power/apc/hyper{ + alarms_hidden = 1; + dir = 8; + name = "VB APC - West"; + pixel_x = -24 + }, +/turf/simulated/floor/tiled/techfloor, +/area/ship/ert/gunnery) +"Nu" = ( +/obj/structure/hull_corner/long_horiz{ +======= +/area/ship/ert/engineering) +"Oa" = ( +/obj/effect/floor_decal/corner/yellow{ + dir = 9 + }, +/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/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, +/obj/effect/floor_decal/corner/red{ +>>>>>>> c55e7a1c3b... Merge pull request #14538 from KillianKirilenko/kk-vbupg + dir = 6 + }, +/turf/simulated/floor/tiled/techmaint, +/area/ship/ert/hallways_aft) +"Of" = ( +/turf/simulated/wall/rshull, +/area/ship/ert/hangar) +<<<<<<< HEAD +"NH" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/fuel, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +<<<<<<< HEAD +/obj/effect/catwalk_plated/dark, +======= +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/cable/yellow{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +======= +"Og" = ( +>>>>>>> c55e7a1c3b... Merge pull request #14538 from KillianKirilenko/kk-vbupg +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +<<<<<<< HEAD +/obj/effect/catwalk_plated/techfloor, +>>>>>>> aa6720eacd... Merge pull request #13898 from KillianKirilenko/kk-talontweaks +/turf/simulated/floor/plating, +/area/ship/ert/engine) +"NI" = ( +/obj/structure/table/rack, +/obj/item/weapon/storage/secure/briefcase/nsfw_pack_hybrid, +/obj/item/weapon/storage/belt/explorer/pathfinder, +/obj/item/weapon/storage/belt/explorer/pathfinder{ + name = "ERT belt" + }, +/turf/simulated/floor/wood, +/area/ship/ert/commander) +"NJ" = ( +/obj/machinery/optable, +/turf/simulated/floor/tiled/white, +/area/ship/ert/med_surg) +"NP" = ( +======= +>>>>>>> c55e7a1c3b... Merge pull request #14538 from KillianKirilenko/kk-vbupg +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +<<<<<<< HEAD +/obj/machinery/atmospherics/binary/pump/fuel/on, +/turf/simulated/floor/tiled/techfloor, +/area/ship/ert/engine) +"NR" = ( +/obj/machinery/light/no_nightshift, +======= +/obj/machinery/door/firedoor/border_only, +/obj/machinery/door/airlock/glass_security{ + name = "Prisoner Containment"; + req_one_access = list(103) + }, +/turf/simulated/floor/tiled/techmaint, +/area/ship/ert/brig) +"Oh" = ( +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +>>>>>>> c55e7a1c3b... Merge pull request #14538 from KillianKirilenko/kk-vbupg +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/ship/ert/brig) +"Oi" = ( +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/ship/ert/bridge) +"Ok" = ( +/obj/effect/floor_decal/industrial/warning, +/obj/machinery/space_heater, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/ship/ert/hangar) +"Om" = ( +/turf/simulated/floor/reinforced/airless, +/area/ship/ert/mech_bay) +"On" = ( +/turf/simulated/floor/tiled/techmaint, +/area/ship/ert/armoury_dl) +"Oq" = ( +/obj/machinery/firealarm/alarms_hidden{ + dir = 1; + pixel_y = -26 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/ship/ert/hallways_aft) +"Ox" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/techfloor, +/area/ship/ert/engineering) +"Oy" = ( +/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/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +<<<<<<< HEAD +/turf/simulated/floor/tiled/techfloor, +/area/ship/ert/engine) +"Og" = ( +======= +/turf/simulated/floor/tiled/techmaint, +/area/ship/ert/brig) +"OA" = ( +/turf/simulated/floor/tiled/techmaint, +/area/ship/ert/med) +"OB" = ( +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/techmaint, +/area/ship/ert/hallways) +"OE" = ( +/turf/simulated/floor/reinforced/airless, +/area/ship/ert/hangar) +"OF" = ( +>>>>>>> c55e7a1c3b... Merge pull request #14538 from KillianKirilenko/kk-vbupg +/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/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, +<<<<<<< HEAD +======= +/obj/effect/catwalk_plated/techmaint, +/turf/simulated/floor/plating, +/area/ship/ert/hallways_aft) +"OG" = ( +/obj/machinery/shield_gen, +/obj/effect/floor_decal/industrial/outline/blue, +/turf/simulated/floor/tiled/techfloor, +/area/ship/ert/eng_storage) +"OH" = ( +/obj/structure/cable/yellow, +/obj/machinery/power/smes/buildable/point_of_interest, +/turf/simulated/floor/tiled/techfloor, +/area/ship/ert/engineering) +"OM" = ( +/obj/structure/sign/nosmoking_1, +/turf/simulated/wall/rshull, +/area/ship/ert/engine) +"ON" = ( +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +>>>>>>> c55e7a1c3b... Merge pull request #14538 from KillianKirilenko/kk-vbupg +/turf/simulated/floor/tiled/techmaint, +/area/ship/ert/mech_bay) +"OO" = ( +/obj/structure/sign/department/cargo{ + name = "ENGINEERING SUPPLIES" + }, +/turf/simulated/wall/rshull, +/area/ship/ert/bridge) +"OR" = ( +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/bed/chair/bay/chair/padded/blue, +/turf/simulated/floor/tiled/techmaint, +/area/ship/ert/bridge) +"OS" = ( +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +<<<<<<< HEAD +/turf/simulated/floor/tiled/techmaint, +/area/ship/ert/bridge) +"Ok" = ( +/obj/effect/floor_decal/industrial/warning, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/embedded_controller/radio/simple_docking_controller{ + id_tag = "ert_boarding_shuttle_dock"; + pixel_y = 22 + }, +/turf/simulated/floor/tiled/techmaint, +/area/ship/ert/hangar) +"Om" = ( +/obj/machinery/pointdefense{ + id_tag = "vonbraun_pd" + }, +/turf/simulated/floor/reinforced/airless, +/area/ship/ert/gunnery) +"On" = ( +/turf/simulated/floor/tiled/techmaint, +/area/ship/ert/armoury_dl) +"Oq" = ( +/obj/machinery/light/no_nightshift{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 +======= +/obj/machinery/light/no_nightshift{ + dir = 1 +>>>>>>> c55e7a1c3b... Merge pull request #14538 from KillianKirilenko/kk-vbupg + }, +/turf/simulated/floor/tiled/techmaint, +/area/ship/ert/hallways_aft) +"OT" = ( +/obj/item/device/multitool/station_buffered, /turf/simulated/floor/tiled/techfloor, /area/ship/ert/atmos) -"DR" = ( +"OU" = ( +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/unary/vent_pump/on, +/turf/simulated/floor/tiled/techmaint, +/area/ship/ert/dock_port) +"OV" = ( +/obj/structure/hull_corner{ + dir = 4 + }, +/turf/simulated/floor/reinforced/airless, +/area/ship/ert/dock_star) +"OW" = ( +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; +<<<<<<< HEAD + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, +/obj/effect/catwalk_plated/techmaint, +/turf/simulated/floor/plating, +/area/ship/ert/bridge) +"OE" = ( +======= + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/door/firedoor/border_only, +/obj/machinery/door/airlock/glass{ + req_one_access = list(103) + }, +/turf/simulated/floor/tiled/techmaint, +/area/ship/ert/bridge) +"OX" = ( +>>>>>>> c55e7a1c3b... Merge pull request #14538 from KillianKirilenko/kk-vbupg +/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/manifold4w/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, +/obj/effect/catwalk_plated/techmaint, +/turf/simulated/floor/plating, +/area/ship/ert/bridge) +"OY" = ( +/obj/structure/grille, +/obj/structure/window/titanium/full, +/obj/structure/window/titanium, +/obj/structure/window/titanium{ + dir = 1 + }, +/obj/structure/window/titanium{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/obj/effect/floor_decal/techfloor{ + dir = 8 + }, +/turf/simulated/floor/tiled/techmaint, +/area/ship/ert/brig) +"OZ" = ( +/obj/structure/table/rack/steel, +/obj/item/weapon/reagent_containers/hypospray{ + pixel_x = 6 + }, +/obj/item/weapon/reagent_containers/hypospray{ + pixel_x = 3 + }, +/obj/item/weapon/reagent_containers/hypospray, +/obj/item/weapon/reagent_containers/hypospray{ + pixel_x = -3 + }, +/obj/machinery/alarm/alarms_hidden{ + pixel_y = 26 + }, +/obj/effect/floor_decal/industrial/outline, +/obj/item/weapon/reagent_containers/hypospray{ + pixel_x = -6 + }, +/obj/item/weapon/reagent_containers/hypospray{ + pixel_x = -9 + }, +/turf/simulated/floor/tiled/techfloor, +/area/ship/ert/med) +"Pc" = ( +/obj/structure/table/rack, +/obj/item/ammo_magazine/m44{ + pixel_x = -3 + }, +/obj/item/ammo_magazine/m44{ + pixel_x = 3 + }, +/obj/item/weapon/gun/projectile/deagle, +/turf/simulated/floor/wood, +/area/ship/ert/commander) +"Pe" = ( +/obj/structure/table/rack/steel, +/obj/item/weapon/storage/box/emps{ + pixel_x = -2; + pixel_y = -2 + }, +/obj/item/weapon/storage/box/emps{ + pixel_x = 2; + pixel_y = 2 + }, +/obj/effect/floor_decal/industrial/outline/grey, +/turf/simulated/floor/tiled/techfloor, +/area/ship/ert/armoury_dl) +"Ph" = ( +/obj/item/device/healthanalyzer/phasic{ + pixel_x = 2; + pixel_y = 2 + }, +/obj/item/device/healthanalyzer/phasic, +/obj/item/device/healthanalyzer/phasic{ + pixel_x = -2; + pixel_y = -2 + }, +/obj/structure/table/rack/steel, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/outline, +/turf/simulated/floor/tiled/techfloor, +/area/ship/ert/med) +"Pj" = ( +/obj/machinery/light/no_nightshift{ + dir = 4 + }, +/obj/effect/floor_decal/corner/yellow{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/floor_decal/corner/red, +/turf/simulated/floor/tiled/techmaint, +/area/ship/ert/hallways_aft) +"Pl" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/machinery/door/blast/regular{ + closed_layer = 4; + dir = 4; + id = "NRV_DELTA"; + layer = 4 + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor/tiled/techfloor, +/area/ship/ert/armoury_dl) +"Pn" = ( +/obj/machinery/atmospherics/unary/vent_pump/on, +/turf/simulated/floor/wood, +/area/ship/ert/commander) +"Pq" = ( +/turf/simulated/floor/tiled/techfloor, +/area/ship/ert/med) +"Pw" = ( +/obj/machinery/light/no_nightshift, +/turf/simulated/floor/reinforced/airless, +/area/ship/ert/atmos) +<<<<<<< HEAD +======= +"Px" = ( +/obj/structure/table/rack/steel, +/obj/effect/floor_decal/industrial/outline/grey, +/obj/item/clothing/mask/gas{ + pixel_x = -4; + pixel_y = -4 + }, +/obj/item/clothing/mask/gas{ + pixel_x = -2; + pixel_y = -2 + }, +/obj/item/clothing/mask/gas, +/obj/item/clothing/mask/gas{ + pixel_x = 2; + pixel_y = 2 + }, +/obj/item/clothing/mask/gas{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/clothing/mask/gas{ + pixel_x = 6; + pixel_y = 6 + }, +/obj/item/clothing/mask/gas/half, +/obj/item/clothing/mask/gas/half, +/obj/item/clothing/mask/gas/half, +/obj/item/clothing/mask/gas/half, +/obj/item/clothing/mask/gas/half, +/obj/item/clothing/mask/gas/half, +/turf/simulated/floor/tiled/techfloor, +/area/ship/ert/barracks) +>>>>>>> c55e7a1c3b... Merge pull request #14538 from KillianKirilenko/kk-vbupg +"Py" = ( +/obj/machinery/light/no_nightshift{ + dir = 1 + }, +/turf/simulated/floor/reinforced/airless, +/area/ship/ert/med) +"PA" = ( +/obj/structure/bed/chair/bay/chair/padded/blue, +/turf/simulated/floor/tiled/techfloor, +/area/ship/ert/med) +"PC" = ( +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/yellow{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/effect/catwalk_plated/techmaint, +/turf/simulated/floor/plating, +/area/ship/ert/hallways) +"PD" = ( +/obj/structure/table/steel_reinforced, +/obj/item/weapon/storage/firstaid/toxin{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/weapon/storage/firstaid/toxin{ + pixel_x = 2; + pixel_y = 2 + }, +/obj/item/weapon/storage/firstaid/o2, +/obj/item/weapon/storage/firstaid/o2{ + pixel_x = -2; + pixel_y = -2 + }, +/obj/machinery/light/no_nightshift{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor, +/area/ship/ert/med) +"PE" = ( +/turf/simulated/floor/tiled/techmaint, +/area/ship/ert/eng_storage) +"PG" = ( +/obj/effect/floor_decal/corner/white{ + dir = 6 + }, +/turf/simulated/floor/tiled/techmaint, +/area/ship/ert/med) +"PH" = ( +/obj/machinery/pointdefense_control{ + id_tag = "vonbraun_pd" + }, +/obj/machinery/light/no_nightshift{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor, +/area/ship/ert/bridge) +"PO" = ( +/obj/machinery/power/pointdefense{ + id_tag = "vonbraun_pd" + }, +/obj/structure/cable/yellow{ + d2 = 2; + icon_state = "0-2" + }, +/turf/simulated/floor/reinforced/airless, +/area/ship/ert/mech_bay) +"PP" = ( +/obj/structure/hull_corner/long_horiz{ + dir = 5 + }, +/turf/simulated/floor/reinforced/airless, +/area/ship/ert/engineering) +"Qb" = ( +/obj/machinery/light/no_nightshift{ + dir = 8 + }, +/obj/structure/cable/yellow{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/tiled/techfloor, +/area/ship/ert/teleporter) +"Qc" = ( +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/door/airlock/glass_security{ + name = "Armoury"; + req_one_access = list(103) + }, +/turf/simulated/floor/tiled/techmaint, +/area/ship/ert/armoury_st) +"Qd" = ( +/obj/machinery/light_switch{ + dir = 4; + pixel_x = -23 + }, +/turf/simulated/floor/tiled/techfloor, +/area/ship/ert/bridge) +"Qz" = ( +/obj/machinery/atmospherics/pipe/manifold/visible{ + dir = 1 + }, +/turf/simulated/wall/shull, +/area/ship/ert/dock_star) +"QE" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced, +/obj/machinery/door/blast/regular/open{ + dir = 4; + id = "ERT_Blast_Windows"; + name = "Blast Shield" + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/ert_ship_boat) +"QF" = ( +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/turf/simulated/floor/tiled/techmaint, +/area/ship/ert/teleporter) +<<<<<<< HEAD +"PZ" = ( +/obj/structure/table/bench/steel, +/obj/effect/landmark{ + name = "Commando" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/space) +"Qc" = ( +======= +"QP" = ( +/turf/simulated/wall/rshull, +/area/ship/ert/armoury_dl) +"QR" = ( +>>>>>>> c55e7a1c3b... Merge pull request #14538 from KillianKirilenko/kk-vbupg +/obj/machinery/power/apc/hyper{ + alarms_hidden = 1; + dir = 8; + name = "VB APC - West"; + pixel_x = -24 + }, +/obj/structure/cable/yellow{ + d2 = 2; + icon_state = "0-2" + }, +/obj/machinery/light/no_nightshift{ + dir = 8 + }, +/turf/simulated/floor/tiled/techmaint, +/area/ship/ert/hangar) +"QT" = ( /obj/structure/table/rack/steel, /obj/item/weapon/extinguisher/mini, /obj/item/weapon/extinguisher/mini, @@ -5016,79 +9882,147 @@ /obj/item/weapon/extinguisher/mini, /turf/simulated/floor/tiled/techfloor, /area/ship/ert/med) -"DS" = ( -/turf/simulated/wall/rshull, +"QU" = ( +/obj/structure/ship_munition/disperser_charge/emp, +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/reinforced, /area/ship/ert/hallways_aft) -"Ed" = ( -/obj/machinery/light/no_nightshift{ - dir = 4 +"QV" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced, +/obj/machinery/door/blast/regular/open{ + dir = 8; + id = "ERT_Blast_Windows"; + name = "Blast Shield" }, -/obj/effect/floor_decal/corner/yellow{ +/obj/structure/window/reinforced{ dir = 1 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/sign/warning/engineering_access{ - pixel_x = -32 +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/ert_ship_boat) +"QZ" = ( +/turf/simulated/floor/tiled/techfloor, +/area/ship/ert/engine) +"Rc" = ( +/obj/machinery/door/blast/regular/open{ + id = "ERT_Shuttle_Rear"; + name = "Boarding Hatch" }, /turf/simulated/floor/tiled/techmaint, -/area/ship/ert/hallways_aft) -"Ee" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/effect/floor_decal/corner/white{ - dir = 8 - }, -/obj/machinery/portable_atmospherics/powered/pump/filled, -/obj/machinery/light/no_nightshift, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/techmaint, -/area/ship/ert/hangar) -"Eh" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/wood, -/area/ship/ert/commander) -"Eo" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, +/area/shuttle/ert_ship_boat) +"Rd" = ( +/obj/machinery/porta_turret/stationary/CIWS, +/turf/simulated/floor/reinforced/airless, +/area/ship/ert/engineering) +"Rh" = ( /obj/structure/cable/yellow{ d1 = 4; d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled/techmaint, -/area/ship/ert/eng_storage) -"Eq" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 +/area/ship/ert/armoury_st) +"Rt" = ( +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 8; + icon_state = "1-8" }, /turf/simulated/floor/tiled/techmaint, -/area/shuttle/ert_ship_boat) -"EA" = ( -/obj/structure/table/woodentable, -/obj/item/weapon/storage/box/trackimp, -/obj/item/weapon/storage/box/cdeathalarm_kit, -/obj/item/weapon/stamp/centcomm, +/area/ship/ert/armoury_st) +"Rv" = ( +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techmaint, +/area/ship/ert/med) +"Rw" = ( +/obj/effect/landmark/late_antag/ert, +/obj/structure/table/bench/steel, +/turf/simulated/floor/tiled/techfloor, +/area/ship/ert/barracks) +"Rz" = ( +/obj/item/modular_computer/console/preset/engineering{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor, +/area/ship/ert/bridge) +"RB" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/fuel, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +<<<<<<< HEAD +======= /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/wood, -/area/ship/ert/commander) -"EB" = ( +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +>>>>>>> c55e7a1c3b... Merge pull request #14538 from KillianKirilenko/kk-vbupg +/turf/simulated/floor/tiled/techfloor, +/area/ship/ert/engine) +"RC" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + dir = 9 + }, +/turf/simulated/floor/tiled/techfloor, +/area/ship/ert/engine) +"RJ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + dir = 9 + }, +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techfloor, +/area/ship/ert/engine) +"RN" = ( +/obj/structure/sign/department/medbay, +/turf/simulated/wall/shull, +/area/ship/ert/med_surg) +"RQ" = ( +/obj/effect/floor_decal/corner/red{ + dir = 8 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/ship/ert/hangar) +"RU" = ( +/obj/machinery/light/no_nightshift, +/turf/simulated/floor/reinforced/airless, +/area/ship/ert/med_surg) +"RV" = ( +/obj/effect/floor_decal/corner/blue{ + dir = 1 + }, +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/techmaint, +/area/ship/ert/hallways) +"RW" = ( +/obj/machinery/light/no_nightshift{ + dir = 1 + }, +/turf/simulated/floor/reinforced/airless, +/area/ship/ert/hallways_aft) +"RX" = ( /obj/effect/floor_decal/corner/white, /obj/machinery/portable_atmospherics/canister/air, /obj/machinery/firealarm/alarms_hidden{ @@ -5102,208 +10036,301 @@ /obj/effect/floor_decal/industrial/outline, /turf/simulated/floor/tiled/techmaint, /area/ship/ert/hangar) -"EC" = ( -/obj/structure/bed/chair/comfy/black{ - dir = 8 - }, -/obj/machinery/light/no_nightshift{ - dir = 4 - }, -/turf/simulated/floor/wood, -/area/ship/ert/commander) -"ED" = ( -/obj/item/modular_computer/console/preset/ert{ - dir = 4 - }, -/obj/machinery/light/no_nightshift{ - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor, -/area/ship/ert/bridge) -"EG" = ( -/obj/structure/bed/chair/bay/shuttle{ +"Sc" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 1 }, -/obj/machinery/light/no_nightshift{ +/turf/simulated/floor/tiled/techfloor, +/area/ship/ert/engineering) +"Se" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, -/turf/simulated/floor/tiled/techfloor, -/area/shuttle/ert_ship_boat) -"EP" = ( -/obj/structure/closet/crate/medical, -/obj/item/weapon/storage/box/autoinjectors, -/obj/item/weapon/storage/box/beakers, -/obj/item/weapon/storage/box/bodybags, -/obj/item/weapon/storage/box/bodybags{ - pixel_x = 2; - pixel_y = 2 +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 }, -/obj/item/weapon/storage/box/gloves, -/obj/item/weapon/storage/box/freezer, -/obj/item/weapon/storage/box/masks, -/obj/effect/floor_decal/industrial/outline, -/obj/item/weapon/storage/box/bodybags, -/obj/item/weapon/storage/box/bodybags, -/turf/simulated/floor/tiled/techfloor, +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/techmaint, /area/ship/ert/med) -"Fd" = ( -/obj/machinery/light/no_nightshift{ - dir = 1 - }, -/turf/simulated/floor/reinforced/airless, -/area/ship/ert/med) -"Ff" = ( -/obj/machinery/light/no_nightshift, -/obj/structure/sign/vacuum{ - pixel_y = -32 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 +"Sh" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 }, /turf/simulated/floor/tiled/techmaint, /area/ship/ert/hangar) -"Fg" = ( -/obj/structure/bed/chair/bay/chair/padded/blue{ +"Si" = ( +/obj/structure/table/steel_reinforced, +/obj/machinery/recharger, +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/tiled/techmaint, +/area/ship/ert/armoury_dl) +"Sj" = ( +/turf/simulated/wall/rshull, +/area/ship/ert/teleporter) +"Sl" = ( +/obj/structure/sign/department/telecoms{ + name = "TELEPORTER" + }, +/turf/simulated/wall/rshull, +/area/ship/ert/teleporter) +"Sn" = ( +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/airlock/glass_security{ + name = "Delta Armoury"; + req_one_access = list(103) + }, +/obj/machinery/door/blast/regular{ + closed_layer = 4; + id = "NRV_DELTA"; + layer = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/ship/ert/armoury_dl) +"Sp" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/turf/simulated/floor/tiled/techmaint, +/area/ship/ert/med) +"Sr" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/turf/simulated/floor/reinforced, +/area/ship/ert/hangar) +"St" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ dir = 8 }, +/obj/structure/railing/grey, +/obj/structure/table/steel_reinforced, +/turf/simulated/floor/tiled/techfloor, +/area/ship/ert/bridge) +"Sx" = ( +/obj/structure/bed/chair/bay/chair/padded/blue{ + dir = 4 + }, /turf/simulated/floor/tiled/techmaint, /area/ship/ert/bridge) -"Fp" = ( +"Sy" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/machinery/door/firedoor/border_only, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/door/blast/regular{ + closed_layer = 4; + id = "NRV_DELTA"; + layer = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/ship/ert/armoury_dl) +"Sz" = ( +/obj/machinery/vending/fitness{ + dir = 1; + prices = list() + }, +/turf/simulated/floor/tiled/techfloor, +/area/ship/ert/hallways_aft) +"SA" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/fans/hardlight, +/obj/machinery/door/blast/regular{ + id = "Von_Braun_Hangar"; + name = "Hangar Blast Door" + }, +/turf/simulated/floor/reinforced, +/area/ship/ert/hangar) +"SB" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/simulated/floor/reinforced/airless, +/area/ship/ert/hangar) +"SD" = ( +/obj/machinery/door/window/brigdoor/southleft{ + req_access = list(150); + req_one_access = list(150) + }, +/obj/machinery/door/firedoor/glass, +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/techfloor/grid, +/area/ship/ert/brig) +"SE" = ( /obj/structure/sign/nosmoking_1, /turf/simulated/wall/rshull, /area/ship/ert/engineering) -"Fq" = ( -/obj/structure/table/rack/steel, -/obj/item/weapon/storage/box/frags{ - pixel_x = -2; - pixel_y = -2 - }, -/obj/item/weapon/storage/box/frags{ - pixel_x = 2; - pixel_y = 2 +"SF" = ( +/obj/machinery/alarm/alarms_hidden{ + pixel_y = 26 }, +/turf/simulated/floor/tiled/techfloor, +/area/ship/ert/bridge) +"SG" = ( +/turf/simulated/wall/shull, +/area/ship/ert/dock_star) +<<<<<<< HEAD +"SA" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/power/apc/hyper{ alarms_hidden = 1; dir = 4; name = "VB APC - East"; pixel_x = 24 }, -/obj/structure/cable/yellow, -/obj/effect/floor_decal/industrial/outline/grey, -/turf/simulated/floor/tiled/techfloor, -/area/ship/ert/armoury_dl) -"Fz" = ( +/obj/structure/cable/yellow{ + d2 = 2; + icon_state = "0-2" +======= +"SI" = ( +/obj/machinery/firealarm/alarms_hidden{ + pixel_y = 26 +>>>>>>> c55e7a1c3b... Merge pull request #14538 from KillianKirilenko/kk-vbupg + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/techmaint, +/area/ship/ert/dock_star) +"SJ" = ( /obj/structure/bed/chair/bay/chair/padded/blue{ - dir = 1 + dir = 4 + }, +<<<<<<< HEAD +/turf/simulated/floor/tiled/white, +/area/ship/ert/med_surg) +"SD" = ( +/obj/structure/table/rack, +/obj/item/ammo_magazine/m44{ + pixel_x = -3 + }, +/obj/item/ammo_magazine/m44{ + pixel_x = 3 + }, +/obj/item/weapon/gun/projectile/deagle, +/turf/simulated/floor/wood, +/area/ship/ert/commander) +"SE" = ( +/obj/machinery/light/no_nightshift{ + dir = 4 +======= +/turf/simulated/floor/tiled/techfloor, +/area/ship/ert/hallways_aft) +"SM" = ( +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 8; + icon_state = "1-8" +>>>>>>> c55e7a1c3b... Merge pull request #14538 from KillianKirilenko/kk-vbupg + }, +/obj/structure/cable/yellow{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 }, /turf/simulated/floor/tiled/techmaint, -/area/ship/ert/bridge) -"FD" = ( -/turf/simulated/floor/tiled/techmaint, -/area/ship/ert/bridge) -"FF" = ( -/obj/effect/shuttle_landmark/premade/ert_ship_port, +/area/ship/ert/brig) +"SN" = ( +/obj/machinery/atmospherics/unary/vent_pump/on, +/turf/simulated/floor/tiled/techfloor, +/area/ship/ert/gunnery) +"SO" = ( +/obj/effect/floor_decal/corner/white{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/ship/ert/med) +"SV" = ( +/obj/machinery/shield_gen/external, +/obj/effect/floor_decal/corner/white, +/obj/effect/floor_decal/industrial/outline/blue, +/turf/simulated/floor/tiled/techfloor, +/area/ship/ert/eng_storage) +"SX" = ( +/obj/effect/shuttle_landmark/premade/ert_ship_star, /turf/space, /area/space) -"FJ" = ( -/obj/machinery/door/airlock/glass_command{ +"SY" = ( +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/door/firedoor/border_only, +/obj/machinery/door/airlock/glass_engineeringatmos{ + name = "Atmospherics"; req_one_access = list(103) }, -/obj/machinery/door/firedoor/border_only, /turf/simulated/floor/tiled/techmaint, -/area/ship/ert/bridge) -"FK" = ( -/obj/effect/floor_decal/corner/blue{ +/area/ship/ert/atmos) +"SZ" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/ship/ert/hangar) +"Td" = ( +/obj/effect/floor_decal/corner/yellow{ dir = 9 }, /obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; - icon_state = "1-2" + d1 = 4; + d2 = 8; + icon_state = "4-8" }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/techmaint, -/area/ship/ert/hallways) -"FM" = ( -/obj/effect/floor_decal/corner/yellow{ - dir = 10 - }, -/obj/effect/floor_decal/corner/blue{ - dir = 1 - }, -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/light/no_nightshift{ - dir = 8 - }, -/turf/simulated/floor/tiled/techmaint, -/area/ship/ert/hallways) -"FN" = ( -/obj/effect/floor_decal/corner/red{ - dir = 6 - }, -/turf/simulated/floor/tiled/techmaint, -/area/ship/ert/hallways) -"FO" = ( -/obj/machinery/light/no_nightshift{ - dir = 1 - }, -/obj/machinery/porta_turret/stationary/CIWS, -/turf/simulated/floor/reinforced/airless, -/area/ship/ert/dock_star) -"FP" = ( -/obj/structure/ship_munition/disperser_charge/explosive, -/obj/effect/floor_decal/industrial/warning{ - dir = 5 - }, -/obj/structure/railing{ +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, -/obj/structure/railing{ - dir = 1 - }, -/turf/simulated/floor/reinforced, -/area/ship/ert/gunnery) -"FQ" = ( -/obj/machinery/door/airlock/glass_security{ - req_one_access = list(103) - }, -/obj/machinery/door/firedoor/multi_tile{ - dir = 1 +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 }, /turf/simulated/floor/tiled/techmaint, -/area/ship/ert/armoury_st) -"FR" = ( -/turf/simulated/floor/tiled/techmaint, -/area/ship/ert/armoury_st) -"FT" = ( -/obj/structure/closet/crate{ - dir = 2 +/area/ship/ert/med) +"Ti" = ( +/obj/item/weapon/paper_bin{ + pixel_x = -3; + pixel_y = 8 }, -/obj/effect/floor_decal/industrial/outline/red, -/turf/simulated/floor/tiled/techmaint, -/area/ship/ert/armoury_st) -"FW" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; - icon_state = "1-2" +/obj/item/weapon/pen{ + pixel_y = 4 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/techmaint, -/area/ship/ert/hallways_aft) -"FX" = ( +/obj/machinery/firealarm/alarms_hidden{ + dir = 1; + pixel_y = -26 + }, +/obj/item/toy/figure/ert, +/obj/structure/table/hardwoodtable, +/turf/simulated/floor/wood, +/area/ship/ert/commander) +"Tl" = ( /obj/structure/table/steel_reinforced, /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 1 @@ -5438,369 +10465,57 @@ }, /turf/simulated/floor/tiled/techmaint, /area/ship/ert/armoury_st) -"FY" = ( -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/techmaint, -/area/ship/ert/armoury_dl) -"Ga" = ( -/obj/structure/table/steel_reinforced, -/obj/machinery/recharger, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/turf/simulated/floor/tiled/techmaint, -/area/ship/ert/armoury_st) -"Gl" = ( -/obj/structure/table/rack/steel, -/obj/effect/floor_decal/industrial/outline/grey, -/obj/item/weapon/gun/projectile/automatic/z8{ - pixel_y = -3 - }, -/obj/item/weapon/gun/projectile/automatic/z8{ - pixel_y = 3 - }, -/obj/item/ammo_magazine/m762, -/obj/item/ammo_magazine/m762, -/obj/item/ammo_magazine/m762, -/obj/item/ammo_magazine/m762, -/obj/item/ammo_magazine/m762, -/obj/item/ammo_magazine/m762, -/obj/item/ammo_magazine/m762, -/obj/item/ammo_magazine/m762, -/obj/item/ammo_magazine/m762/ap, -/obj/item/ammo_magazine/m762/ap, -/obj/item/ammo_magazine/m762/ap, -/obj/item/ammo_magazine/m762/ap, -/turf/simulated/floor/tiled/techfloor, -/area/ship/ert/armoury_dl) -"Gr" = ( -/obj/machinery/power/emitter, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/techfloor, -/area/ship/ert/eng_storage) -"Gv" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/obj/machinery/door/window/brigdoor/southleft, -/turf/simulated/floor/tiled/techfloor, -/area/ship/ert/hallways_aft) -"Gw" = ( -/obj/structure/closet/wardrobe/ert, -/obj/item/modular_computer/tablet/preset/custom_loadout/elite, -/obj/item/weapon/storage/box/survival/comp{ - starts_with = list(/obj/item/weapon/tool/prybar/red,/obj/item/clothing/glasses/goggles,/obj/item/weapon/reagent_containers/hypospray/autoinjector,/obj/item/stack/medical/bruise_pack,/obj/item/device/flashlight/glowstick,/obj/item/weapon/reagent_containers/food/snacks/candy/proteinbar,/obj/item/clothing/mask/breath,/obj/item/weapon/tank/emergency/oxygen/engi) - }, -/obj/machinery/light/no_nightshift{ - dir = 1 - }, -/obj/effect/floor_decal/industrial/outline/grey, -/obj/item/modular_computer/laptop/preset/custom_loadout/elite, -/turf/simulated/floor/tiled/techfloor, -/area/ship/ert/barracks) -"GI" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor, -/area/ship/ert/engine) -"GJ" = ( -/obj/structure/hull_corner{ - dir = 1 - }, -/turf/simulated/floor/reinforced/airless, -/area/ship/ert/eng_storage) -"GK" = ( -/obj/structure/closet/crate{ - dir = 1 - }, -/obj/effect/floor_decal/industrial/outline/red, -/turf/simulated/floor/tiled/techmaint, -/area/ship/ert/armoury_st) -"GM" = ( -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/techmaint, -/area/ship/ert/hallways) -"GO" = ( -/obj/machinery/door/airlock/glass_security{ - req_one_access = list(103) - }, -/obj/machinery/door/firedoor/border_only, -/turf/simulated/floor/tiled/techmaint, -/area/ship/ert/armoury_st) -"GR" = ( -/obj/effect/floor_decal/corner/red{ - dir = 9 - }, -/turf/simulated/floor/tiled/techmaint, -/area/ship/ert/hangar) -"GS" = ( -/obj/effect/floor_decal/corner/white{ - dir = 6 - }, -/turf/simulated/floor/tiled/techmaint, -/area/ship/ert/eng_storage) -"GT" = ( -/obj/machinery/power/apc/hyper{ - alarms_hidden = 1; - name = "VB APC - South"; - pixel_y = -24 - }, -/obj/structure/cable/yellow, -/turf/simulated/floor/tiled/white, -/area/ship/ert/med_surg) -"GU" = ( -/obj/effect/floor_decal/corner/red{ - dir = 8 - }, -/obj/structure/reagent_dispensers/foam, -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/effect/floor_decal/industrial/outline, -/turf/simulated/floor/tiled/techmaint, -/area/ship/ert/hangar) -"GY" = ( -/obj/machinery/cryopod/ert_ship, -/turf/simulated/floor/tiled/white, -/area/ship/ert/med_surg) -"GZ" = ( -/obj/structure/bed/chair/bay/shuttle, -/obj/machinery/light/no_nightshift{ +"Tp" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, -/turf/simulated/floor/tiled/techfloor, -/area/shuttle/ert_ship_boat) -"Hf" = ( -/turf/simulated/wall/rshull, -/area/ship/ert/engine) -"Hp" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/techmaint, -/area/ship/ert/med) -"Hq" = ( -/obj/machinery/door/firedoor/glass, -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/structure/window/reinforced, -/obj/machinery/door/blast/regular/open{ - dir = 4; - id = "ERT_Blast_Windows"; - name = "Blast Shield" - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor, -/area/shuttle/ert_ship_boat) -"Hu" = ( -/obj/machinery/door/firedoor, -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/structure/window/reinforced, -/obj/machinery/door/blast/regular/open{ - dir = 4; - id = "ERT_Blast_Windows"; - name = "Blast Shield" - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor, -/area/shuttle/ert_ship_boat) -"HB" = ( -/obj/structure/table/rack/steel, -/obj/item/weapon/gun/energy/gun/burst{ - pixel_y = 3 - }, -/obj/item/weapon/gun/energy/gun/burst{ - pixel_y = -3 - }, -/obj/item/weapon/gun/energy/lasershotgun{ - pixel_y = -3 - }, -/obj/item/weapon/gun/energy/lasershotgun{ - pixel_y = 3 - }, -/obj/effect/floor_decal/industrial/outline/grey, -/obj/machinery/recharger/wallcharger{ - pixel_x = -23; - pixel_y = -12 - }, -/obj/machinery/recharger/wallcharger{ - pixel_x = -23; - pixel_y = -4 - }, -/obj/machinery/recharger/wallcharger{ - pixel_x = -23; - pixel_y = 5 - }, -/turf/simulated/floor/tiled/techfloor, -/area/ship/ert/armoury_dl) -"HC" = ( -/obj/structure/closet/crate/medical, -/obj/item/weapon/storage/mre/menu11, -/obj/item/weapon/storage/mre/menu11, -/obj/item/weapon/storage/mre/menu11, -/obj/item/weapon/storage/mre/menu11, -/obj/item/stack/nanopaste/advanced, -/obj/item/stack/nanopaste/advanced, -/obj/item/stack/nanopaste/advanced, -/obj/item/weapon/reagent_containers/food/drinks/drinkingglass/fitnessflask/glucose, -/obj/item/weapon/storage/pill_bottle/iron, -/obj/item/weapon/storage/pill_bottle/iron, -/obj/item/weapon/storage/pill_bottle/sleevingcure/full, -/obj/item/weapon/storage/box/syringes, -/obj/item/weapon/storage/box/syringes{ - pixel_x = 2; - pixel_y = 2 - }, -/obj/machinery/light_switch{ - dir = 8; - pixel_x = 23 - }, -/obj/effect/floor_decal/industrial/outline, -/turf/simulated/floor/tiled/techfloor, -/area/ship/ert/med) -"HE" = ( -/turf/simulated/floor/reinforced/airless, -/area/ship/ert/dock_port) -"HH" = ( -/obj/structure/bed/chair/bay/shuttle{ - dir = 1 - }, -/obj/machinery/recharger/wallcharger{ - pixel_x = -23; - pixel_y = -12 - }, -/obj/machinery/recharger/wallcharger{ - pixel_x = -23; - pixel_y = -4 - }, -/obj/machinery/recharger/wallcharger{ - pixel_x = -23; - pixel_y = 5 - }, -/turf/simulated/floor/tiled/techfloor, -/area/shuttle/ert_ship_boat) -"HK" = ( -/obj/machinery/shield_diffuser, -/obj/machinery/door/blast/regular/open{ - dir = 2; - id = "ERT_Blast_Windows"; - name = "Blast Shield" - }, -/obj/machinery/door/blast/regular{ - id = "ERT_Shuttle_Fore" - }, -/turf/simulated/floor/tiled/techmaint, -/area/shuttle/ert_ship_boat) -"HO" = ( -/turf/simulated/wall/rshull, -/area/shuttle/ert_ship_boat) -"HR" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/obj/machinery/door/window/brigdoor/northright, -/turf/simulated/floor/tiled/techfloor, -/area/ship/ert/hallways_aft) -"HZ" = ( -/obj/machinery/computer/ship/navigation{ - dir = 1 - }, +<<<<<<< HEAD +======= /obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 + dir = 4 + }, +/obj/item/modular_computer/console/preset/medical{ + dir = 8 }, -/obj/structure/railing/grey, /turf/simulated/floor/tiled/techfloor, /area/ship/ert/bridge) -"Ia" = ( -/obj/machinery/light/no_nightshift{ - dir = 1 - }, -/turf/simulated/floor/reinforced/airless, -/area/ship/ert/engine) -"Ib" = ( -/turf/simulated/floor/reinforced/airless, -/area/ship/ert/hallways_aft) -"Id" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor, -/area/ship/ert/engine) -"Ig" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/fuel{ - dir = 4 - }, +"Tx" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/fuel, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/techfloor, -/area/ship/ert/engine) -"Ii" = ( -/obj/machinery/atmospherics/portables_connector/fuel{ - dir = 8 - }, /obj/structure/cable/yellow{ d1 = 1; d2 = 2; icon_state = "1-2" }, -/obj/effect/floor_decal/industrial/outline/red, +>>>>>>> c55e7a1c3b... Merge pull request #14538 from KillianKirilenko/kk-vbupg /turf/simulated/floor/tiled/techfloor, /area/ship/ert/engine) -"Io" = ( +"TB" = ( /obj/structure/cable/yellow{ d1 = 4; d2 = 8; icon_state = "4-8" }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, /obj/machinery/firealarm/alarms_hidden{ - dir = 1; - pixel_y = -26 + pixel_y = 26 + }, +<<<<<<< HEAD +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/techfloor, +/area/ship/ert/engineering) +======= +/obj/structure/cable/yellow{ + d1 = 2; + d2 = 8; + icon_state = "2-8" }, /turf/simulated/floor/tiled/techfloor, -/area/ship/ert/atmos) -"Ip" = ( -/obj/machinery/power/apc/hyper{ - alarms_hidden = 1; - dir = 4; - name = "VB APC - East"; - pixel_x = 24 - }, -/obj/structure/cable/yellow{ - d2 = 8; - icon_state = "0-8" - }, -/obj/machinery/alarm/alarms_hidden{ - dir = 1; - pixel_y = -26 - }, -/turf/simulated/floor/tiled/techfloor, -/area/ship/ert/atmos) -"Is" = ( -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, +/area/ship/ert/engineering) +"TD" = ( +/turf/simulated/wall/rshull, +/area/ship/ert/mech_bay) +>>>>>>> c55e7a1c3b... Merge pull request #14538 from KillianKirilenko/kk-vbupg +"TF" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -5808,121 +10523,17 @@ dir = 4 }, /obj/structure/cable/yellow{ - d1 = 1; + d1 = 4; d2 = 8; - icon_state = "1-8" + icon_state = "4-8" }, +/turf/simulated/floor/tiled/white, +/area/ship/ert/med_surg) +"TG" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, /turf/simulated/floor/tiled/techmaint, /area/ship/ert/mech_bay) -"Iv" = ( -/turf/simulated/floor/wood, -/area/ship/ert/commander) -"Ix" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/turf/simulated/floor/wood, -/area/ship/ert/commander) -"IA" = ( -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/techmaint, -/area/ship/ert/barracks) -"IF" = ( -/obj/structure/table/rack/steel, -/obj/effect/floor_decal/industrial/outline, -/obj/item/weapon/hand_labeler, -/turf/simulated/floor/tiled/techfloor, -/area/ship/ert/med) -"IK" = ( -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/turf/simulated/floor/wood, -/area/ship/ert/commander) -"IL" = ( -/obj/structure/table/woodentable, -/obj/item/device/aicard, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/machinery/light_switch{ - dir = 1; - pixel_y = -23 - }, -/turf/simulated/floor/wood, -/area/ship/ert/commander) -"IZ" = ( -/obj/structure/table/woodentable, -/obj/item/weapon/paper_bin{ - pixel_x = -3; - pixel_y = 8 - }, -/obj/item/weapon/pen{ - pixel_y = 4 - }, -/obj/machinery/firealarm/alarms_hidden{ - dir = 1; - pixel_y = -26 - }, -/obj/item/toy/figure/ert, -/turf/simulated/floor/wood, -/area/ship/ert/commander) -"Jb" = ( -/obj/machinery/door/firedoor/border_only, -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor, -/area/ship/ert/armoury_st) -"Jc" = ( -/obj/structure/table/steel_reinforced, -/obj/item/weapon/storage/firstaid/toxin{ - pixel_x = 4; - pixel_y = 4 - }, -/obj/item/weapon/storage/firstaid/toxin{ - pixel_x = 2; - pixel_y = 2 - }, -/obj/item/weapon/storage/firstaid/o2, -/obj/item/weapon/storage/firstaid/o2{ - pixel_x = -2; - pixel_y = -2 - }, -/obj/machinery/light/no_nightshift{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor, -/area/ship/ert/med) -"Jd" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/techmaint, -/area/ship/ert/barracks) -"Jf" = ( +"TI" = ( /obj/effect/floor_decal/corner/yellow{ dir = 10 }, @@ -5934,79 +10545,101 @@ }, /turf/simulated/floor/tiled/techmaint, /area/ship/ert/hallways) -"Jg" = ( -/obj/machinery/light/no_nightshift{ - dir = 1 - }, -/turf/simulated/floor/reinforced/airless, -/area/ship/ert/med_surg) -"Jk" = ( -/obj/machinery/door/firedoor/border_only, -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor, -/area/ship/ert/bridge) -"Jl" = ( -/obj/effect/floor_decal/corner/blue{ - dir = 1 - }, -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, +"TM" = ( +<<<<<<< HEAD +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/tiled/techmaint, -/area/ship/ert/hallways) -"Js" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/simulated/floor/tiled/techmaint, -/area/ship/ert/hallways) -"Jw" = ( -/obj/structure/table/rack/steel, -/obj/item/weapon/storage/box/handcuffs{ - pixel_x = -2; - pixel_y = -2 - }, -/obj/item/weapon/storage/box/handcuffs{ - pixel_x = 2; - pixel_y = 2 - }, -/obj/effect/floor_decal/corner/red{ +/area/ship/ert/hallways_aft) +"TR" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/machinery/door/firedoor/border_only, +/obj/structure/window/reinforced{ + dir = 4 +======= +/obj/machinery/atmospherics/unary/vent_pump/on{ dir = 4 }, -/obj/effect/floor_decal/industrial/outline/grey, /turf/simulated/floor/tiled/techfloor, -/area/ship/ert/hallways) -"Jx" = ( -/obj/item/device/perfect_tele_beacon/stationary{ - tele_name = "NRB Robineau"; - tele_network = "centcom" +/area/ship/ert/atmos) +"TQ" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 +>>>>>>> c55e7a1c3b... Merge pull request #14538 from KillianKirilenko/kk-vbupg }, -/turf/simulated/floor/tiled/techmaint, -/area/shuttle/ert_ship_boat) -"JB" = ( -/turf/simulated/wall/rshull, -/area/ship/ert/dock_port) -"JE" = ( +/obj/effect/floor_decal/corner/white{ + dir = 8 + }, +/obj/machinery/portable_atmospherics/powered/pump/filled, +/obj/machinery/light/no_nightshift, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, -/obj/effect/floor_decal/industrial/warning/corner, /turf/simulated/floor/tiled/techmaint, /area/ship/ert/hangar) -"JG" = ( +"TR" = ( +/obj/structure/railing/grey, +/obj/structure/railing/grey{ + dir = 4 + }, +/obj/structure/table/steel_reinforced, +/turf/simulated/floor/tiled/techfloor, +/area/ship/ert/bridge) +"TU" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/machinery/door/firedoor/border_only, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/machinery/door/blast/regular/open{ + dir = 4; + id = "braun_blast_shields"; + name = "Blast Shield" + }, +/turf/simulated/floor/tiled/techfloor, +/area/ship/ert/med) +"TW" = ( +/obj/item/device/perfect_tele_beacon/stationary{ + tele_name = "NRV Von Braun Teleporter Room"; + tele_network = "centcom" + }, +/turf/simulated/floor/tiled/techmaint, +/area/ship/ert/teleporter) +<<<<<<< HEAD +======= +"TZ" = ( +/obj/structure/grille, +/obj/structure/window/titanium/full, +/obj/structure/window/titanium, +/obj/structure/window/titanium{ + dir = 1 + }, +/obj/structure/window/titanium{ + dir = 8 + }, +/obj/machinery/door/firedoor, +/obj/effect/floor_decal/techfloor{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/ship/ert/brig) +"Ue" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor, +/area/ship/ert/atmos) +"Ug" = ( +/obj/effect/floor_decal/industrial/warning, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/ship/ert/brig) +"Uk" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; @@ -6015,7 +10648,585 @@ /obj/effect/floor_decal/industrial/warning, /turf/simulated/floor/tiled/techfloor, /area/ship/ert/engineering) -"JJ" = ( +>>>>>>> c55e7a1c3b... Merge pull request #14538 from KillianKirilenko/kk-vbupg +"Ul" = ( +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/tiled/techmaint, +/area/ship/ert/teleporter) +"Un" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/ship/ert/hallways_aft) +"Ut" = ( +/obj/machinery/door/blast/shutters{ + density = 0; + dir = 2; + icon_state = "shutter0"; + id = "braun_cells_privacy"; + name = "Privacy Shutters"; + opacity = 0 + }, +/obj/structure/grille, +/obj/structure/window/titanium/full, +/obj/structure/window/titanium{ + dir = 1 + }, +/obj/structure/window/titanium, +/obj/structure/window/titanium{ + dir = 8 + }, +/obj/structure/cable/yellow{ + d2 = 4; + icon_state = "0-4" + }, +/obj/structure/cable/yellow, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/tiled/techmaint, +/area/ship/ert/brig) +"Ux" = ( +/obj/machinery/vending/fitness{ + prices = list() + }, +/turf/simulated/floor/tiled/techfloor, +/area/ship/ert/hallways_aft) +"Uy" = ( +/obj/structure/table/rack/steel, +/obj/item/weapon/gun/energy/gun{ + pixel_y = 6 + }, +/obj/item/weapon/gun/energy/gun{ + pixel_y = 4 + }, +/obj/item/weapon/gun/energy/gun{ + pixel_y = 2 + }, +/obj/item/weapon/gun/energy/gun, +/obj/item/weapon/gun/energy/gun{ + pixel_y = -2 + }, +/obj/item/weapon/gun/energy/gun{ + pixel_y = -4 + }, +/obj/effect/floor_decal/industrial/outline/grey, +/turf/simulated/floor/tiled/techfloor, +/area/ship/ert/armoury_st) +"UD" = ( +/obj/structure/ship_munition/disperser_charge/explosive, +/obj/effect/floor_decal/industrial/warning{ + dir = 5 + }, +/obj/structure/railing{ + dir = 4 + }, +/obj/structure/railing{ + dir = 1 + }, +/turf/simulated/floor/reinforced, +/area/ship/ert/gunnery) +"UE" = ( +/obj/structure/sign/warning/radioactive{ + desc = "WARNING: VON BRAUN PTTOS EMIT RADIATION WHILST OPERATIONAL."; + name = "\improper RADIOACTIVE GENERATORS BEHIND THESE DOORS"; + pixel_x = -16 + }, +/turf/simulated/wall/shull, +/area/ship/ert/engineering) +"UH" = ( +/obj/machinery/alarm/alarms_hidden{ + dir = 1; + pixel_y = -26 + }, +/turf/simulated/floor/tiled/techfloor, +/area/ship/ert/bridge) +"UI" = ( +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/wall/rshull, +/area/ship/ert/med) +"UJ" = ( +/obj/machinery/door/blast/shutters{ + density = 0; + dir = 2; + icon_state = "shutter0"; + id = "braun_cells_privacy"; + name = "Privacy Shutters"; + opacity = 0 + }, +/obj/structure/grille, +/obj/structure/window/titanium/full, +/obj/structure/window/titanium{ + dir = 1 + }, +/obj/structure/window/titanium, +/obj/structure/cable/yellow{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/tiled/techmaint, +<<<<<<< HEAD +/area/ship/ert/teleporter) +======= +/area/ship/ert/brig) +"UK" = ( +/obj/structure/hull_corner/long_horiz{ + dir = 5 + }, +/turf/simulated/floor/reinforced/airless, +/area/ship/ert/engine) +"UN" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/power/apc/hyper{ + alarms_hidden = 1; + dir = 4; + name = "VB APC - East"; + pixel_x = 24 + }, +/obj/structure/cable/yellow{ + d2 = 2; + icon_state = "0-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/yellow{ + d2 = 4; + dir = 4; + icon_state = "0-4" + }, +/turf/simulated/floor/tiled/techmaint, +/area/ship/ert/hallways_aft) +>>>>>>> c55e7a1c3b... Merge pull request #14538 from KillianKirilenko/kk-vbupg +"UT" = ( +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/techmaint, +/area/ship/ert/armoury_dl) +"UU" = ( +/obj/machinery/door/window/brigdoor/northleft{ + req_access = list(150); + req_one_access = list(150) + }, +/obj/machinery/door/firedoor/glass, +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/techfloor/grid, +/area/ship/ert/brig) +"UY" = ( +/obj/structure/table/rack, +/obj/item/weapon/rig/ert, +/obj/item/weapon/cell/slime, +/turf/simulated/floor/wood, +/area/ship/ert/commander) +"Vc" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/ship/ert/engine) +"Vd" = ( +/obj/structure/window/reinforced, +/turf/simulated/floor/tiled/techmaint, +/area/shuttle/ert_ship_boat) +"Vf" = ( +/obj/effect/floor_decal/industrial/warning, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/ship/ert/brig) +"Vg" = ( +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/techmaint, +/area/ship/ert/hallways) +"Vh" = ( +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techfloor, +/area/ship/ert/med) +"Vn" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/ship/ert/armoury_dl) +"Vp" = ( +/obj/machinery/computer/ship/engines{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/ship/ert/engineering) +"Vq" = ( +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +<<<<<<< HEAD +/area/ship/ert/gunnery) +"VC" = ( +/obj/machinery/power/port_gen/pacman/super/potato, +/obj/structure/cable/green, +/obj/machinery/light/no_nightshift, +/obj/effect/decal/cleanable/greenglow, +/turf/simulated/floor/tiled/techfloor, +/area/ship/ert/engineering) +"VJ" = ( +======= +/area/ship/ert/mech_bay) +"Vx" = ( +/obj/machinery/light/no_nightshift{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/ship/ert/engine) +"VC" = ( +/obj/machinery/door/airlock/glass_security{ + name = "Armoury"; + req_one_access = list(103) + }, +>>>>>>> c55e7a1c3b... Merge pull request #14538 from KillianKirilenko/kk-vbupg +/obj/machinery/door/firedoor/multi_tile{ + dir = 1 + }, +/turf/simulated/floor/tiled/techmaint, +/area/ship/ert/armoury_st) +"VH" = ( +/obj/structure/table/steel_reinforced, +/obj/machinery/recharger, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/simulated/floor/tiled/techmaint, +/area/ship/ert/armoury_st) +"VI" = ( +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/floor_decal/corner/red{ + dir = 1 + }, +/turf/simulated/floor/tiled/techmaint, +/area/ship/ert/hallways_aft) +"VJ" = ( +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +<<<<<<< HEAD +/obj/structure/bed/pod, +/obj/item/weapon/bedsheet/blue, +/obj/structure/curtain/open/bed, +/turf/simulated/floor/wood, +/area/ship/ert/commander) +"Wd" = ( +/obj/machinery/telecomms/relay, +/turf/simulated/floor/tiled/techfloor, +/area/ship/ert/atmos) +"Wj" = ( +/obj/machinery/light/no_nightshift{ + dir = 8 +======= +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 +>>>>>>> c55e7a1c3b... Merge pull request #14538 from KillianKirilenko/kk-vbupg + }, +/obj/structure/cable/yellow{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/tiled/techmaint, +/area/ship/ert/med) +"VK" = ( +/obj/structure/hull_corner{ + dir = 1 + }, +/turf/simulated/floor/reinforced/airless, +/area/ship/ert/med) +<<<<<<< HEAD +"Wq" = ( +======= +"VN" = ( +/turf/simulated/floor/tiled/techmaint, +/area/ship/ert/gunnery) +"VO" = ( +>>>>>>> c55e7a1c3b... Merge pull request #14538 from KillianKirilenko/kk-vbupg +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techmaint, +/area/ship/ert/bridge) +"VQ" = ( +/turf/simulated/floor/tiled/techmaint, +/area/ship/ert/bridge) +"Wh" = ( +/obj/structure/closet/crate{ + dir = 1 + }, +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/item/weapon/plastique, +/obj/item/weapon/plastique, +/obj/item/weapon/plastique, +/obj/item/weapon/plastique, +/obj/effect/floor_decal/industrial/outline/red, +/obj/item/weapon/plastique, +/obj/item/weapon/plastique, +/obj/item/weapon/plastique, +/obj/item/weapon/plastique, +/turf/simulated/floor/tiled/techmaint, +/area/ship/ert/armoury_dl) +"Wl" = ( +/obj/structure/sign/department/medbay, +/turf/simulated/wall/shull, +/area/ship/ert/med) +"Wq" = ( +/turf/simulated/wall/rshull, +/area/ship/ert/commander) +"Wu" = ( +/obj/structure/closet/crate{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/outline/red, +/turf/simulated/floor/tiled/techmaint, +/area/ship/ert/armoury_st) +"Wv" = ( +/obj/effect/shuttle_landmark/premade/ert_ship_near_star, +/turf/space, +/area/space) +"WA" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/ship/ert/armoury_dl) +"WC" = ( +/turf/simulated/floor/reinforced, +/area/ship/ert/hangar) +"WE" = ( +/obj/machinery/door/firedoor/border_only, +/obj/machinery/door/airlock/glass_security{ + name = "Armoury"; + req_one_access = list(103) + }, +/turf/simulated/floor/tiled/techmaint, +/area/ship/ert/armoury_st) +"WF" = ( +<<<<<<< HEAD +/obj/machinery/pointdefense{ + id_tag = "vonbraun_pd" + }, +/turf/simulated/floor/reinforced/airless, +/area/ship/ert/med) +======= +/obj/structure/hull_corner{ + dir = 8 + }, +/turf/simulated/shuttle/plating/airless/carry, +/area/shuttle/ert_ship_boat) +>>>>>>> c55e7a1c3b... Merge pull request #14538 from KillianKirilenko/kk-vbupg +"WH" = ( +/obj/structure/closet/wardrobe/ert, +/obj/item/modular_computer/tablet/preset/custom_loadout/elite, +/obj/item/weapon/storage/box/survival/comp{ + starts_with = list(/obj/item/weapon/tool/prybar/red,/obj/item/clothing/glasses/goggles,/obj/item/weapon/reagent_containers/hypospray/autoinjector,/obj/item/stack/medical/bruise_pack,/obj/item/device/flashlight/glowstick,/obj/item/weapon/reagent_containers/food/snacks/candy/proteinbar,/obj/item/clothing/mask/breath,/obj/item/weapon/tank/emergency/oxygen/engi) + }, +/obj/effect/floor_decal/industrial/outline/grey, +/obj/item/modular_computer/laptop/preset/custom_loadout/elite, +/turf/simulated/floor/tiled/techfloor, +/area/ship/ert/barracks) +"WJ" = ( +/turf/simulated/floor/tiled/techmaint, +/area/ship/ert/hangar) +"WK" = ( +/turf/simulated/floor/tiled/techmaint, +/area/ship/ert/hallways_aft) +"WO" = ( +<<<<<<< HEAD +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel, +======= +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + dir = 8 + }, +>>>>>>> c55e7a1c3b... Merge pull request #14538 from KillianKirilenko/kk-vbupg +/turf/simulated/floor/tiled/techfloor, +/area/ship/ert/engine) +"WP" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/simulated/floor/tiled/techmaint, +/area/shuttle/ert_ship_boat) +"WS" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/bed/chair/bay/chair/padded/blue{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor, +/area/ship/ert/engineering) +"WT" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/machinery/door/blast/regular/open{ + dir = 2; + id = "ERT_Blast_Windows"; + name = "Blast Shield" + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/shield_diffuser, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/ert_ship_boat) +"WV" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/effect/landmark{ + name = "Commando" + }, +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/techfloor, +/area/ship/ert/barracks) +<<<<<<< HEAD +"Xg" = ( +======= +"WW" = ( +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techfloor, +/area/ship/ert/brig) +"WX" = ( +/obj/machinery/recharge_station, +/turf/simulated/floor/tiled/techfloor, +/area/ship/ert/atmos) +"WZ" = ( +>>>>>>> c55e7a1c3b... Merge pull request #14538 from KillianKirilenko/kk-vbupg +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/techmaint, +/area/ship/ert/hallways_aft) +"Xg" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/techfloor, +/area/ship/ert/engineering) +"Xh" = ( +/obj/machinery/door/blast/shutters{ + density = 0; + icon_state = "shutter0"; + id = "braun_cells_privacy"; + name = "Privacy Shutters"; + opacity = 0 + }, +/obj/structure/grille, +/obj/structure/window/titanium/full, +/obj/structure/window/titanium{ + dir = 1 + }, +/obj/structure/window/titanium, +/obj/structure/cable/yellow{ + d2 = 4; + icon_state = "0-4" + }, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/tiled/techmaint, +/area/ship/ert/brig) +"Xo" = ( +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/ship/ert/med) +"Xu" = ( +/obj/machinery/power/smes/buildable/point_of_interest, +/obj/structure/cable/yellow, +/turf/simulated/floor/tiled/techfloor, +/area/ship/ert/engineering) +"Xv" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/turf/simulated/floor/tiled/techmaint, +/area/ship/ert/armoury_dl) +"Xw" = ( +/turf/simulated/floor/tiled/techfloor, +<<<<<<< HEAD +/area/ship/ert/teleporter) +"XB" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" +======= +/area/ship/ert/mech_bay) +"Xz" = ( /obj/structure/cable/yellow{ d1 = 1; d2 = 2; @@ -6024,644 +11235,39 @@ /obj/machinery/door/firedoor/border_only, /obj/machinery/door/airlock/engineering{ req_one_access = list(103) +>>>>>>> c55e7a1c3b... Merge pull request #14538 from KillianKirilenko/kk-vbupg }, /turf/simulated/floor/tiled/techfloor, /area/ship/ert/dock_star) -"JM" = ( -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/turf/simulated/floor/tiled/techmaint, -/area/ship/ert/barracks) -"JN" = ( -/obj/structure/bed/chair/bay/shuttle, -/turf/simulated/floor/tiled/techfloor, -/area/shuttle/ert_ship_boat) -"JW" = ( -/obj/machinery/light/no_nightshift, -/obj/machinery/atmospherics/unary/engine{ - dir = 4 - }, -/turf/space, -/area/ship/ert/engine) -"JX" = ( -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only, -/obj/machinery/door/airlock/glass{ - req_one_access = list(103) - }, -/turf/simulated/floor/tiled/techmaint, -/area/ship/ert/bridge) -"JY" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/fuel, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/techfloor, -/area/ship/ert/engine) -"JZ" = ( -/obj/structure/table/rack/steel, -/obj/item/weapon/gun/projectile/heavysniper, -/obj/item/weapon/storage/box/sniperammo, -/obj/item/weapon/storage/box/sniperammo, -/obj/effect/floor_decal/industrial/outline/grey, -/obj/machinery/alarm/alarms_hidden{ +"XB" = ( +/obj/structure/table/steel_reinforced, +/turf/simulated/floor/tiled/techfloor/grid, +/area/ship/ert/brig) +"XG" = ( +/turf/simulated/wall/rshull, +/area/ship/ert/eng_storage) +"XH" = ( +/obj/machinery/firealarm/alarms_hidden{ dir = 1; pixel_y = -26 }, -/obj/machinery/light/no_nightshift, -/turf/simulated/floor/tiled/techfloor, -/area/ship/ert/armoury_dl) -"Kb" = ( -/obj/structure/railing/grey{ - dir = 4 - }, -/obj/structure/railing/grey{ - dir = 1 - }, -/obj/item/weapon/paper/vonbraun_shields, -/obj/structure/table/steel_reinforced, -/turf/simulated/floor/tiled/techfloor, -/area/ship/ert/bridge) -"Kf" = ( -/obj/machinery/computer/teleporter{ - dir = 1 - }, -/turf/simulated/floor/tiled/techmaint, -/area/ship/ert/teleporter) -"Kk" = ( -/obj/effect/landmark/late_antag/ert, -/obj/structure/table/bench/steel, -/turf/simulated/floor/tiled/techfloor, -/area/ship/ert/barracks) -"Kq" = ( -/obj/machinery/light/no_nightshift{ - dir = 4 - }, -/obj/machinery/atmospherics/portables_connector/fuel{ - dir = 8 - }, -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/effect/floor_decal/industrial/outline/red, /turf/simulated/floor/tiled/techfloor, /area/ship/ert/engine) -"Kr" = ( -/obj/machinery/light/no_nightshift{ - dir = 4 - }, -/obj/effect/floor_decal/corner/yellow{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/techmaint, -/area/ship/ert/hallways_aft) -"Ks" = ( -/obj/machinery/door/airlock/centcom{ - name = "Commander"; - req_access = list(103) - }, -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/door/firedoor/border_only, -/turf/simulated/floor/tiled/techmaint, -/area/ship/ert/commander) -"Kt" = ( -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/techmaint, -/area/ship/ert/dock_star) -"Kw" = ( -/obj/structure/sign/department/eng, -/turf/simulated/wall/rshull, -/area/ship/ert/bridge) -"KB" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/machinery/door/firedoor/border_only, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor, -/area/ship/ert/eng_storage) -"KG" = ( -/obj/structure/table/rack/steel, -/obj/item/weapon/storage/toolbox/mechanical{ - pixel_x = -4; - pixel_y = -6 - }, -/obj/item/weapon/storage/toolbox/mechanical{ - pixel_x = -4; - pixel_y = -2 - }, -/obj/item/weapon/storage/toolbox/electrical{ - pixel_x = -4; - pixel_y = 2 - }, -/obj/item/weapon/storage/toolbox/electrical{ - pixel_x = -4; - pixel_y = 6 - }, -/obj/item/weapon/storage/briefcase/inflatable{ - pixel_x = 4; - pixel_y = -6 - }, -/obj/item/weapon/storage/briefcase/inflatable{ - pixel_x = 4; - pixel_y = -2 - }, -/obj/item/weapon/storage/briefcase/inflatable{ - pixel_x = 4; - pixel_y = 2 - }, -/obj/item/weapon/storage/briefcase/inflatable{ - pixel_x = 4; - pixel_y = 6 - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/techfloor, -/area/ship/ert/eng_storage) -"KI" = ( -/turf/simulated/wall/shull, -/area/ship/ert/med) -"KJ" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/structure/railing/grey{ - dir = 1 - }, -/obj/structure/table/steel_reinforced, -/turf/simulated/floor/tiled/techfloor, -/area/ship/ert/bridge) -"KM" = ( -/obj/structure/bed/chair/bay/chair/padded/blue{ - dir = 4 - }, -/turf/simulated/floor/tiled/techmaint, -/area/ship/ert/bridge) -"KO" = ( -/obj/machinery/vending/tool, -/obj/machinery/light/no_nightshift{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor, -/area/ship/ert/eng_storage) -"KS" = ( -/obj/machinery/door/airlock/centcom{ - name = "Reactor Access"; - req_access = list(103) - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/door/blast/regular/open{ - dir = 4; - id = "VB_Rear_Blast"; - name = "Blast Shield" - }, -/turf/simulated/floor/tiled/techfloor, -/area/ship/ert/engineering) -"KT" = ( -/obj/structure/table/steel_reinforced, -/obj/item/stack/cable_coil, -/obj/item/stack/cable_coil, -/obj/item/stack/cable_coil, -/obj/item/stack/cable_coil, -/obj/item/stack/cable_coil, -/obj/item/stack/cable_coil, -/obj/item/weapon/grenade/chem_grenade/metalfoam, -/obj/item/weapon/grenade/chem_grenade/metalfoam, -/obj/item/weapon/grenade/chem_grenade/metalfoam, -/obj/item/weapon/grenade/chem_grenade/metalfoam, -/obj/item/weapon/grenade/chem_grenade/metalfoam, -/obj/item/weapon/grenade/chem_grenade/metalfoam, -/obj/machinery/light/no_nightshift, -/turf/simulated/floor/tiled/techfloor, -/area/ship/ert/eng_storage) -"KW" = ( -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/techmaint, -/area/ship/ert/bridge) -"La" = ( -/obj/item/modular_computer/console/preset/ert{ - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor, -/area/ship/ert/bridge) -"Lg" = ( -/obj/structure/table/rack/steel, -/obj/item/taperoll/engineering{ - pixel_x = -6; - pixel_y = -6 - }, -/obj/item/taperoll/engineering{ - pixel_x = -2; - pixel_y = -2 - }, -/obj/item/taperoll/engineering{ - pixel_x = 2; - pixel_y = 2 - }, -/obj/item/taperoll/engineering{ - pixel_x = 6; - pixel_y = 6 - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/techfloor, -/area/ship/ert/eng_storage) -"Lh" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/techmaint, -/area/ship/ert/med) -"Lk" = ( -/obj/structure/table/rack/steel, -/obj/item/weapon/material/knife/tacknife/combatknife{ - pixel_x = -7 - }, -/obj/item/weapon/material/knife/tacknife/combatknife{ - pixel_x = -4 - }, -/obj/item/weapon/material/knife/tacknife/combatknife{ - pixel_x = -1 - }, -/obj/item/weapon/material/knife/tacknife/combatknife{ - pixel_x = 2 - }, -/obj/item/weapon/material/knife/tacknife/combatknife{ - pixel_x = 5 - }, -/obj/item/weapon/material/knife/tacknife/combatknife{ - pixel_x = 8 - }, -/obj/effect/floor_decal/industrial/outline/grey, -/turf/simulated/floor/tiled/techfloor, -/area/ship/ert/hallways) -"Lm" = ( -/obj/machinery/ntnet_relay, -/turf/simulated/floor/tiled/techfloor, -/area/ship/ert/atmos) -"Lq" = ( -/obj/structure/table/rack/steel, -/obj/item/weapon/gun/energy/gun/martin{ - battery_lock = 0 - }, -/obj/item/weapon/gun/energy/gun/martin{ - battery_lock = 0 - }, -/obj/item/weapon/gun/energy/gun/martin{ - battery_lock = 0 - }, -/obj/item/weapon/gun/energy/gun/martin{ - battery_lock = 0 - }, -/obj/item/weapon/gun/energy/gun/martin{ - battery_lock = 0 - }, -/obj/item/weapon/gun/energy/gun/martin{ - battery_lock = 0 - }, -/obj/effect/floor_decal/industrial/outline/grey, -/obj/item/weapon/gun/energy/locked/frontier/holdout/unlocked, -/obj/item/weapon/gun/energy/locked/frontier/holdout/unlocked, -/obj/item/weapon/gun/energy/locked/frontier/holdout/unlocked, -/obj/item/weapon/gun/energy/locked/frontier/holdout/unlocked, -/obj/item/weapon/gun/energy/locked/frontier/holdout/unlocked, -/obj/item/weapon/gun/energy/locked/frontier/holdout/unlocked, -/obj/item/weapon/gun/energy/locked/frontier/holdout/unlocked{ - pixel_y = 6 - }, -/obj/item/weapon/gun/energy/locked/frontier/holdout/unlocked{ - pixel_y = 4 - }, -/obj/item/weapon/gun/energy/locked/frontier/holdout/unlocked{ - pixel_y = 2 - }, -/obj/item/weapon/gun/energy/locked/frontier/holdout/unlocked, -/obj/item/weapon/gun/energy/locked/frontier/holdout/unlocked{ - pixel_y = -2 - }, -/obj/item/weapon/gun/energy/locked/frontier/holdout/unlocked{ - pixel_y = -4 - }, -/turf/simulated/floor/tiled/techfloor, -/area/ship/ert/armoury_st) -"LA" = ( -/obj/structure/table/rack/steel, +"XM" = ( <<<<<<< HEAD -/obj/item/weapon/storage/box/shotgunshells/large, -/obj/item/weapon/storage/box/shotgunshells/large, -/obj/item/weapon/storage/box/shotgunammo/large, -/obj/item/weapon/storage/box/shotgunammo/large, -/obj/item/weapon/storage/box/empshells/large, -/obj/item/weapon/storage/box/flashshells/large, -/obj/item/weapon/storage/box/beanbags/large, -/obj/item/weapon/storage/box/beanbags/large, -/obj/item/weapon/storage/box/stunshells/large, -======= -/obj/item/ammo_magazine/ammo_box/b12g/pellet, -/obj/item/ammo_magazine/ammo_box/b12g/pellet, -/obj/item/ammo_magazine/ammo_box/b12g, -/obj/item/ammo_magazine/ammo_box/b12g, -/obj/item/ammo_magazine/ammo_box/b12g/emp, -/obj/item/ammo_magazine/ammo_box/b12g/flash, -/obj/item/ammo_magazine/ammo_box/b12g/beanbag, -/obj/item/ammo_magazine/ammo_box/b12g/beanbag, -/obj/item/ammo_magazine/ammo_box/b12g/stunshell, ->>>>>>> aa6720eacd... Merge pull request #13898 from KillianKirilenko/kk-talontweaks -/obj/effect/floor_decal/industrial/outline/grey, -/obj/item/weapon/gun/projectile/shotgun/pump/combat{ - pixel_y = 3 - }, -/obj/item/weapon/gun/projectile/shotgun/pump/combat{ - pixel_y = -3 - }, -/turf/simulated/floor/tiled/techfloor, -/area/ship/ert/armoury_st) -"LB" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/yellow{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/simulated/floor/tiled/white, -/area/ship/ert/med_surg) -"LC" = ( -/obj/structure/table/rack/steel, -/obj/machinery/light/no_nightshift{ - dir = 1 - }, -/obj/machinery/firealarm/alarms_hidden{ - pixel_y = 26 - }, -/obj/item/weapon/gun/energy/laser{ - pixel_y = 6 - }, -/obj/item/weapon/gun/energy/laser{ - pixel_y = 4 - }, -/obj/effect/floor_decal/industrial/outline/grey, -/obj/item/weapon/gun/energy/laser{ - pixel_y = 2 - }, -/obj/item/weapon/gun/energy/laser, -/obj/item/weapon/gun/energy/laser{ - pixel_y = -2 - }, -/obj/item/weapon/gun/energy/laser{ - pixel_y = -4 - }, -/turf/simulated/floor/tiled/techfloor, -/area/ship/ert/armoury_st) -"LH" = ( -/obj/machinery/shield_gen/external, -/obj/effect/floor_decal/corner/white, -/obj/effect/floor_decal/industrial/outline/blue, -/turf/simulated/floor/tiled/techfloor, -/area/ship/ert/eng_storage) -"LJ" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/ship/ert/med_surg) -"LR" = ( -/obj/machinery/door/airlock/external, -/obj/effect/map_helper/airlock/door/ext_door, -/turf/simulated/floor/tiled/techfloor, -/area/ship/ert/dock_port) -"LV" = ( -/obj/structure/table/steel_reinforced, -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/unary/vent_pump/on, -/obj/machinery/button/remote/blast_door{ - description_fluff = "\\(OOC) DO NOT TOUCH THIS BUTTON WITHOUT THE EXPLICIT PERMISSION OF AN ADMINISTRATOR."; - dir = 1; - id = "NRV_DELTA"; - name = "DELTA ACCESS CONTROL"; - req_one_access = list(108) - }, -/turf/simulated/floor/tiled/techmaint, -/area/ship/ert/armoury_dl) -"LX" = ( -/obj/structure/hull_corner/long_horiz{ - dir = 6 - }, -/turf/simulated/floor/reinforced/airless, -/area/ship/ert/hallways_aft) -"LZ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/ship/ert/med_surg) -"Mb" = ( -/obj/machinery/computer/operating{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/ship/ert/med_surg) -"Md" = ( -/obj/structure/table/rack/steel, -/obj/item/weapon/gun/energy/taser{ - pixel_y = 3 - }, -/obj/item/weapon/gun/energy/taser{ - pixel_y = 1 - }, -/obj/item/weapon/gun/energy/taser{ - pixel_y = -1 - }, -/obj/item/weapon/gun/energy/taser{ - pixel_y = -3 - }, -/obj/effect/floor_decal/industrial/outline/grey, -/turf/simulated/floor/tiled/techfloor, -/area/ship/ert/armoury_st) -"Me" = ( -/obj/structure/table/rack/steel, -<<<<<<< HEAD -/obj/item/weapon/storage/box/shotgunshells/large, -/obj/item/weapon/storage/box/shotgunshells/large, -/obj/item/weapon/storage/box/shotgunammo/large, -/obj/item/weapon/storage/box/shotgunammo/large, -/obj/item/weapon/storage/box/empshells/large, -/obj/item/weapon/storage/box/flashshells/large, -/obj/item/weapon/storage/box/beanbags/large, -/obj/item/weapon/storage/box/beanbags/large, -/obj/item/weapon/storage/box/stunshells/large, -======= -/obj/item/ammo_magazine/ammo_box/b12g/pellet, -/obj/item/ammo_magazine/ammo_box/b12g/pellet, -/obj/item/ammo_magazine/ammo_box/b12g, -/obj/item/ammo_magazine/ammo_box/b12g, -/obj/item/ammo_magazine/ammo_box/b12g/emp, -/obj/item/ammo_magazine/ammo_box/b12g/flash, -/obj/item/ammo_magazine/ammo_box/b12g/beanbag, -/obj/item/ammo_magazine/ammo_box/b12g/beanbag, -/obj/item/ammo_magazine/ammo_box/b12g/stunshell, ->>>>>>> aa6720eacd... Merge pull request #13898 from KillianKirilenko/kk-talontweaks -/obj/effect/floor_decal/industrial/outline/grey, -/obj/item/weapon/gun/projectile/automatic/as24{ - pixel_y = 3 - }, -/obj/item/weapon/gun/projectile/automatic/as24{ - pixel_y = -3 - }, -/turf/simulated/floor/tiled/techfloor, -/area/ship/ert/armoury_dl) -"Mm" = ( -/turf/simulated/wall/rshull, -/area/ship/ert/teleporter) -"Ms" = ( -/turf/simulated/floor/tiled/techmaint, -/area/ship/ert/teleporter) -"Mt" = ( -/obj/structure/table/rack/steel, -/obj/item/weapon/gun/energy/netgun{ - pixel_y = -4 - }, -/obj/effect/floor_decal/industrial/outline/grey, -/obj/item/weapon/gun/energy/sniperrifle{ - battery_lock = 0; - pixel_y = 6 - }, -/turf/simulated/floor/tiled/techfloor, -/area/ship/ert/armoury_st) -"Mv" = ( -/obj/item/device/perfect_tele_beacon/stationary{ - tele_name = "NRV Von Braun Teleporter Room"; - tele_network = "centcom" - }, -/turf/simulated/floor/tiled/techmaint, -/area/ship/ert/teleporter) -"Mx" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/effect/floor_decal/corner/white, -/turf/simulated/floor/tiled/techmaint, -/area/ship/ert/hangar) -"My" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/power/apc/hyper{ - alarms_hidden = 1; - dir = 4; - name = "VB APC - East"; +/obj/effect/map_helper/airlock/sensor/chamber_sensor, +/obj/machinery/airlock_sensor{ pixel_x = 24 }, -/obj/structure/cable/green{ - d2 = 8; - icon_state = "0-8" - }, +/obj/effect/floor_decal/industrial/warning, /turf/simulated/floor/tiled/techfloor, -/area/ship/ert/engineering) -"MC" = ( -/obj/structure/sink{ - dir = 4; - pixel_x = 12; - pixel_y = 8 - }, -/obj/structure/medical_stand, -/turf/simulated/floor/tiled/white, -/area/ship/ert/med_surg) -"MD" = ( -/obj/effect/floor_decal/corner/red{ - dir = 1 - }, -/obj/structure/reagent_dispensers/watertank/high, -/obj/effect/floor_decal/industrial/outline/blue, -/turf/simulated/floor/tiled/techmaint, -/area/ship/ert/hangar) -"MK" = ( -/obj/structure/sign/nosmoking_1, -/turf/simulated/wall/rshull, -/area/ship/ert/engine) -"ML" = ( -/obj/machinery/door/blast/regular/open{ - id = "ERT_Shuttle_Rear"; - name = "Boarding Hatch" - }, -/turf/simulated/floor/tiled/techmaint, -/area/shuttle/ert_ship_boat) -"MQ" = ( -/obj/effect/floor_decal/corner/white{ - dir = 6 - }, +/area/ship/ert/dock_star) +"XS" = ( +======= +/turf/simulated/floor/reinforced/airless, +/area/ship/ert/hallways_aft) +"XN" = ( +>>>>>>> c55e7a1c3b... Merge pull request #14538 from KillianKirilenko/kk-vbupg /obj/structure/cable/yellow{ d1 = 4; d2 = 8; @@ -6673,472 +11279,59 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, -/turf/simulated/floor/tiled/techmaint, -/area/ship/ert/eng_storage) -"MT" = ( -/turf/simulated/floor/tiled/techmaint, -/area/shuttle/ert_ship_boat) -"MU" = ( -/obj/structure/window/reinforced, -/turf/simulated/floor/tiled/techmaint, -/area/shuttle/ert_ship_boat) -"MZ" = ( -/turf/simulated/wall/rshull, -/area/ship/ert/med_surg) -"Na" = ( -/obj/machinery/door/firedoor/border_only, -/obj/machinery/door/airlock/glass{ +/obj/machinery/door/firedoor/multi_tile{ + dir = 1 + }, +/obj/machinery/door/airlock/multi_tile/glass{ + dir = 1; req_one_access = list(103) }, /turf/simulated/floor/tiled/techmaint, -/area/ship/ert/dock_port) -"Nb" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/techfloor, -/area/ship/ert/engineering) -"Nd" = ( -/obj/effect/floor_decal/corner/white{ - dir = 1 - }, +/area/ship/ert/med) +"XQ" = ( +/obj/structure/table/steel_reinforced, +/obj/machinery/chemical_dispenser/ert, +/obj/item/weapon/reagent_containers/glass/beaker/large, /turf/simulated/floor/tiled/techfloor, /area/ship/ert/med) -"Nf" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/turf/simulated/floor/tiled/techmaint, -/area/ship/ert/hangar) -"Ng" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/obj/machinery/button/remote/blast_door{ - id = "ERT_Shuttle_Fore"; - name = "ERT Deployment Access"; - pixel_y = 24; - req_access = list(103) - }, -/turf/simulated/floor/tiled/techmaint, -/area/shuttle/ert_ship_boat) -"Nk" = ( -/obj/machinery/pointdefense{ - id_tag = "vonbraun_pd" - }, -/obj/machinery/light/no_nightshift{ - dir = 4 - }, -/turf/simulated/floor/reinforced/airless, -/area/ship/ert/engine) -"Np" = ( -/obj/machinery/light/no_nightshift{ - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor, -/area/ship/ert/engine) -"Nq" = ( -/obj/structure/cable/yellow{ - d2 = 2; - icon_state = "0-2" - }, -/obj/machinery/power/apc/hyper{ - alarms_hidden = 1; - dir = 8; - name = "VB APC - West"; - pixel_x = -24 - }, -/turf/simulated/floor/tiled/techfloor, -/area/ship/ert/gunnery) -"Nu" = ( -/obj/structure/hull_corner/long_horiz{ - dir = 6 - }, -/turf/simulated/floor/reinforced/airless, -/area/ship/ert/engine) -"Nz" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/machinery/portable_atmospherics/powered/scrubber, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/techmaint, -/area/ship/ert/hangar) -"NH" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/fuel, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -<<<<<<< HEAD -/obj/effect/catwalk_plated/dark, -======= -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, +"XS" = ( /obj/structure/cable/yellow{ d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/structure/cable/yellow{ - d1 = 4; d2 = 8; - icon_state = "4-8" + icon_state = "2-8" }, -/obj/effect/catwalk_plated/techfloor, ->>>>>>> aa6720eacd... Merge pull request #13898 from KillianKirilenko/kk-talontweaks -/turf/simulated/floor/plating, -/area/ship/ert/engine) -"NI" = ( -/obj/structure/table/rack, -/obj/item/weapon/storage/secure/briefcase/nsfw_pack_hybrid, -/obj/item/weapon/storage/belt/explorer/pathfinder, -/obj/item/weapon/storage/belt/explorer/pathfinder{ - name = "ERT belt" - }, -/turf/simulated/floor/wood, -/area/ship/ert/commander) -"NJ" = ( -/obj/machinery/optable, -/turf/simulated/floor/tiled/white, -/area/ship/ert/med_surg) -"NP" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/binary/pump/fuel/on, -/turf/simulated/floor/tiled/techfloor, -/area/ship/ert/engine) -"NR" = ( -/obj/machinery/light/no_nightshift, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/techmaint, -/area/ship/ert/engineering) -"NU" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/techmaint, -/area/ship/ert/armoury_dl) -"NY" = ( -/obj/machinery/door/airlock/glass_command{ - req_one_access = list(103) - }, -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only, -/turf/simulated/floor/tiled/techmaint, -/area/ship/ert/bridge) -"NZ" = ( -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/techmaint, -/area/ship/ert/engineering) -"Oa" = ( -/obj/machinery/door/airlock/glass_engineering{ - name = "Engineering"; - req_access = list(103) - }, -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only, -/turf/simulated/floor/tiled/techmaint, -/area/ship/ert/engineering) -"Of" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/fuel, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 +/obj/machinery/alarm/alarms_hidden{ + pixel_y = 26 }, /turf/simulated/floor/tiled/techfloor, -/area/ship/ert/engine) -"Og" = ( -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/effect/floor_decal/corner/yellow{ - dir = 9 - }, -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, -/turf/simulated/floor/tiled/techmaint, -/area/ship/ert/hallways_aft) -"Oh" = ( -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only, -/obj/machinery/door/airlock/glass{ - req_one_access = list(103) - }, -/turf/simulated/floor/tiled/techmaint, -/area/ship/ert/hallways_aft) -"Oi" = ( -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/techmaint, -/area/ship/ert/bridge) -"Ok" = ( -/obj/effect/floor_decal/industrial/warning, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/embedded_controller/radio/simple_docking_controller{ - id_tag = "ert_boarding_shuttle_dock"; - pixel_y = 22 - }, -/turf/simulated/floor/tiled/techmaint, -/area/ship/ert/hangar) -"Om" = ( -/obj/machinery/pointdefense{ - id_tag = "vonbraun_pd" - }, -/turf/simulated/floor/reinforced/airless, -/area/ship/ert/gunnery) -"On" = ( -/turf/simulated/floor/tiled/techmaint, -/area/ship/ert/armoury_dl) -"Oq" = ( -/obj/machinery/light/no_nightshift{ - dir = 8 +/area/ship/ert/engineering) +"XU" = ( +/obj/effect/floor_decal/corner/white{ + dir = 10 }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 6 }, /turf/simulated/floor/tiled/techmaint, -/area/ship/ert/hallways_aft) -"Ox" = ( -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/simulated/floor/tiled/techfloor, +/area/ship/ert/hangar) +"XW" = ( +/turf/simulated/wall/rshull, /area/ship/ert/engineering) -"Oy" = ( -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" +"XX" = ( +/turf/simulated/wall/rshull, +/area/ship/ert/brig) +"XZ" = ( +/obj/machinery/door/airlock/external, +/obj/machinery/airlock_sensor/airlock_exterior{ + pixel_x = 24; + pixel_y = -11 }, -/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/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, -/obj/effect/catwalk_plated/techmaint, -/turf/simulated/floor/plating, -/area/ship/ert/bridge) -"OE" = ( -/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/manifold4w/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, -/obj/effect/catwalk_plated/techmaint, -/turf/simulated/floor/plating, -/area/ship/ert/bridge) -"OF" = ( -/obj/structure/cable/yellow{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/techmaint, -/area/ship/ert/bridge) -"OH" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/map_helper/airlock/door/ext_door, +/obj/effect/map_helper/airlock/sensor/ext_sensor, /turf/simulated/floor/tiled/techfloor, -/area/ship/ert/engineering) -"OM" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/obj/machinery/light/no_nightshift{ - dir = 8 - }, -/obj/machinery/porta_turret/stationary/CIWS, -/turf/simulated/floor/reinforced/airless, -/area/ship/ert/gunnery) -"ON" = ( -/obj/machinery/atmospherics/unary/vent_pump/on, -/turf/simulated/floor/tiled/techfloor, -/area/ship/ert/gunnery) -"OO" = ( -/obj/structure/table/rack/steel, -/obj/item/weapon/gun/energy/sniperrifle{ - battery_lock = 0; - pixel_y = -3 - }, -/obj/item/weapon/gun/energy/sniperrifle{ - battery_lock = 0; - pixel_y = 3 - }, -/obj/effect/floor_decal/industrial/outline/grey, -/turf/simulated/floor/tiled/techfloor, -/area/ship/ert/armoury_dl) -"OR" = ( -/obj/effect/floor_decal/corner/red{ - dir = 6 - }, -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/techmaint, -/area/ship/ert/hallways) -"OS" = ( -/obj/structure/bed/chair/bay/comfy/captain{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/techmaint, -/area/ship/ert/bridge) -"OT" = ( -/obj/machinery/computer/ship/helm{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/techfloor, -/area/ship/ert/bridge) -"OU" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/effect/landmark{ - name = "Commando" - }, -/turf/simulated/floor/tiled/techmaint, -/area/ship/ert/barracks) -"OW" = ( +/area/ship/ert/dock_star) +"Yd" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, @@ -7155,20 +11348,250 @@ }, /turf/simulated/floor/tiled/techfloor, /area/ship/ert/bridge) -"OX" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ +"Ye" = ( +<<<<<<< HEAD +/turf/simulated/floor/reinforced/airless, +/area/ship/ert/barracks) +"Yk" = ( +/obj/structure/cable/yellow{ + d2 = 2; + icon_state = "0-2" +======= +/turf/simulated/wall/rshull, +/area/ship/ert/dock_port) +"Yf" = ( +/obj/machinery/atmospherics/pipe/simple/visible{ dir = 4 +>>>>>>> c55e7a1c3b... Merge pull request #14538 from KillianKirilenko/kk-vbupg }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ +/obj/machinery/meter, +/obj/machinery/power/apc/hyper{ + alarms_hidden = 1; + name = "VB APC - South"; + pixel_y = -24 + }, +/obj/structure/cable/yellow, +/obj/machinery/light/small{ dir = 4 }, /turf/simulated/floor/tiled/techfloor, +/area/ship/ert/dock_star) +"Yk" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/tiled/techmaint, +/area/ship/ert/barracks) +"Ys" = ( +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techmaint, +/area/ship/ert/hallways_aft) +"Yt" = ( +/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/tiled/techmaint, +/area/ship/ert/teleporter) +"Yu" = ( +/obj/effect/floor_decal/corner/blue{ + dir = 8 + }, +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/techmaint, +/area/ship/ert/hallways) +"Yv" = ( +/obj/machinery/power/port_gen/pacman/super/potato, +/obj/structure/cable/green, +/obj/machinery/light/no_nightshift, +/obj/effect/decal/cleanable/greenglow, +/turf/simulated/floor/tiled/techfloor, +/area/ship/ert/engineering) +"Yx" = ( +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/techfloor, +<<<<<<< HEAD /area/ship/ert/bridge) -"OY" = ( -/obj/effect/shuttle_landmark/premade/ert_ship_star, -/turf/space, -/area/space) -"OZ" = ( +======= +/area/ship/ert/teleporter) +"YC" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/techmaint, +/area/ship/ert/med) +"YK" = ( +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/tiled/white, +/area/ship/ert/med_surg) +>>>>>>> c55e7a1c3b... Merge pull request #14538 from KillianKirilenko/kk-vbupg +"YN" = ( +/obj/machinery/door/airlock/centcom{ + name = "Reactor Access"; + req_access = list(103) + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/blast/regular/open{ + dir = 4; + id = "VB_Rear_Blast"; + name = "Blast Shield" + }, +/turf/simulated/floor/tiled/techfloor, +/area/ship/ert/engineering) +"YO" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/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/tiled/white, +/area/ship/ert/med_surg) +"YP" = ( +/obj/machinery/atmospherics/portables_connector/fuel{ + dir = 8 + }, +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/floor_decal/industrial/outline/red, +/turf/simulated/floor/tiled/techfloor, +/area/ship/ert/engine) +"YR" = ( +/obj/machinery/shipsensors, +/turf/simulated/floor/reinforced/airless, +/area/ship/ert/engineering) +"YS" = ( +/obj/machinery/sleep_console, +/turf/simulated/floor/tiled/white, +/area/ship/ert/med_surg) +"YU" = ( +/obj/structure/table/rack, +/obj/item/weapon/storage/backpack/ert/commander, +/obj/item/clothing/suit/space/void/responseteam/command, +/obj/item/clothing/head/helmet/ert/command, +/obj/item/clothing/suit/armor/vest/ert/command, +/turf/simulated/floor/wood, +/area/ship/ert/commander) +"YW" = ( +/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/tiled/techmaint, +/area/ship/ert/armoury_dl) +"YX" = ( +/obj/machinery/vending/wallmed1/public{ + dir = 4; + pixel_x = -23 + }, +/obj/structure/table/steel_reinforced, +/turf/simulated/floor/tiled/techfloor, +/area/ship/ert/brig) +"YZ" = ( +/obj/structure/closet/crate/freezer, +/obj/item/weapon/reagent_containers/blood/OMinus, +/obj/item/weapon/reagent_containers/blood/OMinus, +/obj/item/weapon/reagent_containers/blood/OMinus, +/obj/item/weapon/reagent_containers/blood/OMinus, +/obj/item/weapon/reagent_containers/blood/OMinus, +/obj/item/weapon/reagent_containers/blood/OMinus, +/obj/item/weapon/reagent_containers/blood/OMinus, +/obj/item/weapon/reagent_containers/blood/OMinus, +/obj/machinery/light_switch{ + dir = 1; + pixel_y = -23 + }, +/obj/effect/floor_decal/industrial/outline, +<<<<<<< HEAD +/turf/simulated/floor/tiled/techfloor, +/area/ship/ert/med) +"ZI" = ( +/obj/machinery/power/terminal{ +======= +/turf/simulated/floor/tiled/white, +/area/ship/ert/med_surg) +"Za" = ( +/obj/structure/bed/chair/bay/shuttle{ +>>>>>>> c55e7a1c3b... Merge pull request #14538 from KillianKirilenko/kk-vbupg + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor, +<<<<<<< HEAD +/area/ship/ert/engineering) +"ZL" = ( +/obj/machinery/pointdefense{ + id_tag = "vonbraun_pd" + }, +/turf/simulated/floor/reinforced/airless, +======= +/area/shuttle/ert_ship_boat) +"Zb" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/fuel, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techfloor, +>>>>>>> c55e7a1c3b... Merge pull request #14538 from KillianKirilenko/kk-vbupg +/area/ship/ert/engine) +"Zc" = ( /obj/structure/table/standard, /obj/item/weapon/soap{ pixel_x = -6; @@ -7178,6 +11601,10 @@ pixel_x = -2; pixel_y = -2 }, +<<<<<<< HEAD +/obj/machinery/power/port_gen/pacman/mrs, +/obj/effect/floor_decal/industrial/outline/yellow, +======= /obj/item/weapon/soap{ pixel_x = 2; pixel_y = 2 @@ -7212,1242 +11639,37 @@ }, /turf/simulated/floor/tiled/techfloor, /area/ship/ert/med) -"Pc" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only, -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor, -/area/ship/ert/bridge) -"Pe" = ( -/obj/machinery/button/remote/blast_door{ - dir = 1; - id = "ERT_Shuttle_Rear"; - name = "ERT Shuttle Access"; - pixel_y = -25; - req_access = list(103) - }, -/obj/machinery/door/blast/regular/open{ - id = "ERT_Shuttle_Rear"; - name = "Boarding Hatch" - }, -/turf/simulated/floor/tiled/techmaint, -/area/shuttle/ert_ship_boat) -"Pl" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/machinery/door/blast/regular{ - closed_layer = 4; - dir = 4; - id = "NRV_DELTA"; - layer = 4 - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/tiled/techfloor, -/area/ship/ert/armoury_dl) -"Pn" = ( -/obj/item/modular_computer/console/preset/engineering{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor, -/area/ship/ert/bridge) -"Pq" = ( -/turf/simulated/floor/tiled/techfloor, -/area/ship/ert/med) -"Pw" = ( -/obj/machinery/shipsensors{ - dir = 1 - }, -/turf/simulated/floor/reinforced/airless, -/area/ship/ert/atmos) -"Py" = ( -/obj/machinery/light/no_nightshift{ - dir = 1 - }, -/obj/machinery/porta_turret/stationary/CIWS, -/turf/simulated/floor/reinforced/airless, -/area/ship/ert/med) -"PA" = ( -/obj/machinery/recharge_station, -/turf/simulated/floor/tiled/techfloor, -/area/ship/ert/med) -"PC" = ( -/obj/machinery/door/blast/regular{ - dir = 4; - id = "NRV_DELTA" - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/tiled/techmaint, -/area/ship/ert/armoury_dl) -"PD" = ( -/obj/structure/sign/department/medbay{ - name = "MEDICAL OUTFITTING & SUPPLIES" - }, -/turf/simulated/wall/shull, -/area/ship/ert/med) -"PE" = ( -/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/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/effect/catwalk_plated/techmaint, -/turf/simulated/floor/plating, -/area/ship/ert/eng_storage) -"PG" = ( -/obj/machinery/alarm/alarms_hidden{ - dir = 1; - pixel_y = -26 - }, -/turf/simulated/floor/tiled/white, -/area/ship/ert/med_surg) -"PH" = ( -/obj/machinery/power/smes/buildable/point_of_interest, -/obj/structure/cable/yellow, -/turf/simulated/floor/tiled/techfloor, -/area/ship/ert/engineering) -"PO" = ( -/turf/simulated/floor/reinforced/airless, -/area/ship/ert/gunnery) -"PP" = ( -/obj/machinery/porta_turret/stationary/CIWS, -/turf/simulated/floor/reinforced/airless, -/area/ship/ert/engineering) -"PS" = ( -/obj/machinery/shield_capacitor, +"Zi" = ( +/obj/machinery/shieldwallgen, /obj/effect/floor_decal/industrial/outline/blue, +>>>>>>> c55e7a1c3b... Merge pull request #14538 from KillianKirilenko/kk-vbupg /turf/simulated/floor/tiled/techfloor, /area/ship/ert/eng_storage) -"PX" = ( -/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/tiled/techmaint, -/area/ship/ert/teleporter) -"PZ" = ( -/obj/structure/table/bench/steel, -/obj/effect/landmark{ - name = "Commando" - }, -/turf/simulated/floor/tiled/steel_grid, -/area/space) -"Qc" = ( -/obj/machinery/power/apc/hyper{ - alarms_hidden = 1; - dir = 8; - name = "VB APC - West"; - pixel_x = -24 - }, -/obj/structure/cable/yellow{ - d2 = 2; - icon_state = "0-2" - }, -/obj/machinery/light/no_nightshift{ - dir = 8 - }, -/turf/simulated/floor/tiled/techmaint, -/area/ship/ert/hangar) -"Qh" = ( -/obj/machinery/light/no_nightshift{ - dir = 1 - }, -/obj/machinery/alarm/alarms_hidden{ - pixel_y = 26 - }, -/turf/simulated/floor/wood, -/area/ship/ert/commander) -"Ql" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/machinery/alarm/alarms_hidden{ - pixel_y = 26 - }, -/turf/simulated/floor/tiled/techmaint, -/area/ship/ert/dock_star) -"Qz" = ( -/obj/item/weapon/circuitboard/aiupload, -/obj/item/weapon/circuitboard/borgupload, -/obj/item/weapon/circuitboard/smes, -/obj/item/weapon/aiModule/nanotrasen, -/obj/item/weapon/aiModule/reset, -/obj/item/weapon/aiModule/freeformcore, -/obj/item/weapon/aiModule/protectStation, -/obj/item/weapon/aiModule/quarantine, -/obj/item/weapon/aiModule/paladin, -/obj/item/weapon/aiModule/robocop, -/obj/item/weapon/aiModule/safeguard, -/obj/structure/table/steel_reinforced, -/obj/item/weapon/smes_coil, -/obj/item/weapon/smes_coil, -/obj/item/device/t_scanner/advanced{ - pixel_x = -3 - }, -/obj/item/device/t_scanner/advanced{ - pixel_x = 3 - }, -/obj/machinery/power/apc/hyper{ - alarms_hidden = 1; - name = "VB APC - South"; - pixel_y = -24 - }, -/obj/structure/cable/yellow, -/turf/simulated/floor/tiled/techfloor, -/area/ship/ert/eng_storage) -"QE" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/turf/simulated/floor/reinforced, -/area/ship/ert/hangar) -"QM" = ( -/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/tiled/techmaint, -/area/ship/ert/armoury_dl) -"QP" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/turf/simulated/floor/tiled/techmaint, -/area/shuttle/ert_ship_boat) -"QR" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/techmaint, -/area/shuttle/ert_ship_boat) -"QS" = ( -/obj/structure/bed/chair/bay/shuttle{ - dir = 4 - }, -/obj/machinery/button/remote/blast_door{ - dir = 8; - id = "ERT_Blast_Windows"; - name = "Emergency Blast Shields"; - pixel_x = 55; - req_one_access = list(101) - }, -/turf/simulated/floor/tiled/techmaint, -/area/shuttle/ert_ship_boat) -"QT" = ( -/turf/simulated/floor/tiled/techmaint, -/area/ship/ert/med) -"QV" = ( -/obj/structure/hull_corner{ - dir = 1 - }, -/turf/simulated/shuttle/plating/airless/carry, -/area/shuttle/ert_ship_boat) -"QX" = ( -/obj/structure/window/reinforced, -/obj/machinery/computer/shuttle_control/explore/ert_ship_boat{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/simulated/floor/tiled/techmaint, -/area/shuttle/ert_ship_boat) -"QY" = ( -/obj/structure/table/rack, -/obj/item/weapon/rig/ert, -/obj/item/weapon/cell/slime, -/turf/simulated/floor/wood, -/area/ship/ert/commander) -"QZ" = ( -/turf/simulated/floor/tiled/techfloor, -/area/ship/ert/engine) -"Rc" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/obj/effect/shuttle_landmark/shuttle_initializer/ert_ship_boat, -/turf/simulated/floor/tiled/techmaint, -/area/shuttle/ert_ship_boat) -"Rd" = ( -/obj/machinery/light/no_nightshift{ - dir = 1 - }, -/turf/simulated/floor/reinforced/airless, -/area/ship/ert/engineering) -"Rh" = ( -/obj/machinery/door/airlock/glass_external, -/obj/effect/map_helper/airlock/door/int_door, -/obj/machinery/door/firedoor/multi_tile, -/turf/simulated/floor/tiled/techfloor, -/area/ship/ert/dock_star) -"Rt" = ( -/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/tiled/techmaint, -/area/ship/ert/bridge) -"Rv" = ( -/obj/machinery/door/firedoor/multi_tile{ - dir = 1 - }, -/obj/machinery/door/airlock/glass_medical{ - name = "Medical Bay"; - req_access = list(103) - }, -/turf/simulated/floor/tiled/white, -/area/ship/ert/med_surg) -"Rw" = ( -/obj/machinery/vending/security, -/turf/simulated/floor/tiled/techfloor, +"Zo" = ( +/turf/simulated/wall/rshull, /area/ship/ert/barracks) -"Rz" = ( -/obj/machinery/door/airlock/glass_security{ - req_one_access = list(103) - }, -/obj/machinery/door/blast/regular{ - id = "NRV_DELTA" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/door/firedoor/multi_tile{ - dir = 1 - }, -/turf/simulated/floor/tiled/techmaint, -/area/ship/ert/armoury_dl) -"RB" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor, -/area/ship/ert/engine) -"RC" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/fuel{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/turf/simulated/floor/tiled/techfloor, -/area/ship/ert/engine) -"RO" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ - dir = 9 - }, -/turf/simulated/floor/tiled/techfloor, -/area/ship/ert/engine) -"RQ" = ( -/obj/machinery/door/airlock/glass_engineering{ - name = "Engineering"; - req_access = list(103) - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/door/firedoor/border_only, -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/techmaint, -/area/ship/ert/engineering) -"RS" = ( -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/door/firedoor/border_only, -/obj/machinery/door/airlock/highsecurity{ - name = "Teleporter Chamber"; - req_one_access = list(103) - }, -/turf/simulated/floor/tiled/techmaint, -/area/ship/ert/teleporter) -"Sc" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor, -/area/ship/ert/engineering) -"Sh" = ( -/obj/machinery/door/airlock/glass_medical{ - name = "Medical Bay"; - req_access = list(103) - }, -/obj/machinery/door/firedoor/border_only, -/turf/simulated/floor/tiled/techmaint, -/area/ship/ert/med_surg) -"Sj" = ( -/obj/machinery/light_switch{ - dir = 4; - pixel_x = -23 - }, -/turf/simulated/floor/tiled/techfloor, -/area/ship/ert/bridge) -"Sl" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/obj/structure/railing/grey, -/obj/structure/table/steel_reinforced, -/turf/simulated/floor/tiled/techfloor, -/area/ship/ert/bridge) -"Sp" = ( -/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/effect/catwalk_plated/techmaint, -/turf/simulated/floor/plating, -/area/ship/ert/med) -"Sr" = ( -/obj/machinery/light/no_nightshift, -/turf/simulated/floor/reinforced/airless, -/area/ship/ert/barracks) -"St" = ( -/obj/structure/table/rack/steel, -/obj/item/device/flash{ - pixel_x = -4; - pixel_y = -4 - }, -/obj/item/device/flash{ - pixel_x = -2; - pixel_y = -2 - }, -/obj/item/device/flash, -/obj/item/device/flash{ - pixel_x = 2; - pixel_y = 2 - }, -/obj/item/device/flash{ - pixel_x = 4; - pixel_y = 4 - }, -/obj/item/device/flash{ - pixel_x = 6; - pixel_y = 6 - }, -/obj/effect/floor_decal/industrial/outline/grey, -/turf/simulated/floor/tiled/techfloor, -/area/ship/ert/hallways) -"Sx" = ( -/obj/structure/table/rack/steel, -/obj/item/ammo_magazine/m9mmp90{ - pixel_x = 12 - }, -/obj/item/ammo_magazine/m9mmp90{ - pixel_x = 10 - }, -/obj/item/ammo_magazine/m9mmp90{ - pixel_x = 8 - }, -/obj/item/ammo_magazine/m9mmp90{ - pixel_x = 6 - }, -/obj/item/ammo_magazine/m9mmp90{ - pixel_x = 4 - }, -/obj/item/ammo_magazine/m9mmp90{ - pixel_x = 2 - }, -/obj/item/ammo_magazine/m9mmp90, -/obj/item/ammo_magazine/m9mmp90{ - pixel_x = -2 - }, -/obj/item/ammo_magazine/m9mmp90{ - pixel_x = -4 - }, -/obj/item/ammo_magazine/m9mmp90{ - pixel_x = -6 - }, -/obj/item/ammo_magazine/m9mmp90{ - pixel_x = -8 - }, -/obj/item/ammo_magazine/m9mmp90{ - pixel_x = -10 - }, -/obj/effect/floor_decal/industrial/outline/grey, -/obj/item/weapon/gun/projectile/automatic/p90{ - pixel_y = -6 - }, -/obj/item/weapon/gun/projectile/automatic/p90{ - pixel_y = -2 - }, -/obj/item/weapon/gun/projectile/automatic/p90{ - pixel_y = 2 - }, -/obj/item/weapon/gun/projectile/automatic/p90{ - pixel_y = 6 - }, -/turf/simulated/floor/tiled/techfloor, -/area/ship/ert/armoury_dl) -"Sy" = ( -/obj/structure/table/rack/steel, -/obj/item/weapon/gun/projectile/automatic/l6_saw{ - pixel_y = 3 - }, -/obj/item/weapon/gun/projectile/automatic/l6_saw{ - pixel_y = -3 - }, -/obj/item/ammo_magazine/m545saw{ - pixel_x = 6 - }, -/obj/item/ammo_magazine/m545saw{ - pixel_x = 2 - }, -/obj/item/ammo_magazine/m545saw{ - pixel_x = -2 - }, -/obj/item/ammo_magazine/m545saw{ - pixel_x = -6 - }, -/obj/effect/floor_decal/industrial/outline/grey, -/turf/simulated/floor/tiled/techfloor, -/area/ship/ert/armoury_dl) -"Sz" = ( +"Zv" = ( /turf/simulated/wall/rshull, /area/ship/ert/dock_star) -"SA" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/power/apc/hyper{ - alarms_hidden = 1; - dir = 4; - name = "VB APC - East"; - pixel_x = 24 - }, -/obj/structure/cable/yellow{ - d2 = 2; - icon_state = "0-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/techmaint, -/area/ship/ert/hallways_aft) -"SB" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/ship/ert/med_surg) -"SD" = ( -/obj/structure/table/rack, -/obj/item/ammo_magazine/m44{ - pixel_x = -3 - }, -/obj/item/ammo_magazine/m44{ - pixel_x = 3 - }, -/obj/item/weapon/gun/projectile/deagle, -/turf/simulated/floor/wood, -/area/ship/ert/commander) -"SE" = ( -/obj/machinery/light/no_nightshift{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor, -/area/ship/ert/engine) -"SF" = ( -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/techmaint, -/area/ship/ert/armoury_st) -"SG" = ( -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/techfloor, -/area/ship/ert/eng_storage) -"SI" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/obj/structure/table/steel_reinforced, -/obj/item/weapon/rcd_ammo/large{ - pixel_x = -8; - pixel_y = -8 - }, -/obj/item/weapon/rcd_ammo/large{ - pixel_x = -6; - pixel_y = -6 - }, -/obj/item/weapon/rcd_ammo/large{ - pixel_x = -4; - pixel_y = -4 - }, -/obj/item/weapon/rcd_ammo/large{ - pixel_x = -2; - pixel_y = -2 - }, -/obj/item/weapon/rcd_ammo/large, -/obj/item/weapon/rcd_ammo/large{ - pixel_x = 2; - pixel_y = 2 - }, -/obj/item/weapon/rcd_ammo/large{ - pixel_x = 4; - pixel_y = 4 - }, -/obj/item/weapon/rcd_ammo/large{ - pixel_x = 6; - pixel_y = 6 - }, -/turf/simulated/floor/tiled/techfloor, -/area/ship/ert/eng_storage) -"SJ" = ( -/obj/machinery/atmospherics/pipe/simple/visible{ - dir = 5 - }, -/turf/simulated/wall/rshull, -/area/ship/ert/dock_star) -"SN" = ( -/obj/effect/map_helper/airlock/sensor/ext_sensor, -/obj/machinery/airlock_sensor/airlock_exterior{ - dir = 4; - pixel_x = 24; - pixel_y = 24 - }, -/turf/simulated/floor/airless, -/area/ship/ert/gunnery) -"SV" = ( -/obj/structure/table/rack/steel, -/obj/item/weapon/reagent_containers/hypospray{ - pixel_x = 6 - }, -/obj/item/weapon/reagent_containers/hypospray{ - pixel_x = 3 - }, -/obj/item/weapon/reagent_containers/hypospray, -/obj/item/weapon/reagent_containers/hypospray{ - pixel_x = -3 - }, -/obj/machinery/alarm/alarms_hidden{ - pixel_y = 26 - }, -/obj/effect/floor_decal/industrial/outline, -/obj/item/weapon/reagent_containers/hypospray{ - pixel_x = -6 - }, -/obj/item/weapon/reagent_containers/hypospray{ - pixel_x = -9 - }, -/turf/simulated/floor/tiled/techfloor, -/area/ship/ert/med) -"SZ" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/simulated/floor/tiled/techmaint, -/area/shuttle/ert_ship_boat) -"Tl" = ( -/turf/simulated/floor/tiled/techmaint, -/area/ship/ert/hangar) -"Tx" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/manifold/hidden/fuel{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor, -/area/ship/ert/engine) -"TB" = ( -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/techfloor, -/area/ship/ert/engineering) -"TF" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/white, -/area/ship/ert/med_surg) -"TG" = ( -/obj/machinery/airlock_sensor{ - dir = 8; - pixel_x = 22; - pixel_y = -24 - }, -/obj/effect/map_helper/airlock/sensor/int_sensor, -/turf/simulated/floor/tiled/techfloor, -/area/ship/ert/gunnery) -"TI" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/turf/simulated/floor/tiled/techmaint, -/area/ship/ert/armoury_dl) -"TM" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/techmaint, -/area/ship/ert/hallways_aft) -"TR" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/machinery/door/firedoor/border_only, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/door/blast/regular{ - closed_layer = 4; - id = "NRV_DELTA"; - layer = 4 - }, -/turf/simulated/floor/tiled/techfloor, -/area/ship/ert/armoury_dl) -"TU" = ( -/turf/simulated/floor/reinforced/airless, -/area/ship/ert/med) -"TZ" = ( -/obj/effect/floor_decal/industrial/warning, -/turf/simulated/floor/tiled/techmaint, -/area/ship/ert/teleporter) -"Ul" = ( -/obj/machinery/firealarm/alarms_hidden{ - dir = 1; - pixel_y = -26 - }, -/obj/item/modular_computer/console/preset/medical{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor, -/area/ship/ert/bridge) -"Un" = ( -/obj/machinery/door/firedoor/border_only, -/obj/machinery/door/airlock/glass{ - req_one_access = list(103) - }, -/turf/simulated/floor/tiled/techmaint, -/area/ship/ert/dock_star) -"Ut" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/machinery/alarm/alarms_hidden{ - pixel_y = 26 - }, -/obj/machinery/porta_turret/industrial/teleport_defense, -/obj/effect/floor_decal/industrial/outline/red, -/turf/simulated/floor/tiled/techfloor, -/area/ship/ert/teleporter) -"UD" = ( -/obj/machinery/disperser/middle{ - dir = 4 - }, -/turf/simulated/floor/airless, -/area/ship/ert/gunnery) -"UH" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/techmaint, -/area/ship/ert/armoury_dl) -"UI" = ( -/obj/structure/hull_corner{ - dir = 1 - }, -/turf/simulated/floor/reinforced/airless, -/area/ship/ert/med) -"UJ" = ( -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/turf/simulated/floor/tiled/techmaint, -/area/ship/ert/teleporter) -"UT" = ( -/obj/machinery/door/airlock/glass_security{ - req_one_access = list(103) - }, -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/door/firedoor/border_only, -/obj/machinery/door/blast/regular{ - closed_layer = 4; - id = "NRV_DELTA"; - layer = 4 - }, -/turf/simulated/floor/tiled/techmaint, -/area/ship/ert/armoury_dl) -"UU" = ( -/obj/machinery/shieldwallgen{ - anchored = 1; - name = "secured shield generator"; - req_access = list(103); - state = 1 - }, -/obj/structure/window/reinforced, -/obj/effect/floor_decal/industrial/warning, -/obj/structure/cable/yellow, -/obj/effect/floor_decal/industrial/outline/blue, -/turf/simulated/floor/tiled/techfloor, -/area/ship/ert/teleporter) -"UY" = ( -/obj/structure/table/steel_reinforced, -/obj/machinery/chemical_dispenser/full, -/obj/item/weapon/reagent_containers/glass/beaker/large, -/turf/simulated/floor/tiled/techfloor, -/area/ship/ert/med) -"Vg" = ( -/obj/structure/table/steel_reinforced, -/obj/machinery/recharger, -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/turf/simulated/floor/tiled/techmaint, -/area/ship/ert/armoury_dl) -"Vm" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/machinery/light_switch{ - pixel_y = 23 - }, -/turf/simulated/floor/tiled/techfloor, -/area/ship/ert/teleporter) -"Vn" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/turf/simulated/floor/tiled/techmaint, -/area/ship/ert/hangar) -"Vq" = ( -/turf/simulated/floor/tiled/techmaint, -/area/ship/ert/gunnery) -"VC" = ( -/obj/machinery/power/port_gen/pacman/super/potato, -/obj/structure/cable/green, -/obj/machinery/light/no_nightshift, -/obj/effect/decal/cleanable/greenglow, -/turf/simulated/floor/tiled/techfloor, -/area/ship/ert/engineering) -"VJ" = ( -/obj/machinery/door/firedoor/multi_tile{ - dir = 1 - }, -/obj/machinery/door/airlock/glass_medical{ - name = "Medical Bay"; - req_access = list(103) - }, -/turf/simulated/floor/tiled/techmaint, -/area/ship/ert/med) -"VN" = ( -/obj/machinery/disperser/front{ - dir = 4 - }, -/turf/simulated/floor/airless, -/area/ship/ert/gunnery) -"VO" = ( -/obj/effect/floor_decal/corner/blue{ - dir = 8 - }, -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/techmaint, -/area/ship/ert/hallways) -"VP" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/turf/simulated/floor/tiled/techmaint, -/area/ship/ert/hallways) -"VQ" = ( -/obj/structure/table/rack/steel, -/obj/effect/floor_decal/corner/red, -/obj/item/device/radio/off{ - pixel_x = -4; - pixel_y = -4 - }, -/obj/item/device/radio/off{ - pixel_x = -2; - pixel_y = -2 - }, -/obj/item/device/radio/off, -/obj/item/device/radio/off{ - pixel_x = 2; - pixel_y = 2 - }, -/obj/item/device/radio/off{ - pixel_x = 4; - pixel_y = 4 - }, -/obj/item/device/radio/off{ - pixel_x = 6; - pixel_y = 6 - }, -/obj/effect/floor_decal/industrial/outline/grey, -/turf/simulated/floor/tiled/techfloor, -/area/ship/ert/hallways) -"Wa" = ( -/obj/structure/closet/walllocker/emerglocker{ - pixel_y = 32 - }, -/obj/structure/bed/pod, -/obj/item/weapon/bedsheet/blue, -/obj/structure/curtain/open/bed, -/turf/simulated/floor/wood, -/area/ship/ert/commander) -"Wd" = ( -/obj/machinery/telecomms/relay, -/turf/simulated/floor/tiled/techfloor, -/area/ship/ert/atmos) -"Wj" = ( -/obj/machinery/light/no_nightshift{ - dir = 8 - }, -/obj/structure/cable/yellow{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/simulated/floor/tiled/techfloor, -/area/ship/ert/teleporter) -"Wl" = ( -/obj/structure/table/steel_reinforced, -/obj/machinery/light/no_nightshift{ - dir = 1 - }, -/obj/item/device/defib_kit/compact/combat/loaded{ - pixel_y = -3 - }, -/obj/item/device/defib_kit/compact/combat/loaded{ - pixel_y = 3 - }, -/turf/simulated/floor/tiled/techfloor, -/area/ship/ert/med) -"Wq" = ( -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/effect/floor_decal/corner/blue, -/turf/simulated/floor/tiled/techmaint, -/area/ship/ert/bridge) -"Wu" = ( -/obj/machinery/door/airlock/glass_security{ - req_one_access = list(103) - }, -/obj/machinery/door/firedoor/border_only, -/obj/machinery/door/blast/regular{ - closed_layer = 4; - id = "NRV_DELTA"; - layer = 4 - }, -/turf/simulated/floor/tiled/techmaint, -/area/ship/ert/armoury_dl) -"Wv" = ( -/obj/effect/shuttle_landmark/premade/ert_ship_near_star, -/turf/space, -/area/space) -"WA" = ( -/obj/effect/floor_decal/corner/red{ - dir = 1 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/turf/simulated/floor/tiled/techmaint, -/area/ship/ert/hangar) -"WC" = ( -/turf/simulated/floor/reinforced, -/area/ship/ert/hangar) -"WE" = ( -/obj/effect/floor_decal/corner/red{ - dir = 9 - }, -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/techmaint, -/area/ship/ert/hangar) -"WF" = ( -/obj/machinery/pointdefense{ - id_tag = "vonbraun_pd" - }, -/turf/simulated/floor/reinforced/airless, -/area/ship/ert/med) -"WH" = ( -/turf/simulated/floor/tiled/techfloor, -/area/ship/ert/barracks) -"WJ" = ( -/obj/structure/bed/chair/bay/shuttle{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor, -/area/shuttle/ert_ship_boat) -"WK" = ( -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/light_switch{ - dir = 8; - pixel_x = 23 - }, -/turf/simulated/floor/tiled/techmaint, -/area/ship/ert/dock_star) -"WO" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/fuel, -/turf/simulated/floor/tiled/techfloor, -/area/ship/ert/engine) -"WR" = ( -/obj/structure/filingcabinet/filingcabinet, -/turf/simulated/floor/wood, -/area/ship/ert/commander) -"WS" = ( -/obj/machinery/computer/ship/engines{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor, -/area/ship/ert/engineering) -"WV" = ( -/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/tiled/techmaint, -/area/ship/ert/barracks) -"WX" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/obj/effect/landmark{ - name = "Commando" - }, -/obj/effect/catwalk_plated/techmaint, -/turf/simulated/floor/plating, -/area/ship/ert/barracks) -"Xg" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/bed/chair/bay/chair/padded/blue{ - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor, -/area/ship/ert/engineering) -"Xh" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/obj/machinery/door/window/brigdoor/southright, -/turf/simulated/floor/tiled/techfloor, -/area/ship/ert/hallways_aft) -"Xo" = ( +"Zw" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 1 }, /turf/simulated/floor/tiled/techmaint, /area/ship/ert/med) -"Xu" = ( -/obj/structure/cable/yellow, -/obj/machinery/power/smes/buildable/point_of_interest, -/turf/simulated/floor/tiled/techfloor, -/area/ship/ert/engineering) -"Xw" = ( -/obj/machinery/button/remote/blast_door{ - dir = 1; - id = "Von_Braun_Cannon"; - name = "Cannon Port Access"; - pixel_y = -24; - req_one_access = list(103) +"Zx" = ( +/obj/effect/floor_decal/corner/white{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 4 }, /turf/simulated/floor/tiled/techmaint, -/area/ship/ert/gunnery) -"Xx" = ( -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/techfloor, -/area/ship/ert/teleporter) -"XB" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/techfloor, -/area/ship/ert/teleporter) -"XG" = ( -/turf/simulated/wall/rshull, -/area/ship/ert/eng_storage) -"XH" = ( -/obj/machinery/alarm/alarms_hidden{ - dir = 1; - pixel_y = -26 - }, -/turf/simulated/floor/tiled/techfloor, -/area/ship/ert/engine) -"XM" = ( -/obj/effect/map_helper/airlock/sensor/chamber_sensor, -/obj/machinery/airlock_sensor{ - pixel_x = 24 - }, -/obj/effect/floor_decal/industrial/warning, -/turf/simulated/floor/tiled/techfloor, -/area/ship/ert/dock_star) -"XS" = ( -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/firealarm/alarms_hidden{ - pixel_y = 26 - }, -/obj/structure/cable/yellow{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/simulated/floor/tiled/techfloor, -/area/ship/ert/engineering) -"XW" = ( -/turf/simulated/wall/rshull, -/area/ship/ert/engineering) -"XX" = ( -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/techfloor, -/area/ship/ert/teleporter) -"Yd" = ( -/turf/simulated/wall/rshull, -/area/ship/ert/armoury_dl) -"Ye" = ( -/turf/simulated/floor/reinforced/airless, -/area/ship/ert/barracks) -"Yk" = ( -/obj/structure/cable/yellow{ - d2 = 2; - icon_state = "0-2" - }, -/obj/machinery/power/apc/hyper{ - alarms_hidden = 1; - dir = 4; - name = "VB APC - East"; - pixel_x = 24 - }, -/turf/simulated/floor/tiled/techmaint, -/area/ship/ert/mech_bay) -"Yq" = ( +/area/ship/ert/hangar) +"ZC" = ( /obj/machinery/power/apc/hyper{ alarms_hidden = 1; dir = 4; @@ -8465,133 +11687,21 @@ }, /turf/simulated/floor/tiled/techfloor, /area/ship/ert/teleporter) -"Yr" = ( -/obj/machinery/light/no_nightshift{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor, -/area/ship/ert/teleporter) -"Ys" = ( -/obj/structure/window/reinforced, -/obj/effect/floor_decal/industrial/warning, -/obj/structure/cable/yellow, -/obj/machinery/shieldwallgen{ - anchored = 1; - name = "secured shield generator"; - req_access = list(103); - state = 1 - }, -/obj/effect/floor_decal/industrial/outline/blue, -/turf/simulated/floor/tiled/techfloor, -/area/ship/ert/teleporter) -"Yt" = ( -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/bed/chair/bay/chair/padded/blue{ - dir = 8 - }, -/turf/simulated/floor/tiled/techmaint, -/area/ship/ert/bridge) -"Yx" = ( -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/techfloor, -/area/ship/ert/bridge) -"YN" = ( -/obj/structure/sign/warning/radioactive{ - desc = "WARNING: VON BRAUN PTTOS EMIT RADIATION WHILST OPERATIONAL."; - name = "\improper RADIOACTIVE GENERATORS BEHIND THESE DOORS"; - pixel_x = -16 - }, -/turf/simulated/wall/shull, -/area/ship/ert/engineering) -"YO" = ( -/obj/structure/hull_corner{ - dir = 1 - }, -/turf/space, -/area/space) -"YP" = ( -/obj/machinery/atmospherics/pipe/manifold/visible/fuel{ - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor, -/area/ship/ert/engine) -"YR" = ( -/turf/simulated/floor/reinforced/airless, -/area/ship/ert/engineering) -"YU" = ( -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/light/no_nightshift{ - dir = 4 - }, -/turf/simulated/floor/tiled/techmaint, -/area/ship/ert/bridge) -"YW" = ( -/obj/structure/shuttle/engine/propulsion{ - dir = 8 - }, -/turf/simulated/floor/reinforced, -/area/shuttle/ert_ship_boat) -"Zi" = ( -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/techmaint, -/area/ship/ert/eng_storage) -"Zo" = ( -/turf/simulated/wall/rshull, -/area/ship/ert/barracks) -"Zv" = ( -/turf/simulated/floor/tiled/techfloor, -/area/ship/ert/eng_storage) -"Zx" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/techmaint, -/area/ship/ert/hangar) -"ZC" = ( -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/bed/chair/bay/chair/padded/blue, -/turf/simulated/floor/tiled/techmaint, -/area/ship/ert/bridge) "ZF" = ( -/obj/item/roller_holder, -/obj/item/roller/adv, -/obj/item/roller/adv{ - pixel_y = 6 +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/machinery/door/firedoor/border_only, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 1 }, -/obj/item/roller/adv{ - pixel_y = 12 +/obj/machinery/door/blast/regular/open{ + dir = 4; + id = "braun_blast_shields"; + name = "Blast Shield" }, -/obj/machinery/light/no_nightshift, -/obj/effect/floor_decal/industrial/outline, /turf/simulated/floor/tiled/techfloor, -/area/ship/ert/med) +/area/ship/ert/eng_storage) "ZI" = ( /obj/machinery/power/terminal{ dir = 1 @@ -8602,9 +11712,26 @@ }, /turf/simulated/floor/tiled/techfloor, /area/ship/ert/engineering) +"ZK" = ( +/obj/structure/table/steel_reinforced, +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/unary/vent_pump/on, +/obj/machinery/button/remote/blast_door{ + description_fluff = "\\(OOC) DO NOT TOUCH THIS BUTTON WITHOUT THE EXPLICIT PERMISSION OF AN ADMINISTRATOR."; + dir = 1; + id = "NRV_DELTA"; + name = "DELTA ACCESS CONTROL"; + req_one_access = list(108) + }, +/turf/simulated/floor/tiled/techmaint, +/area/ship/ert/armoury_dl) "ZL" = ( -/obj/machinery/pointdefense{ - id_tag = "vonbraun_pd" +/obj/structure/hull_corner/long_horiz{ + dir = 6 }, /turf/simulated/floor/reinforced/airless, /area/ship/ert/engine) @@ -8612,67 +11739,62 @@ /turf/simulated/wall/rshull, /area/ship/ert/bridge) "ZP" = ( -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/techmaint, -/area/ship/ert/bridge) -"ZT" = ( -/turf/simulated/wall/rshull, -/area/ship/ert/med) -"ZU" = ( -/obj/machinery/light/no_nightshift, -/obj/machinery/firealarm/alarms_hidden{ - dir = 1; - pixel_y = -26 - }, -/obj/machinery/power/port_gen/pacman/mrs, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/techfloor, -/area/ship/ert/eng_storage) -"ZW" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/turf/simulated/floor/tiled/techmaint, -/area/ship/ert/med) -"ZX" = ( -/obj/machinery/door/airlock/glass_command{ - req_one_access = list(103) - }, -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/door/firedoor/border_only, -/turf/simulated/floor/tiled/techmaint, -/area/ship/ert/bridge) -"ZY" = ( -/obj/effect/floor_decal/corner/blue{ - dir = 9 - }, -/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" + d2 = 2; + icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/techmaint, -/area/ship/ert/hallways) +/area/ship/ert/bridge) +"ZQ" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/ship/ert/med_surg) +"ZT" = ( +/turf/simulated/wall/rshull, +/area/ship/ert/med) +"ZU" = ( +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/wall/shull, +/area/ship/ert/eng_storage) +"ZW" = ( +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/techmaint, +/area/ship/ert/eng_storage) +"ZX" = ( +/obj/item/modular_computer/console/preset/ert{ + dir = 4 + }, +/obj/machinery/light/no_nightshift{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor, +/area/ship/ert/bridge) +"ZY" = ( +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/bed/chair/bay/chair/padded/blue{ + dir = 8 + }, +/turf/simulated/floor/tiled/techmaint, +/area/ship/ert/bridge) (1,1,1) = {" yz @@ -13288,9 +16410,13 @@ yz yz yz yz +<<<<<<< HEAD +Hf +======= yz +hA yz -yz +>>>>>>> c55e7a1c3b... Merge pull request #14538 from KillianKirilenko/kk-vbupg yz yz yz @@ -13421,27 +16547,51 @@ yz yz yz yz +<<<<<<< HEAD +lZ +ZL +kL +yz +yz +yz +Hf +nX +DN +JW +Hf +nX +DN +JW +Hf +yz +yz +yz +lZ +ZL +lZ +======= yz yz yz yz yz yz +kX yz yz yz +AW yz -Nk -yz -yz -yz -yz +yz +yz +kX yz yz yz yz yz yz +>>>>>>> c55e7a1c3b... Merge pull request #14538 from KillianKirilenko/kk-vbupg yz yz yz @@ -13563,27 +16713,49 @@ yz yz yz yz -yz -yz -yz -yz -yz -yz -Do +lZ +<<<<<<< HEAD +Hf +Hf +nX +DN +JW +Hf +uh +et +tL +Hf +uh +et +tL +Hf +nX +DN +JW +Hf +Hf +======= +pY +vb yz yz yz Hf +yG +EP +JJ +AW +yG +EP +JJ +Hf yz yz yz -Do -yz -yz -yz -yz -yz -yz +lZ +pY +>>>>>>> c55e7a1c3b... Merge pull request #14538 from KillianKirilenko/kk-vbupg +lZ yz yz yz @@ -13705,27 +16877,47 @@ yz yz yz yz -lZ -ZL -kL -yz -yz -yz +<<<<<<< HEAD +Do Hf +======= +lZ +AW +>>>>>>> c55e7a1c3b... Merge pull request #14538 from KillianKirilenko/kk-vbupg +Hf +yG +EP +JJ +Hf +<<<<<<< HEAD +GI +rA +GI +MK +GI +rA +GI +======= nX DN JW -Hf +AW nX DN JW +>>>>>>> c55e7a1c3b... Merge pull request #14538 from KillianKirilenko/kk-vbupg Hf -yz -yz -yz -lZ -ZL +yG +EP +JJ +Hf +<<<<<<< HEAD +Hf +Do +======= +AW lZ +>>>>>>> c55e7a1c3b... Merge pull request #14538 from KillianKirilenko/kk-vbupg yz yz yz @@ -13847,8 +17039,13 @@ yz yz yz yz -lZ +<<<<<<< HEAD +aj Hf +======= +kX +AW +>>>>>>> c55e7a1c3b... Merge pull request #14538 from KillianKirilenko/kk-vbupg Hf nX DN @@ -13856,18 +17053,23 @@ JW Hf uh et -tL -Hf +uh +Dk uh et -tL +uh Hf nX DN JW Hf +<<<<<<< HEAD Hf -lZ +Ia +======= +AW +kX +>>>>>>> c55e7a1c3b... Merge pull request #14538 from KillianKirilenko/kk-vbupg yz yz yz @@ -13989,27 +17191,51 @@ yz yz yz yz -Do +<<<<<<< HEAD +ZL Hf Hf +ok +rD +ux +zk +CN +Ig +JY +NH +RC +Tx +WO +CZ +Of +RO +XH +Hf +Hf +ZL +======= +Do +AW +Hf uh et -tL -Hf -GI -rA -GI -MK -GI -rA -GI -Hf +uh +OM +QZ +WO +Vc +uf +Vc +WO +QZ +OM uh et -tL +uh Hf -Hf -Do +AW +kk +>>>>>>> c55e7a1c3b... Merge pull request #14538 from KillianKirilenko/kk-vbupg yz yz yz @@ -14132,25 +17358,25 @@ yz yz yz aj -Hf -Hf +rt +vd GI rA -GI +Kb MK -QZ +Tx Id RB Np -RB -Id -QZ -MK -GI -rA -GI -Hf -Hf +mp +ii +uD +Ev +Zb +RJ +yH +vd +AN Ia yz yz @@ -14277,23 +17503,23 @@ ZL Hf Hf ok -rD -ux +zk +zk zk CN -Ig +JY JY NH RC -Tx -WO -CZ -Of -RO +QZ +QZ +QZ +QZ +Vx XH Hf Hf -ZL +UK yz yz yz @@ -14415,27 +17641,27 @@ yz yz yz yz -Nu +lZ Hf Hf op uK -uK -uK +op +op rs YP -YP +kp NP -RO +Vx QZ QZ QZ QZ -SE -cY Hf Hf -wG +Hf +Hf +lZ yz yz yz @@ -14556,29 +17782,29 @@ yz yz yz yz -yz -lZ -Hf -Hf -vd -rR -vd -vd -gR -Ii -Kq +bW +kJ +kJ +kJ +kJ +kJ +kJ +kJ +kJ +kJ +kJ uS SE -QZ -QZ -QZ -QZ -Hf -Hf -Hf -Hf -lZ -yz +sc +sc +sc +sc +SE +XW +XW +XW +XW +BI yz yz yz @@ -14700,24 +17926,24 @@ yz yz bO kJ -kJ -kJ -kJ -kJ -kJ -kJ -kJ -kJ -kJ +pV +wd +wd +Fd +Kj +OT +TM +WX +pV vi -Fp +vX Dh -Dh -Dh -Dh -Fp -XW -XW +Vp +pn +ob +YN +Uk +Yv XW XW YR @@ -14844,7 +18070,7 @@ Pw kJ pV kP -kP +rS rS aq aJ @@ -14857,9 +18083,9 @@ zh WS lB Ox -KS -JG -VC +vX +XW +XW XW XW BK @@ -14986,20 +18212,20 @@ bR kJ pV kS -os -os -vg -bp +Dn +Dn +Dn +Dn Dn gn -pV +SY NR -vX +ot ry Xg Sc Nb -vX +UE XW XW XW @@ -15130,20 +18356,20 @@ pV kT gA gA -gA -gA -gA +aq +aJ +Ue gN -nx -yR -RQ +pV +NZ +vX TB OH -nM +ZI qt YN -XW -XW +Uk +Yv XW XW PP @@ -15269,11 +18495,11 @@ yz bW kJ pV -kY oy oy -vg -bp +oy +Kq +Dn DK Io pV @@ -15283,9 +18509,9 @@ XS Xu ZI mt -KS -JG -VC +vX +XW +XW XW XW BI @@ -15407,31 +18633,59 @@ yz yz yz yz -yz -bO -kJ +<<<<<<< HEAD +wr +DS +yl +tK +Oq +ya +ya +ya +ya +SA +FW +Kr +Og +Ed +TM +TM +TM +TM +TM +ya +kh +Gv +nY +DS +wr +======= +cs +DS +DS pV -ls -ls -ls -Lm -gA -DQ -Ip pV -NZ +pV +pV +pV +pV +pV +pV +pV +qp +vX +vX +vX +vX +vX +vX +vX vX -hN -PH -ZI -My vX XW XW -XW -XW -YR -yz +RW +>>>>>>> c55e7a1c3b... Merge pull request #14538 from KillianKirilenko/kk-vbupg yz yz yz @@ -15550,29 +18804,29 @@ yz yz yz xx -DS -DS -pV -pV -pV -pV -pV -pV -pV -pV -pV +gx +lm +rP +wi +yJ +yJ +yJ +yJ +UN +WZ +Pj Oa -vX -vX -vX -vX -vX -vX -vX -vX -vX -XW -XW +be +Jy +Jy +Jy +Jy +Jy +yJ +LI +cb +lm +gx cJ yz yz @@ -15691,31 +18945,31 @@ yz yz yz yz -wr +XM DS -yl -tK +cS +Gv Oq -ya -ya -ya -ya -SA -FW -Kr +XX +XX +XX +XX +XX +XX +XX Og -Ed -TM -TM -TM -TM -TM -ya +XX +XX +XX +XX +XX +XX +XX kh Gv -nY +cS DS -wr +XM yz yz yz @@ -15833,31 +19087,31 @@ yz yz yz yz -LX -DS -pA -HR -vv -DS -DS -DS -DS -DS -DS -DS -Oh -DS -DS -DS -DS -DS -DS -DS -Ai +XM +yl +La +Gv +Un +XX +XB +LL +OY +pQ Xh -yG -DS -bU +Ld +Oh +YX +wq +mX +HT +LL +XB +XX +Un +Gv +Ap +yl +XM yz yz yz @@ -15975,31 +19229,31 @@ yz yz yz yz -Ib -DS -cS -cS -lu -DS -NI -oa +XM +yl +SJ +Gv +Un +XX +qw +MX SD -QY +cz ds -sp -Oi Mm +Nh +jZ jA -Wj +Vf UU -jA -jA -DS -lu -cS -cS -DS -Ib +MX +qw +XX +Un +Gv +SJ +yl +XM yz yz yz @@ -16116,33 +19370,33 @@ yz yz yz yz -Ib -DS -DS -cS -cS -oj -DS -Qh -Iv -Iv -Iv -Iv -sp -bt -Mm +yz +XM +yl +cM +Gv +Un +XX +XX +XX +XX +mz +HL +xs +gY +xs sw -Xx -eF -Ms -Kf -DS -lO -cS -DS -DS -DS -Ib +JA +XX +XX +XX +XX +Un +Gv +cM +yl +XM +yz yz yz yz @@ -16258,33 +19512,33 @@ yz yz yz yz -HE -JB -iB -iB -cS -lu -DS -as -Iv -zP -Eh +yz +XM +yl +Jz +Gv +Un +XX +qw +MX +SD +zT Ix -sp -Oi -Mm +WW +SM +iK Ut -XB -vQ -Ms -jI -DS -lu -cS -Sz -Sz -Sz -nC +Ug +UU +MX +qw +XX +Un +Gv +Jz +yl +XM +yz yz yz yz @@ -16400,33 +19654,33 @@ yz yz yz yz -ac -JB -cs -iB -iB -Na -JB -Wa -eL -zT -at +yz +XM +yl +Ux +Gv +fS +XX +XB +jB +TZ +xR IK Ks Oy -RS +sE UJ -PX +fo TZ -Mv -wo +jB +XB +XX +zR +Gv Sz -Un -kW -kW -rt -Sz -FO +yl +XM +yz yz yz yz @@ -16542,33 +19796,33 @@ yz yz yz yz -ad -JB -cW -dX +yz +XM +DS +cS hx -lL -JB -WR -Iv -Ah -EA -IL -sp -xe -Mm -Vm +Un XX -lq -jA -jA -Sz -ck +XX +XX +XX +XX +XX +XX +xe +XX +XX +XX +XX +XX +XX +XX +Un uJ -JJ -fk -Sz -hY +cS +DS +XM +yz yz yz yz @@ -16684,33 +19938,33 @@ yz yz yz yz -JB -ak -dd -iB -hH +yz +xx +gx +lm +fu lR -JB -no -Iv -An -EC -IZ -sp -Oi -wn -jA -Yq Ys -Yr -jA -Sz +Ys +Ys +tn +Ys +Ys +nS +Kd +VI +Ys +Ys +tn +Ys +Ys +Ys uu -na -kW -kX -SJ -Sz +lU +lm +gx +cJ +yz yz yz yz @@ -16824,37 +20078,37 @@ yz yz yz yz -FF yz -LR +yz +yz al -dg -dY -hU -lV -JB -JB -ZM -ZM -ZM -ZM -ZM +DS +DS +DS +WK +DS +DS +DS +DS +DS +DS +DS JX -ZM -ZM -ZM -ZM -ZM -Sz -Sz -Ql -sC -Rh -bJ +DS +DS +DS +DS +DS +DS +DS +WK +DS +DS +DS uE -yo yz -OY +yz +yz yz yz yz @@ -16968,33 +20222,33 @@ yz yz yz yz -ae -am -dn -ee -ik -lX -oV +yz +XM +DS +QU +iw +WK +DS sq KW -KW -KW +Pc +UY YU Wq -OE -zB -YU -KW -KW -KW +ut +Sj Kt -tp +Qb +CC +Kt +Kt +DS WK -tA -ch -pN +Mi +Hz +DS XM -lx +yz yz yz yz @@ -17110,33 +20364,33 @@ yz yz yz yz -JB -JB -iB -JB -Dx -iB -iB -iB -ZM -ZM -ZM -ZM -Kw +XM +DS +DS +Js +KD +WK +DS +FF +Kr +Kr +Kr +Kr +Wq NY -ZM -ZM -ZM -ZM -ZM +Sj +AY +kw +Ax +hF kW -kW -kW -ix -kW -kW -Sz -Sz +DS +WK +Dy +hU +DS +DS +XM yz yz yz @@ -17252,33 +20506,63 @@ yz yz yz yz -kO +<<<<<<< HEAD +ab Zo Bo -ia -ip -mb -mb -Bo +ef +iO +mj +Kk +sz ZM +Av +us +FD +sH +OS +HZ +FD +Yx +zo ZM -ED -Ao -cP -Oi -Sj -zg -ED -ZM -ZM -mJ -Ar -hP -Br +sS +Zv +xC +sW PS zc XG +aV +======= +kO +Ye +ia +Ye +DS +WK +DS +FO +Kr +Pn +ED +Ao +Wq +ut +Sj +zg +Mk +gP +hF +mJ +DS +WK +cS +Zv +Zv +Zv GJ +>>>>>>> c55e7a1c3b... Merge pull request #14538 from KillianKirilenko/kk-vbupg yz yz yz @@ -17394,32 +20678,32 @@ yz yz yz yz -cu -Zo -Bo +ae +Ye +gR +ia ia -ip pg -Kk -lv -ZM +Ye +FW +KK Aq Fg -FD -FD +GQ +xK OF ha -ha +QF Yt Ul -ZM +TW gk Zv +px +SG +SG +yM Zv -Br -PS -zc -XG qF yz yz @@ -17536,33 +20820,45 @@ yz yz yz yz -ab +af +Ye +<<<<<<< HEAD Zo -Bo +Gw +Kk +OU +pg +Kk +lv +ZM +AS +======= +vw ef iO mj -Kk +Ye sz -ZM +Kr Av +>>>>>>> c55e7a1c3b... Merge pull request #14538 from KillianKirilenko/kk-vbupg us -FD -sH +jy +Wq OS -HZ -FD +Sj +lE Yx zo -ZM -sS +Kt +Kt Zv xC sW -PS -zc -XG -aV +Xz +Yf +Zv +OV yz yz yz @@ -17675,36 +20971,59 @@ yz yz yz yz +<<<<<<< HEAD +Ye +yY +lv +Kk +OU +pg +Kk +sz +ZM +AZ +FD +FD +KM +OX +KM +FD +ZP +iy +ZM +KO +======= yz yz yz Ye -Zo -Bo -eg +cW +hs +ia iR mq -Kk -lv -ZM +Ye +GO +Kr AK Fz -FD -KJ -OT +Ti +Wq +ut Sl -FD +Kt ZC uG -ZM -Bj +sN +Kt +>>>>>>> c55e7a1c3b... Merge pull request #14538 from KillianKirilenko/kk-vbupg Zv SI oO SG Qz -XG -Ci +pP +Zv yz yz yz @@ -17818,39 +21137,45 @@ yz yz yz yz +ac yz -yz -Ye -Zo +ag +cY Gw Kk OU +<<<<<<< HEAD pg Kk lv +======= +kl +Ye +Ye +ZM +ZM +ZM +ZM ZM -AS -us -FD -Kb OW -Dt -FD -Yx -Pn ZM -um +ZM +ZM +>>>>>>> c55e7a1c3b... Merge pull request #14538 from KillianKirilenko/kk-vbupg +ZM +ZM +Zv Zv oC Eo -Zv +If KT KB -Ci -yz -yz +gs yz +SX yz +PZ yz yz yz @@ -17962,33 +21287,33 @@ yz yz yz yz -Ye -yY +au +dd lv -Kk -OU -pg -Kk -sz -ZM -AZ -FD -FD +ls +rR +wC +yR +GY +ZP +ZP +ZP +uc KM OX -KM -FD +xX +uc +ZP +ZP ZP -iy -ZM KO -Zv -oC -Eo -Zv +vp +hq +CK +LW KG -KB -Ci +gp +XZ yz yz yz @@ -18105,36 +21430,36 @@ yz yz yz Ye -yY -lv -Kk -OU -pg -Kk -lv +Ye +ia +Ye +rV +ia +ia +ia +ZM +ZM +ZM +ZM ZM -hs -FD -La -La sA -La -La -Rt -Af ZM -yC -Zv -Gr +ZM +ZM +ZM +ZM +SG +SG +SG eI +SG +SG +Zv Zv -Lg -KB -Ci yz yz yz -PZ +yz yz yz yz @@ -18246,33 +21571,63 @@ yz yz yz yz -Ye -yY -lv +<<<<<<< HEAD +ab +Zo +Gw Kk OU -mr -WH -sF -wd -ZM -FJ -Jk -Jk -Pc -Jk -Jk -ZX -ZM -eH -cV -Zv -Gr +mF +ip +ip +BW +Bc +BW +Js +BW +sX +BW +VP +sX +Jf +BW +Br +Br +Br eI Zv +ZU +XG +aV +======= +ah +Zo +Bo +lx +ip +mr +mr +Bo +ZM +ZM +ZX +Jk +dZ +Oi +Qd +FS +ZX +ZM +ZM +cV +aZ +jb +PE +EF AI -KB -Ci +XG +uj +>>>>>>> c55e7a1c3b... Merge pull request #14538 from KillianKirilenko/kk-vbupg yz yz yz @@ -18388,33 +21743,33 @@ yz yz yz yz -Ye -yY -lv -Kk -WX +ad +Zo +Bo +lx +ip mC -IA -IA -wi +Rw +WH +ZM Bb FK -Jl -GM +VQ +VQ zs -GM +VO VO ZY FM -wi -Zi -Zi +ZM Zi +LH +LH PE -Zv +EF AI XG -Ci +jJ yz yz yz @@ -18531,31 +21886,31 @@ yz yz yz ab -Zo -Gw -Kk -OU -mF -ip -ip -BW +nq +KN +xD +xc +fp +Rw +HB +ZM Bc -BW -Js -BW -sX -BW -VP +FQ +VQ +jt sX +JH +VQ +Ay Jf -BW +ZM Br -Br -Br -eI -Zv +LH +oz +fr +dR ZU -XG +go aV yz yz @@ -18672,33 +22027,33 @@ yz yz yz yz -cu +yY Zo Bo sr Jd WV -oW -sJ -wU +Rw +WH +ZM Bf FN -Jw +VQ Lk Cn St VQ OR vt -wU +ZM cv LH GS MQ -cC +iC aD XG -qF +LM yz yz yz @@ -18813,35 +22168,67 @@ yz yz yz yz -yz -sB +<<<<<<< HEAD +ab Zo -Bo -Bo +an +WH +WH Jd +mF +so +tH +LC +SF +FR +FR +wl +Pl +xZ +On +FY +UH +nb +ZT +Jc +QT +sU +Pq +Pq +ZF +ZT +WF +======= +yz +yY +Zo +hN +Rw +gl mI -Bo -tH -tH +Rw +WH +ZM Bq FQ -Jb -Jb +VQ +bI Yd TR -TR +VQ Ay Rz -Yd -ZT -yI -QT -pz -KI -KI -ZT -eD +ZM +Gs +LH +pm +sd +LH +Dm +ZF +LM yz +>>>>>>> c55e7a1c3b... Merge pull request #14538 from KillianKirilenko/kk-vbupg yz yz yz @@ -18955,35 +22342,35 @@ yz yz yz yz -Sr -Zo -Zo -xA -xA -Jd -mF -az -tH -gx +yz +yY +ap +WH +Rw +gl +mI +Rw +HB +ZM SF -FR -FR -kf -Pl +VQ +VQ Sx -On +iD +Sx +VQ FY UH -HB -ZT -yp +ZM +iG +LH pm sd -wt +LH pq -ZT -ZT -Fd +ZF +LM +yz yz yz yz @@ -19097,35 +22484,35 @@ yz yz yz yz -ab -Zo -an +nY +yY +ap WH +Rw +gl +mI +Rw WH -Jd -mF -so -tH -LC -SF -FR -FR -wl -Pl +ZM +PH +VQ xZ -On -FY -UH -nb -ZT -Jc -QT +xZ +Tp +xZ +xZ +dC +hd +ZM +zO +LH +Ho sU -Pq -Pq +LH +dj ZF -ZT -WF +LM +yz yz yz yz @@ -19239,35 +22626,35 @@ yz yz yz yz -Ye +yz yY -ao +ap WH Rw -Jd -mF -aA -tH +gl +wG +dV +HE xg -SF +ZM FT -FR Lq -Pl -pI -On +Lq +pw +Lq +Lq es -UH +ZM OO -ZT -Di -QT +JF +LH +Ho sU -IF -Pq -AL -kx -TU +LH +qq +ZF +LM +yz yz yz yz @@ -19381,35 +22768,35 @@ yz yz yz yz -Ye +yz yY ap WH -eP +Rw kM mR oX -tH -xh +oX +Bp BE FX -FR -FR +RV +OB PC -On -On +OB +Yu LV NU Bp -ZT -Di +ZW +ZW ZW lz -ug -Pq -EP -kx -TU +LH +qq +XG +LM +yz yz yz yz @@ -19523,35 +22910,75 @@ yz yz yz yz -Ye -yY -lm +yz +ab +<<<<<<< HEAD +Zo +bI WH +WH +ip +mV +pd +======= +nq +<<<<<<< HEAD +au +Wo +Wo +AX +eG +aG +>>>>>>> 7f76eb5c10d... Merge pull request #12174 from Novacat/nova-basicfixes +tH +xt +BU +FR +FR +Md +Pl +Sy +On +FY +On +JZ +ZT +Wl +DJ +QT +Pq +Pq +yJ +ZT +WF +======= +hS eX iX -mT -aB -tH -xi +mZ +ip +ip +Gl BF -Ga -FR -FR -PC -On -On +Gl +iT +Gl +Vg +Gl +fe Vg TI Gl -ZT -DR -aI +PE +PE +PE ql iC -Pq -UY -kx -TU +kE +go +aV +yz +>>>>>>> c55e7a1c3b... Merge pull request #14538 from KillianKirilenko/kk-vbupg yz yz yz @@ -19665,35 +23092,35 @@ yz yz yz yz -Ye -yY -br -WH +yz +ad +Zo +Bo ff -ip -mV +AX +wU aE -tH +HR qJ BU GK -FR +Fl LA -Pl +ox Me -On +yU kz -On -pW -ZT +fW +qJ +OG SV DJ -QT +gV jn Bx -sf -kx -TU +XG +jJ +yz yz yz yz @@ -19807,45 +23234,35 @@ yz yz yz yz -ab -<<<<<<< HEAD +yz +aB Zo -bI -WH -WH -ip -mV -pd -======= -nq -au -Wo -Wo +Bo +Bo AX eG -aG ->>>>>>> 7f76eb5c10d... Merge pull request #12174 from Novacat/nova-basicfixes +Bo tH -xt -BU -FR -FR +tH +Qc +VC Md -Pl +Md +QP Sy -On -FY -On -JZ +Sy +Sn +sI +QP ZT Wl -DJ -QT -Pq -Pq -yJ +OA +XN +wp +wp ZT -WF +th +yz yz yz yz @@ -19962,27 +23379,27 @@ yz cu Zo Zo -aw ay -ip -mV +ay +AX +xt aH tH xv -Ce +CL FR FR Mt Pl gX On -QM -my +UT +WA Fq ZT DM -DJ -QT +Hg +Td xz HC ZT @@ -20101,35 +23518,35 @@ yz yz yz yz -yz -kO -Zo -Bo -Bo -ip +ab +nq +dg +Cx +Cx +sf mZ -Bo +Af tH -tH -CI -GO -GO -CI -Yd -TR -Wu +KS +CL +FR +FR +Uy +Pl +om +On UT -TR -Yd +WA +sR ZT PD -un +OA VJ -KI -KI -ZT +Vh +Vh +co UI -yz +fn yz yz yz @@ -20243,35 +23660,35 @@ yz yz yz yz -yz -Ye +yY +ap Dd -dp +dV fj -ip -mV +AX +xt pt -oi +tH xG CL GR -GR +FR MD -Qc +Pl GU -WE +On hV WA EB -oi -qA -oQ +ZT +Hp +OA dx Nd -PA +Pq kx TU -yz +rh yz yz yz @@ -20385,35 +23802,35 @@ yz yz yz yz -yz -Ye -Dd -ar -fj +yY +ap +dn +dV +nb jz nc pv -ta +tH xM CM Tl -Tl -Tl -Tl -Tl -Tl -Tl +FR +FR +Em +On +On +ZK Vn kG -rV +ZT Hp Sp wX +AT Pq -Pq -kx +gi TU -yz +rh yz yz yz @@ -20527,35 +23944,35 @@ yz yz yz yz -yz -Ye -Dd -dB -fj +yY +ap +dA +dV +nt jD JM -ip -Tl +Ar +tH JE Nf -Nf -Nf -Nf -Nf -Nf -Nf -Nf -Nf +VH +FR +FR +Em +On +On +Si +Xv yi -dA +ZT QT Lh Xo +Ph Pq -Pq -kx +ua TU -yz +rh yz yz yz @@ -20669,35 +24086,66 @@ yz yz yz yz +<<<<<<< HEAD +ag +bM +Cx +fx +jQ +np +pM +Cx +yj +WC +YW +HO +kt +ML +Pe +HO +YW +WC +dk +dq +gf +TF +ij +hv +dq +MZ +aC yz -Ye -Dd +======= +yY +ap +dX dV -fj +nx ip mV pG -tE +tH yf -WC -WC -WC -WC -WC -WC -WC -WC -WC +Rh +Wu +FR +FV +Pl +md +On +Wh +On Ee -tE +ZT OZ -Cq -tg +YC +OA km PA -kx +XQ TU -yz +rh +>>>>>>> c55e7a1c3b... Merge pull request #14538 from KillianKirilenko/kk-vbupg yz yz yz @@ -20811,35 +24259,35 @@ yz yz yz yz -yz -af +ab +nq bM Cx Cx jK nn pK -Cx +tH yj -WC -WC -YW -WC -WC -WC -YW -WC -WC +Rh +FR +FR +oo +Pl +rc +On +UT +On dk -uq +ZT ga po Rv -dq -dq -MZ -Jg -yz +Vh +Vh +LP +UI +fn yz yz yz @@ -20953,35 +24401,35 @@ yz yz yz yz -yz -ag -bM -Cx +ad +Zo +Zo +Px fx -jQ -np +ip +mV pM -Cx -yj -WC -YW -HO +tH +Lm +Rt +FR +FR kt -ML +Pl Pe -HO +On YW -WC -dk -dq +LF +bw +ZT gf -TF -ij +YC +OA hv -dq -MZ -aC -yz +qa +ZT +ZT +cR yz yz yz @@ -21097,32 +24545,32 @@ yz yz yz ah -bM -Cx -fE -jQ +Zo +Bo +Bo +ip np -pY -tX -yv -WC -HO -HO +Bo +tH +tH +tW +WE +WE tW QP -tV -HO -HO -WC -Nz -nl +Sy +pZ +Eb +Sy +QP +ZT pU -TF -ij +Mj +Cv wp -dq -MZ -ci +wp +ZT +VK yz yz yz @@ -21238,33 +24686,46 @@ yz yz yz yz -ah -bM -Cx -fP -jU -nt +yY +dY +hY +fZ +ip +mV qo tX yx -WC +RQ +Hu Hu -mH MT QR -MT +hl HH dT +<<<<<<< HEAD WC -Nz +Zx nl +pb +nq ij -LB -xU -GT +MC dq MZ ci +======= +sy +RX +tX +tv +LB +xU +GT +vn +TU +rh +>>>>>>> c55e7a1c3b... Merge pull request #14538 from KillianKirilenko/kk-vbupg yz yz yz @@ -21380,33 +24841,33 @@ yz yz yz yz -ai -bM -Cx -fU +yY +dY +ik +fZ jY nv -qo -tX -xO -WC -Hq -JN -MT -QS -MT +Az +Ii +LC +Sh WJ -og -WC -Nz -nl +WJ +WJ +WJ +WJ +WJ +WJ +yP +XU +sk mh LZ LJ -hS -dq -MZ -Cr +Pq +Pq +TU +rh yz yz yz @@ -21522,33 +24983,63 @@ yz yz yz yz -ah -bM -Cx -fZ -Yk -Is -qo -tX -xO +<<<<<<< HEAD +pO +vK +Cf +gh +Nq +qP +qz +vK +Ok WC Hu -JN -MU -QX -SZ -WJ +GZ +MT +Jx +MT +EG dT WC Zx nl -pb +aQ nq ij -MC +aQ dq MZ -ci +Jg +======= +yY +dY +ix +fZ +Yk +Is +ip +WJ +LR +SZ +SZ +SZ +SZ +SZ +SZ +SZ +SZ +SZ +Zx +Ck +OA +Se +Zw +Pq +Pq +TU +rh +>>>>>>> c55e7a1c3b... Merge pull request #14538 from KillianKirilenko/kk-vbupg yz yz yz @@ -21664,33 +25155,45 @@ yz yz yz yz -ah -bM -bM -bM -bM -nz -bM -bM -xO +yY +dY +jv +fZ +ip +mV +AS +Ip +My WC -Hq -JN -MU -Eq -SZ -WJ -og WC +<<<<<<< HEAD Zx nl -dq -zb -PG -dq +cO +nq +ij +Mb dq MZ ci +======= +WC +WC +WC +WC +WC +WC +WC +TQ +Ip +Zc +zb +PG +SO +vn +TU +rh +>>>>>>> c55e7a1c3b... Merge pull request #14538 from KillianKirilenko/kk-vbupg yz yz yz @@ -21806,30 +25309,51 @@ yz yz yz yz -pO +<<<<<<< HEAD +PO vK Cf -gh +rO +av +nB +FP +vK +xO +======= +aG +TD +Cf +Cf Nq qP qz -vK +Cf Ok +>>>>>>> c55e7a1c3b... Merge pull request #14538 from KillianKirilenko/kk-vbupg WC -Hu -GZ -MT -Jx -MT -EG -dT WC +<<<<<<< HEAD Zx nl -aQ +NJ nq ij +NJ +======= +GZ +WC +WC +WC +GZ +WC +WC +Mr +RN aQ +hQ +wI +dq +>>>>>>> c55e7a1c3b... Merge pull request #14538 from KillianKirilenko/kk-vbupg dq MZ Jg @@ -21948,33 +25472,40 @@ yz yz yz yz -PO +<<<<<<< HEAD +nr vK +vK +gF +======= +PO +ee iz +>>>>>>> c55e7a1c3b... Merge pull request #14538 from KillianKirilenko/kk-vbupg rO ON qy qD -vK -xO +Cf +Ok WC -HO +GZ HO Ng Rc Du HO -HO +GZ WC -Zx -nl -cO -nq -ij -Mb +Mr dq -MZ -ci +cO +iY +Jh +Mb +ir +hb +Iu yz yz yz @@ -22090,30 +25621,49 @@ yz yz yz yz +<<<<<<< HEAD PO vK +vK +gW +TG +BM +Vq +vK +xO +======= +Om +TD Cf -rO +rN av nB FP -vK -xO +Jx +MC +>>>>>>> c55e7a1c3b... Merge pull request #14538 from KillianKirilenko/kk-vbupg WC HO HO yg HK -yg +Il HO HO WC -Zx +<<<<<<< HEAD +aK +Sh +ij +nq +======= +Mx nl NJ -nq +TF +>>>>>>> c55e7a1c3b... Merge pull request #14538 from KillianKirilenko/kk-vbupg ij -NJ +YS dq MZ ci @@ -22232,33 +25782,42 @@ yz yz yz yz -nr +<<<<<<< HEAD +PO vK vK +hj +db +vK +======= +Om +TD +Cf gF -rO +sF Vq -Vq -vK -xO +>>>>>>> c55e7a1c3b... Merge pull request #14538 from KillianKirilenko/kk-vbupg +Xw +Jx +ML WC -HO -HO -WC -WC -WC -HO -HO +CH +AC +mv +Mq +mv +sM +gQ WC Mx -dq -wZ +nl +ij gZ CP wZ dq MZ -Cr +ci yz yz yz @@ -22374,33 +25933,33 @@ yz yz yz yz -PO -vK -vK +br +TD +Cf gW TG BM -Vq -vK +Xw +Jx xO WC -ax -HO -WC -WC -WC -HO +QE +fV +mv +mg +mv +Za QV WC -aK -Sh -ij -nq -ij -ij +Mx +nl +Ad +gq +qc +YZ dq MZ -ci +iF yz yz yz @@ -22457,150 +26016,38 @@ yz yz yz yz +<<<<<<< HEAD +Om +vK +rM +hk +eO +bv +cH +vK +yD +QE +QE +QE +QE +QE +QE +QE +QE +QE +Ff +dq +vb +iW +LJ +vb +dq +MZ +aC +======= "} (98,1,1) = {" -yz -yz -yz -yz -yz -yz -yz -yz -yz -yz -yz -yz -yz -yz -yz -yz -yz -yz -yz -yz -yz -yz -yz -yz -yz -yz -yz -yz -yz -yz -yz -yz -yz -yz -yz -yz -yz -yz -yz -yz -yz -yz -yz -yz -yz -yz -yz -yz -yz -yz -yz -yz -yz -yz -yz -yz -yz -PO -vK -vK -hj -db -vK -Xw -vK -yB -WC -WC -WC -WC -WC -WC -WC -WC -WC -zr -dq -mN -SB -tx -mN -dq -MZ -ci -yz -yz -yz -yz -yz -yz -yz -yz -yz -yz -yz -yz -yz -yz -yz -yz -yz -yz -yz -yz -yz -yz -yz -yz -yz -yz -yz -yz -yz -yz -yz -yz -yz -yz -yz -yz -yz -yz -yz -yz -yz -yz -yz -yz -yz -yz -yz -yz -yz -yz -yz -yz -yz -yz -yz -yz -"} -(99,1,1) = {" +>>>>>>> c55e7a1c3b... Merge pull request #14538 from KillianKirilenko/kk-vbupg yz yz yz @@ -22659,32 +26106,204 @@ yz yz yz Om -vK -rM -hk -eO -bv -cH -vK -yD -QE -QE -QE -QE -QE -QE -QE -QE -QE +TD +Cf +hj +db +qy +Xw +Jx +xO +WC +CH +fV +Vd +vo +pD +Za +gQ +WC Ff -dq -vb -iW -LJ -vb +nl +mN +TF +ij +kQ dq MZ -aC +ci +yz +yz +yz +yz +yz +yz +yz +yz +yz +yz +yz +yz +yz +yz +yz +yz +yz +yz +yz +yz +yz +yz +yz +yz +yz +yz +yz +yz +yz +yz +yz +yz +yz +yz +yz +yz +yz +yz +yz +yz +yz +yz +yz +yz +yz +yz +yz +yz +yz +yz +yz +yz +yz +yz +yz +yz +<<<<<<< HEAD +pO +vK +vK +hj +rr +vK +pr +vK +yX +CH +CH +CH +CH +CH +CH +CH +CH +CH +yX +MZ +dq +ij +ij +dq +MZ +MZ +Jg +======= +"} +(99,1,1) = {" +>>>>>>> c55e7a1c3b... Merge pull request #14538 from KillianKirilenko/kk-vbupg +yz +yz +yz +yz +yz +yz +yz +yz +yz +yz +yz +yz +yz +yz +yz +yz +yz +yz +yz +yz +yz +yz +yz +yz +yz +yz +yz +yz +yz +yz +yz +yz +yz +yz +yz +yz +yz +yz +yz +yz +yz +yz +yz +yz +yz +yz +yz +yz +yz +yz +yz +yz +yz +yz +yz +yz +yz +Om +TD +TD +TD +TD +bv +TD +TD +xO +WC +QE +fV +Vd +WP +pD +Za +QV +WC +Ff +nl +dq +iW +rn +dq +dq +MZ +ci yz yz yz @@ -22745,6 +26364,34 @@ yz (100,1,1) = {" yz yz +<<<<<<< HEAD +vK +vK +rp +SN +tZ +Bl +vK +ib +za +za +za +za +za +za +za +za +za +ib +MZ +dq +jv +ij +dq +MZ +MZ +======= +>>>>>>> c55e7a1c3b... Merge pull request #14538 from KillianKirilenko/kk-vbupg yz yz yz @@ -22802,30 +26449,30 @@ yz yz pO vK -vK -hj +jQ +nz rr -vK +ya pr vK yX +WC CH -CH -CH -CH -CH -CH -CH -CH -CH -yX -MZ -dq -ij +xq +mv +Dp +mv +yr +gQ +WC +Ff +nl +ky +TF ij +ky dq MZ -MZ Jg yz yz @@ -22909,6 +26556,16 @@ yz yz yz yz +<<<<<<< HEAD +MZ +MZ +GY +GY +MZ +MZ +YO +======= +>>>>>>> c55e7a1c3b... Merge pull request #14538 from KillianKirilenko/kk-vbupg yz yz yz @@ -22942,33 +26599,33 @@ yz yz yz yz -yz -vK +bJ vK +jU rp SN tZ Bl vK -ib +xO +WC +HO +HO za -za -za -za -za -za -za -za -za -ib -MZ -dq -jv +GE +nU +HO +HO +WC +Ff +nl +FG +TF ij +NN dq MZ -MZ -yz +ci yz yz yz @@ -23065,51 +26722,15 @@ yz yz yz yz -yz -yz -yz -yz -yz -yz -yz -yz -yz -yz -yz -yz -yz -yz -yz -yz -yz -yz -yz -yz -dW -vK -vK -wh -tZ -UD -vK -yz -yz -yz -yz -yz -yz -yz -yz -yz -yz -yz +<<<<<<< HEAD +MZ MZ MZ -GY -GY MZ MZ YO +======= +>>>>>>> c55e7a1c3b... Merge pull request #14538 from KillianKirilenko/kk-vbupg yz yz yz @@ -23129,6 +26750,51 @@ yz yz yz yz +bJ +dW +kg +nC +wh +yo +UD +vK +xO +WC +HO +HO +WT +eJ +WT +HO +HO +WC +Ff +nl +Gu +TF +ij +Gu +dq +MZ +ci +yz +yz +yz +yz +yz +yz +yz +yz +yz +yz +yz +yz +yz +yz +yz +yz +yz +yz yz yz yz @@ -23223,37 +26889,45 @@ yz yz yz yz -yz -yz -yz -yz -yz -dW -vK -vK -tZ -VN -vK -yz -yz -yz -yz -yz -yz -yz -yz -yz -yz -yz -MZ -MZ +<<<<<<< HEAD +Cr MZ MZ MZ YO +======= +>>>>>>> c55e7a1c3b... Merge pull request #14538 from KillianKirilenko/kk-vbupg yz yz yz +ca +eH +vK +nM +rp +VN +VN +vK +xO +WC +HO +HO +WC +WC +WC +HO +HO +WC +ts +dq +Je +bG +II +Je +dq +MZ +iF +yz yz yz yz @@ -23368,44 +27042,51 @@ yz yz yz yz -yz -yz -yz -dW +bJ +eH vK +oi +ta +yv +VN vK -ej -vK -yz -yz -yz -yz -yz -yz -yz -yz -yz -yz -yz +xO +WC +WF +HO +WC +WC +WC +HO +ys +WC +xo Cr +ij +TF +ij +ij +dq MZ +ci +yz +yz +yz +yz +yz +yz +yz +yz +yz +yz +yz +<<<<<<< HEAD +CR MZ MZ YO -yz -yz -yz -yz -yz -yz -yz -yz -yz -yz -yz -yz -yz -yz +======= +>>>>>>> c55e7a1c3b... Merge pull request #14538 from KillianKirilenko/kk-vbupg yz yz yz @@ -23510,64 +27191,70 @@ yz yz yz yz -yz -yz -yz -yz -dW +bJ +eH +vK +oV +tp vK pE -OM -yz -yz -yz -yz -yz -yz -yz -yz -yz -yz -yz -CR +vK +Nk +WC +WC +WC +WC +WC +WC +WC +WC +WC +bn +dq +hc +KF +ZQ +hc +dq MZ +ci +yz +yz +yz +yz +yz +yz +yz +yz +yz +yz +yz +yz +yz +yz +yz +yz +yz +yz +yz +yz +yz +yz +yz +yz +yz +yz +yz +yz +yz +yz +yz +<<<<<<< HEAD +ci MZ YO -yz -yz -yz -yz -yz -yz -yz -yz -yz -yz -yz -yz -yz -yz -yz -yz -yz -yz -yz -yz -yz -yz -yz -yz -yz -yz -yz -yz -yz -yz -yz -yz -yz -yz -yz +======= +>>>>>>> c55e7a1c3b... Merge pull request #14538 from KillianKirilenko/kk-vbupg yz yz yz @@ -23652,33 +27339,33 @@ yz yz yz yz -yz -yz -yz -yz -yz -dW -PO -PO -yz -yz -yz -yz -yz -yz -yz -yz -yz -yz -yz -ci -MZ +ch +fk +kL +pA +tx +yB +CR +vK +Nu +Sr +Sr +Sr +Sr +Sr +Sr +Sr +Sr +Sr +ml +dq +yF YO -yz -yz -yz -yz -yz +ue +ft +ir +hb +Iu yz yz yz @@ -23794,33 +27481,33 @@ yz yz yz yz -yz -yz -yz -yz -yz -yz -PO -yz -yz -yz -yz -yz -yz -yz -yz -yz -yz -yz -yz -yz +pO +vK +vK +oV +tA +vK +CZ +vK +Of +SA +SA +SA +SA +SA +SA +SA +SA +SA +Of +MZ aC -yz -yz -yz -yz -yz -yz +YK +ij +dq +MZ +MZ +Jg yz yz yz @@ -23937,31 +27624,31 @@ yz yz yz yz -yz -yz -yz -yz -yz -yz -yz -yz -yz -yz -yz -yz -yz -yz -yz -yz -yz -yz -yz -yz -yz -yz -yz -yz -yz +vK +vK +pN +tE +yD +Dt +vK +OE +SB +SB +SB +SB +SB +SB +SB +SB +SB +OE +MZ +wM +is +ij +dq +MZ +MZ yz yz yz @@ -24079,6 +27766,13 @@ yz yz yz yz +fE +vK +vK +uq +yD +Dx +vK yz yz yz @@ -24090,20 +27784,13 @@ yz yz yz yz -yz -yz -yz -yz -yz -yz -yz -yz -yz -yz -yz -yz -yz -yz +MZ +Gn +gT +gT +MZ +MZ +bB yz yz yz @@ -24222,6 +27909,12 @@ yz yz yz yz +fE +vK +vK +yD +DQ +vK yz yz yz @@ -24233,18 +27926,12 @@ yz yz yz yz -yz -yz -yz -yz -yz -yz -yz -yz -yz -yz -yz -yz +MZ +Gn +MZ +MZ +MZ +bB yz yz yz @@ -24365,6 +28052,11 @@ yz yz yz yz +fE +vK +vK +Ed +vK yz yz yz @@ -24376,16 +28068,11 @@ yz yz yz yz -yz -yz -yz -yz -yz -yz -yz -yz -yz -yz +iF +Gn +MZ +MZ +bB yz yz yz @@ -24508,6 +28195,10 @@ yz yz yz yz +fE +vK +Eq +JG yz yz yz @@ -24519,14 +28210,10 @@ yz yz yz yz -yz -yz -yz -yz -yz -yz -yz -yz +RU +Gn +MZ +bB yz yz yz @@ -24651,6 +28338,9 @@ yz yz yz yz +fE +bJ +bJ yz yz yz @@ -24662,12 +28352,9 @@ yz yz yz yz -yz -yz -yz -yz -yz -yz +ci +Gn +bB yz yz yz @@ -24794,6 +28481,7 @@ yz yz yz yz +bJ yz yz yz @@ -24807,8 +28495,7 @@ yz yz yz yz -yz -yz +ra yz yz yz diff --git a/maps/submaps/surface_submaps/wilderness/DoomP.dmm b/maps/submaps/surface_submaps/wilderness/DoomP.dmm index 3fc2936c43..887458af04 100644 --- a/maps/submaps/surface_submaps/wilderness/DoomP.dmm +++ b/maps/submaps/surface_submaps/wilderness/DoomP.dmm @@ -579,7 +579,7 @@ /obj/effect/floor_decal/corner/lime/border{ dir = 8 }, -/obj/item/toy/plushie/borgplushie/drakiesec, +/obj/item/toy/plushie/borgplushie/drake/sec, /turf/simulated/floor/tiled/white, /area/submap/DoomP) "kp" = ( diff --git a/maps/tether/tether-03-surface3.dmm b/maps/tether/tether-03-surface3.dmm index 6ccf69305d..9abaebbe01 100644 --- a/maps/tether/tether-03-surface3.dmm +++ b/maps/tether/tether-03-surface3.dmm @@ -5556,6 +5556,9 @@ pixel_x = -4; pixel_y = 5 }, +/obj/machinery/injector_maker{ + pixel_x = -27 + }, /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/triage) "ahP" = ( @@ -7302,6 +7305,12 @@ /obj/machinery/light{ dir = 4 }, +<<<<<<< HEAD +======= +/obj/machinery/injector_maker{ + pixel_x = 28 + }, +>>>>>>> ad7ceda4db... Merge pull request #14481 from Runa-Dacino/Industrial-AutoInjectors /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/chemistry) "akC" = ( diff --git a/modular_chomp/code/coalesce_ch.dm b/modular_chomp/code/coalesce_ch.dm new file mode 100644 index 0000000000..837dcf03f2 --- /dev/null +++ b/modular_chomp/code/coalesce_ch.dm @@ -0,0 +1,5 @@ +/proc/coalesce(...) + for (var/arg in args) + if (arg) + return arg + return null \ No newline at end of file diff --git a/modular_chomp/code/datums/components/gargoyle.dm b/modular_chomp/code/datums/components/gargoyle.dm new file mode 100644 index 0000000000..8d8f699255 --- /dev/null +++ b/modular_chomp/code/datums/components/gargoyle.dm @@ -0,0 +1,95 @@ +/datum/component/gargoyle + var/energy = 100 + var/transformed = FALSE + var/paused = FALSE + var/paused_loc + var/cooldown + + var/mob/living/carbon/human/gargoyle //easy reference + var/obj/structure/gargoyle/statue //another easy ref + +/datum/component/gargoyle/Initialize() + if (!ishuman(parent)) + return COMPONENT_INCOMPATIBLE + gargoyle = parent + gargoyle.verbs += /mob/living/carbon/human/proc/gargoyle_transformation + gargoyle.verbs += /mob/living/carbon/human/proc/gargoyle_pause + gargoyle.verbs += /mob/living/carbon/human/proc/gargoyle_checkenergy + START_PROCESSING(SSprocessing, src) + +/datum/component/gargoyle/process() + if (!gargoyle) + return + if (paused && gargoyle.loc != paused_loc) + unpause() + if (energy > 0) + if (!transformed && !paused) + energy = max(0,energy-0.05) + else if (!transformed && isturf(gargoyle.loc)) + gargoyle.gargoyle_transformation() + if (transformed) + if (!statue) + transformed = FALSE + statue.damage(-0.5) + energy = min(energy+0.3, 100) + +/datum/component/gargoyle/proc/unpause() + if (!paused || transformed) + paused = FALSE + paused_loc = null + UnregisterSignal(gargoyle, COMSIG_ATOM_ENTERING) + return + if (gargoyle?.loc != paused_loc) + paused = FALSE + paused_loc = null + energy = max(energy - 5, 0) + if (energy == 0) + gargoyle.gargoyle_transformation() + UnregisterSignal(gargoyle, COMSIG_ATOM_ENTERING) + +//verbs or action buttons...? +/mob/living/carbon/human/proc/gargoyle_transformation() + set name = "Gargoyle - Petrification" + set category = "Abilities" + set desc = "Turn yourself into (or back from) being a gargoyle." + + if (stat == DEAD) + return + + var/datum/component/gargoyle/comp = GetComponent(/datum/component/gargoyle) + if (comp) + if (comp.energy <= 0 && isturf(loc)) + to_chat(src, "You suddenly turn into a statue as you run out of energy!") + else if (comp.cooldown > world.time) + var/time_to_wait = (comp.cooldown - world.time) / (1 SECONDS) + to_chat(src, "You can't transform just yet again! Wait for another [round(time_to_wait,0.1)] seconds!") + return + if (istype(loc, /obj/structure/gargoyle)) + var/obj/structure/gargoyle/statue = loc + qdel(statue) + else if (isturf(loc)) + new /obj/structure/gargoyle(loc, src) + +/mob/living/carbon/human/proc/gargoyle_pause() + set name = "Gargoyle - Pause" + set category = "Abilities" + set desc = "Pause your energy while standing still, so you don't use up any more, though you will lose a small amount upon moving again." + + if (stat) + return + + var/datum/component/gargoyle/comp = GetComponent(/datum/component/gargoyle) + if (comp && !comp.transformed && !comp.paused) + comp.paused = TRUE + comp.paused_loc = loc + comp.RegisterSignal(src, COMSIG_ATOM_ENTERING, /datum/component/gargoyle/proc/unpause) + to_chat(src, "You start conserving your energy.") + +/mob/living/carbon/human/proc/gargoyle_checkenergy() + set name = "Gargoyle - Check Energy" + set category = "Abilities" + set desc = "Check how much energy you have remaining as a gargoyle." + + var/datum/component/gargoyle/comp = GetComponent(/datum/component/gargoyle) + if (comp) + to_chat(src, "You have [round(comp.energy,0.01)] energy remaining. It is currently [comp.paused ? "stable" : (comp.transformed ? "increasing" : "decreasing")].") diff --git a/modular_chomp/code/game/objects/structures/desert_planet_structures.dm b/modular_chomp/code/game/objects/structures/desert_planet_structures.dm new file mode 100644 index 0000000000..8c7eafa62f --- /dev/null +++ b/modular_chomp/code/game/objects/structures/desert_planet_structures.dm @@ -0,0 +1,299 @@ +// Props +/obj/structure/prop/desert_rock + icon = 'modular_chomp/icons/obj/desert_planet/desert_rocks.dmi' + desc = "Sandy and smooth from erosion." + density = TRUE + anchored = TRUE + +/obj/structure/prop/desert_rock/rock + name = "desert rock" + +/obj/structure/prop/desert_rock/rock/attack_hand(mob/living/user) + if(user.is_incorporeal()) + return + to_chat(user, "You push on the [src].") + var/movedir = user.dir + if(do_after(user, 3 SECONDS, src)) + step(src, movedir) + +/obj/structure/prop/desert_rock/rock/New() + ..() + icon_state = "desert_rock[rand(0,6)]" + +/obj/structure/prop/desert_rock/pebble + name = "sandy pebble" + density = FALSE + +/obj/structure/prop/desert_rock/pebble/Crossed(atom/movable/AM as mob|obj) + if(AM.is_incorporeal()) + return + if(istype(AM, /mob/living)) + var/mob/living/M = AM + if(M.m_intent == "run" && prob(5)) + M.Weaken(2) + to_chat(M, "You trip over the [src]!") + +/obj/structure/prop/desert_rock/pebble/New() + ..() + icon_state = "desert_pebble[rand(0,6)]" + +/obj/structure/prop/desert_rock/anthill + name = "ant hill" + desc = "See how many ants you can spot." + icon = 'modular_chomp/icons/obj/desert_planet/desert_plants.dmi' + icon_state = "anthill0" + +/obj/structure/prop/desert_rock/anthill/New() + ..() + icon_state = "anthill[rand(0,2)]" + +/obj/structure/prop/desert_planet64x64 + name = "large rock" + desc = "Sandy and smooth from erosion." + icon = 'modular_chomp/icons/obj/desert_planet/desert_props_64x64.dmi' + density = TRUE + anchored = TRUE + can_buckle = FALSE + +/obj/structure/prop/desert_planet64x64/lrock + icon_state = "lrock" + +/obj/structure/prop/desert_planet64x64/lrock1 + icon_state = "lrock1" + +/obj/structure/prop/desert_planet64x64/lrock2 + icon_state = "lrock2" + +/obj/structure/prop/desert_planet64x64/lrock3 + icon_state = "lrock3" + +/obj/structure/prop/desert_planet64x64/lrock4 + icon_state = "lrock4" + +/obj/structure/prop/desert_planet64x64/lribs + name = "ribs" + desc = "Bleached white by baking sunlight." + icon_state = "lribs" + +/obj/structure/prop/desert_planet64x64/lribs1 + name = "ribs" + desc = "Bleached white by baking sunlight." + icon_state = "lribs1" + +/obj/structure/prop/desert_planet64x64/lskull + name = "skull" + desc = "Bleached white by baking sunlight." + icon_state = "lskull" + +/obj/structure/prop/desert_planet64x64/lbone + name = "bone" + desc = "Bleached white by baking sunlight." + icon_state = "lbone" + +/obj/structure/prop/desert_planet64x64/palmuria + name = "palm" + desc = "Stout and bushy." + icon_state = "palmuria" + +/obj/structure/prop/desert_planet64x64/palmuria1 + name = "palm" + desc = "Stout and bushy." + icon_state = "palmuria1" + +/obj/structure/prop/desert_planet160x160 + name = "desert large boulder" + desc = "Sandy and smooth from erosion." + icon = 'modular_chomp/icons/obj/desert_planet/desert_planet_160x160.dmi' + density = TRUE + anchored = TRUE + can_buckle = FALSE + +/obj/structure/prop/desert_planet160x160/largeboulder + icon_state = "large_boulder" + +/obj/structure/prop/desert_planet160x160/tallboulder + icon_state = "tall_boulder" + +/obj/structure/prop/desert_planet160x160/boulder + icon_state = "boulder" + +/obj/structure/prop/desert_planet160x160/lcactus + name = "cactus" + desc = "Large and prickly." + icon_state = "lcactus" + +/obj/structure/prop/desert_planet160x160/lcactus1 + name = "cactus" + desc = "Large and prickly." + icon_state = "lcactus1" + +/obj/structure/prop/desert_planet160x160/lcactus2 + name = "cactus" + desc = "Large and prickly." + icon_state = "lcactus2" + +/obj/structure/prop/desert_planet160x160/lcactus3 + name = "cactus" + desc = "Large and prickly." + icon_state = "lcactus3" + +// Flora +/obj/structure/flora/desert_planet + name = "desert plant" + desc = "Probably a succulent." + icon = 'modular_chomp/icons/obj/desert_planet/desert_plants.dmi' + +/obj/structure/flora/desert_planet/potted_plant + name = "potted plant" + desc = "Colloquially known as a pot plant." + icon_state = "potplant0" + +/obj/structure/flora/desert_planet/potted_plant/New() + ..() + icon_state = "potplant[rand(0,2)]" + +/obj/structure/flora/desert_planet/thicket + name = "thicket" + desc = "Weedy growths." + icon_state = "thicket0" + +/obj/structure/flora/desert_planet/thicket/New() + ..() + icon_state = "thicket[rand(0,6)]" + +/obj/structure/flora/desert_planet/shrub + name = "shrub" + desc = "Dense and weedy." + icon_state = "shrub0" + +/obj/structure/flora/desert_planet/shrub/New() + ..() + icon_state = "shrub[rand(0,5)]" + +/obj/structure/flora/desert_planet/bush + name = "bush" + desc = "Denser and weedier." + icon_state = "bush0" + +/obj/structure/flora/desert_planet/bush/New() + ..() + icon_state = "bush[rand(0,5)]" + +/obj/structure/flora/desert_planet/barrelcacti + name = "barrel cacti" + desc = "Small, adorable, and begging for a hug." + icon_state = "barrelcacti0" + +/obj/structure/flora/desert_planet/barrelcacti/New() + ..() + icon_state = "barrelcacti[rand(0,3)]" + +/obj/structure/flora/desert_planet/palmy + name = "yucca bush" + desc = "Probably not actually a yucca." + icon_state = "palmy0" + +/obj/structure/flora/desert_planet/palmy/New() + ..() + icon_state = "palmy[rand(0,2)]" + +/obj/structure/flora/desert_planet/shrubber + name = "thorny bush" + desc = "Makes for great fur accessories." + icon_state = "shrubber0" + +/obj/structure/flora/desert_planet/shrubber/New() + ..() + icon_state = "shrubber[rand(0,2)]" + +/obj/structure/flora/desert_planet/lbarrelcacti + name = "barrel cactus" + desc = "Absolutely begging for pets." + icon_state = "lbarrelcacti0" + +/obj/structure/flora/desert_planet/lbarrelcacti/New() + ..() + icon_state = "lbarrelcacti[rand(0,2)]" + +// Trees +/obj/structure/flora/tree/desert_planet + name = "palm tree" + desc = "Tall palm tree, makes for a good shade." + icon = 'modular_chomp/icons/obj/desert_planet/desert_planet_160x160.dmi' + density = FALSE + anchored = TRUE + can_buckle = FALSE + product = /obj/item/stack/material/log + product_amount = 50 + health = 2000 + max_health = 2000 + //var/fruit + +/obj/structure/flora/tree/desert_planet/palmtreeb + icon_state = "palmtreeb" + base_state = "palmr" // Necessary for stumps to work. + +/obj/structure/flora/tree/desert_planet/palmtreeb1 + icon_state = "palmtreeb1" + base_state = "palml" + +/obj/structure/flora/tree/desert_planet/palmtree + icon_state = "palmtree" + base_state = "palmr" + +/obj/structure/flora/tree/desert_planet/palmtree1 + icon_state = "palmtree1" + base_state = "palml" + +/obj/structure/flora/tree/desert_planet/mpalmtreeb + icon_state = "mpalmtreeb" + base_state = "palmr" + +/obj/structure/flora/tree/desert_planet/mpalmtreeb1 + icon_state = "mpalmtreeb1" + base_state = "palml" + +/obj/structure/flora/tree/desert_planet/mpalmtree + icon_state = "mpalmtree" + base_state = "palml" + +/obj/structure/flora/tree/desert_planet/mpalmtree1 + icon_state = "mpalmtree1" + base_state = "palmr" + +/obj/structure/flora/tree/desert_planet/spalmtree + icon_state = "spalmtree" + base_state = "palmls" + +/obj/structure/flora/tree/desert_planet/spalmtree1 + icon_state = "spalmtree1" + base_state = "palmrs" + +/obj/structure/flora/tree/desert_planet/spalmtree3 + icon_state = "spalmtree3" + base_state = "palmls" + +/obj/structure/flora/tree/desert_planet/spalmtree4 + icon_state = "spalmtree4" + base_state = "palmrs" + +/obj/structure/flora/tree/desert_planet/desert_tree + name = "barren tree" + desc = "Completely barren." + icon_state = "desert_tree" + base_state = "desert" + +/obj/structure/flora/tree/desert_planet/desert_tree1 + name = "gnarled tree" + desc = "Twisted but living." + icon_state = "desert_tree1" + base_state = "desert" + +/obj/structure/flora/tree/desert_planet/desert_tree3 + name = "hardy tree" + desc = "Thriving despite the conditions." + icon_state = "desert_tree3" + base_state = "desert" + product_amount = 100 + health = 4000 + max_health = 4000 diff --git a/modular_chomp/code/game/objects/structures/gargoyle.dm b/modular_chomp/code/game/objects/structures/gargoyle.dm new file mode 100644 index 0000000000..b92801b217 --- /dev/null +++ b/modular_chomp/code/game/objects/structures/gargoyle.dm @@ -0,0 +1,169 @@ +/obj/structure/gargoyle + name = "statue" + desc = "A very lifelike carving." + density = TRUE + anchored = TRUE + var/mob/living/carbon/human/gargoyle + var/initial_sleep + var/initial_blind + var/initial_is_shifted + var/initial_lying + var/initial_lying_prev + var/wagging + var/flapping + var/obj_integrity = 100 + var/original_int = 100 + var/max_integrity = 100 + var/stored_examine + +/obj/structure/gargoyle/Initialize(mapload, var/mob/living/carbon/human/H) + . = ..() + if (isspace(loc) || isopenspace(loc)) + anchored = FALSE + if (!istype(H) || !isturf(H.loc)) + return + var/datum/component/gargoyle/comp = H.GetComponent(/datum/component/gargoyle) + if (comp) + comp.cooldown = world.time + (15 SECONDS) + comp.statue = src + comp.transformed = TRUE + comp.paused = FALSE + gargoyle = H + + max_integrity = H.getMaxHealth() + 100 + obj_integrity = H.health + 100 + original_int = obj_integrity + name = "statue of [H.name]" + desc = "A very lifelike statue." + stored_examine = H.examine() + description_fluff = H.get_description_fluff() + + if (H.buckled) + H.buckled.unbuckle_mob(H, TRUE) + icon = H.icon + copy_overlays(H) + color = list(rgb(77,77,77), rgb(150,150,150), rgb(28,28,28), rgb(0,0,0)) + initial_sleep = H.sleeping + initial_blind = H.eye_blind + initial_is_shifted = H.is_shifted + transform = H.transform + layer = H.layer + pixel_x = H.pixel_x + pixel_y = H.pixel_y + dir = H.dir + initial_lying = H.lying + initial_lying_prev = H.lying_prev + H.sdisabilities |= MUTE + if (H.appearance_flags & PIXEL_SCALE) + appearance_flags |= PIXEL_SCALE + wagging = H.wagging + H.transforming = TRUE + flapping = H.flapping + H.toggle_tail(FALSE, FALSE) + H.toggle_wing(FALSE, FALSE) + H.visible_message("[H]'s skin rapidly turns to stone!", "Your skin abruptly hardens as you turn to stone!") + H.forceMove(src) + H.SetBlinded(0) + H.SetSleeping(0) + H.status_flags |= GODMODE + H.updatehealth() + H.canmove = 0 + +/obj/structure/gargoyle/Destroy() + unpetrify() + . = ..() + +/obj/structure/gargoyle/examine_icon() + var/icon/examine_icon = ..() + examine_icon.MapColors(rgb(77,77,77), rgb(150,150,150), rgb(28,28,28), rgb(0,0,0)) + return examine_icon + +/obj/structure/gargoyle/get_description_info() + if (gargoyle) + if (isspace(loc) || isopenspace(loc)) + return + return "It can be [anchored ? "un" : ""]anchored with a wrench." + +/obj/structure/gargoyle/examine(mob/user) + . = ..() + if (gargoyle && stored_examine) + . += "The statue seems to have a bit more to them..." + . += stored_examine + return + +/obj/structure/gargoyle/proc/unpetrify() + if (!gargoyle) + return + var/datum/component/gargoyle/comp = gargoyle.GetComponent(/datum/component/gargoyle) + if (comp) + comp.cooldown = world.time + (15 SECONDS) + comp.statue = null + comp.transformed = FALSE + gargoyle.forceMove(loc) + gargoyle.transform = transform + gargoyle.pixel_x = pixel_x + gargoyle.pixel_y = pixel_y + gargoyle.is_shifted = initial_is_shifted + gargoyle.dir = dir + gargoyle.lying = initial_lying + gargoyle.lying_prev = initial_lying_prev + gargoyle.toggle_tail(wagging, FALSE) + gargoyle.toggle_wing(flapping, FALSE) + gargoyle.sdisabilities &= ~MUTE //why is there no ADD_TRAIT etc here that's actually ussssed + gargoyle.status_flags &= ~GODMODE + gargoyle.SetBlinded(initial_blind) + gargoyle.SetSleeping(initial_sleep) + gargoyle.transforming = FALSE + gargoyle.canmove = 1 + gargoyle.update_canmove() + var/hurtmessage = "" + if (obj_integrity < original_int) + var/f = (original_int - obj_integrity) / 10 + for (var/x in 1 to 10) + gargoyle.adjustBruteLoss(f) + hurtmessage = " You feel your body take the damage that was dealt while being stone!" + gargoyle.updatehealth() + alpha = 0 + gargoyle.visible_message("[gargoyle]'s skin rapidly softens, returning them to normal!", "Your skin softens, freeing your movement once more![hurtmessage]") + +/obj/structure/gargoyle/return_air() + return return_air_for_internal_lifeform() + +/obj/structure/gargoyle/return_air_for_internal_lifeform(var/mob/living/lifeform) + var/air_type = /datum/gas_mixture/belly_air + if(istype(lifeform)) + air_type = lifeform.get_perfect_belly_air_type() + var/air = new air_type(1000) + return air + +/obj/structure/gargoyle/proc/damage(var/damage) + obj_integrity = min(obj_integrity-damage, max_integrity) + if(obj_integrity <= 0) + qdel(src) + +/obj/structure/gargoyle/take_damage(var/damage) + damage(damage) + +/obj/structure/gargoyle/attack_generic(var/mob/user, var/damage, var/attack_message = "hits") + user.do_attack_animation(src) + visible_message("[user] [attack_message] the [src]!") + damage(damage) + +/obj/structure/gargoyle/attackby(var/obj/item/weapon/W as obj, var/mob/user as mob) + if(W.is_wrench()) + if (isspace(loc) || isopenspace(loc)) + to_chat(user, "You can't anchor that here!") + anchored = FALSE + return ..() + playsound(src, W.usesound, 50, 1) + if (do_after(user, (2 SECONDS) * W.toolspeed, target = src)) + to_chat("You [anchored ? "un" : ""]anchor the [src].") + anchored = !anchored + else if (!(W.flags & NOBLUDGEON)) + user.setClickCooldown(user.get_attack_speed(W)) + if(W.damtype == BRUTE || W.damtype == BURN) + user.do_attack_animation(src) + playsound(src, W.hitsound, 50, 1) + damage(W.force) + else + return ..() \ No newline at end of file diff --git a/modular_chomp/code/game/objects/structures/watercloset_ch.dm b/modular_chomp/code/game/objects/structures/watercloset_ch.dm index ea93649754..19f523cea9 100644 --- a/modular_chomp/code/game/objects/structures/watercloset_ch.dm +++ b/modular_chomp/code/game/objects/structures/watercloset_ch.dm @@ -108,6 +108,7 @@ return TRUE /obj/structure/biowaste_tank/Entered(atom/movable/thing, atom/OldLoc) + . = ..() if(istype(thing, /obj/item/weapon/reagent_containers/food)) qdel(thing) return diff --git a/modular_chomp/code/game/turfs/simulated/outdoors/desert_planet.dm b/modular_chomp/code/game/turfs/simulated/outdoors/desert_planet.dm index 58f1b1eea9..7b08e4eb6f 100644 --- a/modular_chomp/code/game/turfs/simulated/outdoors/desert_planet.dm +++ b/modular_chomp/code/game/turfs/simulated/outdoors/desert_planet.dm @@ -1,136 +1,257 @@ -/* Testing +// Parent turf. +/turf/simulated/floor/outdoors/desert_planet + name = "sand" + desc = "Salty and gritty." + icon = 'modular_chomp/icons/turf/desert_tiles.dmi' + icon_edge = 'modular_chomp/icons/turf/outdoors_edge.dmi' + can_dig = FALSE + /turf/simulated/floor/outdoors/desert_planet/sand name = "sand" - desc = "Sandy, taste salty and gritty." - icon = 'modular_chomp/icons/turf/desert_planet.dmi' + desc = "Salty and gritty." + icon_state = "sand0" edge_blending_priority = 2 - turf_layers = list(/turf/simulated/floor/outdoors/rocks) - initial_flooring = /decl/flooring/sand - can_dig = false -*/ + initial_flooring = /decl/flooring/desert_planet/sand -/turf/simulated/floor/outdoors/desert_planet/sand - name = "sand" - desc = "Salty and gritty." - icon = 'modular_chomp/icons/turf/desert_planet.dmi' - icon_state = "sand" - edge_blending_priority = 3 - turf_layers = list(/turf/simulated/floor/outdoors/desert_planet/sand) +// Necessary to get the edges to generate correctly since we use a random-ish icon_state. Inelegant to hard code, but this is a one-off case. +/turf/simulated/floor/outdoors/desert_planet/sand/get_edge_icon_state() + return "sand" -/* Testing -/decl/flooring/outdoors/sand - name = "sand" - desc = "Salty and gritty." - icon = 'modular_chomp/icons/turf/desert_planet.dmi' - icon_base = "sand" - footstep_sounds = list("human" = list( - 'sound/effects/footstep/asteroid1.ogg', - 'sound/effects/footstep/asteroid2.ogg', - 'sound/effects/footstep/asteroid3.ogg', - 'sound/effects/footstep/asteroid4.ogg', - 'sound/effects/footstep/asteroid5.ogg', - 'sound/effects/footstep/MedDirt1.ogg', - 'sound/effects/footstep/MedDirt2.ogg', - 'sound/effects/footstep/MedDirt3.ogg', - 'sound/effects/footstep/MedDirt4.ogg')) +/turf/simulated/floor/outdoors/desert_planet/sand/Initialize(mapload) + . = ..() + icon_state = "sand[rand(0,2)]" -/turf/simulated/floor/outdoors/sand/Initialize(mapload) - var/possiblesands = list( - "ironsand1" = 50, - "ironsand2" = 1, - "ironsand3" = 1, - "ironsand4" = 1, - "ironsand5" = 1, - "ironsand6" = 1, - "ironsand7" = 1, - "ironsand8" = 1, - "ironsand9" = 1, - "ironsand10" = 1, - "ironsand11" = 1, - "ironsand12" = 1, - "ironsand13" = 1, - "ironsand14" = 1, - "ironsand15" = 1 - - ) - flooring_override = pickweight(possiblesands) - return ..() - -/turf/simulated/floor/water/hotspring - name = "Hotsprings" - desc = "A natural hotspring connecting to an aquifer. It seems the facility was built ontop of it." - edge_blending_priority = -2 - movement_cost = 8 - depth = 2 - water_state = "water_shallow" - outdoors = FALSE - -/turf/simulated/floor/water/hotspring/Entered(atom/movable/AM, atom/oldloc) - if(istype(AM, /mob/living)) - var/mob/living/L = AM - L.update_water() - if(L.check_submerged() <= 0) - return - if(!istype(oldloc, /turf/simulated/floor/water/hotspring)) - to_chat(L, "You feel an overwhelming wave of warmth from entering \the [src]!") - AM.water_act(5) - ..() - - -*/ +/turf/simulated/floor/outdoors/desert_planet/sand/attackby(var/obj/item/W, var/mob/user) + if(istype(W, /obj/item/weapon/shovel)) + to_chat(user, "You begin to remove \the [src] with your [W].") + if(do_after(user, 4 SECONDS * W.toolspeed)) + to_chat(user, "\The [src] has been dug up, and now lies in a pile nearby.") + icon_state = "sand_dug" + new /obj/item/weapon/ore/glass (src) + else + to_chat(user, "You decide to not finish removing \the [src].") + else + ..() /turf/simulated/floor/outdoors/desert_planet/deep_sand name = "sand" - desc = "Salty and gritty." - icon = 'modular_chomp/icons/turf/desert_planet.dmi' - icon_state = "deep_sand" - edge_blending_priority = 2 - turf_layers = list(/turf/simulated/floor/outdoors/desert_planet/sand) + desc = "Really gets everywhere." + icon_state = "deep_sand0" + edge_blending_priority = 1 + movement_cost = 3 + initial_flooring = /decl/flooring/desert_planet/deep_sand + +/turf/simulated/floor/outdoors/desert_planet/deep_sand/Initialize(mapload) + . = ..() + icon_state = "deep_sand[rand(0,2)]" /turf/simulated/floor/outdoors/desert_planet/grass name = "grass" desc = "Lively green grass, soft to walk on." - icon = 'modular_chomp/icons/turf/desert_planet.dmi' icon_state = "grass" - edge_blending_priority = 6 - turf_layers = list(/turf/simulated/floor/outdoors/desert_planet/sand) + edge_blending_priority = 5 + initial_flooring = /decl/flooring/desert_planet/grass /turf/simulated/floor/outdoors/desert_planet/deep_grass name = "dense grass" desc = "Dense patch of grass, seems like a soft spot to lay on." - icon = 'modular_chomp/icons/turf/desert_planet.dmi' icon_state = "deep_grass" - edge_blending_priority = 7 - turf_layers = list(/turf/simulated/floor/outdoors/desert_planet/sand) + edge_blending_priority = 6 + initial_flooring = /decl/flooring/desert_planet/deep_grass /turf/simulated/floor/outdoors/desert_planet/gravel name = "gravel" desc = "Mix of dirt and sand, it crumbles in your hand." - icon = 'modular_chomp/icons/turf/desert_planet.dmi' icon_state = "gravel" - edge_blending_priority = 5 - turf_layers = list(/turf/simulated/floor/outdoors/desert_planet/sand) + edge_blending_priority = 3 + initial_flooring = /decl/flooring/desert_planet/gravel /turf/simulated/floor/outdoors/desert_planet/mud name = "mud" desc = "Squishy damp dirt, smells muddy." - icon = 'modular_chomp/icons/turf/desert_planet.dmi' icon_state = "mud" edge_blending_priority = 4 - turf_layers = list(/turf/simulated/floor/outdoors/desert_planet/sand) + initial_flooring = /decl/flooring/desert_planet/mud +// At last we've come full circle, a floor which is actually a wall. +/turf/simulated/floor/outdoors/desert_planet/stonewall + name = "sandstone" + desc = "Rough sandstone." + icon_state = "stonewall" + density = TRUE + opacity = TRUE + edge_blending_priority = 7 + initial_flooring = /decl/flooring/desert_planet/stonewall + turf_layers = list(/turf/simulated/floor/outdoors/rocks) + var/last_act = 0 + +// Stolen from mineral turf code. +/turf/simulated/floor/outdoors/desert_planet/stonewall/attackby(obj/item/weapon/W as obj, mob/user as mob) + if(!user.IsAdvancedToolUser()) + to_chat(user, "You don't have the dexterity to do this!") + return + + if(istype(W, /obj/item/weapon/pickaxe)) + if(!istype(user.loc, /turf)) + return + + var/obj/item/weapon/pickaxe/P = W + if(last_act + P.digspeed > world.time)//prevents message spam + return + last_act = world.time + + playsound(user, P.drill_sound, 20, 1) + to_chat(user, "You start [P.drill_verb].") + + if(do_after(user,P.digspeed)) + + to_chat(user, "You finish [P.drill_verb] \the [src].") + new /obj/item/stack/material/sandstone(src) + density = FALSE + opacity = FALSE + demote() // Converts the turf to the next layer in turf_layers. + ..() + +/turf/simulated/floor/outdoors/desert_planet/sandrock + name = "sandstone tiles" + desc = "Tightly joined in a mesmerizing lattice." + icon_state = "sandrock" + density = TRUE + opacity = TRUE + initial_flooring = /decl/flooring/desert_planet/sandrock + +// Declarations (for initial_flooring) +/decl/flooring/desert_planet // Yeah don't use this one, it's a parent just for setting icon. + name = "desert stuff" + desc = "If you see this, this turf is using the wrong decl." + icon = 'modular_chomp/icons/turf/desert_tiles.dmi' + icon_base = null + +/decl/flooring/desert_planet/sand + name = "sand" + desc = "Salty and gritty." + icon_base = "sand" + has_base_range = 2 + +/decl/flooring/desert_planet/deep_sand + name = "sand" + desc = "Really gets everywhere." + icon_base = "deep_sand" + has_base_range = 2 + +/decl/flooring/desert_planet/grass + name = "grass" + desc = "Lively green grass, soft to walk on." + icon_base = "grass" + +/decl/flooring/desert_planet/deep_grass + name = "dense grass" + desc = "Dense patch of grass, seems like a soft spot to lay on." + icon_base = "deep_grass" + +/decl/flooring/desert_planet/gravel + name = "gravel" + desc = "Mix of dirt and sand, it crumbles in your hand." + icon_base = "gravel" + +/decl/flooring/desert_planet/mud + name = "mud" + desc = "Squishy damp dirt, smells muddy." + icon_base = "mud" + +/decl/flooring/desert_planet/stonewall + name = "sandstone" + desc = "Rough sandstone." + icon_base = "stonewall" + +/decl/flooring/desert_planet/sandrock + name = "sandstone tiles" + desc = "Tightly joined in a mesmerizing lattice." + icon_base = "sandrock" + flags = TURF_HAS_EDGES | TURF_HAS_CORNERS + +/* +/obj/effect/floor_decal/desert_planet/floor/sand0_edge + name = "sand0_edge" + icon = 'icons/turf/desert_planet.dmi' + icon_state = "sand0_edge" + +/obj/effect/floor_decal/desert_planet/floor/gravel_edge + name = "gravel_edge" + icon = 'icons/turf/desert_planet.dmi' + icon_state = "gravel_edge" + +/obj/effect/floor_decal/desert_planet/floor/mud_edge + name = "mud_edge" + icon = 'icons/turf/desert_planet.dmi' + icon_state = "mud_edge" + +/obj/effect/floor_decal/desert_planet/floor/grass_edge + name = "grass_edge" + icon = 'icons/turf/desert_planet.dmi' + icon_state = "grass_edge" + +/obj/effect/floor_decal/desert_planet/floor/deep_grass_edge + name = "deep_grass_edge" + icon = 'icons/turf/desert_planet.dmi' + icon_state = "deep_grass_edge" +*/ + +/* #No idea how water tiles work /turf/simulated/floor/outdoors/desert_planet/water name = "water" desc = "Clear cool water, looks potable." - icon = 'modular_chomp/icons/turf/desert_planet.dmi' + icon = 'icons/turf/desert_planet.dmi' icon_state = "water" - edge_blending_priority = 8 + var/water_state = "water_shallow" + var/under_state = "sand" + can_be_plated = FALSE + outdoors = OUTDOORS_YES + flags = TURF_ACID_IMMUNE + layer = WATER_FLOOR_LAYER + can_dirty = FALSE // It's water + var/depth = 1 // Higher numbers indicates deeper water. + var/reagent_type = "water" + edge_blending_priority = 2 turf_layers = list(/turf/simulated/floor/outdoors/desert_planet/sand) /turf/simulated/floor/outdoors/desert_planet/deep_water name = "deep water" desc = "deep enough you can't see the bottom of it." - icon = 'modular_chomp/icons/turf/desert_planet.dmi' + icon = 'icons/turf/desert_planet.dmi' icon_state = "deep_water" - edge_blending_priority = 9 + var/water_state = "water_shallow" + var/under_state = "sand" + can_be_plated = FALSE + outdoors = OUTDOORS_YES + flags = TURF_ACID_IMMUNE + layer = WATER_FLOOR_LAYER + can_dirty = FALSE // It's water + var/depth = 2 // Higher numbers indicates deeper water. + var/reagent_type = "water" + edge_blending_priority = 4 turf_layers = list(/turf/simulated/floor/outdoors/desert_planet/sand) + + //I want this for the water tiles +/turf/simulated/floor/water + name = "shallow water" + desc = "A body of water. It seems shallow enough to walk through, if needed." + icon = 'icons/turf/outdoors.dmi' + icon_state = "seashallow" // So it shows up in the map editor as water. + var/water_state = "water_shallow" + var/under_state = "rock" + edge_blending_priority = -1 + movement_cost = 4 + can_be_plated = FALSE + outdoors = OUTDOORS_YES + flags = TURF_ACID_IMMUNE + + layer = WATER_FLOOR_LAYER + + can_dirty = FALSE // It's water + + var/depth = 1 // Higher numbers indicates deeper water. + + var/reagent_type = "water" + // var/datum/looping_sound/water/soundloop CHOMPEdit: Removing soundloop for now. +*/ diff --git a/modular_chomp/code/modules/client/preferences.dm b/modular_chomp/code/modules/client/preferences.dm index 76dea00a76..135250340b 100644 --- a/modular_chomp/code/modules/client/preferences.dm +++ b/modular_chomp/code/modules/client/preferences.dm @@ -34,3 +34,269 @@ SScharacter_setup.queue_preferences_save(prefs) feedback_add_details("admin_verb","TAutoTranscore") //If you are copy-pasting this, ensure the 2nd parameter is unique to the new proc! + +/datum/preferences/proc/vanity_copy_to(var/mob/living/carbon/human/character, var/copy_name, var/copy_flavour = TRUE, var/copy_ooc_notes = FALSE, var/convert_to_prosthetics = FALSE) + //snowflake copy_to, does not copy anything but the vanity things + //does not check if the name is the same, do that in any proc that calls this proc + /* + name, nickname, flavour, OOC notes + gender, sex + custom species name, custom bodytype, weight, scale, scaling center, sound type, sound freq + custom say verbs + ears, wings, tail, hair, facial hair + ears colors, wings colors, tail colors + body color, prosthetics (if they're a protean) (convert to DSI if protean and not prosthetic), eye color, hair color etc + markings + custom synth markings toggle, custom synth color toggle + digitigrade + blood color + */ + if (copy_name) + if(config.humans_need_surnames) + var/firstspace = findtext(real_name, " ") + var/name_length = length(real_name) + if(!firstspace) //we need a surname + real_name += " [pick(last_names)]" + else if(firstspace == name_length) + real_name += "[pick(last_names)]" + character.real_name = real_name + character.name = character.real_name + if(character.dna) + character.dna.real_name = character.real_name + character.nickname = nickname + character.gender = biological_gender + character.identifying_gender = identifying_gender + + character.r_eyes = r_eyes + character.g_eyes = g_eyes + character.b_eyes = b_eyes + character.h_style = h_style + character.r_hair = r_hair + character.g_hair = g_hair + character.b_hair = b_hair + character.r_grad = r_grad + character.g_grad = g_grad + character.b_grad = b_grad + character.f_style = f_style + character.r_facial = r_facial + character.g_facial = g_facial + character.b_facial = b_facial + character.r_skin = r_skin + character.g_skin = g_skin + character.b_skin = b_skin + character.s_tone = s_tone + character.h_style = h_style + character.grad_style= grad_style + character.f_style = f_style + character.grad_style= grad_style + character.b_type = b_type + character.synth_color = synth_color + character.r_synth = r_synth + character.g_synth = g_synth + character.b_synth = b_synth + character.synth_markings = synth_markings + + var/list/ear_styles = get_available_styles(global.ear_styles_list) + character.ear_style = ear_styles[ear_style] + character.r_ears = r_ears + character.b_ears = b_ears + character.g_ears = g_ears + character.r_ears2 = r_ears2 + character.b_ears2 = b_ears2 + character.g_ears2 = g_ears2 + character.r_ears3 = r_ears3 + character.b_ears3 = b_ears3 + character.g_ears3 = g_ears3 + + var/list/tail_styles = get_available_styles(global.tail_styles_list) + character.tail_style = tail_styles[tail_style] + character.r_tail = r_tail + character.b_tail = b_tail + character.g_tail = g_tail + character.r_tail2 = r_tail2 + character.b_tail2 = b_tail2 + character.g_tail2 = g_tail2 + character.r_tail3 = r_tail3 + character.b_tail3 = b_tail3 + character.g_tail3 = g_tail3 + + var/list/wing_styles = get_available_styles(global.wing_styles_list) + character.wing_style = wing_styles[wing_style] + character.r_wing = r_wing + character.b_wing = b_wing + character.g_wing = g_wing + character.r_wing2 = r_wing2 + character.b_wing2 = b_wing2 + character.g_wing2 = g_wing2 + character.r_wing3 = r_wing3 + character.b_wing3 = b_wing3 + character.g_wing3 = g_wing3 + + character.set_gender(biological_gender) + + // Destroy/cyborgize organs and limbs. + if (convert_to_prosthetics) //should only really be run for proteans + var/list/organs_to_edit = list() + for (var/name in list(BP_TORSO, BP_HEAD, BP_GROIN, BP_L_ARM, BP_R_ARM, BP_L_HAND, BP_R_HAND, BP_L_LEG, BP_R_LEG, BP_L_FOOT, BP_R_FOOT)) + var/obj/item/organ/external/O = character.organs_by_name[name] + if (O) + var/x = organs_to_edit.Find(O.parent_organ) + if (x == 0) + organs_to_edit += name + else + organs_to_edit.Insert(x+(O.robotic == ORGAN_NANOFORM ? 1 : 0), name) + for(var/name in organs_to_edit) + var/status = organ_data[name] + var/obj/item/organ/external/O = character.organs_by_name[name] + if(O) + if(status == "amputated") + continue + else if(status == "cyborg") + O.robotize(rlimb_data[name]) + else + var/bodytype + var/datum/species/selected_species = GLOB.all_species[species] + if(selected_species.selects_bodytype) + bodytype = custom_base + else + bodytype = selected_species.get_bodytype() + var/dsi_company = GLOB.dsi_to_species[bodytype] + if (!dsi_company) + dsi_company = "DSI - Adaptive" + O.robotize(dsi_company) + + for(var/N in character.organs_by_name) + var/obj/item/organ/external/O = character.organs_by_name[N] + O.markings.Cut() + + var/priority = 0 + for(var/M in body_markings) + priority += 1 + var/datum/sprite_accessory/marking/mark_datum = body_marking_styles_list[M] + var/mark_color = "[body_markings[M]]" + + for(var/BP in mark_datum.body_parts) + var/obj/item/organ/external/O = character.organs_by_name[BP] + if(O) + O.markings[M] = list("color" = mark_color, "datum" = mark_datum, "priority" = priority) + character.markings_len = priority + + var/list/last_descriptors = list() + if(islist(body_descriptors)) + last_descriptors = body_descriptors.Copy() + body_descriptors = list() + + var/datum/species/mob_species = GLOB.all_species[species] + if(LAZYLEN(mob_species.descriptors)) + for(var/entry in mob_species.descriptors) + var/datum/mob_descriptor/descriptor = mob_species.descriptors[entry] + if(istype(descriptor)) + if(isnull(last_descriptors[entry])) + body_descriptors[entry] = descriptor.default_value // Species datums have initial default value. + else + body_descriptors[entry] = CLAMP(last_descriptors[entry], 1, LAZYLEN(descriptor.standalone_value_descriptors)) + character.descriptors = body_descriptors + + if (copy_flavour) + character.flavor_texts["general"] = flavor_texts["general"] + character.flavor_texts["head"] = flavor_texts["head"] + character.flavor_texts["face"] = flavor_texts["face"] + character.flavor_texts["eyes"] = flavor_texts["eyes"] + character.flavor_texts["torso"] = flavor_texts["torso"] + character.flavor_texts["arms"] = flavor_texts["arms"] + character.flavor_texts["hands"] = flavor_texts["hands"] + character.flavor_texts["legs"] = flavor_texts["legs"] + character.flavor_texts["feet"] = flavor_texts["feet"] + if (copy_ooc_notes) + character.ooc_notes = metadata + + character.weight = weight_vr + character.weight_gain = weight_gain + character.weight_loss = weight_loss + character.fuzzy = fuzzy + character.offset_override = offset_override //CHOMPEdit + character.voice_freq = voice_freq + character.resize(size_multiplier, animate = FALSE, ignore_prefs = TRUE) + + var/list/traits_to_copy = list(/datum/trait/neutral/tall, + /datum/trait/neutral/taller, + /datum/trait/neutral/short, + /datum/trait/neutral/shorter, + /datum/trait/neutral/obese, + /datum/trait/neutral/fat, + /datum/trait/neutral/thin, + /datum/trait/neutral/thinner, + /datum/trait/neutral/micro_size_down, + /datum/trait/neutral/micro_size_up) + //reset all the above trait vars + if (character.species) + character.species.micro_size_mod = 0 + character.species.icon_scale_x = 1 + character.species.icon_scale_y = 1 + for (var/trait in neu_traits) + if (trait in traits_to_copy) + var/datum/trait/instance = all_traits[trait] + if (!instance) + continue + for (var/to_edit in instance.var_changes) + character.species.vars[to_edit] = instance.var_changes[to_edit] + character.update_transform() + if(!voice_sound) + character.voice_sounds_list = talk_sound + else + switch(voice_sound) + if("beep-boop") + character.voice_sounds_list = talk_sound + if("goon speak 1") + character.voice_sounds_list = goon_speak_one_sound + if("goon speak 2") + character.voice_sounds_list = goon_speak_two_sound + if("goon speak 3") + character.voice_sounds_list = goon_speak_three_sound + if("goon speak 4") + character.voice_sounds_list = goon_speak_four_sound + if("goon speak blub") + character.voice_sounds_list = goon_speak_blub_sound + if("goon speak bottalk") + character.voice_sounds_list = goon_speak_bottalk_sound + if("goon speak buwoo") + character.voice_sounds_list = goon_speak_buwoo_sound + if("goon speak cow") + character.voice_sounds_list = goon_speak_cow_sound + if("goon speak lizard") + character.voice_sounds_list = goon_speak_lizard_sound + if("goon speak pug") + character.voice_sounds_list = goon_speak_pug_sound + if("goon speak pugg") + character.voice_sounds_list = goon_speak_pugg_sound + if("goon speak roach") + character.voice_sounds_list = goon_speak_roach_sound + if("goon speak skelly") + character.voice_sounds_list = goon_speak_skelly_sound + + character.species?.blood_color = blood_color + + var/datum/species/selected_species = GLOB.all_species[species] + var/bodytype_selected + if(selected_species.selects_bodytype) + bodytype_selected = custom_base + else + bodytype_selected = selected_species.get_bodytype(character) + + character.dna.base_species = bodytype_selected + character.species.base_species = bodytype_selected + character.species.vanity_base_fit = bodytype_selected + if (istype(character.species, /datum/species/shapeshifter)) + wrapped_species_by_ref["\ref[character]"] = bodytype_selected + + character.custom_species = custom_species + character.custom_say = lowertext(trim(custom_say)) + character.custom_ask = lowertext(trim(custom_ask)) + character.custom_whisper = lowertext(trim(custom_whisper)) + character.custom_exclaim = lowertext(trim(custom_exclaim)) + + character.digitigrade = selected_species.digi_allowed ? digitigrade : 0 + + character.dna.ResetUIFrom(character) + character.force_update_limbs() + character.regenerate_icons() diff --git a/modular_chomp/code/modules/clothing/clothing_icons.dm b/modular_chomp/code/modules/clothing/clothing_icons.dm new file mode 100644 index 0000000000..b4c5d75a5c --- /dev/null +++ b/modular_chomp/code/modules/clothing/clothing_icons.dm @@ -0,0 +1,6 @@ +/obj/item/clothing/shoes/apply_blood(var/image/standing) + if(blood_DNA && blood_sprite_state && ishuman(loc)) + var/mob/living/carbon/human/H = loc + var/image/bloodsies = image(icon = H.digitigrade ? 'modular_chomp/icons/mob/human_races/masks/blood_digitigrade.dmi' : H.species.get_blood_mask(H), icon_state = blood_sprite_state) + bloodsies.color = blood_color + standing.add_overlay(bloodsies) diff --git a/modular_chomp/code/modules/clothing/spacesuits/rig/modules/specific/defib.dm b/modular_chomp/code/modules/clothing/spacesuits/rig/modules/specific/defib.dm new file mode 100644 index 0000000000..faeb5d7170 --- /dev/null +++ b/modular_chomp/code/modules/clothing/spacesuits/rig/modules/specific/defib.dm @@ -0,0 +1,24 @@ +/obj/item/rig_module/device/defib + name = "mounted defib" + desc = "A rig mounted defib unit. Has expanded functionality to function on both organics and FBP's." + icon_state = "flash" + interface_name = "mounted defib" + interface_desc = "Toggle to swap between FBP and Organic compatability." + device_type = /obj/item/weapon/shockpaddles/standalone/rig + usable = 1 + engage_string = "Toggle Mode" + +/obj/item/weapon/shockpaddles/standalone/rig + name = "mounted defib" + desc = "Rig mounted defib. How are you seeing this? Stop that." + wielded = 1 + +/obj/item/weapon/shockpaddles/standalone/rig/emp_act(severity) + return + +/obj/item/weapon/shockpaddles/standalone/rig/checked_use(var/charge_amt) + return 1 + +/obj/item/weapon/shockpaddles/standalone/rig/attack_self() + use_on_synthetic = !use_on_synthetic + to_chat(usr, "You switch the [src] to [use_on_synthetic ? "FBP" : "organic"] compatability.") \ No newline at end of file diff --git a/modular_chomp/code/modules/clothing/spacesuits/rig/modules/specific/mounted_gun.dm b/modular_chomp/code/modules/clothing/spacesuits/rig/modules/specific/mounted_gun.dm new file mode 100644 index 0000000000..cb59511f2e --- /dev/null +++ b/modular_chomp/code/modules/clothing/spacesuits/rig/modules/specific/mounted_gun.dm @@ -0,0 +1,8 @@ +/obj/item/rig_module/mounted/phase + name = "mounted phase rifle" + desc = "A forearm-mounted phase rifle." + icon_state = "taser" + usable = 0 + interface_name = "mounted phase rifle" + interface_desc = "A forearm-mounted suit-powered phase rifle." + gun_type = /obj/item/weapon/gun/energy/locked/phasegun/rifle/unlocked/mounted \ No newline at end of file diff --git a/modular_chomp/code/modules/clothing/spacesuits/rig/modules/specific/protean.dm b/modular_chomp/code/modules/clothing/spacesuits/rig/modules/specific/protean.dm new file mode 100644 index 0000000000..f0d36a706d --- /dev/null +++ b/modular_chomp/code/modules/clothing/spacesuits/rig/modules/specific/protean.dm @@ -0,0 +1,209 @@ +/* +A collection of Protean rigsuit modules, intended to encourage Symbiotic relations with a host. +All of these should require someone else to be wearing the Protean to function. +These should come standard with the Protean rigsuit, unless you want them to work for some upgrades. +*/ + + +//This rig module feeds nutrition directly from the wearer to the Protean, to help them stay charged while worn. +/obj/item/rig_module/protean + permanent = 1 + +/obj/item/rig_module/protean/syphon + name = "Protean Metabolic Syphon" + desc = "This should never be outside of a RIG." + icon_state = "flash" + interface_name = "Protean Metabolic Syphon" + interface_desc = "Toggle to drain nutrition/power from the user directly into the Protean's own energy stores." + toggleable = 1 + activate_string = "Enable Syphon" + deactivate_string = "Disable Syphon" + +/obj/item/rig_module/protean/syphon/activate() + if(!..()) + return 0 + + var/mob/living/carbon/human/H = holder.wearer + if(H) + to_chat(usr, "You activate the suit's energy syphon.") + to_chat(H, "Your suit begins to sap at your own energy stores.") + active = 1 + else + return 0 + +/obj/item/rig_module/protean/syphon/deactivate(var/forced) + if(!..()) + return 0 + if(forced) + active = 0 + return + var/mob/living/carbon/human/H = holder.wearer + if(H) + to_chat(usr, "You deactivate the suit's energy syphon.") + to_chat(H, "Your suit ceases from sapping your own energy.") + active = 0 + else + return 0 + +/obj/item/rig_module/protean/syphon/process() + if(active) + var/mob/living/carbon/human/H = holder.wearer + var/mob/living/P = holder?:myprotean + if(istype(H.species, /datum/species/protean)) + to_chat(H, "Your Protean modules do not function on yourself.") + deactivate(1) + else + P = P?:humanform + if((H.nutrition >= 100) && (P.nutrition <= 5000)) + H.nutrition -= 10 + P.nutrition += 10 + +//This rig module allows a worn Protean to toggle and configure its armor settings. +/obj/item/rig_module/protean/armor + name = "Protean Adaptive Armor" + desc = "This should never be outside of a RIG." + interface_name = "Protean Adaptive Armor" + interface_desc = "Adjusts the proteans deployed armor values to fit the needs of the wearer." + usable = 1 + toggleable = 1 + activate_string = "Enable Armor" + deactivate_string = "Disable Armor" + engage_string = "Configure Armor" + var/list/armor_settings = list("melee" = 0, "bullet" = 0, "laser" = 0,"energy" = 0, "bomb" = 0) + var/armor_weight_ratio = 0.01 //This amount of slowdown per 1% of armour. 3 slowdown at the max armour. + +/obj/item/rig_module/protean/armor/engage() + var/armor_chosen = input(usr, "Which armor to adjust?", "Protean Armor") as null|anything in armor_settings + if(armor_chosen) + var/armorvalue = tgui_input_number(usr, "Set armour reduction value (Max of 60%)", "Protean Armor",0,60,0,0,1) + if(isnum(armorvalue)) + armor_settings[armor_chosen] = armorvalue + interface_desc = initial(interface_desc) + slowdown = 0 + for(var/entry in armor_settings) //This is dumb and ugly but I dont feel like rewriting rig TGUI just to make this a pretty list + interface_desc += " [entry]: [armor_settings[entry]]" + slowdown += armor_settings[entry]*armor_weight_ratio + interface_desc += " Slowdown: [slowdown]" + +/obj/item/rig_module/protean/armor/activate() + if(holder?:assimilated_rig) + to_chat(usr, "Armor module non-functional while a RIG is assimilated.") + return + if(!..(1)) + return 0 + + var/mob/living/carbon/human/H = holder.wearer + if(H) + var/list/temparmor = list("bio" = 100, "rad" = 100) + temparmor = armor_settings + temparmor + to_chat(usr, "You signal the suit to harden.") + to_chat(H, "Your suit hardens in response to physical trauma.") + holder.armor = temparmor.Copy() + for(var/obj/item/piece in list(holder.gloves,holder.helmet,holder.boots,holder.chest)) + piece.armor = temparmor.Copy() + holder.slowdown = slowdown + active = 1 + else + return 0 + +/obj/item/rig_module/protean/armor/deactivate(var/forced) + if(!..(1)) + return 0 + if(forced) + holder.armor = list("melee" = 0, "bullet" = 0, "laser" = 0,"energy" = 0, "bomb" = 0, "bio" = 100, "rad" = 100) + for(var/obj/item/piece in list(holder.gloves,holder.helmet,holder.boots,holder.chest)) + piece.armor = list("melee" = 0, "bullet" = 0, "laser" = 0,"energy" = 0, "bomb" = 0, "bio" = 100, "rad" = 100) + holder.slowdown = initial(slowdown) + active = 0 + return + var/mob/living/carbon/human/H = holder.wearer + if(H) + to_chat(usr, "You signal the suit to relax.") + to_chat(H, "Your suit softens.") + holder.armor = list("melee" = 0, "bullet" = 0, "laser" = 0,"energy" = 0, "bomb" = 0, "bio" = 100, "rad" = 100) + for(var/obj/item/piece in list(holder.gloves,holder.helmet,holder.boots,holder.chest)) + piece.armor = list("melee" = 0, "bullet" = 0, "laser" = 0,"energy" = 0, "bomb" = 0, "bio" = 100, "rad" = 100) + holder.slowdown = initial(slowdown) + active = 0 + else + return 0 + +/obj/item/rig_module/protean/armor/process() + if(active) + var/mob/living/carbon/human/H = holder.wearer + if(istype(H.species, /datum/species/protean)) + to_chat(H, "Your Protean modules do not function on yourself.") + deactivate(1) + + +//This rig module lets a Protean expend its metal stores to heal its host +/obj/item/rig_module/protean/healing + name = "Protean Restorative Nanites" + desc = "This should never be outside of a RIG." + interface_name = "Protean Restorative Nanites" + interface_desc = "Utilises stored steel from the Protean to slowly heal and repair the wearer." + toggleable = 1 + activate_string = "Enable Healing" + deactivate_string = "Disable Healing" + var/datum/modifier/healing + +/obj/item/rig_module/protean/healing/activate() + if(!..(1)) + return 0 + + var/mob/living/carbon/human/H = holder.wearer + var/mob/living/P = holder?:myprotean + if(H && P) + if(istype(H.species, /datum/species/protean)) + to_chat(H, "Your Protean modules do not function on yourself.") + return 0 + var/obj/item/organ/internal/nano/refactory/R = P.nano_get_refactory() + if(R.get_stored_material(MAT_STEEL) >= 100) + healing = holder.wearer.add_modifier(/datum/modifier/protean/steel, origin = R) + to_chat(usr, "You activate the suit's restorative nanites.") + to_chat(H, "Your suit begins mend your injuries.") + active = 1 + return 1 + return 0 + +/obj/item/rig_module/protean/healing/deactivate() + if(!..(1)) + return 0 + var/mob/living/carbon/human/H = holder.wearer + if(H) + to_chat(usr, "You deactivate the suit's restorative nanites.") + to_chat(H, "Your suit is no longer mending your injuries.") + active = 0 + if(healing) + healing.expire() + healing = null + return 1 + else + return 0 + +/obj/item/rig_module/protean/healing/process() + if(active) + var/mob/living/carbon/human/H = holder.wearer + var/mob/living/P = holder?:myprotean + if((istype(H.species, /datum/species/protean)) || !H || !P) + to_chat(H, "Your Protean modules do not function on yourself.") + deactivate() + return + var/obj/item/organ/internal/nano/refactory/R = P.nano_get_refactory() + if((!R.get_stored_material(MAT_STEEL))) + to_chat(H, "Your [holder] is out of steel.") + deactivate() + return + +/obj/item/rig_module/protean/healing/accepts_item(var/obj/item/stack/material/steel/S, var/mob/living/user) + + if(!istype(S) || !istype(user)) + return 0 + + var/mob/living/P = holder?:myprotean + var/obj/item/organ/internal/nano/refactory/R = P?.nano_get_refactory() + + if(R?.add_stored_material(S.material.name,1*S.perunit) && S.use(1)) + to_chat(user, "You directly feed some steel to the [holder].") + return 1 + return 0 \ No newline at end of file diff --git a/modular_chomp/code/modules/clothing/spacesuits/rig/precursor.dm b/modular_chomp/code/modules/clothing/spacesuits/rig/precursor.dm new file mode 100644 index 0000000000..ecab92c7ce --- /dev/null +++ b/modular_chomp/code/modules/clothing/spacesuits/rig/precursor.dm @@ -0,0 +1,71 @@ +/obj/item/weapon/rig/ch/precursor + name = "xenotech hardsuit control module" + desc = "A purple hardsuit gleaming with energy and alien metals." + suit_type = "precursor hardsuit" + icon = 'modular_chomp/icons/obj/rig_modules_ch.dmi' + icon_state = "precursor_rig" + armor = list(melee = 50, bullet = 50, laser = 70, energy = 70, bomb = 60, bio = 100, rad = 80) + var/block_chance = 15 + slowdown = 0 + + chest_type = /obj/item/clothing/suit/space/rig/ch/precursor + helm_type = /obj/item/clothing/head/helmet/space/rig/ch/precursor + glove_type = /obj/item/clothing/gloves/gauntlets/rig/ch/precursor + boot_type = /obj/item/clothing/shoes/magboots/rig/ch/precursor + + req_access = list() + req_one_access = list() + +/obj/item/clothing/suit/space/rig/ch/precursor + name = "protective vest" + icon = 'icons/obj/clothing/spacesuits_ch.dmi' + desc = "Light weight but oddly protective plating." + var/block_chance = 15 + +/obj/item/clothing/head/helmet/space/rig/ch/precursor + name = "helmet" + icon = 'icons/obj/clothing/hats_ch.dmi' + desc = "A protective dome for your head." + var/block_chance = 15 + +/obj/item/clothing/gloves/gauntlets/rig/ch/precursor + name = "gloves" + icon = 'icons/obj/clothing/gloves_ch.dmi' + desc = "Gloves created with alien tech" + var/block_chance = 15 + +/obj/item/clothing/shoes/magboots/rig/ch/precursor + name = "boots" + icon = 'icons/obj/clothing/shoes_ch.dmi' + desc = "A pair of grabby boots" + var/block_chance = 15 + +/obj/item/weapon/rig/ch/precursor/handle_shield(mob/user, var/damage, atom/damage_source = null, mob/attacker = null, var/def_zone = null, var/attack_text = "the attack") + if(prob(block_chance)) + user.visible_message("\The [src] completely absorbs [attack_text]!") + return TRUE + return FALSE + +/obj/item/clothing/suit/space/rig/ch/precursor/handle_shield(mob/user, var/damage, atom/damage_source = null, mob/attacker = null, var/def_zone = null, var/attack_text = "the attack") + if(prob(block_chance)) + user.visible_message("\The [src] completely absorbs [attack_text]!") + return TRUE + return FALSE + +/obj/item/clothing/head/helmet/space/rig/ch/precursor/handle_shield(mob/user, var/damage, atom/damage_source = null, mob/attacker = null, var/def_zone = null, var/attack_text = "the attack") + if(prob(block_chance)) + user.visible_message("\The [src] completely absorbs [attack_text]!") + return TRUE + return FALSE + +/obj/item/clothing/gloves/gauntlets/rig/ch/precursor/handle_shield(mob/user, var/damage, atom/damage_source = null, mob/attacker = null, var/def_zone = null, var/attack_text = "the attack") + if(prob(block_chance)) + user.visible_message("\The [src] completely absorbs [attack_text]!") + return TRUE + return FALSE + +/obj/item/clothing/shoes/magboots/rig/ch/precursor/handle_shield(mob/user, var/damage, atom/damage_source = null, mob/attacker = null, var/def_zone = null, var/attack_text = "the attack") + if(prob(block_chance)) + user.visible_message("\The [src] completely absorbs [attack_text]!") + return TRUE + return FALSE \ No newline at end of file diff --git a/modular_chomp/code/modules/mining/shelter_atoms_ch.dm b/modular_chomp/code/modules/mining/shelter_atoms_ch.dm index bcf39dec62..46b068206e 100644 --- a/modular_chomp/code/modules/mining/shelter_atoms_ch.dm +++ b/modular_chomp/code/modules/mining/shelter_atoms_ch.dm @@ -85,6 +85,24 @@ /area/survivalpod/superpose/RestaurationBar +/area/survivalpod/superpose/BordcastingPod + +/area/survivalpod/superpose/DemonPoolV2 + +/area/survivalpod/superpose/PirateShip + +/area/survivalpod/superpose/SurvivalHomeV2 + +/area/survivalpod/superpose/SurvivalMechFab + +/area/survivalpod/superpose/SurvivalMethLab + +/area/survivalpod/superpose/SurvivalScienceV2 + +/area/survivalpod/superpose/SurvivalSecurityV2 + +/area/survivalpod/superpose/HillOutpost + /obj/item/device/survivalcapsule/superpose name = "superposed surfluid shelter capsule" desc = "A proprietary hyperstructure of many three-dimensional spaces superposed around a supermatter nano crystal; use a pen to reach the reset button. There's a license for use printed on the bottom." diff --git a/modular_chomp/code/modules/mining/shelters_ch.dm b/modular_chomp/code/modules/mining/shelters_ch.dm index 208b3a4496..69f696babc 100644 --- a/modular_chomp/code/modules/mining/shelters_ch.dm +++ b/modular_chomp/code/modules/mining/shelters_ch.dm @@ -70,7 +70,7 @@ /datum/map_template/shelter/superpose/LargeAlienShip shelter_id = "LargeAlienShip" - mappath = "modular_chomp/maps/submaps/shelters/LargeAlienShip-60x29.dmm" + mappath = "modular_chomp/maps/submaps/shelters/LargeAlienShip-57x25" name = "Large alien ship." description = "A large alien ship filled with various alien machines and items." @@ -259,3 +259,58 @@ mappath = "modular_chomp/maps/submaps/shelters/RestaurationBar-32x32.dmm" name = "Resto-Bar" description = "A large restaurant for food and drink, two overnight rental rooms and a small garden." + +/datum/map_template/shelter/superpose/BordcastingPod + shelter_id = "BordcastingPod" + mappath = "modular_chomp/maps/submaps/shelters/BrodcastingPod-11x9.dmm" + name = "Brodcasting Pod" + description = "A small NanoTransen news pod, everything you need to start live news in the most inhospitable places!" + +/datum/map_template/shelter/superpose/DemonPoolV2 + shelter_id = "DemonPoolV2" + mappath = "modular_chomp/maps/submaps/shelters/DemonPoolV2-43x28.dmm" + name = "Demon Pool V2" + description = "A large redspace corruption with lava, flesh tiles and a small cultist room in the middle. This one is enclosed in rock!" + +/datum/map_template/shelter/superpose/PirateShip + shelter_id = "PirateShip" + mappath = "modular_chomp/maps/submaps/shelters/PirateShip-13x30.dmm" + name = "Pirate Ship" + description = "Yarg, a medium size pirate ship filled with loaded canons and empty chest, booty awaits." + +/datum/map_template/shelter/superpose/SurvivalHomeV2 + shelter_id = "SurvivalHomeV2" + mappath = "modular_chomp/maps/submaps/shelters/SurvivalHomeV2-9x9.dmm" + name = "Survival Home V2" + description = "A medium survival pod that can host a small team, has some basic survival gear." + + +/datum/map_template/shelter/superpose/SurvivalMechFab + shelter_id = "SurvivalMechFab" + mappath = "modular_chomp/maps/submaps/shelters/SurvivalMechFab-9x9.dmm" + name = "Survival Mech Fab" + description = "A medium survival pod with a mech and some basic mech fabrication machinery, fix and retrofit!" + +/datum/map_template/shelter/superpose/SurvivalMethLab + shelter_id = "SurvivalMethLab" + mappath = "modular_chomp/maps/submaps/shelters/SurvivalMethLab-9x10.dmm" + name = "Survival Meth Lab" + description = "A medium survival pod, repurposed and locked for the production of illegal chems. Don't get caught." + +/datum/map_template/shelter/superpose/SurvivalScienceV2 + shelter_id = "SurvivalScienceV2" + mappath = "modular_chomp/maps/submaps/shelters/SurvivalScience2-9x9.dmm" + name = "Survival Science V2" + description = "NT pantented science survival pod, loaded with research terminals, mech fabricator, autolathe and everything to do field research." + +/datum/map_template/shelter/superpose/SurvivalSecurityV2 + shelter_id = "SurvivalSecurityV2" + mappath = "modular_chomp/maps/submaps/shelters/SurvivalSecurity2-9x9.dmm" + name = "Survival Security V2" + description = "NT pantented security survival pod, a high security brig with and some security equipment." + +/datum/map_template/shelter/superpose/HillOutpost + shelter_id = "HillOutpost" + mappath = "modular_chomp/maps/submaps/shelters/HillOutpost-15x11.dmm" + name = "Hill Outpost" + description = "A small camping site on top of a hill, with all the basics for survival." \ No newline at end of file diff --git a/modular_chomp/code/modules/mob/living/carbon/human/human_helpers.dm b/modular_chomp/code/modules/mob/living/carbon/human/human_helpers.dm new file mode 100644 index 0000000000..5fc8ab66c3 --- /dev/null +++ b/modular_chomp/code/modules/mob/living/carbon/human/human_helpers.dm @@ -0,0 +1,152 @@ +/mob/living/carbon/human/proc/transform_into_other_human(var/mob/living/carbon/human/character, var/copy_name, var/copy_flavour = TRUE, var/convert_to_prosthetics = FALSE) + /* + name, nickname, flavour, OOC notes + gender, sex + custom species name, custom bodytype, weight, scale, scaling center, sound type, sound freq + custom say verbs + ears, wings, tail, hair, facial hair + ears colors, wings colors, tail colors + body color, prosthetics (if they're a protean) (convert to DSI if protean and not prosthetic), eye color, hair color etc + markings + custom synth markings toggle, custom synth color toggle + digitigrade + blood color + */ + if (copy_name) + name = character.name + nickname = character.nickname + gender = character.gender + identifying_gender = character.identifying_gender + + r_eyes = character.r_eyes + g_eyes = character.g_eyes + b_eyes = character.b_eyes + h_style = character.h_style + r_hair = character.r_hair + g_hair = character.g_hair + b_hair = character.b_hair + r_grad = character.r_grad + g_grad = character.g_grad + b_grad = character.b_grad + f_style = character.f_style + r_facial = character.r_facial + g_facial = character.g_facial + b_facial = character.b_facial + r_skin = character.r_skin + g_skin = character.g_skin + b_skin = character.b_skin + s_tone = character.s_tone + h_style = character.h_style + grad_style = character.grad_style + f_style = character.f_style + grad_style = character.grad_style + b_type = character.b_type + synth_color = character.synth_color + r_synth = character.r_synth + g_synth = character.g_synth + b_synth = character.b_synth + synth_markings = character.synth_markings + + ear_style = character.ear_style + r_ears = character.r_ears + b_ears = character.b_ears + g_ears = character.g_ears + r_ears2 = character.r_ears2 + b_ears2 = character.b_ears2 + g_ears2 = character.g_ears2 + r_ears3 = character.r_ears3 + b_ears3 = character.b_ears3 + g_ears3 = character.g_ears3 + + tail_style = character.tail_style + r_tail = character.r_tail + b_tail = character.b_tail + g_tail = character.g_tail + r_tail2 = character.r_tail2 + b_tail2 = character.b_tail2 + g_tail2 = character.g_tail2 + r_tail3 = character.r_tail3 + b_tail3 = character.b_tail3 + g_tail3 = character.g_tail3 + + wing_style = character.wing_style + r_wing = character.r_wing + b_wing = character.b_wing + g_wing = character.g_wing + r_wing2 = character.r_wing2 + b_wing2 = character.b_wing2 + g_wing2 = character.g_wing2 + r_wing3 = character.r_wing3 + b_wing3 = character.b_wing3 + g_wing3 = character.g_wing3 + + + var/bodytype = character.species?.get_bodytype() + + if (convert_to_prosthetics) //should only really be run for proteans + var/list/organs_to_edit = list() + for (var/name in list(BP_TORSO, BP_HEAD, BP_GROIN, BP_L_ARM, BP_R_ARM, BP_L_HAND, BP_R_HAND, BP_L_LEG, BP_R_LEG, BP_L_FOOT, BP_R_FOOT)) + var/obj/item/organ/external/O = character.organs_by_name[name] + if (O) + var/x = organs_to_edit.Find(O.parent_organ) + if (x == 0) + organs_to_edit += name + else + organs_to_edit.Insert(x+(O.robotic == ORGAN_NANOFORM ? 1 : 0), name) + for(var/name in organs_to_edit) + var/obj/item/organ/external/I = character.organs_by_name[name] + var/obj/item/organ/external/O = organs_by_name[name] + if(O) + if(I.robotic >= ORGAN_ROBOT) + O.robotize(I.model) + else + var/dsi_company = GLOB.dsi_to_species[bodytype] + if (!dsi_company) + dsi_company = "DSI - Adaptive" + O.robotize(dsi_company) + + for(var/N in character.organs_by_name) + var/obj/item/organ/external/O = organs_by_name[N] + var/obj/item/organ/external/I = character.organs_by_name[N] + O.markings = I.markings.Copy() + + markings_len = character.markings_len + + descriptors = character.descriptors?.Copy() + + if (copy_flavour) + flavor_texts = character.flavor_texts?.Copy() + + weight = character.weight + weight_gain = character.weight_gain + weight_loss = character.weight_loss + fuzzy = character.fuzzy + offset_override = character.offset_override //CHOMPEdit + voice_freq = character.voice_freq + if (species && character.species) + species.micro_size_mod = character.species.micro_size_mod + species.icon_scale_x = character.species.icon_scale_x + species.icon_scale_y = character.species.icon_scale_y + update_transform() + resize(character.size_multiplier, animate = TRUE, ignore_prefs = TRUE) + voice_sounds_list = character.voice_sounds_list + + species?.blood_color = character.species?.blood_color + + dna?.base_species = bodytype + species?.base_species = bodytype + species?.vanity_base_fit = bodytype + if (istype(species, /datum/species/shapeshifter)) + wrapped_species_by_ref["\ref[src]"] = bodytype + + custom_species = character.custom_species + custom_say = character.custom_say + custom_ask = character.custom_ask + custom_whisper = character.custom_whisper + custom_exclaim = character.custom_exclaim + + digitigrade = character.digitigrade + + dna?.ResetUIFrom(src) + force_update_limbs() + regenerate_icons() diff --git a/modular_chomp/code/modules/mob/living/carbon/human/species/species.dm b/modular_chomp/code/modules/mob/living/carbon/human/species/species.dm index 70eb1876a6..597f95bac5 100644 --- a/modular_chomp/code/modules/mob/living/carbon/human/species/species.dm +++ b/modular_chomp/code/modules/mob/living/carbon/human/species/species.dm @@ -17,6 +17,7 @@ var/mudking = FALSE var/icodigi = 'modular_chomp/icons/mob/human_races/r_digi.dmi' var/digi_allowed = FALSE + var/vanity_base_fit //when shapeshifting using vanity_copy_to, this allows you to have add something so they can go back to their original species fit // Handles non-standard eyes when using a species that utilizes a custom base icon set. // Eye data is stored in the head organ, and this needs to be handled specially. diff --git a/modular_chomp/code/modules/mob/living/carbon/human/species/species_shapeshift_ch.dm b/modular_chomp/code/modules/mob/living/carbon/human/species/species_shapeshift_ch.dm new file mode 100644 index 0000000000..6141d17e22 --- /dev/null +++ b/modular_chomp/code/modules/mob/living/carbon/human/species/species_shapeshift_ch.dm @@ -0,0 +1,31 @@ +/mob/living/carbon/human/proc/shapeshifter_reassemble() + + set name = "Complete Reform" + set category = "Abilities" + + if(stat || world.time < last_special) + return + + last_special = world.time + 50 + + if (tgui_alert(src, "Are you sure you want to reform yourself? This will reset you to what you look like in your current preferences slot.", "Reform", list("Yes","Cancel")) != "Yes") + return + + var/input = tgui_alert(src,{"Include Flavourtext?"},"Reformation",list("Yes","No","Cancel")) + if(input == "Cancel" || !input) + return + var/flavour = 0 + if(input == "Yes") + flavour = 1 + input = tgui_alert(src,{"Include OOC notes?"},"Reformation",list("Yes","No","Cancel")) + if(input == "Cancel" || !input) + return + var/oocnotes = 0 + if(input == "Yes") + oocnotes = 1 + to_chat(src, "You begin to reform. You will need to remain still.") + visible_message("[src] rapidly contorts and shifts!", "You begin to reform.") + if (do_after(src, 40,exclusive = TASK_ALL_EXCLUSIVE)) + if (client?.prefs) + client.prefs.vanity_copy_to(src, FALSE, flavour, oocnotes, FALSE) + visible_message("[src] adopts a new form!", "You have reformed.") diff --git a/modular_chomp/code/modules/mob/living/carbon/human/species/station/protean/_protean_defines.dm b/modular_chomp/code/modules/mob/living/carbon/human/species/station/protean/_protean_defines.dm index a968ec9850..1e2d91577d 100644 --- a/modular_chomp/code/modules/mob/living/carbon/human/species/station/protean/_protean_defines.dm +++ b/modular_chomp/code/modules/mob/living/carbon/human/species/station/protean/_protean_defines.dm @@ -1 +1 @@ -#define PROTEAN_EDIBLE_MATERIALS list(MAT_STEEL,MAT_GLASS) \ No newline at end of file +#define PROTEAN_EDIBLE_MATERIALS list(MAT_STEEL) \ No newline at end of file diff --git a/modular_chomp/code/modules/mob/living/carbon/human/species/station/protean/protean_blob.dm b/modular_chomp/code/modules/mob/living/carbon/human/species/station/protean/protean_blob.dm index 954d8a9ae8..c26d3ca134 100644 --- a/modular_chomp/code/modules/mob/living/carbon/human/species/station/protean/protean_blob.dm +++ b/modular_chomp/code/modules/mob/living/carbon/human/species/station/protean/protean_blob.dm @@ -35,8 +35,9 @@ min_n2 = 0 max_n2 = 0 minbodytemp = 0 - maxbodytemp = INFINITY + maxbodytemp = 1100 movement_cooldown = 2 + hunger_rate = 0 var/mob/living/carbon/human/humanform var/obj/item/organ/internal/nano/refactory/refactory @@ -55,6 +56,9 @@ shock_resist = 1 nameset = 1 holder_type = /obj/item/weapon/holder/protoblob + var/hiding = 0 + vore_icons = 1 + vore_active = 1 /datum/say_list/protean_blob speak = list("Blrb?","Sqrsh.","Glrsh!") @@ -71,9 +75,11 @@ verbs |= /mob/living/proc/usehardsuit verbs |= /mob/living/simple_mob/protean_blob/proc/nano_partswap verbs |= /mob/living/simple_mob/protean_blob/proc/nano_regenerate + verbs |= /mob/living/simple_mob/protean_blob/proc/nano_metalnom verbs |= /mob/living/simple_mob/protean_blob/proc/nano_blobform verbs |= /mob/living/simple_mob/protean_blob/proc/nano_rig_transform verbs |= /mob/living/simple_mob/protean_blob/proc/appearance_switch + verbs |= /mob/living/simple_mob/protean_blob/proc/nano_latch verbs -= /mob/living/simple_mob/proc/nutrition_heal else update_icon() @@ -103,6 +109,13 @@ set hidden = 1 humanform.nano_blobform() +/mob/living/simple_mob/protean_blob/proc/nano_metalnom() + set name = "Ref - Store Metals" + set desc = "If you're holding a stack of material, you can consume some and store it for later." + set category = "Abilities" + set hidden = 1 + humanform.nano_metalnom() + /mob/living/simple_mob/protean_blob/proc/nano_rig_transform() set name = "Modify Form - Hardsuit" set desc = "Allows a protean to retract its mass into its hardsuit module at will." @@ -117,6 +130,13 @@ set hidden = 1 humanform.appearance_switch() +/mob/living/simple_mob/protean_blob/proc/nano_latch() + set name = "Latch/Unlatch host" + set desc = "Allows a protean to forcibly latch or unlatch from a host." + set category = "Abilities" + set hidden = 1 + humanform.nano_latch() + /mob/living/simple_mob/protean_blob/Login() ..() plane_holder.set_vis(VIS_AUGMENTED, 1) @@ -154,21 +174,25 @@ /mob/living/simple_mob/protean_blob/speech_bubble_appearance() return "synthetic" -/mob/living/simple_mob/protean_blob/get_available_emotes() - return global._robot_default_emotes.Copy() - /mob/living/simple_mob/protean_blob/init_vore() return //Don't make a random belly, don't waste your time /mob/living/simple_mob/protean_blob/isSynthetic() return TRUE // yup +/mob/living/simple_mob/protean_blob/get_available_emotes() + var/list/fulllist = global._robot_default_emotes.Copy() + fulllist |= global._human_default_emotes //they're living nanites, they can make whatever sounds they want + return fulllist + /mob/living/simple_mob/protean_blob/Stat() ..() if(humanform) humanform.species.Stat(humanform) /mob/living/simple_mob/protean_blob/updatehealth() + if(humanform.nano_dead_check(src)) + return if(!humanform) return ..() @@ -180,7 +204,7 @@ //Alive, becoming dead if((stat < DEAD) && (health <= 0)) - death() + humanform.death() nutrition = humanform.nutrition @@ -253,6 +277,12 @@ else return ..() +/mob/living/simple_mob/protean_blob/adjust_nutrition(amount) + if(humanform) + return humanform.adjust_nutrition(amount) + else + return ..() + /mob/living/simple_mob/protean_blob/emp_act(severity) if(humanform) return humanform.emp_act(severity) @@ -266,6 +296,8 @@ return ..() /mob/living/simple_mob/protean_blob/rad_act(severity) + if(istype(loc, /obj/item/weapon/rig)) + return //Don't irradiate us while we're in rig mode if(humanform) return humanform.rad_act(severity) else @@ -277,36 +309,52 @@ else return ..() -/mob/living/simple_mob/protean_blob/death(gibbed, deathmessage = "dissolves away, leaving only a few spare parts!") +/mob/living/simple_mob/protean_blob/death(gibbed, deathmessage = "Coalesces inwards, retreating into their core componants") if(humanform) humanform.death(gibbed, deathmessage) else animate(src, alpha = 0, time = 2 SECONDS) sleep(2 SECONDS) - if(!QDELETED(src)) // Human's handle death should have taken us, but maybe we were adminspawned or something without a human counterpart - qdel(src) - /mob/living/simple_mob/protean_blob/Life() . = ..() - if(. && istype(refactory) && humanform) - if(!healing && (human_brute || human_burn) && refactory.get_stored_material(MAT_STEEL) >= 100) - healing = humanform.add_modifier(/datum/modifier/protean/steel, origin = refactory) - else if(healing && !(human_brute || human_burn)) + if(!humanform.nano_dead_check(src)) + if(. && istype(refactory) && humanform) + if(!healing && (human_brute || human_burn) && refactory.get_stored_material(MAT_STEEL) >= 100) + healing = humanform.add_modifier(/datum/modifier/protean/steel, origin = refactory) + else if(healing && !(human_brute || human_burn)) + healing.expire() + healing = null + else + if(healing) healing.expire() healing = null /mob/living/simple_mob/protean_blob/lay_down() + var/obj/item/weapon/rig/rig = src.get_rig() + if(rig) + rig.force_rest(src) + return ..() - if(resting) + +/mob/living/simple_mob/protean_blob/verb/prot_hide() + set name = "Hide Self" + set desc = "Disperses your mass into a thin viel, making a trap to snatch prey with, or simply hide." + set category = "Abilities" + + if(!hiding) + icon_state = "hide" + sleep(7) mouse_opacity = 0 plane = ABOVE_OBJ_PLANE + hiding = 1 else mouse_opacity = 1 icon_state = "wake" plane = MOB_PLANE sleep(7) update_icon() + hiding = 0 //Potential glob noms if(can_be_drop_pred) //Toggleable in vore panel var/list/potentials = living_mobs(0) @@ -317,7 +365,17 @@ target.buckled.unbuckle_mob(target, force = TRUE) target.forceMove(vore_selected) to_chat(target,"\The [src] quickly engulfs you, [vore_selected.vore_verb]ing you into their [vore_selected.name]!") + update_canmove() +/mob/living/simple_mob/protean_blob/update_canmove() + if(hiding) + canmove = 0 + return canmove + else + ..() + + +/* Don't need this block anymore since our Prots have hands /mob/living/simple_mob/protean_blob/attack_target(var/atom/A) if(refactory && istype(A,/obj/item/stack/material)) var/obj/item/stack/material/S = A @@ -347,6 +405,7 @@ I.forceMove(vore_selected) else return ..() +*/ /mob/living/simple_mob/protean_blob/attackby(var/obj/item/O, var/mob/user) if(refactory && istype(O,/obj/item/stack/material)) @@ -385,94 +444,94 @@ return "[humanform.custom_species ? humanform.custom_species : (humanform.species ? humanform.species.name : "Protean")]" return "Protean" -var/global/list/disallowed_protean_accessories = list( - /obj/item/clothing/accessory/holster, - /obj/item/clothing/accessory/storage, - /obj/item/clothing/accessory/armor - ) - // Helpers - Unsafe, WILL perform change. /mob/living/carbon/human/proc/nano_intoblob(force) - if(loc == /obj/item/weapon/rig/protean) - return - if(!force && !isturf(loc)) + if(!force && !isturf(loc) && !loc == /obj/item/weapon/rig/protean) to_chat(src,"You can't change forms while inside something.") return + to_chat(src, "You rapidly disassociate your form") + if(force || do_after(src,20,exclusive = TASK_ALL_EXCLUSIVE)) + handle_grasp() //It's possible to blob out before some key parts of the life loop. This results in things getting dropped at null. TODO: Fix the code so this can be done better. + remove_micros(src, src) //Living things don't fare well in roblobs. + if(buckled) + buckled.unbuckle_mob() + if(LAZYLEN(buckled_mobs)) + for(var/buckledmob in buckled_mobs) + riding_datum.force_dismount(buckledmob) + if(pulledby) + pulledby.stop_pulling() + stop_pulling() - handle_grasp() //It's possible to blob out before some key parts of the life loop. This results in things getting dropped at null. TODO: Fix the code so this can be done better. - remove_micros(src, src) //Living things don't fare well in roblobs. - if(buckled) - buckled.unbuckle_mob() - if(LAZYLEN(buckled_mobs)) - for(var/buckledmob in buckled_mobs) - riding_datum.force_dismount(buckledmob) - if(pulledby) - pulledby.stop_pulling() - stop_pulling() + var/client/C = client - var/client/C = client + //Record where they should go + var/atom/creation_spot = drop_location() - //Record where they should go - var/atom/creation_spot = drop_location() + //Create our new blob + var/mob/living/simple_mob/protean_blob/blob = new(creation_spot,src) - //Create our new blob - var/mob/living/simple_mob/protean_blob/blob = new(creation_spot,src) + //Size update + blob.transform = matrix()*size_multiplier + blob.size_multiplier = size_multiplier - //Size update - blob.transform = matrix()*size_multiplier - blob.size_multiplier = size_multiplier + //dir update + blob.dir = dir - if(l_hand) drop_from_inventory(l_hand) - if(r_hand) drop_from_inventory(r_hand) + if(l_hand) drop_l_hand() + if(r_hand) drop_r_hand() - //Put our owner in it (don't transfer var/mind) - blob.ckey = ckey - blob.ooc_notes = ooc_notes - temporary_form = blob - var/obj/item/device/radio/R = null - if(isradio(l_ear)) - R = l_ear - if(isradio(r_ear)) - R = r_ear - if(R) - blob.mob_radio = R - R.forceMove(blob) - if(wear_id) - blob.myid = wear_id - wear_id.forceMove(blob) + //Put our owner in it (don't transfer var/mind) + blob.ckey = ckey + blob.ooc_notes = ooc_notes + temporary_form = blob + var/obj/item/device/radio/R = null + if(isradio(l_ear)) + R = l_ear + if(isradio(r_ear)) + R = r_ear + if(R) + blob.mob_radio = R + R.forceMove(blob) + if(wear_id) + blob.myid = wear_id + wear_id.forceMove(blob) - //Mail them to nullspace - moveToNullspace() + //Mail them to nullspace + moveToNullspace() - //Message - blob.visible_message("[src.name] collapses into a gooey blob!") + //Message + blob.visible_message("[src.name] collapses into a gooey blob!") - //Duration of the to_puddle iconstate that the blob starts with - sleep(13) - blob.update_icon() //Will remove the collapse anim + //Duration of the to_puddle iconstate that the blob starts with + sleep(13) + blob.update_icon() //Will remove the collapse anim - //Transfer vore organs - blob.vore_organs = vore_organs.Copy() - blob.vore_selected = vore_selected - for(var/obj/belly/B as anything in vore_organs) - B.forceMove(blob) - B.owner = blob - vore_organs.Cut() + //Transfer vore organs + blob.vore_organs = vore_organs.Copy() + blob.vore_selected = vore_selected + for(var/obj/belly/B as anything in vore_organs) + B.forceMove(blob) + B.owner = blob + vore_organs.Cut() - //We can still speak our languages! - blob.languages = languages.Copy() - blob.name = real_name - blob.voice_name = name - var/datum/species/protean/S = src.species - blob.icon_living = S.blob_appearance - blob.item_state = S.blob_appearance - blob.update_icon() + //We can still speak our languages! + blob.languages = languages.Copy() + blob.name = real_name + blob.real_name = real_name + blob.voice_name = name + var/datum/species/protean/S = src.species + blob.icon_living = S.blob_appearance + blob.item_state = S.blob_appearance + blob.icon_rest = S.blob_appearance + "_rest" + blob.update_icon() - //Flip them to the protean panel - addtimer(CALLBACK(src, .proc/nano_set_panel, C), 4) + //Flip them to the protean panel + addtimer(CALLBACK(src, .proc/nano_set_panel, C), 4) - //Return our blob in case someone wants it - return blob + //Return our blob in case someone wants it + return blob + else + to_chat(src, "You must remain still to blobform!") //For some reason, there's no way to force drop all the mobs grabbed. This ought to fix that. And be moved elsewhere. Call with caution, doesn't handle cycles. /proc/remove_micros(var/src, var/mob/root) @@ -489,87 +548,128 @@ var/global/list/disallowed_protean_accessories = list( if(istype(loc, /obj/item/weapon/rig/protean)) var/obj/item/weapon/rig/protean/prig = loc to_chat(src, "You attempt to interface with the [prig].") - prig.ui_interact(src, interactive_state) + prig.tgui_interact(src) else to_chat(src, "You are not in RIG form.") -//CHOMP Add end /mob/living/carbon/human/proc/nano_outofblob(var/mob/living/simple_mob/protean_blob/blob, force) if(!istype(blob)) return - if(blob.loc == /obj/item/weapon/rig/protean) //CHOMP Add - return //CHOMP Add + if(blob.loc == /obj/item/weapon/rig/protean) + return if(!force && !isturf(blob.loc)) to_chat(blob,"You can't change forms while inside something.") return + to_chat(src, "You rapidly reassemble your form") + if(force || do_after(blob,20,exclusive = TASK_ALL_EXCLUSIVE)) + if(buckled) + buckled.unbuckle_mob() + if(LAZYLEN(buckled_mobs)) + for(var/buckledmob in buckled_mobs) + riding_datum.force_dismount(buckledmob) + if(pulledby) + pulledby.stop_pulling() + stop_pulling() - if(buckled) - buckled.unbuckle_mob() - if(LAZYLEN(buckled_mobs)) - for(var/buckledmob in buckled_mobs) - riding_datum.force_dismount(buckledmob) - if(pulledby) - pulledby.stop_pulling() - stop_pulling() + var/client/C = blob.client - var/client/C = blob.client + //Stop healing if we are + if(blob.healing) + blob.healing.expire() - //Stop healing if we are - if(blob.healing) - blob.healing.expire() + if(blob.mob_radio) + blob.mob_radio.forceMove(src) + blob.mob_radio = null + if(blob.myid) + blob.myid.forceMove(src) + blob.myid = null - if(blob.l_hand) blob.drop_from_inventory(blob.l_hand) - if(blob.r_hand) blob.drop_from_inventory(blob.r_hand) + //Play the animation + blob.icon_state = "from_puddle" - if(blob.mob_radio) - blob.mob_radio.forceMove(src) - blob.mob_radio = null - if(blob.myid) - blob.myid.forceMove(src) - blob.myid = null + //Message + blob.visible_message("[src.name] reshapes into a humanoid appearance!") - //Play the animation - blob.icon_state = "from_puddle" + //Size update + resize(blob.size_multiplier, FALSE, TRUE, ignore_prefs = TRUE) - //Message - blob.visible_message("[src.name] reshapes into a humanoid appearance!") + //Duration of above animation + sleep(8) - //Duration of above animation - sleep(8) + //Record where they should go + var/atom/reform_spot = blob.drop_location() - //Record where they should go - var/atom/reform_spot = blob.drop_location() + //dir update + dir = blob.dir - //Size update - resize(blob.size_multiplier, FALSE, ignore_prefs = TRUE) + //Move them back where the blob was + forceMove(reform_spot) - //Move them back where the blob was - forceMove(reform_spot) + if(blob.l_hand) blob.drop_l_hand() + if(blob.r_hand) blob.drop_r_hand() - //Put our owner in it (don't transfer var/mind) - ckey = blob.ckey - ooc_notes = blob.ooc_notes // Lets give the protean any updated notes from blob form. - temporary_form = null + //Put our owner in it (don't transfer var/mind) + ckey = blob.ckey + ooc_notes = blob.ooc_notes // Lets give the protean any updated notes from blob form. + temporary_form = null - //Transfer vore organs - vore_organs = blob.vore_organs.Copy() - vore_selected = blob.vore_selected - for(var/obj/belly/B as anything in blob.vore_organs) - B.forceMove(src) - B.owner = src - languages = blob.languages.Copy() + //Transfer vore organs + vore_organs = blob.vore_organs.Copy() + vore_selected = blob.vore_selected + for(var/obj/belly/B as anything in blob.vore_organs) + B.forceMove(src) + B.owner = src + languages = blob.languages.Copy() - Life(1) //Fix my blindness right meow //Has to be moved up here, there exists a circumstance where blob could be deleted without vore organs moving right. + Life(1) //Fix my blindness right meow //Has to be moved up here, there exists a circumstance where blob could be deleted without vore organs moving right. - //Get rid of friend blob - qdel(blob) + //Get rid of friend blob + qdel(blob) - //Flip them to the protean panel - addtimer(CALLBACK(src, .proc/nano_set_panel, C), 4) + //Flip them to the protean panel + addtimer(CALLBACK(src, .proc/nano_set_panel, C), 4) - //Return ourselves in case someone wants it - return src + //Return ourselves in case someone wants it + return src + else + to_chat(src, "You must remain still to reshape yourself!") /mob/living/carbon/human/proc/nano_set_panel(var/client/C) if(C) C.statpanel = "Protean" + +/mob/living/simple_mob/protean_blob/ClickOn(var/atom/A, var/params) + if(istype(loc, /obj/item/weapon/rig/protean)) + HardsuitClickOn(A) + ..() + +/mob/living/simple_mob/protean_blob/can_use_rig() + return 1 + +/mob/living/simple_mob/protean_blob/HardsuitClickOn(var/atom/A, var/alert_ai = 0) + if(istype(loc, /obj/item/weapon/rig/protean)) + var/obj/item/weapon/rig/protean/prig = loc + if(istype(prig) && !prig.offline && prig.selected_module) + if(!prig.ai_can_move_suit(src)) + return 0 + prig.selected_module.engage(A, alert_ai) + if(ismob(A)) // No instant mob attacking - though modules have their own cooldowns + setClickCooldown(get_attack_speed()) + return 1 + return 0 + +//Don't eat yourself, idiot +/mob/living/simple_mob/protean_blob/CanStumbleVore(mob/living/target) + if(target == humanform) + return FALSE + return ..() + +/mob/living/carbon/human/CanStumbleVore(mob/living/target) + if(istype(target, /mob/living/simple_mob/protean_blob)) + var/mob/living/simple_mob/protean_blob/PB = target + if(PB.humanform == src) + return FALSE + return ..() + +/mob/living/simple_mob/protean_blob/handle_mutations_and_radiation() + humanform.handle_mutations_and_radiation() \ No newline at end of file diff --git a/modular_chomp/code/modules/mob/living/carbon/human/species/station/protean/protean_organs.dm b/modular_chomp/code/modules/mob/living/carbon/human/species/station/protean/protean_organs.dm index 54174b54d5..379d488524 100644 --- a/modular_chomp/code/modules/mob/living/carbon/human/species/station/protean/protean_organs.dm +++ b/modular_chomp/code/modules/mob/living/carbon/human/species/station/protean/protean_organs.dm @@ -4,79 +4,82 @@ encased = FALSE max_damage = 100 // <-- This is different from the rest min_broken_damage = 1000 - vital = TRUE // <-- This is different from the rest + vital = 1 model = "protean" /obj/item/organ/external/groin/unbreakable/nano robotic = ORGAN_NANOFORM encased = FALSE - max_damage = 100 // <-- This is different from the rest + max_damage = 100 min_broken_damage = 1000 //Multiple - vital = FALSE + vital = 0 model = "protean" /obj/item/organ/external/head/unbreakable/nano robotic = ORGAN_NANOFORM encased = FALSE max_damage = 100 min_broken_damage = 1000 //Inheritance - vital = FALSE + vital = 0 model = "protean" /obj/item/organ/external/arm/unbreakable/nano robotic = ORGAN_NANOFORM encased = FALSE - max_damage = 100 + max_damage = 65 min_broken_damage = 1000 //Please - vital = FALSE + vital = 0 model = "protean" /obj/item/organ/external/arm/right/unbreakable/nano robotic = ORGAN_NANOFORM encased = FALSE - max_damage = 100 + max_damage = 65 min_broken_damage = 1000 - vital = FALSE + vital = 0 model = "protean" /obj/item/organ/external/leg/unbreakable/nano robotic = ORGAN_NANOFORM encased = FALSE - max_damage = 100 + max_damage = 65 min_broken_damage = 1000 - vital = FALSE + vital = 0 model = "protean" /obj/item/organ/external/leg/right/unbreakable/nano robotic = ORGAN_NANOFORM encased = FALSE - max_damage = 100 + max_damage = 65 min_broken_damage = 1000 - vital = FALSE + vital = 0 model = "protean" /obj/item/organ/external/hand/unbreakable/nano robotic = ORGAN_NANOFORM encased = FALSE - max_damage = 100 + max_damage = 65 min_broken_damage = 1000 - vital = FALSE + vital = 0 model = "protean" /obj/item/organ/external/hand/right/unbreakable/nano robotic = ORGAN_NANOFORM encased = FALSE - max_damage = 100 + max_damage = 65 min_broken_damage = 1000 - vital = FALSE + vital = 0 model = "protean" /obj/item/organ/external/foot/unbreakable/nano robotic = ORGAN_NANOFORM encased = FALSE - max_damage = 100 + max_damage = 65 min_broken_damage = 1000 - vital = FALSE + vital = 0 model = "protean" /obj/item/organ/external/foot/right/unbreakable/nano robotic = ORGAN_NANOFORM encased = FALSE - max_damage = 100 + max_damage = 65 min_broken_damage = 1000 - vital = FALSE + vital = 0 model = "protean" +/obj/item/organ/external/head/unbreakable/nano/disfigure() + return //No way to repair disfigured prots + // // // Internal Organs /obj/item/organ/internal/nano robotic = ORGAN_ROBOT @@ -101,7 +104,7 @@ organ_tag = O_FACT parent_organ = BP_TORSO - var/list/materials = list(MAT_STEEL = 0, MAT_GLASS = 0) + var/list/materials = list(MAT_STEEL = 0) var/max_storage = 10000 organ_verbs = list( /mob/living/carbon/human/proc/reagent_purge @@ -164,9 +167,11 @@ icon = initial(icon) icon_state = "posi1" stored_mmi.icon_state = "posi1" - stored_mmi.brainmob.languages = owner.languages +/obj/item/organ/internal/mmi_holder/posibrain/nano/emp_act() + return //Proteans handle EMP's differently + // The 'out on the ground' object, not the organ holder /obj/item/device/mmi/digital/posibrain/nano name = "protean posibrain" @@ -195,4 +200,17 @@ icon_state = "posi1" /obj/item/organ/internal/nano/digest_act(atom/movable/item_storage = null) - return FALSE \ No newline at end of file + return FALSE + +/datum/design/item/protean_reboot + name = "Protean Reboot Programmer" + id = "protean_reboot" + materials = list(MAT_STEEL = 2000, MAT_GLASS = 1000, MAT_PLASTEEL = 10000) + build_path = /obj/item/device/protean_reboot + sort_string = "JVAAZ" + +/obj/item/device/protean_reboot + name = "Protean Reboot Programmer" + desc = "A small, highly specialized programmer used to form the basis of a Protean swarm. A necessary component in reconstituting a Protean who has lost total body cohesion." + icon = 'modular_chomp/icons/mob/species/protean/protean.dmi' + icon_state = "reboot" \ No newline at end of file diff --git a/modular_chomp/code/modules/mob/living/carbon/human/species/station/protean/protean_powers.dm b/modular_chomp/code/modules/mob/living/carbon/human/species/station/protean/protean_powers.dm index 0883ceca38..c8407a5828 100644 --- a/modular_chomp/code/modules/mob/living/carbon/human/species/station/protean/protean_powers.dm +++ b/modular_chomp/code/modules/mob/living/carbon/human/species/station/protean/protean_powers.dm @@ -12,6 +12,9 @@ var/mob/living/caller = src if(temporary_form) caller = temporary_form + if(nano_dead_check(caller)) + to_chat(caller, "You need to be repaired first before you can act!") + return if(stat) to_chat(caller,"You must be awake and standing to perform this action!") return @@ -26,7 +29,7 @@ to_chat(caller,"You don't have a working refactory module!") return - var/choice = tgui_input_list(src,"Pick the bodypart to change:", "Refactor - One Bodypart", species.has_limbs) + var/choice = tgui_input_list(caller,"Pick the bodypart to change:", "Refactor - One Bodypart", species.has_limbs) if(!choice) return @@ -50,7 +53,7 @@ else blob = temporary_form active_regen = 1 - if(do_after(blob,5 SECONDS)) + if(do_after(blob,50,exclusive = TASK_ALL_EXCLUSIVE)) var/list/limblist = species.has_limbs[choice] var/limbpath = limblist["path"] var/obj/item/organ/external/new_eo = new limbpath(src) @@ -87,113 +90,120 @@ update_icons_body() /mob/living/carbon/human/proc/nano_regenerate() - set name = "Total Reassembly (wip)" - set desc = "Completely reassemble yourself from whatever save slot you have loaded in preferences. Assuming you meet the requirements." + set name = "Total Reassembly" + set desc = "Fully repair yourself or reload your appearance from whatever character slot you have loaded." set category = "Abilities" set hidden = 1 var/mob/living/caller = src if(temporary_form) caller = temporary_form - to_chat(caller,"This function isn't coded yet. Soon, my child.") - else - to_chat(src,"This function isn't coded yet. Soon, my child.") - - - - /*if(stat) - to_chat(src,"You must be awake and standing to perform this action!") + var/input = tgui_alert(caller,{"Do you want to rebuild or reassemble yourself? + Rebuilding will cost 10,000 steel and will rebuild all of your limbs as well as repair all damage over a 40s period. + Reassembling costs no steel and will copy the appearance data of your currently loaded save slot."},"Reassembly",list("Rebuild","Reassemble","Cancel")) + if(input == "Cancel" || !input) return - - if(!isturf(loc)) - to_chat(src,"You need more space to perform this action!") - return - - var/obj/item/organ/internal/nano/refactory/refactory = nano_get_refactory() - //Missing the organ that does this - if(!istype(refactory)) - to_chat(src,"You don't have a working refactory module!") - return - - //Already regenerating - if(active_regen) - to_chat(src, "You are already refactoring!") - return - - var/swap_not_rebuild = tgui_alert(src,"Do you want to rebuild, or reshape?","Rebuild or Reshape",list("Reshape","Cancel","Rebuild")) - if(swap_not_rebuild == "Cancel") - return - if(swap_not_rebuild == "Reshape") - var/list/usable_manufacturers = list() - for(var/company in chargen_robolimbs) - var/datum/robolimb/M = chargen_robolimbs[company] - if(!(BP_TORSO in M.parts)) - continue - if(species?.base_species in M.species_cannot_use) - continue - if(M.whitelisted_to && !(ckey in M.whitelisted_to)) - continue - usable_manufacturers[company] = M - if(!usable_manufacturers.len) - return - var/manu_choice = tgui_input_list(src, "Which manufacturer do you wish to mimic?", "Manufacturer", usable_manufacturers) - - if(!manu_choice) - return //Changed mind - if(!organs_by_name[BP_TORSO]) - return //Ain't got a torso! - - var/obj/item/organ/external/torso = organs_by_name[BP_TORSO] - to_chat(src, "Remain still while the process takes place! It will take 5 seconds.") - visible_message("[src]'s form collapses into an amorphous blob of black ichor...") - - var/mob/living/simple_mob/protean_blob/blob = nano_intoblob() - active_regen = 1 - if(do_after(blob,5 SECONDS)) - synthetic = usable_manufacturers[manu_choice] - torso.robotize(manu_choice) //Will cascade to all other organs. - regenerate_icons() - visible_message("[src]'s form reshapes into a new one...") - active_regen = 0 - nano_outofblob(blob) - return - - //Not enough resources (AND spends the resources, should be the last check) - if(!refactory.use_stored_material(MAT_STEEL,refactory.max_storage)) - to_chat(src, "You need to be maxed out on normal metal to do this!") - return - - var/delay_length = round(active_regen_delay * species.active_regen_mult) - to_chat(src, "Remain still while the process takes place! It will take [delay_length/10] seconds.") - visible_message("[src]'s form begins to shift and ripple as if made of oil...") - active_regen = 1 - - var/mob/living/simple_mob/protean_blob/blob = nano_intoblob() - if(do_after(blob, delay_length, null, 0)) - if(stat != DEAD && refactory) - var/list/holder = refactory.materials - species.create_organs(src) - var/obj/item/organ/external/torso = organs_by_name[BP_TORSO] - torso.robotize() //synthetic wasn't defined here. - LAZYCLEARLIST(blood_DNA) - LAZYCLEARLIST(feet_blood_DNA) - blood_color = null - feet_blood_color = null - regenerate_icons() //Probably worth it, yeah. - var/obj/item/organ/internal/nano/refactory/new_refactory = locate() in internal_organs - if(!new_refactory) - log_debug("[src] protean-regen'd but lacked a refactory when done.") - else - new_refactory.materials = holder - to_chat(src, "Your refactoring is complete.") //Guarantees the message shows no matter how bad the timing. - to_chat(blob, "Your refactoring is complete!") + if(input == "Rebuild") + var/obj/item/organ/internal/nano/refactory/refactory = nano_get_refactory() + if(refactory.get_stored_material(MAT_STEEL) >= 10000) + to_chat(caller, "You begin to rebuild. You will need to remain still.") + if(do_after(caller, 400,exclusive = TASK_ALL_EXCLUSIVE)) + if(species?:OurRig) //Unsafe, but we should only ever be using this with a Protean + species?:OurRig?:make_alive(src,1) //Re-using this proc + refactory.use_stored_material(MAT_STEEL,refactory.get_stored_material(MAT_STEEL)) //Use all of our steel + else + to_chat(caller, "Somehow, you are missing your protean rig. You are unable to rebuild without one.") else - to_chat(src, "Your refactoring has failed.") - to_chat(blob, "Your refactoring has failed!") + to_chat(caller, "You do not have enough steel stored for this operation.") else - to_chat(src, "Your refactoring is interrupted.") - to_chat(blob, "Your refactoring is interrupted!") - active_regen = 0 - nano_outofblob(blob)*/ + input = tgui_alert(caller,{"Include Flavourtext?"},"Reassembly",list("Yes","No","Cancel")) + if(input == "Cancel" || !input) + return + var/flavour = 0 + if(input == "Yes") + flavour = 1 + input = tgui_alert(caller,{"Include OOC notes?"},"Reassembly",list("Yes","No","Cancel")) + if(input == "Cancel" || !input) + return + var/oocnotes = 0 + if(input == "Yes") + oocnotes = 1 + to_chat(caller, "You begin to reassemble. You will need to remain still.") + caller.visible_message("[caller] rapidly contorts and shifts!", "You begin to reassemble.") + if(do_after(caller, 40,exclusive = TASK_ALL_EXCLUSIVE)) + if(caller.client.prefs) //Make sure we didn't d/c + var/obj/item/weapon/rig/protean/Rig = species?:OurRig + caller.client.prefs.vanity_copy_to(src, FALSE, flavour, oocnotes, TRUE) + species?:OurRig = Rig //Get a reference to our Rig and put it back after reassembling + caller.visible_message("[caller] adopts a new form!", "You have reassembled.") + + +/mob/living/carbon/human/proc/nano_copy_body() + set name = "Copy Form" + set desc = "If you are aggressively grabbing someone, with their consent, you can turn into a copy of them. (Without their name)." + set category = "Abilities" + set hidden = 1 + var/mob/living/caller = src + if(temporary_form) + caller = temporary_form + + var/grabbing_but_not_enough + var/mob/living/carbon/human/victim = null + for(var/obj/item/weapon/grab/G in caller) + if(G.state < GRAB_AGGRESSIVE) + grabbing_but_not_enough = TRUE + return + else + victim = G.affecting + if (!victim) + if (grabbing_but_not_enough) + to_chat(caller, "You need a better grip to do that!") + else + to_chat(caller, "You need to be aggressively grabbing someone before you can copy their form.") + return + if (!istype(victim)) + to_chat(caller, "You can only perform this on human mobs!") + return + if (!victim.client) + to_chat(caller, "The person you try this on must have a client!") + return + + + to_chat(caller, "Waiting for other person's consent.") + var/consent = tgui_alert(victim, "Allow [src] to copy what you look like?", "Consent", list("Yes", "No")) + if (consent != "Yes") + to_chat(caller, "They declined your request.") + return + + var/input = tgui_alert(caller,{"Copy [victim]'s flavourtext?"},"Copy Form",list("Yes","No","Cancel")) + if(input == "Cancel" || !input) + return + var/flavour = 0 + if(input == "Yes") + flavour = 1 + + var/checking = FALSE + for(var/obj/item/weapon/grab/G in caller) + if(G.affecting == victim && G.state >= GRAB_AGGRESSIVE) + checking = TRUE + if (!checking) + to_chat(caller, "You lost your grip on [victim]!") + return + + to_chat(caller, "You begin to reassemble into [victim]. You will need to remain still.") + caller.visible_message("[caller] rapidly contorts and shifts!", "You begin to reassemble into [victim].") + if(do_after(caller, 40,exclusive = TASK_ALL_EXCLUSIVE)) + checking = FALSE + for(var/obj/item/weapon/grab/G in caller) + if(G.affecting == victim && G.state >= GRAB_AGGRESSIVE) + checking = TRUE + if (!checking) + to_chat(caller, "You lost your grip on [victim]!") + return + if(caller.client) //Make sure we didn't d/c + var/obj/item/weapon/rig/protean/Rig = species?:OurRig + transform_into_other_human(victim, FALSE, flavour, TRUE) + species?:OurRig = Rig //Get a reference to our Rig and put it back after reassembling + caller.visible_message("[caller] adopts the form of [victim]!", "You have reassembled into [victim].") //// // Storing metal @@ -204,15 +214,22 @@ set category = "Abilities" set hidden = 1 + var/mob/living/caller = src + if(temporary_form) + caller = temporary_form + if(nano_dead_check(caller)) + to_chat(caller, "You need to be repaired first before you can act!") + return + var/obj/item/organ/internal/nano/refactory/refactory = nano_get_refactory() //Missing the organ that does this if(!istype(refactory)) - to_chat(src,"You don't have a working refactory module!") + to_chat(caller,"You don't have a working refactory module!") return - var/held = get_active_hand() + var/held = caller.get_active_hand() if(!istype(held,/obj/item/stack/material)) - to_chat(src,"You aren't holding a stack of materials in your active hand...!") + to_chat(caller,"You aren't holding a stack of materials in your active hand!") return var/obj/item/stack/material/matstack = held @@ -221,38 +238,45 @@ for(var/material in PROTEAN_EDIBLE_MATERIALS) if(material == substance) allowed = 1 if(!allowed) - to_chat(src,"You can't process [substance]!") - return //Only a few things matter, the rest are best not cluttering the lists. + to_chat(caller,"You can't process [substance]!") + return - var/howmuch = tgui_input_number(src,"How much do you want to store? (0-[matstack.get_amount()])","Select amount",null,matstack.get_amount(),0) - if(!howmuch || matstack != get_active_hand() || howmuch > matstack.get_amount()) + var/howmuch = tgui_input_number(caller,"How much do you want to store? (0-[matstack.get_amount()])","Select amount",null,matstack.get_amount(),0) + if(!howmuch || matstack != caller.get_active_hand() || howmuch > matstack.get_amount()) return //Quietly fail var/actually_added = refactory.add_stored_material(substance,howmuch*matstack.perunit) matstack.use(CEILING((actually_added/matstack.perunit), 1)) if(actually_added && actually_added < howmuch) - to_chat(src,"Your refactory module is now full, so only [actually_added] units were stored.") - visible_message("[src] nibbles some of the [substance] right off the stack!") + to_chat(caller,"Your refactory module is now full, so only [actually_added] units were stored.") + visible_message("[caller] nibbles some of the [substance] right off the stack!") else if(actually_added) - to_chat(src,"You store [actually_added] units of [substance].") - visible_message("[src] devours some of the [substance] right off the stack!") + to_chat(caller,"You store [actually_added] units of [substance].") + visible_message("[caller] devours some of the [substance] right off the stack!") else - to_chat(src,"You're completely capped out on [substance]!") + to_chat(caller,"You're completely capped out on [substance]!") //// // Blob Form //// -/mob/living/carbon/human/proc/nano_blobform() +/mob/living/carbon/human/proc/nano_blobform(var/forced) set name = "Toggle Blobform" set desc = "Switch between amorphous and humanoid forms." set category = "Abilities" set hidden = 1 + if(nano_dead_check(src)) + return + if(forced) + if(temporary_form) + nano_outofblob(temporary_form, forced) + else + nano_intoblob(forced) + return var/atom/movable/to_locate = temporary_form || src - if(!isturf(to_locate.loc)) + if(!isturf(to_locate.loc) && !forced) to_chat(to_locate,"You need more space to perform this action!") return - //Blob form if(temporary_form) if(temporary_form.stat) @@ -282,7 +306,7 @@ to_chat(src,"You must be awake and standing to perform this action!") return - var/new_species = tgui_input_list(usr, "Please select a species to emulate.", "Shapeshifter Body", GLOB.playable_species) + var/new_species = tgui_input_list(usr, "Please select a species to emulate.", "Shapeshifter Body", list(species?.vanity_base_fit)|species?.get_valid_shapeshifter_forms()) if(new_species) species?.base_species = new_species // Really though you better have a species regenerate_icons() //Expensive, but we need to recrunch all the icons we're wearing @@ -290,98 +314,62 @@ //// // Rig Transform //// -/mob/living/carbon/human/proc/nano_rig_transform() +/mob/living/carbon/human/proc/nano_rig_transform(var/forced) set name = "Modify Form - Hardsuit" set desc = "Allows a protean to retract its mass into its hardsuit module at will." set category = "Abilities" set hidden = 1 - if(!temporary_form) //If you're human, force you into blob form before rig'ing - nano_blobform() - spawn(2) - - - if(istype(src.species, /datum/species/protean)) - var/datum/species/protean/S = src.species - var/mob/living/simple_mob/protean_blob/P = temporary_form - if(S.OurRig) //Do we even have a RIG? - if(P.loc == S.OurRig) //we're inside our own RIG - if(S.OurRig.wearer) //We're being worn. Engulf em', if prefs align.. otherwise just drop off. - var/mob/living/carbon/human/victim = S.OurRig.wearer - victim.drop_from_inventory(S.OurRig) - if(P.can_be_drop_pred && victim.devourable && victim.can_be_drop_prey) - if(P.vore_selected) - perform_the_nom(P,victim,P,P.vore_selected,1) - P.forceMove(get_turf(S.OurRig)) - S.OurRig.forceMove(src) - S.OurRig.myprotean = null - src.equip_to_slot_if_possible(S.OurRig, slot_back) - S.OurRig.Moved() - P.has_hands = 1 - else //We're not in our own RIG - if(P.stat) - to_chat(P,"You can only do this while not stunned.") - else - if(P.l_hand) - drop_from_inventory(P.l_hand) - if(P.r_hand) - drop_from_inventory(P.r_hand) - S.OurRig.myprotean = P - src.drop_from_inventory(S.OurRig) - P.forceMove(S.OurRig) - P.reset_view() - else //Make one if not - to_chat(temporary_form, "Somehow, your RIG got disconnected from your species. A new one has been created for you, contact a coder.") - new /obj/item/weapon/rig/protean(src,src) - -//// -// Change size -//// -/*CHOMP Removal start - I am replacing this with the OG set size. No more metal requirement. -/mob/living/carbon/human/proc/nano_set_size() - set name = "Adjust Volume" - set category = "Abilities" - set hidden = 1 - - var/mob/living/user = temporary_form || src - - var/obj/item/organ/internal/nano/refactory/refactory = nano_get_refactory() - //Missing the organ that does this - if(!istype(refactory)) - to_chat(user,"You don't have a working refactory module!") + var/mob/living/caller = src + if(temporary_form) + caller = temporary_form + if(nano_dead_check(src)) + to_chat(caller, "You need to be repaired first before you can act!") return + to_chat(caller, "You rapidly condense into your module.") + if(forced || do_after(caller,20,exclusive = TASK_ALL_EXCLUSIVE)) + if(!temporary_form) //If you're human, force you into blob form before rig'ing + nano_blobform(forced) + spawn(2) - var/nagmessage = "Adjust your mass to be a size between 25 to 200% (or between 1 to 600% in dorms area). Up-sizing consumes metal, downsizing returns metal." - var/new_size = tgui_input_number(user, nagmessage, "Pick a Size", user.size_multiplier*100, 600, 1) - if(!new_size || !size_range_check(new_size)) - return - - var/size_factor = new_size/100 - - //Will be: -1.75 for 200->25, and 1.75 for 25->200 - var/sizediff = size_factor - user.size_multiplier - - //Negative if shrinking, positive if growing - //Will be (PLSC*2)*-1.75 to 1.75 - //For 2000 PLSC that's -7000 to 7000 - var/cost = (PER_LIMB_STEEL_COST*2)*sizediff - - //Sizing up - if(cost > 0) - if(refactory.use_stored_material(MAT_STEEL,cost)) - user.resize(size_factor, ignore_prefs = 1) - else - to_chat(user,"That size change would cost [cost] steel, which you don't have.") - //Sizing down (or not at all) - else if(cost <= 0) - cost = abs(cost) - var/actually_added = refactory.add_stored_material(MAT_STEEL,cost) - user.resize(size_factor, ignore_prefs = 1) - if(actually_added != cost) - to_chat(user,"Unfortunately, [cost-actually_added] steel was lost due to lack of storage space.") - - user.visible_message("Black mist swirls around [user] as they change size.") -CHOMP Removal end*/ + if(istype(src.species, /datum/species/protean)) + var/datum/species/protean/S = src.species + var/mob/living/simple_mob/protean_blob/P = temporary_form + if(S.OurRig) //Do we even have a RIG? + if(P.loc == S.OurRig) //we're inside our own RIG + if(ismob(S.OurRig.loc)) + var/mob/m = S.OurRig.loc + m.drop_from_inventory(S.OurRig) + if(S.OurRig.wearer) //We're being worn. Engulf em', if prefs align.. otherwise just drop off. + var/mob/living/carbon/human/victim = S.OurRig.wearer + if(P.can_be_drop_pred && victim.devourable && victim.can_be_drop_prey) + if(P.vore_selected) + perform_the_nom(P,victim,P,P.vore_selected,1) + P.forceMove(get_turf(S.OurRig)) + S.OurRig.forceMove(src) + S.OurRig.myprotean = src + src.equip_to_slot_if_possible(S.OurRig, slot_back) + S.OurRig.Moved() + P.has_hands = 1 + else //We're not in our own RIG + if(P.stat || P.resting && !forced) + to_chat(P,"You can only do this while not stunned.") + else + if(P.l_hand) + P.drop_l_hand() + if(P.r_hand) + P.drop_r_hand() + P.has_hands = 0 + S.OurRig.myprotean = P + src.drop_from_inventory(S.OurRig) + P.forceMove(S.OurRig) + S.OurRig.canremove = 1 + P.reset_view() + else //Make one if not + to_chat(temporary_form, "Somehow, your RIG got disconnected from your species. This may have been caused by an admin heal. A new one has been created for you, contact a coder.") + new /obj/item/weapon/rig/protean(src,src) + else + to_chat(caller, "You must remain still to condense!") /mob/living/carbon/human/proc/appearance_switch() set name = "Switch Blob Appearance" @@ -389,10 +377,10 @@ CHOMP Removal end*/ set category = "Abilities" set hidden = 1 var/datum/species/protean/S = src.species - var/mob/M = src + var/mob/living/caller = src if(temporary_form) - M = temporary_form - var/blobstyle = input(M, "Which blob style would you like?") in list("Red and Blue Stars", "Blue Star", "Plain") + caller = temporary_form + var/blobstyle = input(caller, "Which blob style would you like?") in list("Red and Blue Stars", "Blue Star", "Plain", "Catslug", "Pai Cat") switch(blobstyle) if("Red and Blue Stars") S.blob_appearance = "puddle2" @@ -400,15 +388,69 @@ CHOMP Removal end*/ S.blob_appearance = "puddle1" if("Plain") S.blob_appearance = "puddle0" + if("Catslug") + S.blob_appearance = "catslug" + if("Pai Cat") + S.blob_appearance = "pai-cat" if(temporary_form) if(blobstyle) temporary_form.icon_living = S.blob_appearance temporary_form.item_state = S.blob_appearance + temporary_form.icon_rest = S.blob_appearance + "_rest" temporary_form.update_icon() if(istype(temporary_form.loc, /obj/item/weapon/holder/protoblob)) var/obj/item/weapon/holder/protoblob/PB = temporary_form.loc PB.item_state = S.blob_appearance +/mob/living/carbon/human/proc/nano_latch() + set name = "Latch/Unlatch host" + set desc = "Allows a protean to forcibly latch or unlatch from a host." + set category = "Abilities" + set hidden = 1 + var/mob/living/caller = src + var/mob/living/carbon/human/target + var/datum/species/protean/S = src.species + if(nano_dead_check(src)) + return + if(temporary_form) + caller = temporary_form + if(caller.loc == S.OurRig) + target = S.OurRig.wearer + if(target) + target.drop_from_inventory(S.OurRig) + to_chat(caller, "You detach from your host.") + else + to_chat(caller, "You aren't being worn, dummy.") + return + var/obj/held_item = caller.get_active_hand() + if(istype(held_item,/obj/item/weapon/grab)) + var/obj/item/weapon/grab/G = held_item + if(istype(G.affecting, /mob/living/carbon/human)) + target = G.affecting + if(istype(target.species, /datum/species/protean)) + to_chat(caller, "You can't latch onto a fellow Protean!") + return + if(G.loc == caller && G.state >= GRAB_AGGRESSIVE) + caller.visible_message("[caller] is attempting to latch onto [target]!", "You attempt to latch onto [target]!") + if(do_after(caller, 50, target,exclusive = TASK_ALL_EXCLUSIVE)) + if(G.loc == caller && G.state >= GRAB_AGGRESSIVE) + target.drop_from_inventory(target.back) + caller.visible_message("[caller] latched onto [target]!", "You latch yourself onto [target]!") + target.Weaken(3) + nano_rig_transform(1) + spawn(5) //Have to give time for the above proc to resolve + //S.OurRig.forceMove(target) + target.equip_to_slot(S.OurRig, slot_back) + S.OurRig.Moved() + spawn(1) //Same here :( + S.OurRig.wearer = target + else + to_chat(caller, "You need a more aggressive grab to do this!") + else + to_chat(caller, "You can only latch onto humanoid mobs!") + else + to_chat(caller, "You need to be grabbing a humanoid mob aggressively to latch onto them.") + /// /// /// A helper to reuse /mob/living/proc/nano_get_refactory(obj/item/organ/internal/nano/refactory/R) if(istype(R)) @@ -425,7 +467,18 @@ CHOMP Removal end*/ /mob/living/carbon/human/nano_get_refactory() return ..(locate(/obj/item/organ/internal/nano/refactory) in internal_organs) +//I hate this whole bit but I want proteans to be able to "die" and still be "alive" in their blob as a suit +/mob/living/carbon/human/proc/nano_dead_check(var/mob/living/caller) + if(istype(src.species, /datum/species/protean)) + var/datum/species/protean/S = src.species + if(S.pseudodead) + return 1 + return 0 +/mob/living/carbon/human/proc/nano_set_dead(var/num) + if(istype(src.species, /datum/species/protean)) + var/datum/species/protean/S = src.species + S.pseudodead = num /// /// /// Ability objects for stat panel /obj/effect/protean_ability @@ -461,7 +514,7 @@ CHOMP Removal end*/ /// The actual abilities /obj/effect/protean_ability/into_blob ability_name = "Toggle Blobform" - desc = "Discard your shape entirely, changing to a low-energy blob that can fit into small spaces. You'll consume steel to repair yourself in this form." + desc = "Discard your shape entirely, changing to a low-energy blob. You'll consume steel to repair yourself in this form." icon_state = "blob" to_call = /mob/living/carbon/human/proc/nano_blobform @@ -478,27 +531,39 @@ CHOMP Removal end*/ to_call = /mob/living/carbon/human/proc/nano_partswap /obj/effect/protean_ability/reform_body - ability_name = "Total Reassembly (wip)" - desc = "Completely reassemble yourself from whatever save slot you have loaded in preferences. Assuming you meet the requirements." + ability_name = "Total Reassembly" + desc = "Fully repair yourself or reload your appearance from whatever character slot you have loaded." icon_state = "body" to_call = /mob/living/carbon/human/proc/nano_regenerate /obj/effect/protean_ability/metal_nom ability_name = "Ref - Store Metals" - desc = "Store the metal you're holding. Your refactory can only store steel, and all other metals will be converted into nanites ASAP for various effects." + desc = "Store the metal you're holding. Your refactory can only store steel." icon_state = "metal" to_call = /mob/living/carbon/human/proc/nano_metalnom /obj/effect/protean_ability/hardsuit ability_name = "Hardsuit Transform" - desc = "Coalesce your naniteswarm into their control module, allowing others to wear you." + desc = "Coalesce your nanite swarm into their control module, allowing others to wear you." icon_state = "rig" to_call = /mob/living/carbon/human/proc/nano_rig_transform /obj/effect/protean_ability/appearance_switch ability_name = "Blob Appearance" desc = "Toggle your blob appearance. Also affects your worn appearance." - icon_state = "rig" + icon_state = "switch" to_call = /mob/living/carbon/human/proc/appearance_switch +/obj/effect/protean_ability/latch_host + ability_name = "Latch Host" + desc = "Forcibly latch or unlatch your RIG from a host mob." + icon_state = "latch" + to_call = /mob/living/carbon/human/proc/nano_latch + +/obj/effect/protean_ability/copy_form + ability_name = "Copy Form" + desc = "If you are aggressively grabbing someone, with their consent, you can turn into a copy of them. (Without their name)." + icon_state = "copy_form" + to_call = /mob/living/carbon/human/proc/nano_copy_body + #undef PER_LIMB_STEEL_COST diff --git a/modular_chomp/code/modules/mob/living/carbon/human/species/station/protean/protean_rig.dm b/modular_chomp/code/modules/mob/living/carbon/human/species/station/protean/protean_rig.dm index c75b8d9cda..ce38cf5bab 100644 --- a/modular_chomp/code/modules/mob/living/carbon/human/species/station/protean/protean_rig.dm +++ b/modular_chomp/code/modules/mob/living/carbon/human/species/station/protean/protean_rig.dm @@ -13,30 +13,37 @@ offline_slowdown = 0 seal_delay = 1 var/mob/living/myprotean - //initial_modules = list(/obj/item/rig_module/power_sink) //Commented out unless I end up needing roundstart modules + initial_modules = list(/obj/item/rig_module/protean/syphon, /obj/item/rig_module/protean/armor, /obj/item/rig_module/protean/healing) helm_type = /obj/item/clothing/head/helmet/space/rig/protean //These are important for sprite pointers boot_type = /obj/item/clothing/shoes/magboots/rig/protean chest_type = /obj/item/clothing/suit/space/rig/protean glove_type = /obj/item/clothing/gloves/gauntlets/rig/protean - canremove = 0 protean = 1 offline_vision_restriction = 0 open = 1 cell_type = /obj/item/weapon/cell/protean + var/dead = 0 + //interface_path = "RIGSuit_protean" + //ai_interface_path = "RIGSuit_protean" + var/sealed = 0 + var/assimilated_rig /obj/item/weapon/rig/protean/relaymove(mob/user, var/direction) if(user.stat || user.stunned) return - forced_move(direction, user, FALSE) + forced_move(direction, user, 0) /obj/item/weapon/rig/protean/check_suit_access(mob/living/user) if(user == myprotean) - return TRUE + return 1 return ..() /obj/item/weapon/rig/protean/digest_act(atom/movable/item_storage = null) - return FALSE + return 0 + +/obj/item/weapon/rig/protean/ex_act(severity) + return /obj/item/weapon/rig/protean/New(var/newloc, var/mob/living/carbon/human/P) if(P) @@ -44,7 +51,7 @@ S.OurRig = src if(P.back) addtimer(CALLBACK(src, .proc/AssimilateBag, P, 1, P.back), 3) - + myprotean = P else to_chat(P, "You should have spawned with a backpack to assimilate into your RIG. Try clicking it with a backpack.") ..(newloc) @@ -56,18 +63,28 @@ P.unEquip(P.back) B.forceMove(src) rig_storage = B - rig_storage.max_w_class = ITEMSIZE_LARGE - rig_storage.max_storage_space = INVENTORY_STANDARD_SPACE P.drop_item(B) - to_chat(P, "Your [B] has been integrated into your rigsuit.") - P.equip_to_slot_if_possible(src, slot_back) + to_chat(P, "[B] has been integrated into the [src].") + if(spawned) //This feels very dumb to have a second if but I'm lazy + P.equip_to_slot_if_possible(src, slot_back) src.Moved() else to_chat(P,"Your rigsuit can only assimilate a backpack into itself. If you are seeing this message, and you do not have a rigsuit, tell a coder.") +/obj/item/weapon/rig/protean/verb/RemoveBag() + set name = "Remove Stored Bag" + set category = "Object" + + if(rig_storage) + usr.put_in_hands(rig_storage) + rig_storage = null + else + to_chat(usr, "This Rig does not have a bag installed. Use a bag on it to install one.") + /obj/item/weapon/rig/protean/attack_hand(mob/user as mob) if (src.loc == user) - src.rig_storage.open(user) + if(rig_storage) + src.rig_storage.open(user) else ..() for(var/mob/M in range(1)) @@ -79,43 +96,10 @@ /obj/item/clothing/head/helmet/space/rig/protean name = "mass" desc = "A helmet-shaped clump of nanomachines." - siemens_coefficient= 0 light_overlay = "should not use a light overlay" - species_restricted = list(SPECIES_HUMAN, SPECIES_SKRELL, SPECIES_TAJ, SPECIES_UNATHI, SPECIES_NEVREAN, SPECIES_AKULA, SPECIES_SERGAL, SPECIES_ZORREN_HIGH, SPECIES_VULPKANIN, SPECIES_PROMETHEAN, SPECIES_XENOHYBRID, SPECIES_VOX, SPECIES_TESHARI, SPECIES_VASILISSAN) //CHOMPEDIT: adding more races to the proto rig - -/obj/item/clothing/gloves/gauntlets/rig/protean - name = "mass" - desc = "Glove-shaped clusters of nanomachines." - siemens_coefficient= 0 - species_restricted = list(SPECIES_HUMAN, SPECIES_SKRELL, SPECIES_TAJ, SPECIES_UNATHI, SPECIES_NEVREAN, SPECIES_AKULA, SPECIES_SERGAL, SPECIES_ZORREN_HIGH, SPECIES_VULPKANIN, SPECIES_PROMETHEAN, SPECIES_XENOHYBRID, SPECIES_VOX, SPECIES_TESHARI, SPECIES_VASILISSAN) //CHOMPEDIT: adding more races to the proto rig - -/obj/item/clothing/shoes/magboots/rig/protean - name = "mass" - desc = "Boot-shaped clusters of nanomachines." - siemens_coefficient= 0 - species_restricted = list(SPECIES_HUMAN, SPECIES_SKRELL, SPECIES_TAJ, SPECIES_UNATHI, SPECIES_NEVREAN, SPECIES_AKULA, SPECIES_SERGAL, SPECIES_ZORREN_HIGH, SPECIES_VULPKANIN, SPECIES_PROMETHEAN, SPECIES_XENOHYBRID, SPECIES_VOX, SPECIES_TESHARI, SPECIES_VASILISSAN) //CHOMPEDIT: adding more races to the proto rig - -/obj/item/clothing/suit/space/rig/protean - name = "mass" - desc = "A body-hugging mass of nanomachines." - siemens_coefficient= 0 - can_breach = 0 - species_restricted = list(SPECIES_HUMAN, SPECIES_SKRELL, SPECIES_TAJ, SPECIES_UNATHI, SPECIES_NEVREAN, SPECIES_AKULA, SPECIES_SERGAL, SPECIES_ZORREN_HIGH, SPECIES_VULPKANIN, SPECIES_PROMETHEAN, SPECIES_XENOHYBRID, SPECIES_VOX, SPECIES_TESHARI, SPECIES_VASILISSAN) - allowed = list( - /obj/item/weapon/gun, - /obj/item/device/flashlight, - /obj/item/weapon/tank, - /obj/item/device/suit_cooling_unit, - /obj/item/weapon/melee/baton, - /obj/item/weapon/storage/backpack, - ) //Subspace radio is in for the citadel version. IDK if we have that and I don't think we need it so I removed it from this list. - - - - -//Backend stuff to make the sprites work. Copied and pasted from rig_pieces_vr.dm, but added ch to everything. Only reason for this to be touched is to add or remove species. This might just need to go in a new file named rig_pieces_ch.dm. -/obj/item/clothing/head/helmet/space/rig/protean + species_restricted = list(SPECIES_PROTEAN, SPECIES_HUMAN, SPECIES_SKRELL, SPECIES_TAJ, SPECIES_UNATHI, SPECIES_NEVREAN, SPECIES_AKULA, SPECIES_SERGAL, SPECIES_ZORREN_HIGH, SPECIES_VULPKANIN, SPECIES_PROMETHEAN, SPECIES_XENOHYBRID, SPECIES_VOX, SPECIES_TESHARI, SPECIES_VASILISSAN) sprite_sheets = list( + SPECIES_PROTEAN = 'modular_chomp/icons/mob/head_ch.dmi', SPECIES_HUMAN = 'modular_chomp/icons/mob/head_ch.dmi', SPECIES_TAJ = 'modular_chomp/icons/mob/species/tajaran/helmet_ch.dmi', SPECIES_SKRELL = 'modular_chomp/icons/mob/species/skrell/helmet_ch.dmi', @@ -128,68 +112,39 @@ SPECIES_ZORREN_HIGH = 'modular_chomp/icons/mob/species/fox/helmet_ch.dmi', SPECIES_FENNEC = 'modular_chomp/icons/mob/species/vulpkanin/helmet_ch.dmi', SPECIES_PROMETHEAN = 'modular_chomp/icons/mob/species/skrell/helmet_ch.dmi', - SPECIES_TESHARI = 'icons/inventory/head/mob_ch_teshari.dmi', + SPECIES_TESHARI = 'modular_chomp/icons/mob/species/teshari/helmet_ch.dmi', SPECIES_VASILISSAN = 'modular_chomp/icons/mob/species/skrell/helmet_ch.dmi', SPECIES_VOX = 'modular_chomp/icons/mob/species/vox/head_ch.dmi' ) sprite_sheets_obj = list( - SPECIES_HUMAN = 'icons/obj/clothing/hats_ch.dmi', - SPECIES_TAJ = 'icons/obj/clothing/hats_ch.dmi', - SPECIES_SKRELL = 'icons/obj/clothing/hats_ch.dmi', - SPECIES_UNATHI = 'icons/obj/clothing/hats_ch.dmi', - SPECIES_XENOHYBRID = 'icons/obj/clothing/hats_ch.dmi', - SPECIES_AKULA = 'icons/obj/clothing/hats_ch.dmi', - SPECIES_SERGAL = 'icons/obj/clothing/hats_ch.dmi', - SPECIES_NEVREAN = 'icons/obj/clothing/hats_ch.dmi', - SPECIES_VULPKANIN = 'icons/obj/clothing/hats_ch.dmi', - SPECIES_ZORREN_HIGH = 'icons/obj/clothing/hats_ch.dmi', - SPECIES_FENNEC = 'icons/obj/clothing/hats_ch.dmi', - SPECIES_PROMETHEAN = 'icons/obj/clothing/hats_ch.dmi', - SPECIES_TESHARI = 'icons/obj/clothing/hats_ch.dmi', - SPECIES_VASILISSAN = 'icons/obj/clothing/hats_ch.dmi', - SPECIES_VOX = 'icons/obj/clothing/hats_ch.dmi' - ) - -/obj/item/clothing/suit/space/rig/protean - sprite_sheets = list( - SPECIES_HUMAN = 'modular_chomp/icons/mob/spacesuit_ch.dmi', - SPECIES_TAJ = 'modular_chomp/icons/mob/species/tajaran/suit_ch.dmi', - SPECIES_SKRELL = 'modular_chomp/icons/mob/species/skrell/suit_ch.dmi', - SPECIES_UNATHI = 'modular_chomp/icons/mob/species/unathi/suit_ch.dmi', - SPECIES_XENOHYBRID = 'modular_chomp/icons/mob/species/unathi/suit_ch.dmi', - SPECIES_AKULA = 'modular_chomp/icons/mob/species/akula/suit_ch.dmi', - SPECIES_SERGAL = 'modular_chomp/icons/mob/species/sergal/suit_ch.dmi', - SPECIES_NEVREAN = 'modular_chomp/icons/mob/species/sergal/suit_ch.dmi', - SPECIES_VULPKANIN = 'modular_chomp/icons/mob/species/vulpkanin/suit_ch.dmi', - SPECIES_ZORREN_HIGH = 'modular_chomp/icons/mob/species/fox/suit_ch.dmi', - SPECIES_FENNEC = 'modular_chomp/icons/mob/species/vulpkanin/suit_ch.dmi', - SPECIES_PROMETHEAN = 'modular_chomp/icons/mob/species/skrell/suit_ch.dmi', - SPECIES_TESHARI = 'icons/inventory/suit/mob_ch_teshari.dmi', - SPECIES_VASILISSAN = 'modular_chomp/icons/mob/species/skrell/suit_ch.dmi', - SPECIES_VOX = 'modular_chomp/icons/mob/species/vox/suit_ch.dmi' - ) - - sprite_sheets_obj = list( - SPECIES_HUMAN = 'icons/obj/clothing/spacesuits_ch.dmi', - SPECIES_TAJ = 'icons/obj/clothing/spacesuits_ch.dmi', - SPECIES_SKRELL = 'icons/obj/clothing/spacesuits_ch.dmi', - SPECIES_UNATHI = 'icons/obj/clothing/spacesuits_ch.dmi', - SPECIES_XENOHYBRID = 'icons/obj/clothing/spacesuits_ch.dmi', - SPECIES_AKULA = 'icons/obj/clothing/spacesuits_ch.dmi', - SPECIES_SERGAL = 'icons/obj/clothing/spacesuits_ch.dmi', - SPECIES_NEVREAN = 'icons/obj/clothing/spacesuits_ch.dmi', - SPECIES_VULPKANIN = 'icons/obj/clothing/spacesuits_ch.dmi', - SPECIES_ZORREN_HIGH = 'icons/obj/clothing/spacesuits_ch.dmi', - SPECIES_FENNEC = 'icons/obj/clothing/spacesuits_ch.dmi', - SPECIES_PROMETHEAN = 'icons/obj/clothing/spacesuits_ch.dmi', - SPECIES_TESHARI = 'icons/obj/clothing/spacesuits_ch.dmi', - SPECIES_VASILISSAN = 'icons/obj/clothing/spacesuits_ch.dmi', - SPECIES_VOX = 'icons/obj/clothing/spacesuits_ch.dmi' + SPECIES_PROTEAN = 'modular_chomp/icons/mob/head_ch.dmi', + SPECIES_HUMAN = 'modular_chomp/icons/mob/head_ch.dmi', + SPECIES_TAJ = 'modular_chomp/icons/mob/head_ch.dmi', + SPECIES_SKRELL = 'modular_chomp/icons/mob/head_ch.dmi', + SPECIES_UNATHI = 'modular_chomp/icons/mob/head_ch.dmi', + SPECIES_XENOHYBRID = 'modular_chomp/icons/mob/head_ch.dmi', + SPECIES_AKULA = 'modular_chomp/icons/mob/head_ch.dmi', + SPECIES_SERGAL = 'modular_chomp/icons/mob/head_ch.dmi', + SPECIES_NEVREAN = 'modular_chomp/icons/mob/head_ch.dmi', + SPECIES_VULPKANIN = 'modular_chomp/icons/mob/head_ch.dmi', + SPECIES_ZORREN_HIGH = 'modular_chomp/icons/mob/head_ch.dmi', + SPECIES_FENNEC = 'modular_chomp/icons/mob/head_ch.dmi', + SPECIES_PROMETHEAN = 'modular_chomp/icons/mob/head_ch.dmi', + SPECIES_TESHARI = 'modular_chomp/icons/mob/head_ch.dmi', + SPECIES_VASILISSAN = 'modular_chomp/icons/mob/head_ch.dmi', + SPECIES_VOX = 'modular_chomp/icons/mob/head_ch.dmi' ) + icon = 'modular_chomp/icons/mob/head_ch.dmi' + default_worn_icon = 'modular_chomp/icons/mob/head_ch.dmi' /obj/item/clothing/gloves/gauntlets/rig/protean + name = "mass" + desc = "Glove-shaped clusters of nanomachines." + siemens_coefficient= 0 + species_restricted = list(SPECIES_PROTEAN, SPECIES_HUMAN, SPECIES_SKRELL, SPECIES_TAJ, SPECIES_UNATHI, SPECIES_NEVREAN, SPECIES_AKULA, SPECIES_SERGAL, SPECIES_ZORREN_HIGH, SPECIES_VULPKANIN, SPECIES_PROMETHEAN, SPECIES_XENOHYBRID, SPECIES_VOX, SPECIES_TESHARI, SPECIES_VASILISSAN) sprite_sheets = list( + SPECIES_PROTEAN = 'modular_chomp/icons/mob/hands_ch.dmi', SPECIES_HUMAN = 'modular_chomp/icons/mob/hands_ch.dmi', SPECIES_TAJ = 'modular_chomp/icons/mob/hands_ch.dmi', SPECIES_SKRELL = 'modular_chomp/icons/mob/hands_ch.dmi', @@ -202,70 +157,110 @@ SPECIES_ZORREN_HIGH = 'modular_chomp/icons/mob/hands_ch.dmi', SPECIES_FENNEC = 'modular_chomp/icons/mob/hands_ch.dmi', SPECIES_PROMETHEAN = 'modular_chomp/icons/mob/hands_ch.dmi', - SPECIES_TESHARI = 'modular_chomp/icons/mob/hands_ch.dmi', + SPECIES_TESHARI = 'modular_chomp/icons/mob/species/teshari/hands_ch.dmi', SPECIES_VASILISSAN = 'modular_chomp/icons/mob/hands_ch.dmi', SPECIES_VOX = 'modular_chomp/icons/mob/species/vox/gloves_ch.dmi' ) sprite_sheets_obj = list( - SPECIES_HUMAN = 'icons/obj/clothing/gloves_ch.dmi', - SPECIES_TAJ = 'icons/obj/clothing/gloves_ch.dmi', - SPECIES_SKRELL = 'icons/obj/clothing/gloves_ch.dmi', - SPECIES_UNATHI = 'icons/obj/clothing/gloves_ch.dmi', - SPECIES_XENOHYBRID = 'icons/obj/clothing/gloves_ch.dmi', - SPECIES_AKULA = 'icons/obj/clothing/gloves_ch.dmi', - SPECIES_SERGAL = 'icons/obj/clothing/gloves_ch.dmi', - SPECIES_NEVREAN = 'icons/obj/clothing/gloves_ch.dmi', - SPECIES_VULPKANIN = 'icons/obj/clothing/gloves_ch.dmi', - SPECIES_ZORREN_HIGH = 'icons/obj/clothing/gloves_ch.dmi', - SPECIES_FENNEC = 'icons/obj/clothing/gloves_ch.dmi', - SPECIES_PROMETHEAN = 'icons/obj/clothing/gloves_ch.dmi', - SPECIES_TESHARI = 'icons/obj/clothing/gloves_ch.dmi', - SPECIES_VASILISSAN = 'icons/obj/clothing/gloves_ch.dmi', - SPECIES_VOX = 'icons/obj/clothing/gloves_ch.dmi' + SPECIES_HUMAN = 'modular_chomp/icons/mob/hands_ch.dmi', + SPECIES_TAJ = 'modular_chomp/icons/mob/hands_ch.dmi', + SPECIES_SKRELL = 'modular_chomp/icons/mob/hands_ch.dmi', + SPECIES_UNATHI = 'modular_chomp/icons/mob/hands_ch.dmi', + SPECIES_XENOHYBRID = 'modular_chomp/icons/mob/hands_ch.dmi', + SPECIES_AKULA = 'modular_chomp/icons/mob/hands_ch.dmi', + SPECIES_SERGAL = 'modular_chomp/icons/mob/hands_ch.dmi', + SPECIES_NEVREAN = 'modular_chomp/icons/mob/hands_ch.dmi', + SPECIES_VULPKANIN = 'modular_chomp/icons/mob/hands_ch.dmi', + SPECIES_ZORREN_HIGH = 'modular_chomp/icons/mob/hands_ch.dmi', + SPECIES_FENNEC = 'modular_chomp/icons/mob/hands_ch.dmi', + SPECIES_PROMETHEAN = 'modular_chomp/icons/mob/hands_ch.dmi', + SPECIES_TESHARI = 'modular_chomp/icons/mob/hands_ch.dmi', + SPECIES_VASILISSAN = 'modular_chomp/icons/mob/hands_ch.dmi', + SPECIES_VOX = 'modular_chomp/icons/mob/hands_ch.dmi' ) + icon = 'modular_chomp/icons/mob/hands_ch.dmi' + default_worn_icon = 'modular_chomp/icons/mob/hands_ch.dmi' /obj/item/clothing/shoes/magboots/rig/protean + name = "mass" + desc = "Boot-shaped clusters of nanomachines." + species_restricted = list(SPECIES_PROTEAN, SPECIES_HUMAN, SPECIES_SKRELL, SPECIES_TAJ, SPECIES_UNATHI, SPECIES_NEVREAN, SPECIES_AKULA, SPECIES_SERGAL, SPECIES_ZORREN_HIGH, SPECIES_VULPKANIN, SPECIES_PROMETHEAN, SPECIES_XENOHYBRID, SPECIES_VOX, SPECIES_TESHARI, SPECIES_VASILISSAN) sprite_sheets = list( - SPECIES_HUMAN = 'modular_chomp/icons/mob/feet_ch.dmi', - SPECIES_TAJ = 'modular_chomp/icons/mob/feet_ch.dmi', - SPECIES_SKRELL = 'modular_chomp/icons/mob/feet_ch.dmi', - SPECIES_UNATHI = 'modular_chomp/icons/mob/feet_ch.dmi', - SPECIES_XENOHYBRID = 'modular_chomp/icons/mob/feet_ch.dmi', - SPECIES_AKULA = 'modular_chomp/icons/mob/feet_ch.dmi', - SPECIES_SERGAL = 'modular_chomp/icons/mob/feet_ch.dmi', - SPECIES_NEVREAN = 'modular_chomp/icons/mob/feet_ch.dmi', - SPECIES_VULPKANIN = 'modular_chomp/icons/mob/feet_ch.dmi', - SPECIES_ZORREN_HIGH = 'modular_chomp/icons/mob/feet_ch.dmi', - SPECIES_FENNEC = 'modular_chomp/icons/mob/feet_ch.dmi', - SPECIES_PROMETHEAN = 'modular_chomp/icons/mob/feet_ch.dmi', - SPECIES_TESHARI = 'modular_chomp/icons/mob/feet_ch.dmi', - SPECIES_VASILISSAN = 'modular_chomp/icons/mob/feet_ch.dmi', + SPECIES_TESHARI = 'modular_chomp/icons/mob/species/teshari/feet_ch.dmi', SPECIES_VOX = 'modular_chomp/icons/mob/species/vox/shoes_ch.dmi' ) + sprite_sheets_obj = list() + icon = 'modular_chomp/icons/mob/feet_ch.dmi' + default_worn_icon = 'modular_chomp/icons/mob/feet_ch.dmi' - sprite_sheets_obj = list( - SPECIES_HUMAN = 'icons/obj/clothing/shoes_ch.dmi', - SPECIES_TAJ = 'icons/obj/clothing/shoes_ch.dmi', - SPECIES_SKRELL = 'icons/obj/clothing/shoes_ch.dmi', - SPECIES_UNATHI = 'icons/obj/clothing/shoes_ch.dmi', - SPECIES_XENOHYBRID = 'icons/obj/clothing/shoes_ch.dmi', - SPECIES_AKULA = 'icons/obj/clothing/shoes_ch.dmi', - SPECIES_SERGAL = 'icons/obj/clothing/shoes_ch.dmi', - SPECIES_NEVREAN = 'icons/obj/clothing/shoes_ch.dmi', - SPECIES_VULPKANIN = 'icons/obj/clothing/shoes_ch.dmi', - SPECIES_ZORREN_HIGH = 'icons/obj/clothing/shoes_ch.dmi', - SPECIES_FENNEC = 'icons/obj/clothing/shoes_ch.dmi', - SPECIES_PROMETHEAN = 'icons/obj/clothing/shoes_ch.dmi', - SPECIES_TESHARI = 'icons/obj/clothing/shoes_ch.dmi', - SPECIES_VASILISSAN = 'icons/obj/clothing/shoes_ch.dmi', - SPECIES_VOX = 'icons/obj/clothing/shoes_ch.dmi' +/obj/item/clothing/suit/space/rig/protean + name = "mass" + desc = "A body-hugging mass of nanomachines." + can_breach = 0 + species_restricted = list(SPECIES_PROTEAN, SPECIES_HUMAN, SPECIES_SKRELL, SPECIES_TAJ, SPECIES_UNATHI, SPECIES_NEVREAN, SPECIES_AKULA, SPECIES_SERGAL, SPECIES_ZORREN_HIGH, SPECIES_VULPKANIN, SPECIES_PROMETHEAN, SPECIES_XENOHYBRID, SPECIES_VOX, SPECIES_TESHARI, SPECIES_VASILISSAN) + allowed = list( + /obj/item/weapon/gun, + /obj/item/device/flashlight, + /obj/item/weapon/tank, + /obj/item/device/suit_cooling_unit, + /obj/item/weapon/melee/baton, + /obj/item/weapon/storage/backpack, ) + sprite_sheets = list( + SPECIES_TESHARI = 'modular_chomp/icons/mob/species/teshari/suit_ch.dmi', + SPECIES_VOX = 'modular_chomp/icons/mob/species/vox/suit_ch.dmi' + ) + + sprite_sheets_obj = list() + icon = 'modular_chomp/icons/mob/spacesuit_ch.dmi' + default_worn_icon = 'modular_chomp/icons/mob/spacesuit_ch.dmi' //Copy pasted most of this proc from base because I don't feel like rewriting the base proc with a shit load of exceptions /obj/item/weapon/rig/protean/attackby(obj/item/W as obj, mob/living/user as mob) if(!istype(user)) return 0 + if(dead) + switch(dead) + if(1) + if(W.is_screwdriver()) + playsound(src, W.usesound, 50, 1) + if(do_after(user,50,src,exclusive = TASK_ALL_EXCLUSIVE)) + to_chat(user, "You unscrew the maintenace panel on the [src].") + dead +=1 + return + if(2) + if(istype(W, /obj/item/device/protean_reboot))//placeholder + if(do_after(user,50,src,exclusive = TASK_ALL_EXCLUSIVE)) + playsound(src, 'sound/items/Deconstruct.ogg', 50, 1) + to_chat(user, "You carefully slot [W] in the [src].") + dead +=1 + qdel(W) + return + if(3) + if(istype(W, /obj/item/stack/nanopaste)) + if(do_after(user,50,src,exclusive = TASK_ALL_EXCLUSIVE)) + playsound(src, 'sound/effects/ointment.ogg', 50, 1) + to_chat(user, "You slather the interior confines of the [src] with the [W].") + dead +=1 + W?:use(1) + return + if(4) + if(istype(W, /obj/item/weapon/shockpaddles)) + if(W?:can_use(user)) + to_chat(user, "You hook up the [W] to the contact points in the maintenance assembly") + if(do_after(user,50,src,exclusive = TASK_ALL_EXCLUSIVE)) + playsound(src, 'sound/machines/defib_charge.ogg', 50, 0) + if(do_after(user,10,src)) + playsound(src, 'sound/machines/defib_zap.ogg', 50, 1, -1) + playsound(src, 'sound/machines/defib_success.ogg', 50, 0) + new /obj/effect/gibspawner/robot(src.loc) + src.atom_say("Contact received! Reassembly nanites calibrated. Estimated time to resucitation: 1 minute 30 seconds") + addtimer(CALLBACK(src, .proc/make_alive, myprotean?:humanform), 900) + return + if(istype(W,/obj/item/weapon/rig)) + if(!assimilated_rig) + AssimilateRig(user,W) if(istype(W,/obj/item/weapon/tank)) //Todo, some kind of check for suits without integrated air supplies. if(air_supply) to_chat(user, "\The [src] already has a tank installed.") @@ -349,6 +344,58 @@ AssimilateBag(user,0,W) ..() +/obj/item/weapon/rig/protean/proc/make_alive(var/mob/living/carbon/human/H, var/partial) + if(H) + H.setToxLoss(0) + H.setOxyLoss(0) + H.setCloneLoss(0) + H.setBrainLoss(0) + H.SetParalysis(0) + H.SetStunned(0) + H.SetWeakened(0) + H.blinded = 0 + H.SetBlinded(0) + H.eye_blurry = 0 + H.ear_deaf = 0 + H.ear_damage = 0 + H.heal_overall_damage(H.getActualBruteLoss(), H.getActualFireLoss(), 1) + for(var/I in H.organs_by_name) + if(!H.organs_by_name[I] || istype(H.organs_by_name[I], /obj/item/organ/external/stump)) + if(H.organs_by_name[I]) + var/obj/item/organ/external/oldlimb = H.organs_by_name[I] + oldlimb.removed() + qdel(oldlimb) + var/list/organ_data = H.species.has_limbs[I] + var/limb_path = organ_data["path"] + var/obj/item/organ/external/new_eo = new limb_path(H) + new_eo.robotize(H.synthetic ? H.synthetic.company : null) + new_eo.sync_colour_to_human(H) + if(!partial) + dead_mob_list.Remove(H) + living_mob_list += H + H.tod = null + H.timeofdeath = 0 + H.set_stat(CONSCIOUS) + if(istype(H.species, /datum/species/protean)) + var/datum/species/protean/S + S = H.species + S.pseudodead = 0 + to_chat(myprotean, "You have finished reconstituting.") + playsound(src.loc, 'sound/machines/ding.ogg', 50, 1) + dead = 0 + +/obj/item/weapon/rig/protean/take_hit(damage, source, is_emp=0) + return //We don't do that here + +/obj/item/weapon/rig/protean/emp_act(severity_class) + return //Same here + +/obj/item/weapon/rig/protean/cut_suit() + return //nope + +/obj/item/weapon/rig/protean/force_rest(var/mob/user) + wearer.lay_down() + to_chat(user, "\The [wearer] is now [wearer.resting ? "resting" : "getting up"].") /obj/item/weapon/cell/protean name = "Protean power cell" @@ -376,4 +423,154 @@ give(charge_amount) charger.nutrition -= ((1/200)*(charge - C)) //Take nutrition relative to charge. Change the 1/200 if you want to alter the nutrition to charge ratio else - return PROCESS_KILL \ No newline at end of file + return PROCESS_KILL + + +/obj/item/weapon/rig/protean/equipped(mob/living/carbon/human/M) + ..() + if(dead) + canremove = 1 + else + canremove = 0 + +/obj/item/weapon/rig/protean/ai_can_move_suit(mob/user, check_user_module = 0, check_for_ai = 0) + if(check_for_ai) + return 0 //We don't do that here. + if(offline || !cell || !cell.charge || locked_down) + if(user) + to_chat(user, "Your host rig is unpowered and unresponsive.") + return 0 + if(!wearer || (wearer.back != src && wearer.belt != src)) + if(user) + to_chat(user, "Your host rig is not being worn.") + return 0 + return 1 + +/obj/item/weapon/rig/protean/toggle_seals(mob/living/carbon/human/M, instant) + M = src.wearer + ..() + +/obj/item/weapon/rig/protean/toggle_cooling(mob/user) + user = src.wearer + ..() + +/obj/item/weapon/rig/protean/toggle_piece(piece, mob/living/carbon/human/H, deploy_mode, forced) + H = src.wearer + ..() + +/obj/item/weapon/rig/protean/get_description_interaction() + if(dead) + var/list/results = list() + switch(dead) + if(1) + results += "Use a screwdriver to start repairs." + if(2) + results += "Insert a Protean Reboot Programmer, printed from a protolathe." + if(3) + results += "Use some Nanopaste." + if(4) + results += "Use either a defib or jumper cables to start the reboot sequence." + return results + +//Effectively a round about way of letting a Protean wear other rigs. +/obj/item/weapon/rig/protean/proc/AssimilateRig(mob/user, var/obj/item/weapon/rig/R) + if(!R || assimilated_rig) + return + if(istype(R, /obj/item/weapon/rig/protean)) + to_chat(user, "The world is not ready for such a technological singularity.") + return + to_chat(user, "You assimilate the [R] into the [src]. Mimicking its stats and appearance.") + for(var/obj/item/piece in list(gloves,helmet,boots,chest)) + piece.armor = R.armor.Copy() + piece.max_pressure_protection = R.max_pressure_protection + piece.max_heat_protection_temperature = R.max_heat_protection_temperature + //I dislike this piece of code, but not every rig has the full set of parts + if(R.gloves) + gloves.sprite_sheets = R.gloves.sprite_sheets.Copy() + gloves.sprite_sheets_obj = R.gloves.sprite_sheets.Copy() + gloves.icon = R.gloves.icon + gloves.icon_state = R.gloves.icon_state + if(R.helmet) + helmet.sprite_sheets = R.helmet.sprite_sheets.Copy() + helmet.sprite_sheets_obj = R.helmet.sprite_sheets.Copy() + helmet.icon = R.helmet.icon + helmet.icon_state = R.helmet.icon_state + if(R.boots) + boots.sprite_sheets = R.boots.sprite_sheets.Copy() + boots.sprite_sheets_obj = R.boots.sprite_sheets.Copy() + boots.icon = R.boots.icon + boots.icon_state = R.boots.icon_state + if(R.chest) + chest.sprite_sheets = R.chest.sprite_sheets.Copy() + chest.sprite_sheets_obj = R.chest.sprite_sheets.Copy() + chest.icon = R.chest.icon + chest.icon_state = R.chest.icon_state + suit_state = R.suit_state + user.drop_item(R) + contents += R + assimilated_rig = R + slowdown = (initial(R.slowdown) *0.5) + offline_slowdown = slowdown + +/obj/item/weapon/rig/protean/verb/RemoveRig() + set name = "Remove Assimilated Rig" + set category = "Object" + + if(assimilated_rig) + for(var/obj/item/piece in list(gloves,helmet,boots,chest)) + piece.armor = armor.Copy() + piece.max_pressure_protection = initial(piece.max_pressure_protection) + piece.max_heat_protection_temperature = initial(piece.max_heat_protection_temperature) + piece.icon_state = src.icon_state + piece.icon = initial(piece.icon) + + //Byond at this time does not support initial() on lists + //So we have to create a new rig, just so we can copy the lists we're after + //If someone figures out a smarter way to do this, please tell me + var/obj/item/weapon/rig/tempRig = new /obj/item/weapon/rig/protean() + gloves.sprite_sheets = tempRig.gloves.sprite_sheets.Copy() + gloves.sprite_sheets_obj = tempRig.gloves.sprite_sheets.Copy() + helmet.sprite_sheets = tempRig.helmet.sprite_sheets.Copy() + helmet.sprite_sheets_obj = tempRig.helmet.sprite_sheets.Copy() + boots.sprite_sheets = tempRig.boots.sprite_sheets.Copy() + boots.sprite_sheets_obj = tempRig.boots.sprite_sheets.Copy() + chest.sprite_sheets = tempRig.chest.sprite_sheets.Copy() + chest.sprite_sheets_obj = tempRig.chest.sprite_sheets.Copy() + slowdown = initial(slowdown) + suit_state = icon_state + offline_slowdown = initial(offline_slowdown) + usr.put_in_hands(assimilated_rig) + assimilated_rig = null + qdel(tempRig) + else + to_chat(usr, "[src] has not assimilated a RIG. Use one on it to assimilate.") + +/obj/item/weapon/rig/protean/MouseDrop(obj/over_object as obj) + if(!canremove) + return + + if (isliving(usr) || isobserver(usr)) + + if (istype(usr.loc,/obj/mecha)) // stops inventory actions in a mech. why? + return + + if (!( istype(over_object, /obj/screen) )) + return ..() + + if (!(src.loc == usr) || (src.loc && src.loc.loc == usr)) + return + + if (( usr.restrained() ) || ( usr.stat )) + return + + if ((src.loc == usr) && !(istype(over_object, /obj/screen)) && !usr.unEquip(src)) + return + + switch(over_object.name) + if("r_hand") + usr.unEquip(src) + usr.put_in_r_hand(src) + if("l_hand") + usr.unEquip(src) + usr.put_in_l_hand(src) + src.add_fingerprint(usr) \ No newline at end of file diff --git a/modular_chomp/code/modules/mob/living/carbon/human/species/station/protean/protean_rig_tgui.dm b/modular_chomp/code/modules/mob/living/carbon/human/species/station/protean/protean_rig_tgui.dm new file mode 100644 index 0000000000..4abad5b966 --- /dev/null +++ b/modular_chomp/code/modules/mob/living/carbon/human/species/station/protean/protean_rig_tgui.dm @@ -0,0 +1,128 @@ +/* +It's a bit snowflake, but some rigsuit rewriting was necessary to achieved what I wanted +for protean rigsuits, and rolling these changes into the base RIGsuit code would definitely create +merge conflicts down the line. +So here it sits, snowflake code for a single item. +*/ + +/obj/item/weapon/rig/protean/tgui_state(mob/user) + return GLOB.tgui_always_state + +/obj/item/weapon/rig/protean/tgui_data(mob/user) + var/list/data = list() + + if(selected_module) + data["primarysystem"] = "[selected_module.interface_name]" + else + data["primarysystem"] = null + + if(loc != user) + data["ai"] = TRUE + else + data["ai"] = FALSE + + data["cooling"] = cooling_on + data["sealed"] = !sealed + data["sealing"] = sealing + data["helmet"] = (helmet ? "[helmet.name]" : "None.") + data["gauntlets"] = (gloves ? "[gloves.name]" : "None.") + data["boots"] = (boots ? "[boots.name]" : "None.") + data["chest"] = (chest ? "[chest.name]" : "None.") + + data["helmetDeployed"] = (helmet && helmet.loc == loc) + data["gauntletsDeployed"] = (gloves && gloves.loc == loc) + data["bootsDeployed"] = (boots && boots.loc == loc) + data["chestDeployed"] = (chest && chest.loc == loc) + + data["charge"] = cell ? round(cell.charge,1) : 0 + data["maxcharge"] = cell ? cell.maxcharge : 0 + data["chargestatus"] = cell ? FLOOR((cell.charge/cell.maxcharge)*50, 1) : 0 + + data["emagged"] = subverted + data["coverlock"] = locked + data["interfacelock"] = interface_locked + data["aicontrol"] = control_overridden + data["aioverride"] = ai_override_enabled + data["securitycheck"] = security_check_enabled + data["malf"] = malfunction_delay + + var/list/module_list = list() + if(!canremove && !sealing) + var/i = 1 + for(var/obj/item/rig_module/module in installed_modules) + var/list/module_data = list( + "index" = i, + "name" = "[module.interface_name]", + "desc" = "[module.interface_desc]", + "can_use" = module.usable, + "can_select" = module.selectable, + "can_toggle" = module.toggleable, + "is_active" = module.active, + "engagecost" = module.use_power_cost*10, + "activecost" = module.active_power_cost*10, + "passivecost" = module.passive_power_cost*10, + "engagestring" = module.engage_string, + "activatestring" = module.activate_string, + "deactivatestring" = module.deactivate_string, + "damage" = module.damage + ) + + if(module.charges && module.charges.len) + module_data["charges"] = list() + var/datum/rig_charge/selected = module.charges["[module.charge_selected]"] + module_data["realchargetype"] = module.charge_selected + module_data["chargetype"] = selected ? "[selected.display_name]" : "none" + + for(var/chargetype in module.charges) + var/datum/rig_charge/charge = module.charges[chargetype] + module_data["charges"] += list(list("caption" = "[charge.display_name] ([charge.charges])", "index" = "[chargetype]")) + + module_list += list(module_data) + i++ + + if(module_list.len) + data["modules"] = module_list + else + data["modules"] = list() + + return data +/* +/obj/item/weapon/rig/protean/tgui_act(action, params) + switch(action) + if("toggle_seals") + toggle_seals(wearer) + . = TRUE + if("toggle_cooling") + toggle_cooling(wearer) + . = TRUE + if("toggle_ai_control") + to_chat(usr, "Proteans cannot be AI controlled.") + . = TRUE + if("toggle_suit_lock") + locked = !locked + . = TRUE + if("toggle_piece") + toggle_piece(params["piece"], wearer) + . = TRUE + if("interact_module") + var/module_index = text2num(params["module"]) + + if(module_index > 0 && module_index <= installed_modules.len) + var/obj/item/rig_module/module = installed_modules[module_index] + switch(params["module_mode"]) + if("select") + selected_module = module + . = TRUE + if("engage") + module.engage() + . = TRUE + if("toggle") + if(module.active) + module.deactivate() + else + module.activate() + . = TRUE + if("select_charge_type") + module.charge_selected = params["charge_type"] + . = TRUE +*/ \ No newline at end of file diff --git a/modular_chomp/code/modules/mob/living/carbon/human/species/station/protean/protean_species.dm b/modular_chomp/code/modules/mob/living/carbon/human/species/station/protean/protean_species.dm index 4e15a41bda..89ceae790c 100644 --- a/modular_chomp/code/modules/mob/living/carbon/human/species/station/protean/protean_species.dm +++ b/modular_chomp/code/modules/mob/living/carbon/human/species/station/protean/protean_species.dm @@ -17,7 +17,7 @@ flesh_color = "#505050" base_color = "#FFFFFF" //Color mult, start out with this - flags = NO_SCAN | NO_SLIP | NO_MINOR_CUT | NO_HALLUCINATION | NO_INFECT + flags = NO_SCAN | NO_SLIP | NO_MINOR_CUT | NO_HALLUCINATION | NO_INFECT | NO_PAIN appearance_flags = HAS_SKIN_COLOR | HAS_EYE_COLOR | HAS_HAIR_COLOR | HAS_UNDERWEAR | HAS_LIPS spawn_flags = SPECIES_CAN_JOIN | SPECIES_IS_WHITELISTED | SPECIES_WHITELIST_SELECTABLE health_hud_intensity = 2 @@ -33,28 +33,33 @@ male_scream_sound = null female_scream_sound = null - virus_immune = 1 - blood_volume = 0 - min_age = 18 - max_age = 200 - oxy_mod = 0 - radiation_mod = 0 //Can't be assed with fandangling rad protections while blob formed/suited + virus_immune = 1 + blood_volume = 0 + min_age = 18 + max_age = 200 + oxy_mod = 0 + //radiation_mod = 0 //Can't be assed with fandangling rad protections while blob formed/suited darksight = 10 + siemens_coefficient = 2 + emp_dmg_mod = 0.8 + emp_sensitivity = EMP_BLIND | EMP_DEAFEN | EMP_BRUTE_DMG | EMP_BURN_DMG + item_slowdown_mod = 1.5 //Gentle encouragement to let others wear you hazard_low_pressure = -1 //Space doesn't bother them - hazard_high_pressure = INFINITY //consistency - //Cold/heat does affect them, but it's done in special ways below - //No it isn't? cold_level_1 = -INFINITY cold_level_2 = -INFINITY cold_level_3 = -INFINITY - heat_level_1 = INFINITY - heat_level_2 = INFINITY - heat_level_3 = INFINITY + heat_level_1 = 420 + heat_level_2 = 480 + heat_level_3 = 1100 - body_temperature = 290 + body_temperature = 290 - rarity_value = 5 + rarity_value = 5 + + female_scream_sound = 'modular_chomp/sound/voice/scream_silicon.ogg' + male_scream_sound = 'modular_chomp/sound/voice/scream_silicon.ogg' crit_mod = 4 //Unable to go crit var/obj/item/weapon/rig/protean/OurRig @@ -80,7 +85,7 @@ BP_R_FOOT = list("path" = /obj/item/organ/external/foot/right/unbreakable/nano) ) - heat_discomfort_strings = list("You feel too warm.") + heat_discomfort_strings = list("WARNING: Temperature exceeding acceptable thresholds!.") cold_discomfort_strings = list("You feel too cool.") //These verbs are hidden, for hotkey use only @@ -90,7 +95,9 @@ /mob/living/carbon/human/proc/nano_metalnom, /mob/living/carbon/human/proc/nano_blobform, /mob/living/carbon/human/proc/nano_rig_transform, + /mob/living/carbon/human/proc/nano_copy_body, /mob/living/carbon/human/proc/appearance_switch, + /mob/living/carbon/human/proc/nano_latch, /mob/living/proc/set_size, /mob/living/carbon/human/proc/nano_change_fitting, //These verbs are displayed normally, /mob/living/carbon/human/proc/shapeshifter_select_hair, @@ -112,6 +119,8 @@ var/blob_appearance = "puddle2" + var/pseudodead = 0 + /datum/species/protean/New() ..() if(!LAZYLEN(abilities)) @@ -128,13 +137,53 @@ if(saved_nif) saved_nif.quick_implant(H) +/datum/species/protean/get_race_key() + var/datum/species/real = GLOB.all_species[base_species] + return real.race_key + /datum/species/protean/get_bodytype(var/mob/living/carbon/human/H) if(!H || base_species == name) return ..() var/datum/species/S = GLOB.all_species[base_species] return S.get_bodytype(H) +/datum/species/protean/get_icobase(var/mob/living/carbon/human/H, var/get_deform) + if(!H || base_species == name) return ..(null, get_deform) + var/datum/species/S = GLOB.all_species[base_species] + return S.get_icobase(H, get_deform) + /datum/species/protean/get_valid_shapeshifter_forms(var/mob/living/carbon/human/H) - return GLOB.playable_species + var/static/list/protean_shapeshifting_forms = GLOB.playable_species.Copy() - SPECIES_PROMETHEAN + return protean_shapeshifting_forms + +/datum/species/protean/get_tail(var/mob/living/carbon/human/H) + if(!H || base_species == name) return ..() + var/datum/species/S = GLOB.all_species[base_species] + return S.get_tail(H) + +/datum/species/protean/get_tail_animation(var/mob/living/carbon/human/H) + if(!H || base_species == name) return ..() + var/datum/species/S = GLOB.all_species[base_species] + return S.get_tail_animation(H) + +/datum/species/protean/get_tail_hair(var/mob/living/carbon/human/H) + if(!H || base_species == name) return ..() + var/datum/species/S = GLOB.all_species[base_species] + return S.get_tail_hair(H) + +/datum/species/protean/get_blood_mask(var/mob/living/carbon/human/H) + if(!H || base_species == name) return ..() + var/datum/species/S = GLOB.all_species[base_species] + return S.get_blood_mask(H) + +/datum/species/protean/get_damage_mask(var/mob/living/carbon/human/H) + if(!H || base_species == name) return ..() + var/datum/species/S = GLOB.all_species[base_species] + return S.get_damage_mask(H) + +/datum/species/protean/get_damage_overlays(var/mob/living/carbon/human/H) + if(!H || base_species == name) return ..() + var/datum/species/S = GLOB.all_species[base_species] + return S.get_damage_overlays(H) /datum/species/protean/handle_post_spawn(var/mob/living/carbon/human/H) ..() @@ -177,14 +226,22 @@ /datum/species/protean/handle_death(var/mob/living/carbon/human/H) if(!H) - return // Iono! - + return //No body? + if(OurRig.dead) + return + OurRig.dead = 1 + var/mob/temp = H if(H.temporary_form) - H.forceMove(H.temporary_form.drop_location()) - H.ckey = H.temporary_form.ckey - QDEL_NULL(H.temporary_form) - - to_chat(H, "You died as a Protean. Please sit out of the round for at least 5 or 10 minutes before respawning, to represent the time it would take to ship a new-you to the station, depending on how you died.") + temp = H.temporary_form + playsound(temp, 'modular_chomp/sound/voice/borg_deathsound.ogg', 50, 1) + temp.visible_message("[temp.name] shudders and retreats inwards, coalescing into a single core componant!") + to_chat(temp, "You've died as a Protean! While dead, you will be locked to your core RIG control module until you can be repaired. Instructions to your revival can be found in the Examine tab when examining your module..") + if(H.temporary_form) + if(!istype(H.temporary_form.loc, /obj/item/weapon/rig/protean)) + H.nano_rig_transform(1) + else + H.nano_rig_transform(1) + pseudodead = 1 /datum/species/protean/handle_environment_special(var/mob/living/carbon/human/H) if((H.getActualBruteLoss() + H.getActualFireLoss()) > H.maxHealth*0.5 && isturf(H.loc)) //So, only if we're not a blob (we're in nullspace) or in someone (or a locker, really, but whatever) @@ -320,17 +377,26 @@ CHOMP Removal end*/ material_name = MAT_STEEL /datum/modifier/protean/steel/tick() - holder.adjustBruteLoss(-1,include_robo = TRUE) //Modified by species resistances - holder.adjustFireLoss(-1,include_robo = TRUE) //Modified by species resistances - var/mob/living/carbon/human/H = holder - for(var/obj/item/organ/O as anything in H.internal_organs) - // Fix internal damage - if(O.damage > 0) - O.damage = max(0,O.damage-0.1) - // If not damaged, but dead, fix it - else if(O.status & ORGAN_DEAD) - O.status &= ~ORGAN_DEAD //Unset dead if we repaired it entirely + //Heal a random damaged limb by 1,1 per tick + holder.adjustBruteLoss(-1,include_robo = TRUE) + holder.adjustFireLoss(-1,include_robo = TRUE) + holder.adjustToxLoss(-1) + var/mob/living/carbon/human/H + if(ishuman(holder)) + H = holder + + //Then heal every damaged limb by a smaller amount + if(H) + for(var/obj/item/organ/external/O in H.organs) + O.heal_damage(0.5, 0.5, 0, 1) + + //Heal the organs a little bit too, as a treat + for(var/obj/item/organ/O as anything in H.internal_organs) + if(O.damage > 0) + O.damage = max(0,O.damage-0.3) + else if(O.status & ORGAN_DEAD) + O.status &= ~ORGAN_DEAD //Unset dead if we repaired it entirely // PAN Card /obj/item/clothing/accessory/permit/nanotech @@ -353,4 +419,4 @@ CHOMP Removal end*/ . = ..() . += validstring . += registring -#undef METAL_PER_TICK \ No newline at end of file +#undef METAL_PER_TICK diff --git a/modular_chomp/code/modules/mob/living/carbon/human/species/station/station_special_ch.dm b/modular_chomp/code/modules/mob/living/carbon/human/species/station/station_special_ch.dm new file mode 100644 index 0000000000..5a9a0e0810 --- /dev/null +++ b/modular_chomp/code/modules/mob/living/carbon/human/species/station/station_special_ch.dm @@ -0,0 +1,39 @@ +/datum/species/xenochimera/get_bodytype(var/mob/living/carbon/human/H) + if(!H || base_species == name) return ..() + var/datum/species/S = GLOB.all_species[base_species] + return S.get_bodytype(H) + +/datum/species/xenochimera/get_icobase(var/mob/living/carbon/human/H, var/get_deform) + if(!H || base_species == name) return ..() + var/datum/species/S = GLOB.all_species[base_species] + return S.get_icobase(H, get_deform) + +/datum/species/xenochimera/get_tail(var/mob/living/carbon/human/H) + if(!H || base_species == name) return ..() + var/datum/species/S = GLOB.all_species[base_species] + return S.get_tail(H) + +/datum/species/xenochimera/get_tail_animation(var/mob/living/carbon/human/H) + if(!H || base_species == name) return ..() + var/datum/species/S = GLOB.all_species[base_species] + return S.get_tail_animation(H) + +/datum/species/xenochimera/get_tail_hair(var/mob/living/carbon/human/H) + if(!H || base_species == name) return ..() + var/datum/species/S = GLOB.all_species[base_species] + return S.get_tail_hair(H) + +/datum/species/xenochimera/get_blood_mask(var/mob/living/carbon/human/H) + if(!H || base_species == name) return ..() + var/datum/species/S = GLOB.all_species[base_species] + return S.get_blood_mask(H) + +/datum/species/xenochimera/get_damage_mask(var/mob/living/carbon/human/H) + if(!H || base_species == name) return ..() + var/datum/species/S = GLOB.all_species[base_species] + return S.get_damage_mask(H) + +/datum/species/xenochimera/get_damage_overlays(var/mob/living/carbon/human/H) + if(!H || base_species == name) return ..() + var/datum/species/S = GLOB.all_species[base_species] + return S.get_damage_overlays(H) diff --git a/modular_chomp/code/modules/mob/living/carbon/human/species/station/traits/positive.dm b/modular_chomp/code/modules/mob/living/carbon/human/species/station/traits/positive.dm index afe2932f35..9cd0239bff 100644 --- a/modular_chomp/code/modules/mob/living/carbon/human/species/station/traits/positive.dm +++ b/modular_chomp/code/modules/mob/living/carbon/human/species/station/traits/positive.dm @@ -3,3 +3,6 @@ /datum/trait/positive/linguist custom_only = FALSE + +/datum/trait/positive/toxin_gut + custom_only = FALSE diff --git a/modular_chomp/code/modules/mob/living/carbon/human/update_icons.dm b/modular_chomp/code/modules/mob/living/carbon/human/update_icons.dm index ab6be6cb9c..d540e3a66a 100644 --- a/modular_chomp/code/modules/mob/living/carbon/human/update_icons.dm +++ b/modular_chomp/code/modules/mob/living/carbon/human/update_icons.dm @@ -2,9 +2,9 @@ // For some reason, suit and uniform already has this funcitonality, but shoes do not. //Duplicate defines so the code below can compile. See non-modular update_icons.dm for proper placement. -#define SHOES_LAYER_ALT 9 //Shoe-slot item (when set to be under uniform via verb) -#define SHOES_LAYER 12 //Shoe-slot item -#define VORE_BELLY_LAYER 32 //Should be the same that it is in update_icons.dm +#define SHOES_LAYER_ALT 10 //Shoe-slot item (when set to be under uniform via verb) +#define SHOES_LAYER 13 //Shoe-slot item +#define VORE_BELLY_LAYER 33 //Should be the same that it is in update_icons.dm /mob/living/carbon/human/update_inv_shoes() //. = ..() @@ -105,6 +105,57 @@ struggle_anim_taur = FALSE update_vore_tail_sprite() +/mob/living/carbon/human/proc/GetAppearanceFromPrefs(var/flavourtext, var/oocnotes) + /* Jank code that effectively creates the client's mob from save, then copies its appearance to our current mob. + Intended to be used with shapeshifter species so we don't reset their organs in doing so.*/ + var/mob/living/carbon/human/dummy/mannequin/Dummy = new + if(client.prefs) + client.prefs.copy_to(Dummy) + //Important, since some sprites only work for specific species + /* Probably not needed anymore since impersonate_bodytype no longer exists + if(Dummy.species.base_species == "Promethean") + impersonate_bodytype = "Human" + else + impersonate_bodytype = Dummy.species.base_species + */ + custom_species = Dummy.custom_species + var/list/traits = dna.species_traits.Copy() + dna = Dummy.dna.Clone() + dna.species_traits.Cut() + dna.species_traits = traits.Copy() + UpdateAppearance() + icon = Dummy.icon + if(flavourtext) + flavor_texts = client.prefs.flavor_texts.Copy() + if(oocnotes) + ooc_notes = client.prefs.metadata + qdel(Dummy) + +/* Alternative version of the above proc, incase it turns out cloning our dummy mob's DNA is an awful, terrible bad idea. +Would need to fix this proc up to work as smoothly as the above proc, though. +/mob/living/carbon/human/proc/GetAppearanceFromPrefs() + /* Jank code that effectively creates the client's mob from save, then copies its appearance to our current mob. + Intended to be used with shapeshifter species so we don't reset their organs in doing so.*/ + var/mob/living/carbon/human/dummy/mannequin/Dummy = new + if(client.prefs) + client.prefs.copy_to(Dummy) + //Important, since some sprites only work for specific species + if(Dummy.species.base_species == "Promethean") + impersonate_bodytype = "Human" + else + impersonate_bodytype = Dummy.species.base_species + custom_species = Dummy.custom_species + for(var/tag in Dummy.dna.body_markings) + var/obj/item/organ/external/E = organs_by_name[tag] + if(E) + E.markings.Cut() + var/list/marklist = Dummy.dna.body_markings[tag] + E.markings = marklist.Copy() + UpdateAppearance(Dummy.dna.UI.Copy()) + icon = Dummy.icon + qdel(Dummy) +*/ + /mob/living/carbon/human/update_tail_showing() . = ..() update_vore_tail_sprite() diff --git a/modular_chomp/code/modules/mob/living/living.dm b/modular_chomp/code/modules/mob/living/living.dm index 9fef43f42d..2a5293fe94 100644 --- a/modular_chomp/code/modules/mob/living/living.dm +++ b/modular_chomp/code/modules/mob/living/living.dm @@ -1,2 +1,17 @@ /mob/living/proc/vs_animate(var/belly_to_animate) - return \ No newline at end of file + return + +/* +Maybe later, gotta figure out a way to click yourself when in a locker etc. + +/mob/living/proc/click_self() + set name = "Click Self" + set desc = "Clicks yourself. Useful when you can't see yourself." + set category = "IC" + + ClickOn(src) + +/mob/living/New(var/newloc) + ..() + verbs |= /mob/living/proc/click_self +*/ \ No newline at end of file diff --git a/modular_chomp/code/modules/mob/living/simple_mob/simple_mob.dm b/modular_chomp/code/modules/mob/living/simple_mob/simple_mob.dm index 00ea1b9daf..b8ed4037ba 100644 --- a/modular_chomp/code/modules/mob/living/simple_mob/simple_mob.dm +++ b/modular_chomp/code/modules/mob/living/simple_mob/simple_mob.dm @@ -98,6 +98,31 @@ // This from original living.dm update_transforms too handle_status_indicators() +/mob/living/simple_mob/proc/use_headset() + set name = "Use Headset" + set desc = "Opens your headset's GUI, if you have one." + set category = "IC" + + if(istype(mob_radio, /obj/item/device/radio/headset)) + mob_radio.tgui_interact(src) + else + to_chat(src, "Your mob does not have a radio in its radio slot.") + +/mob/living/simple_mob/proc/use_pda() + set name = "Use PDA" + set desc = "Opens your PDA's GUI, if you have one." + set category = "IC" + + if(istype(myid, /obj/item/device/pda)) + myid.tgui_interact(src) + else + to_chat(src, "Your mob does not have a PDA in its ID slot.") + +/mob/living/simple_mob/New(var/newloc) + ..() + verbs |= /mob/living/simple_mob/proc/use_headset + verbs |= /mob/living/simple_mob/proc/use_pda + /mob/living/simple_mob/update_icon() . = ..() for(var/belly_class in vore_fullness_ex) diff --git a/modular_chomp/code/modules/mob/living/simple_mob/subtypes/animal/space/alien.dm b/modular_chomp/code/modules/mob/living/simple_mob/subtypes/animal/space/alien.dm new file mode 100644 index 0000000000..638ae281de --- /dev/null +++ b/modular_chomp/code/modules/mob/living/simple_mob/subtypes/animal/space/alien.dm @@ -0,0 +1,171 @@ +/mob/living/simple_mob/animal/space/alien/sentinel/praetorian/echo + name = "alien Echopraetorian" + color = "#424242" + health = 300 + maxHealth = 300 + needs_reload = 1 + projectiletype = /obj/item/projectile/sonic/strong + reload_time = 150 SECONDS + ai_holder_type = /datum/ai_holder/simple_mob/ranged/careful + +/mob/living/simple_mob/animal/space/alien/sentinel/praetorian/ion + name = "alien Ionic praetorian" + color = "#004cff" + armor = list(melee = 0,bullet = 25,laser = 0,energy = 0,bomb = 0,bio = 100,rad = 100) + health = 350 + maxHealth = 350 + needs_reload = 1 + projectiletype = /obj/item/projectile/arc/emp_blast + reload_time = 150 SECONDS + reload_max = 3 + ai_holder_type = /datum/ai_holder/simple_mob/ranged/careful + size_multiplier = 1.5 + +/mob/living/simple_mob/animal/space/alien/sentinel/praetorian/blaze + name = "alien blazing praetorian" + color = "Red" + armor = list(melee = 0, bullet = 0, laser = 25, energy = 0, bomb = 0, bio = 100, rad = 100) + health = 450 + maxHealth = 450 + needs_reload = 1 + projectiletype = /obj/item/projectile/energy/fireball + reload_max = 3 + reload_time = 200 + ai_holder_type = /datum/ai_holder/simple_mob/ranged/careful + +/mob/living/simple_mob/animal/space/alien/sentinel/praetorian/splat + name = "alien splattetorian" + color = "#a604b8" + needs_reload = 1 + projectiletype = /obj/item/projectile/energy/blob/acid/splattering + reload_max = 5 + reload_time = 150 + size_multiplier = 0.75 + +/mob/living/simple_mob/animal/space/alien/sentinel/praetorian/tank + name = "alien Tankerling" + armor_soak = list(melee = -15, bullet = 10, laser = 10, energy = 0, bomb = 0, bio = 0, rad = 0) + base_attack_cooldown = 25 + color = "#ff8214" + health = 700 + maxHealth = 700 + melee_damage_lower = 25 + melee_damage_upper = 35 + movement_cooldown = 10 + movement_shake_radius = 7 + movement_sound = 'sound/weapons/heavysmash.ogg' + projectiletype = null + size_multiplier = 2 + +/mob/living/simple_mob/animal/space/alien/sentinel/praetorian/acid + projectiletype = /obj/item/projectile/energy/acid + +/mob/living/simple_mob/animal/space/alien/queen/empress/star + name = "alien Staticlisk" + ai_holder_type = /datum/ai_holder/simple_mob/ranged/careful + armor_soak = list(melee = -10, bullet = 10, laser = 5, energy = 0, bomb = 0, bio = 0, rad = 0) + base_attack_cooldown = 15 + color = "#38b9ff" + health = 500 + maxHealth = 500 + melee_damage_lower = 25 + melee_damage_upper = 50 + movement_cooldown = 12 + movement_shake_radius = 7 + needs_reload = 1 + projectilesound = null + projectiletype = /obj/item/projectile/beam/chain_lightning/lesser + reload_max = 3 + reload_time = 200 + size_multiplier = 1.5 + +/mob/living/simple_mob/animal/space/alien/queen/empress/tank + name = "alien tankerlisk" + armor_soak = list(melee = -10, bullet = 10, laser = 5, energy = 0, bomb = 0, bio = 0, rad = 0) + base_attack_cooldown = 25 + color = "#4a4a4a" + health = 1250 + maxHealth = 1250 + melee_damage_lower = 25 + melee_damage_upper = 50 + movement_cooldown = 12 + movement_shake_radius = 7 + needs_reload = 1 + projectilesound = null + projectiletype = null + size_multiplier = 3 + +/mob/living/simple_mob/animal/space/alien/sentinel/electro + name = "alien Electrosentinel" + ai_holder_type = /datum/ai_holder/simple_mob/ranged/careful + armor_soak = list(melee = 0, bullet = 5, laser = 5, energy = 0, bomb = 0, bio = 0, rad = 0) + color = "#ccff4a" + health = 200 + maxHealth = 200 + needs_reload = 1 + projectiletype = /obj/item/projectile/beam/stun/electric_spider + reload_max = 5 + reload_time = 150 + size_multiplier = 1.5 + +/mob/living/simple_mob/animal/space/alien/sentinel/pyro + name = "alien Pyrosentinel" + armor = list (melee = 0, bullet = 0, laser = 15, energy = 0, bomb = 0, bio = 100, rad = 100) + base_attack_cooldown = 15 + color = "#ff7373" + health = 250 + maxHealth = 250 + needs_reload = 1 + projectiletype = /obj/item/projectile/bullet/incendiary/dragonflame + reload_max = 2 + reload_time = 150 + +/mob/living/simple_mob/animal/space/alien/sentinel/cyro + name = "alien cryosentinel" + ai_holder_type = /datum/ai_holder/simple_mob/ranged/careful + armor = list(melee = 0, bullet = 15, laser = 0, energy = 0, bomb = 0, bio = 100, rad = 100) + color = "#4f83ff" + health = 200 + maxHealth = 200 + needs_reload = 1 + projectiletype = /obj/item/projectile/energy/blob/freezing/splattering + reload_max = 3 + reload_time = 100 + size_multiplier = 1.5 + +/mob/living/simple_mob/animal/space/alien/sentinel/acid + projectiletype = /obj/item/projectile/energy/acid + +/mob/living/simple_mob/animal/space/alien/tanky + health = 200 + maxHealth = 200 + +/mob/living/simple_mob/animal/space/alien/hunterling + name = "alien hunterling" + attack_armor_pen = 1 + base_attack_cooldown = 2 + color = "#1cbdff" + force_max_speed = 1 + health = 15 + maxHealth = 15 + melee_damage_lower = 1 + melee_damage_upper = 3 + size_multiplier = 0.5 + +/mob/living/simple_mob/animal/space/alien/hunterlisk + name = "alien hunterlisk" + base_attack_cooldown = 15 + color = "#575757" + health = 150 + maxHealth = 150 + melee_damage_upper = 35 + movement_cooldown = 3 + size_multiplier = 1.25 + +/mob/living/simple_mob/animal/space/alien/queen/empress/mother/big + ai_holder_type = /datum/ai_holder/simple_mob/ranged/careful + needs_reload = 1 + projectiletype = /obj/item/projectile/energy/blob/toxic/splattering + reload_max = 5 + reload_time = 150 + size_multiplier = 2 \ No newline at end of file diff --git a/modular_chomp/code/modules/mob/living/simple_mob/subtypes/mechanical/mecha/gygax.dm b/modular_chomp/code/modules/mob/living/simple_mob/subtypes/mechanical/mecha/gygax.dm index be5dcc6a4d..f78374f4f5 100644 --- a/modular_chomp/code/modules/mob/living/simple_mob/subtypes/mechanical/mecha/gygax.dm +++ b/modular_chomp/code/modules/mob/living/simple_mob/subtypes/mechanical/mecha/gygax.dm @@ -1,8 +1,15 @@ + +/mob/living/simple_mob/mechanical/mecha/combat/gygax + movement_cooldown = 1 //Because normal Gygaxes are tougher then ths boss version with 0 speed + +/mob/living/simple_mob/mechanical/mecha/combat/gygax/dark/advanced + movement_cooldown = 0 //Because AADG needs all the help it can get. + /mob/living/simple_mob/mechanical/mecha/combat/gygax/aerostat desc = "A Vir System Authority automated combat mech with an aged apperance." ai_holder_type = /datum/ai_holder/simple_mob/intentional/adv_dark_gygax say_list = /datum/say_list/gygax_aerostat - + /datum/say_list/gygax_aerostat speak = list("ALERT.","Hostile-ile-ile entities dee-twhoooo-wected.","Threat parameterszzzz- szzet.","Bring sub-sub-sub-systems uuuup to combat alert alpha-a-a.") emote_see = list("beeps menacingly","whirrs threateningly","scans its immediate vicinity") diff --git a/modular_chomp/code/modules/mob/living/simple_mob/subtypes/vore/desert_planet_mobs.dm b/modular_chomp/code/modules/mob/living/simple_mob/subtypes/vore/desert_planet_mobs.dm new file mode 100644 index 0000000000..fb6f3a0e00 --- /dev/null +++ b/modular_chomp/code/modules/mob/living/simple_mob/subtypes/vore/desert_planet_mobs.dm @@ -0,0 +1,47 @@ +/mob/living/simple_mob/animal/passive/dog/stray + name = "dog" + desc = "The most standard dog you have ever seen, it even smells like one." + tt_desc = "Canis lupus familiaris" + //faction = "mexico" //They are from Mexico. //Amusing but this prompts aggression from crew-aligned mobs. + + icon = 'modular_chomp/icons/turf/desert_tiles.dmi' + icon_state = "dog" + item_state = "dog" + icon_living = "dog" + icon_rest = "dog" + icon_dead = "dog" + + health = 50 + maxHealth = 50 + + mob_size = MOB_SMALL + pass_flags = PASSTABLE + can_pull_size = ITEMSIZE_TINY + can_pull_mobs = MOB_PULL_NONE + layer = MOB_LAYER + density = 1 + movement_cooldown = 0.75 //roughly a bit faster than a person + + response_help = "pets" + response_disarm = "rolls aside" + response_harm = "stomps" + + melee_damage_lower = 5 + melee_damage_upper = 7 + attacktext = list("nips", "bumps", "scratches") + + vore_taste = "wet dog" + + min_oxy = 16 //Require atleast 16kPA oxygen + minbodytemp = 223 //Below -50 Degrees Celcius + maxbodytemp = 523 //Above 80 Degrees Celcius + heat_damage_per_tick = 3 + cold_damage_per_tick = 3 + + meat_amount = 7 + holder_type = /obj/item/weapon/holder/armadillo + ai_holder_type = /datum/ai_holder/simple_mob/armadillo + + speak_emote = list("rumbles", "chirr?", "churr") + + say_list_type = /datum/say_list/armadillo diff --git a/modular_chomp/code/modules/mob/living/simple_mob/subtypes/vore/swoopie.dm b/modular_chomp/code/modules/mob/living/simple_mob/subtypes/vore/swoopie.dm index ba1f7d15a4..87917d6344 100644 --- a/modular_chomp/code/modules/mob/living/simple_mob/subtypes/vore/swoopie.dm +++ b/modular_chomp/code/modules/mob/living/simple_mob/subtypes/vore/swoopie.dm @@ -20,6 +20,13 @@ adminbus_trash = TRUE //You know what, sure whatever. It's not like anyone's gonna be taking this bird on unga trips to be their gamer backpack, which kinda was the main reason for the trash eater restrictions in the first place anyway. faction = "neutral" say_list_type = /datum/say_list/swoopie + var/static/list/crew_creatures = list( /mob/living/simple_mob/protean_blob, + /mob/living/simple_mob/slime/promethean) + +/mob/living/simple_mob/vore/aggressive/corrupthound/swoopie/IIsAlly(mob/living/L) + . = ..() + if(!.) // Outside the faction and not in friends, are they crew + return L?.type in crew_creatures /mob/living/simple_mob/vore/aggressive/corrupthound/swoopie/init_vore() if(!voremob_loaded) diff --git a/modular_chomp/code/modules/mob/new_player/sprite_accessories_taur.dm b/modular_chomp/code/modules/mob/new_player/sprite_accessories_taur.dm index d004395390..6bdfd9fd07 100644 --- a/modular_chomp/code/modules/mob/new_player/sprite_accessories_taur.dm +++ b/modular_chomp/code/modules/mob/new_player/sprite_accessories_taur.dm @@ -66,38 +66,14 @@ msg_owner_stepunder = "%owner bounds over your tail." -/datum/sprite_accessory/tail/taur/ch/naga/alt_2c +/datum/sprite_accessory/tail/taur/ch/naga/alt/second name = "Naga dual-color alt (Taur)" - icon_state = "naga_alt_s" extra_overlay = "naga_alt_markings" - suit_sprites = 'modular_chomp/icons/mob/taursuits_naga_ch.dmi' - msg_owner_help_walk = "You carefully slither around %prey." - msg_prey_help_walk = "%owner's huge tail slithers past beside you!" - - msg_owner_help_run = "You carefully slither around %prey." - msg_prey_help_run = "%owner's huge tail slithers past beside you!" - - msg_owner_disarm_run = "Your tail slides over %prey, pushing them down to the ground!" - msg_prey_disarm_run = "%owner's tail slides over you, forcing you down to the ground!" - - msg_owner_disarm_walk = "You push down on %prey with your tail, pinning them down under you!" - msg_prey_disarm_walk = "%owner pushes down on you with their tail, pinning you down below them!" - - msg_owner_harm_run = "Your heavy tail carelessly slides past %prey, crushing them!" - msg_prey_harm_run = "%owner quickly goes over your body, carelessly crushing you with their heavy tail!" - - msg_owner_harm_walk = "Your heavy tail slowly and methodically slides down upon %prey, crushing against the floor below!" - msg_prey_harm_walk = "%owner's thick, heavy tail slowly and methodically slides down upon your body, mercilessly crushing you into the floor below!" - - msg_owner_grab_success = "You slither over %prey with your large, thick tail, smushing them against the ground before coiling up around them, trapping them within the tight confines of your tail!" - msg_prey_grab_success = "%owner slithers over you with their large, thick tail, smushing you against the ground before coiling up around you, trapping you within the tight confines of their tail!" - - msg_owner_grab_fail = "You squish %prey under your large, thick tail, forcing them onto the ground!" - msg_prey_grab_fail = "%owner pins you under their large, thick tail, forcing you onto the ground!" - - msg_prey_stepunder = "You jump over %prey's thick tail." - msg_owner_stepunder = "%owner bounds over your tail." +/datum/sprite_accessory/tail/taur/ch/naga/synthnaga + name = "Synthetic Naga dual-color (Taur)" + icon_state = "synthnaga" + extra_overlay = "synthnaga_belly" /datum/sprite_accessory/tail/taur/ch/horse/scoli name = "Scolipede (Taur)" diff --git a/modular_chomp/code/modules/organs/organ_external.dm b/modular_chomp/code/modules/organs/organ_external.dm index 73e00426c0..f88cfc0bb3 100644 --- a/modular_chomp/code/modules/organs/organ_external.dm +++ b/modular_chomp/code/modules/organs/organ_external.dm @@ -1,5 +1,6 @@ /obj/item/organ/external - var/prosthetic_digi = FALSE //CHOMPStation edit - when it's prosthetic, can it be a digitigrade + var/skip_robo_icon = FALSE //CHOMPStation edit - to force it to use the normal species icon + var/digi_prosthetic = FALSE //is it a prosthetic that can be digitigrade //new function to check for markings /obj/item/organ/external/proc/is_hidden_by_markings() diff --git a/modular_chomp/code/modules/organs/organ_icon.dm b/modular_chomp/code/modules/organs/organ_icon.dm index 339a45a4f6..0480b9a584 100644 --- a/modular_chomp/code/modules/organs/organ_icon.dm +++ b/modular_chomp/code/modules/organs/organ_icon.dm @@ -4,14 +4,14 @@ // preferentially take digitigrade value from owner if available, THEN DNA. // this allows limbs to be set properly when being printed in the bioprinter without an owner // this also allows the preview mannequin to update properly because customisation topic calls don't call a DNA check + var/check_digi = istype(src,/obj/item/organ/external/leg) || istype(src,/obj/item/organ/external/foot) if(owner) - digitigrade = owner.digitigrade && (istype(src,/obj/item/organ/external/leg) || istype(src,/obj/item/organ/external/foot)) + digitigrade = check_digi && owner.digitigrade else if(dna) - digitigrade = dna.digitigrade && (istype(src,/obj/item/organ/external/leg) || istype(src,/obj/item/organ/external/foot)) - - var/robotic_digi = prosthetic_digi && digitigrade //could make it so the prosthetic digi var is more of a "does this limb have a custom digitigrade sprite for its robospriting" but this is fine for now + digitigrade = check_digi && dna.digitigrade var/gender = "m" + var/skip_forced_icon = skip_robo_icon || (digi_prosthetic && digitigrade) if(owner && owner.gender == FEMALE) gender = "f" @@ -20,7 +20,7 @@ else icon_cache_key = "[icon_name]_[force_icon_key]" - if(force_icon && !robotic_digi) + if(force_icon && !skip_forced_icon) mob_icon = new /icon(force_icon, "[icon_name][gendered_icon ? "_[gender]" : ""]") else if(!dna) @@ -37,7 +37,7 @@ if(skeletal) mob_icon = new /icon('icons/mob/human_races/r_skeleton.dmi', "[icon_name][gender ? "_[gender]" : ""]") - else if (robotic >= ORGAN_ROBOT && !robotic_digi) + else if (robotic >= ORGAN_ROBOT && !skip_forced_icon) mob_icon = new /icon('icons/mob/human_races/robotic.dmi', "[icon_name][gender ? "_[gender]" : ""]") apply_colouration(mob_icon) else @@ -48,22 +48,24 @@ mob_icon = new /icon(digitigrade ? species.icodigi : species.get_icobase(owner, (status & ORGAN_MUTATED)), "[icon_name][gender ? "_[gender]" : ""]") apply_colouration(mob_icon) - if (model && !robotic_digi) + if (model && !skip_forced_icon) icon_cache_key += "_model_[model]" apply_colouration(mob_icon) //Code here is copied from organ_icon.dm line 118 at time of writing (9/20/21), VOREStation edits are left in intentionally, because I think it's worth keeping track of the fact that the code is from Virgo's edits. //Body markings, actually does not include head this time. Done separately above. - if((!istype(src,/obj/item/organ/external/head) && !(force_icon && !robotic_digi)) || (model && owner && owner.synth_markings)) + if((!istype(src,/obj/item/organ/external/head) && !(force_icon && !skip_forced_icon)) || (model && owner && owner.synth_markings)) for(var/M in markings) var/datum/sprite_accessory/marking/mark_style = markings[M]["datum"] - var/isdigitype = istype(mark_style,/datum/sprite_accessory/marking/digi) - if(!(digitigrade ^ isdigitype)) //Equivalent to XNOR; this code will only run if either both digitigrade and isdigitype are true, or if both are false. - var/icon/mark_s = new/icon("icon" = mark_style.icon, "icon_state" = "[mark_style.icon_state]-[organ_tag]") - mark_s.Blend(markings[M]["color"], mark_style.color_blend_mode) // VOREStation edit - add_overlay(mark_s) //So when it's not on your body, it has icons - mob_icon.Blend(mark_s, ICON_OVERLAY) //So when it's on your body, it has icons - icon_cache_key += "[M][markings[M]["color"]]" + var/isdigitype = mark_style.digitigrade_acceptance + if(check_digi) + if (!(isdigitype & (digitigrade ? MARKING_DIGITIGRADE_ONLY : MARKING_NONDIGI_ONLY))) //checks flags based on which digitigrade type the limb is + continue + var/icon/mark_s = new/icon("icon" = digitigrade ? mark_style.digitigrade_icon : mark_style.icon, "icon_state" = "[mark_style.icon_state]-[organ_tag]") + mark_s.Blend(markings[M]["color"], mark_style.color_blend_mode) // VOREStation edit + add_overlay(mark_s) //So when it's not on your body, it has icons + mob_icon.Blend(mark_s, ICON_OVERLAY) //So when it's on your body, it has icons + icon_cache_key += "[M][markings[M]["color"]]" if(body_hair && islist(h_col) && h_col.len >= 3) var/cache_key = "[body_hair]-[icon_name]-[h_col[1]][h_col[2]][h_col[3]]" if(!limb_icon_cache[cache_key]) @@ -73,7 +75,7 @@ mob_icon.Blend(limb_icon_cache[cache_key], ICON_OVERLAY) // VOREStation edit start - if(nail_polish && (force_icon && !robotic_digi)) + if(nail_polish && !(force_icon && !skip_forced_icon)) var/icon/I = new(nail_polish.icon, nail_polish.icon_state) I.Blend(nail_polish.color, ICON_MULTIPLY) add_overlay(I) diff --git a/modular_chomp/code/modules/overmap/dynamic_sector.dm b/modular_chomp/code/modules/overmap/dynamic_sector.dm new file mode 100644 index 0000000000..8ba806f69c --- /dev/null +++ b/modular_chomp/code/modules/overmap/dynamic_sector.dm @@ -0,0 +1,358 @@ +// This is an attempt to make space POI's which load/unload on demand, so we can have 50 overmap POI's without +// 50 z-levels (which may lead to OOM). No idea what forces I'm working with, so let's see how poorly this goes. +// Map templates for this system are stored in space_pois.dm. + +GLOBAL_VAR_INIT(dynamic_sector_master, null) +// Also adjust find_z_levels() if you adjust increase dynamic levels, that part is hard-coded so you don't gloss over world.increment_max_z(). +#define MAX_DYNAMIC_LEVELS 3 +#define MAX_DYNAMIC_POI_DIMENSIONS 200 // Keep this an even number if using even world.maxx/maxy. This value MUST +// a large enough static border to fit OM ships. A 30x30 ship means max dimensions must be 60 less than the z-level max +// to keep a 30 turf border on each side of the load/unload area. + +// The "master" object, which creates + stores + registers the actual z-levels used for dynamic POI's. Handles overmap +// sanity checks, + procs, should not be directly accessible by players. Do not use in maps. Only 1 should exist currently. +/obj/effect/overmap/visitable/dynamic + name = "DO NOT USE IN MAPS" + known = FALSE + scannable = FALSE + invisibility = 101 + in_space = TRUE + scanner_desc = "You should not see this." + var/generated_z = FALSE + var/base_area = /area/space + + // Initialized to match max dynamic levels. + map_z = list(null,null,null) + + // Overmap poi's CURRENTLY USING a z-level. Dynamic POI's get referenced here when loading in and removed when unloaded. + // Length must match map_z length or bad things may happen. + var/list/active_pois[MAX_DYNAMIC_LEVELS] + + // Reference list of shuttle landmarks for each z-level. Used to register/unregister shuttle landmarks in POI's. + var/list/shuttle_landmarks[MAX_DYNAMIC_LEVELS] + var/list/all_children = list() + + +// This handles generating and assigning z-levels. Overriding this proc means we don't need a hacky Initialize() override. +// This means extra_z_levels won't do anything, which is intentional. +/obj/effect/overmap/visitable/dynamic/find_z_levels() + if(!generated_z && (GLOB.dynamic_sector_master == src)) // Ensure this only runs once per round. + for(var/i = 1; i <= 3; i++) // Hard-coding limit because this is dangerous. + world.increment_max_z() + map_z[i] = world.maxz + // Spawn shuttle_landmarks near the lower x border, aligned with the POI spawning turf. These move during POI generation. + var/turf/T = locate(10, round(world.maxy/2), map_z[i]) + if(istype(T)) + var/list/spawn_directions = list() // Stores a landmark for each direction. + for(var/direction in list("FORE", "PORT", "AFT", "STARBOARD")) + var/obj/effect/shuttle_landmark/om_poi/S = new(T, "Subspace sector [i] - [direction]", "dynamic_sector_[i] - [direction]") + spawn_directions[direction] = S + shuttle_landmarks[i] = spawn_directions + generated_z = TRUE + +/obj/effect/overmap/visitable/dynamic/Initialize() + if(!GLOB.dynamic_sector_master) + GLOB.dynamic_sector_master = src + . = ..() + if(ispath(base_area)) + var/area/spehss = locate(base_area) + if(!istype(spehss)) + CRASH("Dynamic POI generation couldn't locate area [base_area].") + base_area = spehss + create_children() + +// Create POI objects for each overmap POI template, link to parent. Initialize() of children handles turf assignment +/obj/effect/overmap/visitable/dynamic/proc/create_children() + for(var/datum/map_template/dynamic_overmap/poi as anything in subtypesof(/datum/map_template/dynamic_overmap)) + if(!initial(poi.mappath) || !initial(poi.name) || (initial(poi.block_size) > MAX_DYNAMIC_POI_DIMENSIONS)) // Exclude templates without an actual map or are too big (or are not included in the mapping subsystem map_templates) + continue + var/obj/effect/overmap/visitable/dynamic/poi/P = new() + P.my_template = SSmapping.map_templates[initial(poi.name)] // Link to the stored map datums. + P.parent = src + all_children.Add(P) + P.seed_overmap() + +// Randomly unload a child POI, if possible. Returns the index of the recovered level if successful, 0 if not. +// Should only be called if active_pois[] is full. +/obj/effect/overmap/visitable/dynamic/proc/cull_child(mob/user) + var/random_index = rand(1,MAX_DYNAMIC_LEVELS) + var/obj/effect/overmap/visitable/dynamic/poi/P + + // User selection. Remains random if user cancels. + if(user) + P = tgui_input_list(user, "Would you like to choose which link to sever?", "Sever link", active_pois) + if(P && istype(P) && src.is_empty(P.my_index)) + random_index = P.my_index + P.destroy_poi(user) + active_pois[random_index] = null + return random_index + else + return 0 + + if(is_empty(random_index)) // If this z-level is empty, destroy the poi + P = active_pois[random_index] + P.destroy_poi(user) + active_pois[random_index] = null // Should be set in destroy_poi but this lets us use the z-level again if anything goes horribly wrong. + return random_index + + for(var/i = 1, i <= MAX_DYNAMIC_LEVELS, i++) // Level was not empty, check remaining levels + if(i == random_index) + continue // Don't run this one again. + if(is_empty(i)) + P = active_pois[i] + P.destroy_poi(user) + active_pois[i] = null + return i + return 0 + +/obj/effect/overmap/visitable/dynamic/proc/is_empty(var/index, var/mob/observer) + if(!LAZYLEN(map_z)) + log_and_message_admins("CANARY: [src] tried to check is_empty, but map_z is `[map_z || "null"]`") + return TRUE + if(!index) + index = 1 + testing("Checking if sector at [map_z[index]] has no players.") + for(var/mob/M in global.player_list) + if(M != observer && (M.z == map_z[index])) + testing("There are people on it.") + return FALSE + return TRUE + +// You generally shouldn't destroy these. +/obj/effect/overmap/visitable/dynamic/Destroy() + for(var/child in all_children) + qdel(child) + return ..() + +// These are the player-viewable/interactible POI's which tell the parent how to use its z-levels. Spawned by the parent. +/obj/effect/overmap/visitable/dynamic/poi + name = "bluespace static" + unknown_name = "bluespace static" + unknown_state = "poi" + known = FALSE + scannable = TRUE + invisibility = 0 + in_space = TRUE + map_z = list(null) // Override parent value + active_pois = null + var/obj/effect/overmap/visitable/dynamic/parent // The object which created us. + var/datum/map_template/dynamic_overmap/my_template + var/last_scanned = 0 // Timer to prevent spamming POI loading/unloading since that's probably exploitable. + var/loaded = FALSE + var/my_index = 0 // Tracks which z-level we're using in the parent. Corresponds to index in parent's active_pois[] + +/obj/effect/overmap/visitable/dynamic/poi/Initialize() + if(!global.using_map.use_overmap) + return INITIALIZE_HINT_QDEL + +// Normally Initialize() would do this but I need it to call after Initialize(), therefore new proc. +/obj/effect/overmap/visitable/dynamic/poi/proc/seed_overmap() + start_x = start_x || rand(OVERMAP_EDGE, global.using_map.overmap_size - OVERMAP_EDGE) + start_y = start_y || rand(OVERMAP_EDGE, global.using_map.overmap_size - OVERMAP_EDGE) + + forceMove(locate(start_x, start_y, global.using_map.overmap_z)) + + for(var/obj/effect/overmap/visitable/dynamic/poi/P in loc.contents) // If we've spawned on another poi, we'll try again once. + if(P == src) + continue + start_x = start_x || rand(OVERMAP_EDGE, global.using_map.overmap_size - OVERMAP_EDGE) + start_y = start_y || rand(OVERMAP_EDGE, global.using_map.overmap_size - OVERMAP_EDGE) + forceMove(locate(start_x, start_y, global.using_map.overmap_z)) + break + + if(!docking_codes) + docking_codes = "[ascii2text(rand(65,90))][ascii2text(rand(65,90))][ascii2text(rand(65,90))][ascii2text(rand(65,90))]" + + if(known) + plane = PLANE_LIGHTING_ABOVE + for(var/obj/machinery/computer/ship/helm/H in global.machines) + H.get_known_sectors() + else + real_appearance = image(icon, src, my_template.poi_icon) + real_appearance.override = TRUE + name = unknown_name + icon_state = unknown_state + color = null + desc = "Scan this to find out more information." + +// Grab scanner info from map template, allow the user to load/unload POI's. +/obj/effect/overmap/visitable/dynamic/poi/get_scan_data(user) + scanner_desc = my_template.scanner_desc + if(!known) + known = TRUE + name = my_template.name + icon_state = my_template.poi_icon + color = my_template.poi_color + desc = initial(desc) + + if(loaded) + var/confirm = alert(user, "Sever bluespace link? This location will become permanently inaccessible.", "Are you sure?", "No", "Yes") + if(confirm == "Yes") + if(is_empty(1)) // Dynamic POI's should only ever have 1 entry in map_z + destroy_poi(user) // Delete POI from dynamic z-level + else + to_chat(user, "Unable to sever link. Location likely contains living realspace entities.") + else + var/confirm = alert(user, "Transient subspace anomaly detected. Tether object to realspace?", "Stabilize anomaly?", "Yes", "No") + if(confirm == "Yes") + create_poi(user) // Load POI to dynamic z-level + + return ..() + +// Loads POI template into a dynamic z-level +/obj/effect/overmap/visitable/dynamic/poi/proc/create_poi(mob/user) + if(!parent) // Ideally this should never happen. + log_and_message_admins("Dynamic overmap POI attempted to generate without a parent z-level.") + qdel(src) + return + if(!my_template) // Also shouldn't happen. + log_and_message_admins("Dynamic overmap POI attempted to generate without a map template.") + qdel(src) + return + if(loaded) // These may only be created once. + return + if(last_scanned + 10 SECONDS > world.time) + to_chat(user, "\[REDACTED\] matrix is still recharging!") + return + last_scanned = world.time + + for(var/i = 1, i <= MAX_DYNAMIC_LEVELS, i++) + if(!parent.active_pois[i]) // We found an unused z-level + my_index = i + parent.active_pois[i] = src + map_z[1] = parent.map_z[i] + map_sectors["[parent.map_z[i]]"] = src // Pass ownership of z-level to child, probably hacky and terribad, also mandatory for using forceMove() on shuttle landmarks + break // Terminate loop + if(!my_index) // No z-levels available + var/confirm = alert(user, "\[REDACTED\] matrix at capacity; a bluespace link must be permanently severed to stabilize this anomaly. Continue?", "Are you sure?", "No", "Yes") + if(confirm == "Yes") + my_index = parent.cull_child(user) + if(my_index) + parent.active_pois[my_index] = src + map_z[1] = parent.map_z[my_index] + map_sectors["[parent.map_z[my_index]]"] = src + else // Something went wrong, ideally due to all relevant z-levels containing players. + to_chat(user, "Unable to sever any bluespace link. All links likely contain living realspace entities.") + return + else + return + + var/turf/T = locate(round(world.maxx/2), round(world.maxy/2), map_z[1]) // Find center turf, or near center for even-dimension maps. + if(!istype(T)) + log_debug("Dynamic overmap POI found [T] instead of a valid turf.") + return + + // Move the shuttle landmarks. + var/list/landmark_directions = parent.shuttle_landmarks[my_index] // Each shuttle_landmarks entry is an associative list. + var/obj/effect/shuttle_landmark/om_poi/S = landmark_directions["FORE"] + S.forceMove(locate(T.x, min(world.maxy, T.y + round(src.my_template.block_size/2) + rand(10,20)), T.z)) // Above + add_landmark(S) // This lets overmap shuttles find our newly assigned z-level. + S = landmark_directions["AFT"] + S.forceMove(locate(T.x, max(1, T.y - round(src.my_template.block_size/2) - rand(10,20)), T.z))// Below + add_landmark(S) + S = landmark_directions["PORT"] + S.forceMove(locate(max(1, T.x - round(src.my_template.block_size/2) - rand(10,20)), T.y, T.z)) // Left + add_landmark(S) + S = landmark_directions["STARBOARD"] + S.forceMove(locate(min(world.maxx, T.x + round(src.my_template.block_size/2) + rand(10,20)), T.y, T.z)) // Right + add_landmark(S) + + my_template.load(T, centered=TRUE) + loaded = TRUE + my_template.update_lighting(T) + to_chat(user, "Stabilization tether successfully created.") + if(my_template.active_icon) + icon_state = my_template.active_icon + +/obj/effect/overmap/visitable/dynamic/poi/proc/destroy_poi(mob/user) + if(!loaded) // Ideally this should never happen. + log_debug("Dynamic overmap POI tried to unload itself but is not loaded.") + return + if(!parent) // Also shouldn't happen. + log_and_message_admins("Dynamic overmap POI attempted to unload without a parent z-level.") + loaded = FALSE // Always make sure loaded = FALSE before using qdel(src) in this proc to prevent an infinite loop in Destroy(). + qdel(src) + return + if(!((my_index >= 1) && (my_index <= MAX_DYNAMIC_LEVELS))) // Make sure my_index is sane + log_debug("Dynamic overmap POI attempted to unload with an invalid index.") + loaded = FALSE + qdel(src) + return + + map_sectors["[parent.map_z[my_index]]"] = parent // Pass ownership back to parent. + parent.active_pois[my_index] = null + if(!LAZYLEN(map_z)) // If this is 0, how did we get this far? + log_and_message_admins("Dynamic overmap POI attempted to unload without a linked z-level.") + loaded = FALSE + qdel(src) + return + + to_chat(user, "Destabilization initiated...") + log_debug("Dynamic overmap POI unloading initiated...") + // Some math to return a block of block_size turfs (+ 1 to each dimension to account for even-size maps lacking a true center to safely do math with). Basically, start from center turf and subtract half of block_size for bottom left corner, add for top right corner. + var/list/turfs_to_reset = block(locate(round(world.maxx/2 - my_template.block_size/2 - 1), round(world.maxy/2 - my_template.block_size/2 - 1), map_z[1]), locate(round(world.maxx/2 + my_template.block_size/2 + 1), round(world.maxy/2 + my_template.block_size/2 + 1), map_z[1])) + var/deleted_atoms = 0 + if(turfs_to_reset.len) + var/area/A = parent.base_area + if(ispath(A)) + A = locate(A) + if(!istype(A)) + CRASH("Dynamic POI unloading couldn't locate area [A], unload aborted.") + + for(var/turf/T in turfs_to_reset) + for(var/atom/movable/AM in T) + if(istype(AM, /mob/observer)) + continue + ++deleted_atoms + qdel(AM) + ChangeArea(T, A) + T = T.ChangeTurf(/turf/space) + loaded = FALSE + map_z = null + icon_state = "ring_destroyed" + log_debug("Dynamic POI unload complete, [deleted_atoms] atoms destroyed.") + to_chat(user, "Subspace pocket collapse successful.") + qdel(src) + +/obj/effect/overmap/visitable/dynamic/poi/Destroy() + if(loaded) + if(is_empty()) // If we're deleted while loaded but the z-level is occupied, relinquish ownership instead. + destroy_poi() + else + if(parent && (parent.active_pois.len >= my_index) && (parent.map_z.len >= my_index) && (my_index > 0)) // Unless vars are turbofucked. + map_sectors["[parent.map_z[my_index]]"] = parent + parent.active_pois[my_index] = null + if(parent) + parent.all_children.Remove(src) + return ..() + +// This assigns map_sectors which we don't want for this subtype since we have other procs to handle it. +/obj/effect/overmap/visitable/dynamic/poi/register_z_levels() + return + +// Make sure we reassign our z_level to the parent if one exists and somehow this gets called. +/obj/effect/overmap/visitable/dynamic/poi/unregister_z_levels() + if(parent && LAZYLEN(map_z)) + map_sectors["[map_z[1]]"] = parent + map_z = null + return ..() + +// Hahah recursion +/obj/effect/overmap/visitable/dynamic/poi/create_children() + return + +/obj/effect/overmap/visitable/dynamic/poi/cull_child() + return + +/obj/effect/shuttle_landmark/om_poi // Landmarks used in dynamic poi generation + flags = SLANDMARK_FLAG_AUTOSET + base_area = /area/space + base_turf = /turf/space + +/obj/effect/shuttle_landmark/om_poi/Initialize(mapload, var/new_name, var/new_tag) + name = new_name + landmark_tag = new_tag + . = ..() + +#undef MAX_DYNAMIC_LEVELS +#undef MAX_DYNAMIC_POI_DIMENSIONS diff --git a/modular_chomp/code/modules/player_tips/player_tips_list.dm b/modular_chomp/code/modules/player_tips/player_tips_list.dm index 5cf9050953..7eca04deb3 100644 --- a/modular_chomp/code/modules/player_tips/player_tips_list.dm +++ b/modular_chomp/code/modules/player_tips/player_tips_list.dm @@ -21,7 +21,7 @@ When editing the list, please try and keep similar probabilities near each other switch(choice) if("general") - var/info = "The following is a general tip to playing on CHOMPStation! \n" + var/info = "The following is a general tip to playing on CHOMPStation! You can disable them using the periodic tips toggle in the Global tab of character setup! \n" return pick( prob(60); "[info] Got a question about gameplay, roleplay or the setting? Press F1 to Mentorhelp!", prob(60); "[info] We have a wiki that is actively updated! Please check it out at https://wiki.chompstation13.net/index.php/Chomp_Station_Wiki for help!", @@ -36,7 +36,7 @@ When editing the list, please try and keep similar probabilities near each other if("gameplay") - var/info = "The following is a gameplay-focused tip to playing on CHOMPStation \n" + var/info = "The following is a gameplay-focused tip to playing on CHOMPStation! You can disable them using the periodic tips toggle in the Global tab of character setup! \n" return pick( prob(50); "[info] To talk to your fellow coworkers, use ';'! You may append it by an exclamation mark, like ';!' to perform an audiable emote. ", prob(50); "[info] Lost on the map? You can find In-Character help by speaking on the Common Radio. You can do this by pressing F3 and typing ' ; ' before your message. Your fellow co-workers will likely help. If OOC help is preferred, press F1 for mentorhelp. ", @@ -47,11 +47,13 @@ When editing the list, please try and keep similar probabilities near each other prob(25); "[info] Emergency Fire Doors seal breaches and keep active fires out. Please do not open them without good reason. SHIFT + CLICK them to get temperature and atmospheric pressure readings.", prob(25); "[info] The kitchen's Oven can fit multiple ingredients in one slot if you pull the baking tray out first. This is required for most recipes, and the Grille and Deep Frier work the same way!", prob(10); "[info] Not every hostile NPC you encounter while mining or exploring need to be defeated. Sometimes, it's better to avoid or run away from them.", - prob(1); "[info] Stay robust, my friends." + prob(1); "[info] Stay robust, my friends.", + prob(35); "[info] You can insert your I.D into your PDA. This frees up your belt from having to carry your PDA. Furthermore, by clicking and dragging the PDA to game screen, you can use it without holding it!", + prob(35); "[info] Your vore-bellies have multiple add-ons! Muffling is excellent to ensure your prey does not accidentally inform everyone about their predicament, and jam suit sensors is a great courtesy to avoid medical being worried about your prey!" ) if("roleplay") - var/info = "The following is a roleplay-focused tip to playing on CHOMPStation \n" + var/info = "The following is a roleplay-focused tip to playing on CHOMPStation! You can disable them using the periodic tips toggle in the Global tab of character setup! \n" return pick( prob(50); "[info] Having difficulty finding scenes? The number one tip that people should take for finding scenes is to be active! Generally speaking, people are more likely to interact with you if you are moving about and doing things. Don't be afraid to talk to people, you're less likely to be approached if you're sat alone at a table silently. People that are looking for scenes generally like to see how you type and RP before they'll start working towards a scene with you.", prob(50); "[info] Please avoid a character that knows everything. Having only a small set of jobs you are capable of doing can help flesh out your character! It's OK for things to break and fail if nobody is around to fix it - you do not need to do others' jobs.", @@ -60,11 +62,16 @@ When editing the list, please try and keep similar probabilities near each other prob(25); "[info] It is a good idea to wait a few moments after using mechanics like lick, hug or headpat on another player. They might be typing up a response or wish to reciprocate, and if you run away you might miss out!", prob(25); "[info] Participating in an away mission and see something acting strange? Try emoting or talking to it before resorting to fighting. It may be a GM event!", prob(15); "[info] We are a medium roleplay server. This does not neccessarily mean 'serious' roleplay, levity and light-hearted RP is more than welcome! Please do not ignore people just because it is unlikely you will be able to scene.", - prob(10); "[info] Sending faxes to central command, using the 'pray' verb or pressing F1 to ahelp are highly encouraged when exploring the gateway or overmap locations! Letting GMs know something fun is happening allows them to spice things up and make the world feel alive!" + prob(10); "[info] Sending faxes to central command, using the 'pray' verb or pressing F1 to ahelp are highly encouraged when exploring the gateway or overmap locations! Letting GMs know something fun is happening allows them to spice things up and make the world feel alive!", + prob(40); "[info] Just because you see something doesn't mean your character has to. A courtesy 'missing' of contraband or scene details can go a long way towards preserving everyone's fun!", + prob(25); "[info] It is always a good idea to communicate on your department's private channel (whose key you can learn by examining your headset) when responding to an emergency! This lets your coworkers know if they might be needed!", + prob(25); "[info] While following the SOP is not mandatory, and you are free to break it (albeit, with potential in-character consequences), departments like security and medical do well to be familiar with them! https://wiki.chompstation13.net/index.php/Standard_Operating_Procedure", + prob(25); "[info] Think a player is acting especially antagonistic? It might be better to Ahelp (with F1) rather than try to deal with it icly, staff can make sure it's all okay.", + prob(20); "[info] See a minor infraction as Security with a minimal time punishment? Consider using your ticket printer to give a non obtrusive punishment." ) if("lore") - var/info = "The following is tip for understanding the lore of CHOMPStation \n" + var/info = "The following is tip for understanding the lore of CHOMPStation! You can disable them using the periodic tips toggle in the Global tab of character setup! \n" return pick( prob(25); "[info] Our lore is somewhat in line with other servers. But not Virgo's. They wrote themselves out of the timeline, lol. The year is 2564 (current year+541).", prob(75); "[info] You can find a short summary of our setting that everyone should know at https://wiki.chompstation13.net/index.php/Lore", diff --git a/modular_chomp/code/modules/projectiles/guns/phase.dm b/modular_chomp/code/modules/projectiles/guns/phase.dm new file mode 100644 index 0000000000..85fe7d305e --- /dev/null +++ b/modular_chomp/code/modules/projectiles/guns/phase.dm @@ -0,0 +1,6 @@ +/obj/item/weapon/gun/energy/locked/phasegun/rifle/unlocked/mounted + name = "mounted phase rifle" + self_recharge = 1 + use_external_power = 1 + recharge_time = 10 + one_handed_penalty = 0 \ No newline at end of file diff --git a/code/modules/research/mechfab_designs_ch.dm b/modular_chomp/code/modules/research/mechfab_designs.dm similarity index 76% rename from code/modules/research/mechfab_designs_ch.dm rename to modular_chomp/code/modules/research/mechfab_designs.dm index f97584eebf..affd4bb406 100644 --- a/code/modules/research/mechfab_designs_ch.dm +++ b/modular_chomp/code/modules/research/mechfab_designs.dm @@ -1,112 +1,137 @@ -/datum/design/item/mecha/phoron_bore - name = "PB-23 \"Phobos\" Phoron Bore" - category = list("Exosuit Equipment") - id ="mech_phoron_bore" - req_tech = list(TECH_POWER = 5, TECH_PHORON = 5, TECH_MATERIAL = 5) - materials = list(MAT_PLASTEEL = 4000, "phoron" = 10000, "silver" = 2000) - build_path =/obj/item/mecha_parts/mecha_equipment/weapon/phoron_bore - -/datum/design/item/mechfab/scarab - category = list("Scarab") - -/datum/design/item/mechfab/scarab/chassis - name = "Scarab Chassis" - id = "scarab_chassis" - build_path = /obj/item/mecha_parts/chassis/scarab - time = 10 - materials = list(DEFAULT_WALL_MATERIAL = 15000) - -/datum/design/item/mechfab/scarab/torso - name = "Scarab Torso" - id = "scarab_torso" - build_path = /obj/item/mecha_parts/part/scarab_torso - time = 30 - materials = list(DEFAULT_WALL_MATERIAL = 30000, "glass" = 10000) - -/datum/design/item/mechfab/scarab/head - name = "Scarab Head" - id = "scarab_head" - build_path = /obj/item/mecha_parts/part/scarab_head - time = 20 - materials = list(DEFAULT_WALL_MATERIAL = 12500, "glass" = 5000) - -/datum/design/item/mechfab/scarab/left_arm - name = "Scarab Left Arm" - id = "scarab_left_arm" - build_path = /obj/item/mecha_parts/part/scarab_left_arm - time = 20 - materials = list(DEFAULT_WALL_MATERIAL = 10000) - -/datum/design/item/mechfab/scarab/right_arm - name = "Scarab Right Arm" - id = "scarab_right_arm" - build_path = /obj/item/mecha_parts/part/scarab_right_arm - time = 20 - materials = list(DEFAULT_WALL_MATERIAL = 10000) - -/datum/design/item/mechfab/scarab/left_leg - name = "Scarab Left Legs" - id = "scarab_left_legs" - build_path = /obj/item/mecha_parts/part/scarab_left_legs - time = 20 - materials = list(DEFAULT_WALL_MATERIAL = 30000) - -/datum/design/item/mechfab/scarab/right_leg - name = "Scarab Right Legs" - id = "scarab_right_legs" - build_path = /obj/item/mecha_parts/part/scarab_right_legs - time = 20 - materials = list(DEFAULT_WALL_MATERIAL = 30000) - -/datum/design/item/mechfab/phazon - category = list("Phazon") - req_tech = list(TECH_MATERIAL = 7, TECH_BLUESPACE = 5, TECH_MAGNET = 6, TECH_PHORON = 3, TECH_ARCANE = 1) - -/datum/design/item/mechfab/phazon/chassis - name = "Phazon Chassis" - id = "phazon_chassis" - build_path = /obj/item/mecha_parts/chassis/phazon - time = 10 - materials = list(DEFAULT_WALL_MATERIAL = 30000, MAT_DURASTEEL = 4000, MAT_PHORON = 4000, MAT_GOLD = 5000, MAT_VERDANTIUM = 4000) - -/datum/design/item/mechfab/phazon/torso - name = "Phazon Torso" - id = "phazon_torso" - build_path = /obj/item/mecha_parts/part/phazon_torso - time = 30 - materials = list(DEFAULT_WALL_MATERIAL = 30000, MAT_DURASTEEL = 2000, MAT_PHORON = 6000, MAT_GOLD = 6000, MAT_VERDANTIUM = 2000) - -/datum/design/item/mechfab/phazon/head - name = "Phazon Head" - id = "phazon_head" - build_path = /obj/item/mecha_parts/part/phazon_head - time = 20 - materials = list(DEFAULT_WALL_MATERIAL = 10000, MAT_DURASTEEL = 1000, MAT_PHORON = 4000, MAT_GOLD = 4000, MAT_VERDANTIUM = 500) - -/datum/design/item/mechfab/phazon/left_arm - name = "Phazon Left Arm" - id = "phazon_left_arm" - build_path = /obj/item/mecha_parts/part/phazon_left_arm - time = 20 - materials = list(DEFAULT_WALL_MATERIAL = 15000, MAT_PHORON = 2000, MAT_GOLD = 2000, MAT_VERDANTIUM = 500) - -/datum/design/item/mechfab/phazon/right_arm - name = "Phazon Right Arm" - id = "phazon_right_arm" - build_path = /obj/item/mecha_parts/part/phazon_right_arm - time = 20 - materials = list(DEFAULT_WALL_MATERIAL = 15000, MAT_PHORON = 2000, MAT_GOLD = 2000, MAT_VERDANTIUM = 500) - -/datum/design/item/mechfab/phazon/left_leg - name = "Phazon Left Leg" - id = "phazon_left_leg" - build_path = /obj/item/mecha_parts/part/phazon_left_leg - time = 20 - materials = list(DEFAULT_WALL_MATERIAL = 15000, MAT_PHORON = 2000, MAT_GOLD = 2000, MAT_VERDANTIUM = 500) - -/datum/design/item/mechfab/phazon/right_leg - name = "Phazon Right Leg" - id = "phazon_right_leg" - build_path = /obj/item/mecha_parts/part/phazon_right_leg - time = 20 - materials = list(DEFAULT_WALL_MATERIAL = 15000, MAT_PHORON = 2000, MAT_GOLD = 2000, MAT_VERDANTIUM = 500) +/datum/design/item/mechfab/rigsuit/phase + name = "hardsuit phase rifle" + desc = "A compact phase rifle for a hardsuit." + id = "rig_gun_phase" + req_tech = list(TECH_MATERIAL = 5, TECH_ENGINEERING = 4, TECH_MAGNET = 3, TECH_POWER = 4, TECH_COMBAT = 4) + materials = list(DEFAULT_WALL_MATERIAL = 2000, "glass" = 1250) + build_path = /obj/item/rig_module/mounted/phase + +/datum/design/item/mechfab/rigsuit/defib + name = "hardsuit defib unit" + desc = "A rig mounted defib and jumper kit combo." + id = "rig_defib" + req_tech = list(TECH_BIO = 5, TECH_MAGNET = 2, TECH_POWER = 3) + materials = list(DEFAULT_WALL_MATERIAL = 6000, "glass" = 2000) + build_path = /obj/item/rig_module/device/defib + +/datum/design/item/mecha/phoron_bore + name = "PB-23 \"Phobos\" Phoron Bore" + category = list("Exosuit Equipment") + id ="mech_phoron_bore" + req_tech = list(TECH_POWER = 5, TECH_PHORON = 5, TECH_MATERIAL = 5) + materials = list(MAT_PLASTEEL = 4000, "phoron" = 10000, "silver" = 2000) + build_path =/obj/item/mecha_parts/mecha_equipment/weapon/phoron_bore + +/datum/design/item/mechfab/scarab + category = list("Scarab") + +/datum/design/item/mechfab/scarab/chassis + name = "Scarab Chassis" + id = "scarab_chassis" + build_path = /obj/item/mecha_parts/chassis/scarab + time = 10 + materials = list(DEFAULT_WALL_MATERIAL = 15000) + +/datum/design/item/mechfab/scarab/torso + name = "Scarab Torso" + id = "scarab_torso" + build_path = /obj/item/mecha_parts/part/scarab_torso + time = 30 + materials = list(DEFAULT_WALL_MATERIAL = 30000, "glass" = 10000) + +/datum/design/item/mechfab/scarab/head + name = "Scarab Head" + id = "scarab_head" + build_path = /obj/item/mecha_parts/part/scarab_head + time = 20 + materials = list(DEFAULT_WALL_MATERIAL = 12500, "glass" = 5000) + +/datum/design/item/mechfab/scarab/left_arm + name = "Scarab Left Arm" + id = "scarab_left_arm" + build_path = /obj/item/mecha_parts/part/scarab_left_arm + time = 20 + materials = list(DEFAULT_WALL_MATERIAL = 10000) + +/datum/design/item/mechfab/scarab/right_arm + name = "Scarab Right Arm" + id = "scarab_right_arm" + build_path = /obj/item/mecha_parts/part/scarab_right_arm + time = 20 + materials = list(DEFAULT_WALL_MATERIAL = 10000) + +/datum/design/item/mechfab/scarab/left_leg + name = "Scarab Left Legs" + id = "scarab_left_legs" + build_path = /obj/item/mecha_parts/part/scarab_left_legs + time = 20 + materials = list(DEFAULT_WALL_MATERIAL = 30000) + +/datum/design/item/mechfab/scarab/right_leg + name = "Scarab Right Legs" + id = "scarab_right_legs" + build_path = /obj/item/mecha_parts/part/scarab_right_legs + time = 20 + materials = list(DEFAULT_WALL_MATERIAL = 30000) + +/datum/design/item/mechfab/phazon + category = list("Phazon") + req_tech = list(TECH_MATERIAL = 7, TECH_BLUESPACE = 5, TECH_MAGNET = 6, TECH_PHORON = 3, TECH_ARCANE = 1) + +/datum/design/item/mechfab/phazon/chassis + name = "Phazon Chassis" + id = "phazon_chassis" + build_path = /obj/item/mecha_parts/chassis/phazon + time = 10 + materials = list(DEFAULT_WALL_MATERIAL = 30000, MAT_DURASTEEL = 4000, MAT_PHORON = 4000, MAT_GOLD = 5000, MAT_VERDANTIUM = 4000) + +/datum/design/item/mechfab/phazon/torso + name = "Phazon Torso" + id = "phazon_torso" + build_path = /obj/item/mecha_parts/part/phazon_torso + time = 30 + materials = list(DEFAULT_WALL_MATERIAL = 30000, MAT_DURASTEEL = 2000, MAT_PHORON = 6000, MAT_GOLD = 6000, MAT_VERDANTIUM = 2000) + +/datum/design/item/mechfab/phazon/head + name = "Phazon Head" + id = "phazon_head" + build_path = /obj/item/mecha_parts/part/phazon_head + time = 20 + materials = list(DEFAULT_WALL_MATERIAL = 10000, MAT_DURASTEEL = 1000, MAT_PHORON = 4000, MAT_GOLD = 4000, MAT_VERDANTIUM = 500) + +/datum/design/item/mechfab/phazon/left_arm + name = "Phazon Left Arm" + id = "phazon_left_arm" + build_path = /obj/item/mecha_parts/part/phazon_left_arm + time = 20 + materials = list(DEFAULT_WALL_MATERIAL = 15000, MAT_PHORON = 2000, MAT_GOLD = 2000, MAT_VERDANTIUM = 500) + +/datum/design/item/mechfab/phazon/right_arm + name = "Phazon Right Arm" + id = "phazon_right_arm" + build_path = /obj/item/mecha_parts/part/phazon_right_arm + time = 20 + materials = list(DEFAULT_WALL_MATERIAL = 15000, MAT_PHORON = 2000, MAT_GOLD = 2000, MAT_VERDANTIUM = 500) + +/datum/design/item/mechfab/phazon/left_leg + name = "Phazon Left Leg" + id = "phazon_left_leg" + build_path = /obj/item/mecha_parts/part/phazon_left_leg + time = 20 + materials = list(DEFAULT_WALL_MATERIAL = 15000, MAT_PHORON = 2000, MAT_GOLD = 2000, MAT_VERDANTIUM = 500) + +/datum/design/item/mechfab/phazon/right_leg + name = "Phazon Right Leg" + id = "phazon_right_leg" + build_path = /obj/item/mecha_parts/part/phazon_right_leg + time = 20 + materials = list(DEFAULT_WALL_MATERIAL = 15000, MAT_PHORON = 2000, MAT_GOLD = 2000, MAT_VERDANTIUM = 500) + +/datum/design/item/mechfab/rigsuit/precursor + name = "Xenotech Rig" + desc = "A rig made of alien tech and materials." + id = "rigmodule_precursor" + time = 30 + req_tech = list(TECH_MATERIAL = 9, TECH_ENGINEERING = 6, TECH_PHORON = 5, TECH_MAGNET = 6, TECH_POWER = 6, TECH_ILLEGAL = 8, TECH_PRECURSOR = 3) + materials = list(MAT_PLASTEEL = 12000, MAT_GOLD = 5000, MAT_GRAPHITE = 8000, MAT_OSMIUM = 3000, MAT_PLASTIC = 6000, MAT_VERDANTIUM = 7500, MAT_MORPHIUM = 20000) + build_path = /obj/item/weapon/rig/ch/precursor diff --git a/modular_chomp/code/modules/vore/resizing/resize.dm b/modular_chomp/code/modules/vore/resizing/resize.dm index 47abdc30b3..1c12fd14a3 100644 --- a/modular_chomp/code/modules/vore/resizing/resize.dm +++ b/modular_chomp/code/modules/vore/resizing/resize.dm @@ -6,9 +6,8 @@ // And optionally, this could be gated behind another preference, to prevent stunlock being abused. if((mob_always_swap || (a_intent == I_HELP || src.restrained()) && (target.a_intent == I_HELP || target.restrained())) && target.canmove && target.handle_micro_bump_helping(src)) return - else if(!(target.a_intent == I_HELP || target.restrained()) && target.handle_micro_bump_other(src)) + if(!(target.a_intent == I_HELP || target.restrained())) if(src.step_mechanics_pref && target.step_mechanics_pref) target.handle_micro_bump_other(src) else target.handle_micro_bump_other(src, 1) - return diff --git a/modular_chomp/icons/inventory/feet/mob_digi.dmi b/modular_chomp/icons/inventory/feet/mob_digi.dmi index 9165745e2c..16623f1071 100644 Binary files a/modular_chomp/icons/inventory/feet/mob_digi.dmi and b/modular_chomp/icons/inventory/feet/mob_digi.dmi differ diff --git a/modular_chomp/icons/inventory/suit/mob_digi.dmi b/modular_chomp/icons/inventory/suit/mob_digi.dmi index 9ddf8b6761..43ec6bc337 100644 Binary files a/modular_chomp/icons/inventory/suit/mob_digi.dmi and b/modular_chomp/icons/inventory/suit/mob_digi.dmi differ diff --git a/modular_chomp/icons/mob/head_ch.dmi b/modular_chomp/icons/mob/head_ch.dmi index aee9c4d0dd..70a12082aa 100644 Binary files a/modular_chomp/icons/mob/head_ch.dmi and b/modular_chomp/icons/mob/head_ch.dmi differ diff --git a/modular_chomp/icons/mob/human_races/masks/blood_digitigrade.dmi b/modular_chomp/icons/mob/human_races/masks/blood_digitigrade.dmi new file mode 100644 index 0000000000..5980ce30f7 Binary files /dev/null and b/modular_chomp/icons/mob/human_races/masks/blood_digitigrade.dmi differ diff --git a/modular_chomp/icons/mob/raptor_ch.dmi b/modular_chomp/icons/mob/raptor_ch.dmi new file mode 100644 index 0000000000..be5d62f799 Binary files /dev/null and b/modular_chomp/icons/mob/raptor_ch.dmi differ diff --git a/modular_chomp/icons/mob/spacesuit_ch.dmi b/modular_chomp/icons/mob/spacesuit_ch.dmi index df0a72aa26..e4fa4ac43c 100644 Binary files a/modular_chomp/icons/mob/spacesuit_ch.dmi and b/modular_chomp/icons/mob/spacesuit_ch.dmi differ diff --git a/modular_chomp/icons/mob/species/protean/protean.dmi b/modular_chomp/icons/mob/species/protean/protean.dmi index 297432003c..3d3b58e4c6 100644 Binary files a/modular_chomp/icons/mob/species/protean/protean.dmi and b/modular_chomp/icons/mob/species/protean/protean.dmi differ diff --git a/modular_chomp/icons/mob/species/protean/protean128x64.dmi b/modular_chomp/icons/mob/species/protean/protean128x64.dmi new file mode 100644 index 0000000000..5e1139a837 Binary files /dev/null and b/modular_chomp/icons/mob/species/protean/protean128x64.dmi differ diff --git a/modular_chomp/icons/mob/species/protean/protean64x32.dmi b/modular_chomp/icons/mob/species/protean/protean64x32.dmi new file mode 100644 index 0000000000..3c80fe3bd3 Binary files /dev/null and b/modular_chomp/icons/mob/species/protean/protean64x32.dmi differ diff --git a/modular_chomp/icons/mob/species/protean/protean64x64.dmi b/modular_chomp/icons/mob/species/protean/protean64x64.dmi new file mode 100644 index 0000000000..6f5e008dc8 Binary files /dev/null and b/modular_chomp/icons/mob/species/protean/protean64x64.dmi differ diff --git a/modular_chomp/icons/mob/species/protean/protean_powers.dmi b/modular_chomp/icons/mob/species/protean/protean_powers.dmi index 9692c07cd7..efcd821a81 100644 Binary files a/modular_chomp/icons/mob/species/protean/protean_powers.dmi and b/modular_chomp/icons/mob/species/protean/protean_powers.dmi differ diff --git a/modular_chomp/icons/mob/species/skrell/suit_ch.dmi b/modular_chomp/icons/mob/species/skrell/suit_ch.dmi index 8b7407c030..fce0eadfef 100644 Binary files a/modular_chomp/icons/mob/species/skrell/suit_ch.dmi and b/modular_chomp/icons/mob/species/skrell/suit_ch.dmi differ diff --git a/modular_chomp/icons/mob/species/teshari/feet_ch.dmi b/modular_chomp/icons/mob/species/teshari/feet_ch.dmi new file mode 100644 index 0000000000..9b62e93314 Binary files /dev/null and b/modular_chomp/icons/mob/species/teshari/feet_ch.dmi differ diff --git a/modular_chomp/icons/mob/species/teshari/hands_ch.dmi b/modular_chomp/icons/mob/species/teshari/hands_ch.dmi new file mode 100644 index 0000000000..cf74d73796 Binary files /dev/null and b/modular_chomp/icons/mob/species/teshari/hands_ch.dmi differ diff --git a/modular_chomp/icons/mob/species/teshari/helmet_ch.dmi b/modular_chomp/icons/mob/species/teshari/helmet_ch.dmi new file mode 100644 index 0000000000..7641489d2f Binary files /dev/null and b/modular_chomp/icons/mob/species/teshari/helmet_ch.dmi differ diff --git a/modular_chomp/icons/mob/species/teshari/suit_ch.dmi b/modular_chomp/icons/mob/species/teshari/suit_ch.dmi new file mode 100644 index 0000000000..c142bf0559 Binary files /dev/null and b/modular_chomp/icons/mob/species/teshari/suit_ch.dmi differ diff --git a/modular_chomp/icons/mob/taursuits_naga_alt_ch.dmi b/modular_chomp/icons/mob/taursuits_naga_alt_ch.dmi new file mode 100644 index 0000000000..42d29e5001 Binary files /dev/null and b/modular_chomp/icons/mob/taursuits_naga_alt_ch.dmi differ diff --git a/modular_chomp/icons/mob/widerobot_exp_ch.dmi b/modular_chomp/icons/mob/widerobot_exp_ch.dmi new file mode 100644 index 0000000000..ff8d161032 Binary files /dev/null and b/modular_chomp/icons/mob/widerobot_exp_ch.dmi differ diff --git a/modular_chomp/icons/obj/desert_planet/desert_planet_160x160.dmi b/modular_chomp/icons/obj/desert_planet/desert_planet_160x160.dmi new file mode 100644 index 0000000000..2aa297b86c Binary files /dev/null and b/modular_chomp/icons/obj/desert_planet/desert_planet_160x160.dmi differ diff --git a/modular_chomp/icons/obj/desert_planet/desert_plants.dmi b/modular_chomp/icons/obj/desert_planet/desert_plants.dmi new file mode 100644 index 0000000000..3eb6d1c042 Binary files /dev/null and b/modular_chomp/icons/obj/desert_planet/desert_plants.dmi differ diff --git a/modular_chomp/icons/obj/desert_planet/desert_props_64x64.dmi b/modular_chomp/icons/obj/desert_planet/desert_props_64x64.dmi new file mode 100644 index 0000000000..766e457d24 Binary files /dev/null and b/modular_chomp/icons/obj/desert_planet/desert_props_64x64.dmi differ diff --git a/modular_chomp/icons/obj/desert_planet/desert_rocks.dmi b/modular_chomp/icons/obj/desert_planet/desert_rocks.dmi new file mode 100644 index 0000000000..3da476f9dd Binary files /dev/null and b/modular_chomp/icons/obj/desert_planet/desert_rocks.dmi differ diff --git a/modular_chomp/icons/obj/rig_modules_ch.dmi b/modular_chomp/icons/obj/rig_modules_ch.dmi index 9455940736..f8c20e3d1d 100644 Binary files a/modular_chomp/icons/obj/rig_modules_ch.dmi and b/modular_chomp/icons/obj/rig_modules_ch.dmi differ diff --git a/modular_chomp/icons/turf/desert_planet.dmi b/modular_chomp/icons/turf/desert_planet.dmi deleted file mode 100644 index c9b6d3a7b5..0000000000 Binary files a/modular_chomp/icons/turf/desert_planet.dmi and /dev/null differ diff --git a/modular_chomp/icons/turf/desert_tiles.dmi b/modular_chomp/icons/turf/desert_tiles.dmi new file mode 100644 index 0000000000..5a4d197acc Binary files /dev/null and b/modular_chomp/icons/turf/desert_tiles.dmi differ diff --git a/modular_chomp/icons/turf/outdoors_edge.dmi b/modular_chomp/icons/turf/outdoors_edge.dmi index c9b6d3a7b5..f94dbd8ee0 100644 Binary files a/modular_chomp/icons/turf/outdoors_edge.dmi and b/modular_chomp/icons/turf/outdoors_edge.dmi differ diff --git a/maps/overmap/space_pois/abandonedtele_13x12.dmm b/modular_chomp/maps/overmap/space_pois/abandonedtele_13x12.dmm similarity index 100% rename from maps/overmap/space_pois/abandonedtele_13x12.dmm rename to modular_chomp/maps/overmap/space_pois/abandonedtele_13x12.dmm diff --git a/maps/overmap/space_pois/abandonedzoo_20x20.dmm b/modular_chomp/maps/overmap/space_pois/abandonedzoo_20x20.dmm similarity index 99% rename from maps/overmap/space_pois/abandonedzoo_20x20.dmm rename to modular_chomp/maps/overmap/space_pois/abandonedzoo_20x20.dmm index 318f8e4e00..f8198f2434 100644 --- a/maps/overmap/space_pois/abandonedzoo_20x20.dmm +++ b/modular_chomp/maps/overmap/space_pois/abandonedzoo_20x20.dmm @@ -24,7 +24,7 @@ "aA" = (/obj/structure/flora/ausbushes/ywflowers,/turf/simulated/floor/grass2,/area/submap/abandonedzoo) "aB" = (/obj/machinery/light,/turf/simulated/floor/grass2,/area/submap/abandonedzoo) "aC" = (/obj/structure/flora/ausbushes/ppflowers,/turf/simulated/floor/grass2,/area/submap/abandonedzoo) -"aD" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/airlock/highsecurity{name = "Bio Containment"; req_one_access_txt = "47"},/turf/simulated/floor/tiled/dark,/area/submap/abandonedzoo) +"aD" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/airlock/highsecurity{name = "Bio Containment"},/turf/simulated/floor/tiled/dark,/area/submap/abandonedzoo) "aE" = (/obj/machinery/shieldwallgen{active = 2; anchored = 1; power = 1},/obj/structure/cable{d2 = 2; icon_state = "0-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"; tag = ""},/turf/simulated/floor/plating,/area/submap/abandonedzoo) "aF" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/wall/r_wall,/area/submap/abandonedzoo) "aG" = (/obj/structure/table/reinforced,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/item/weapon/gun/energy/floragun,/turf/simulated/floor/tiled/dark,/area/submap/abandonedzoo) diff --git a/maps/overmap/space_pois/asteroid1_20x20.dmm b/modular_chomp/maps/overmap/space_pois/asteroid1_20x20.dmm similarity index 100% rename from maps/overmap/space_pois/asteroid1_20x20.dmm rename to modular_chomp/maps/overmap/space_pois/asteroid1_20x20.dmm diff --git a/maps/overmap/space_pois/asteroid2_20x20.dmm b/modular_chomp/maps/overmap/space_pois/asteroid2_20x20.dmm similarity index 100% rename from maps/overmap/space_pois/asteroid2_20x20.dmm rename to modular_chomp/maps/overmap/space_pois/asteroid2_20x20.dmm diff --git a/maps/overmap/space_pois/asteroid3_20x20.dmm b/modular_chomp/maps/overmap/space_pois/asteroid3_20x20.dmm similarity index 100% rename from maps/overmap/space_pois/asteroid3_20x20.dmm rename to modular_chomp/maps/overmap/space_pois/asteroid3_20x20.dmm diff --git a/maps/overmap/space_pois/asteroid4_20x20.dmm b/modular_chomp/maps/overmap/space_pois/asteroid4_20x20.dmm similarity index 100% rename from maps/overmap/space_pois/asteroid4_20x20.dmm rename to modular_chomp/maps/overmap/space_pois/asteroid4_20x20.dmm diff --git a/maps/overmap/space_pois/asteroid5_40x40.dmm b/modular_chomp/maps/overmap/space_pois/asteroid5_40x40.dmm similarity index 100% rename from maps/overmap/space_pois/asteroid5_40x40.dmm rename to modular_chomp/maps/overmap/space_pois/asteroid5_40x40.dmm diff --git a/maps/overmap/space_pois/blowntcommsat_53x56.dmm b/modular_chomp/maps/overmap/space_pois/blowntcommsat_53x56.dmm similarity index 100% rename from maps/overmap/space_pois/blowntcommsat_53x56.dmm rename to modular_chomp/maps/overmap/space_pois/blowntcommsat_53x56.dmm diff --git a/maps/overmap/space_pois/clownmime_28x20.dmm b/modular_chomp/maps/overmap/space_pois/clownmime_28x20.dmm similarity index 100% rename from maps/overmap/space_pois/clownmime_28x20.dmm rename to modular_chomp/maps/overmap/space_pois/clownmime_28x20.dmm diff --git a/maps/overmap/space_pois/debris1_20x20.dmm b/modular_chomp/maps/overmap/space_pois/debris1_20x20.dmm similarity index 100% rename from maps/overmap/space_pois/debris1_20x20.dmm rename to modular_chomp/maps/overmap/space_pois/debris1_20x20.dmm diff --git a/maps/overmap/space_pois/debris2_20x20.dmm b/modular_chomp/maps/overmap/space_pois/debris2_20x20.dmm similarity index 94% rename from maps/overmap/space_pois/debris2_20x20.dmm rename to modular_chomp/maps/overmap/space_pois/debris2_20x20.dmm index 95a1f68c79..89015f27b4 100644 --- a/maps/overmap/space_pois/debris2_20x20.dmm +++ b/modular_chomp/maps/overmap/space_pois/debris2_20x20.dmm @@ -10,7 +10,7 @@ "l" = (/obj/structure/girder,/turf/simulated/floor/plating,/area/submap/debris2) "m" = (/obj/structure/grille/broken,/turf/template_noop,/area/submap/debris2) "n" = (/obj/item/stack/cable_coil/cut,/turf/template_noop,/area/submap/debris2) -"o" = (/obj/machinery/door/airlock/command{max_integrity = 40},/turf/simulated/floor/airless,/area/submap/debris2) +"o" = (/obj/machinery/door/airlock/command,/turf/simulated/floor/airless,/area/submap/debris2) "p" = (/mob/living/simple_mob/hostile/carp/pike,/turf/simulated/floor,/area/submap/debris2) "r" = (/obj/random/maintenance/medical,/turf/simulated/floor/tiled/airless,/area/submap/debris2) "s" = (/obj/item/stack/rods,/turf/simulated/floor,/area/submap/debris2) @@ -42,7 +42,7 @@ "W" = (/turf/simulated/floor/airless,/area/submap/debris2) "X" = (/mob/living/simple_mob/animal/space/carp,/turf/simulated/floor,/area/submap/debris2) "Y" = (/obj/structure/girder/reinforced,/turf/simulated/floor/airless,/area/submap/debris2) -"Z" = (/obj/machinery/computer{circuit = /obj/effect/decal/cleanable/shreds; dir = 8},/turf/simulated/floor/tiled/airless,/area/submap/debris2) +"Z" = (/obj/machinery/computer{dir = 8},/turf/simulated/floor/tiled/airless,/area/submap/debris2) (1,1,1) = {" aaaaaaaaaaaaaaaaaaaa diff --git a/maps/overmap/space_pois/debris3_30x20.dmm b/modular_chomp/maps/overmap/space_pois/debris3_30x20.dmm similarity index 100% rename from maps/overmap/space_pois/debris3_30x20.dmm rename to modular_chomp/maps/overmap/space_pois/debris3_30x20.dmm diff --git a/maps/overmap/space_pois/deepstorage_85-67.dmm b/modular_chomp/maps/overmap/space_pois/deepstorage_85x67.dmm similarity index 100% rename from maps/overmap/space_pois/deepstorage_85-67.dmm rename to modular_chomp/maps/overmap/space_pois/deepstorage_85x67.dmm diff --git a/maps/overmap/space_pois/derelict1_40x40.dmm b/modular_chomp/maps/overmap/space_pois/derelict1_40x40.dmm similarity index 100% rename from maps/overmap/space_pois/derelict1_40x40.dmm rename to modular_chomp/maps/overmap/space_pois/derelict1_40x40.dmm diff --git a/maps/overmap/space_pois/derelict2_20x20.dmm b/modular_chomp/maps/overmap/space_pois/derelict2_20x20.dmm similarity index 100% rename from maps/overmap/space_pois/derelict2_20x20.dmm rename to modular_chomp/maps/overmap/space_pois/derelict2_20x20.dmm diff --git a/maps/overmap/space_pois/derelict3_40x40.dmm b/modular_chomp/maps/overmap/space_pois/derelict3_40x40.dmm similarity index 100% rename from maps/overmap/space_pois/derelict3_40x40.dmm rename to modular_chomp/maps/overmap/space_pois/derelict3_40x40.dmm diff --git a/maps/overmap/space_pois/derelict4_40x40.dmm b/modular_chomp/maps/overmap/space_pois/derelict4_40x40.dmm similarity index 100% rename from maps/overmap/space_pois/derelict4_40x40.dmm rename to modular_chomp/maps/overmap/space_pois/derelict4_40x40.dmm diff --git a/maps/overmap/space_pois/derelict5_40x40.dmm b/modular_chomp/maps/overmap/space_pois/derelict5_40x40.dmm similarity index 100% rename from maps/overmap/space_pois/derelict5_40x40.dmm rename to modular_chomp/maps/overmap/space_pois/derelict5_40x40.dmm diff --git a/maps/overmap/space_pois/dj_31x28.dmm b/modular_chomp/maps/overmap/space_pois/dj_31x28.dmm similarity index 93% rename from maps/overmap/space_pois/dj_31x28.dmm rename to modular_chomp/maps/overmap/space_pois/dj_31x28.dmm index 57206d28bc..551a7b0f02 100644 --- a/maps/overmap/space_pois/dj_31x28.dmm +++ b/modular_chomp/maps/overmap/space_pois/dj_31x28.dmm @@ -35,7 +35,7 @@ "aO" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/plating,/area/submap/dj) "aP" = (/obj/machinery/light_switch{pixel_y = -28},/obj/effect/decal/cleanable/dirt,/obj/effect/floor_decal/rust,/turf/simulated/floor/plating,/area/submap/dj) "aQ" = (/obj/item/clothing/suit/space/syndicate/orange{desc = "This spacesuit is emblazoned with the emblem of the USSP. Glory to Space Russia!"; name = "Cosmonaut Security Suit"},/obj/item/clothing/head/helmet/space/syndicate/orange{desc = "This spacesuit is emblazoned with the emblem of the USSP. Glory to Space Russia!"; name = "Cosmonaut Security Helmet"},/obj/item/clothing/mask/breath,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plating,/area/submap/dj) -"aR" = (/obj/machinery/door/airlock/maintenance{req_access_txt = "0"},/turf/simulated/floor/tiled/steel_grid,/area/submap/dj) +"aR" = (/obj/machinery/door/airlock/maintenance,/turf/simulated/floor/tiled/steel_grid,/area/submap/dj) "aS" = (/turf/simulated/shuttle/wall,/area/submap/dj) "aT" = (/obj/structure/closet/emcloset,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/tiled/dark,/area/submap/dj) "aW" = (/obj/effect/decal/cleanable/dirt,/obj/machinery/light{dir = 1; on = 1},/turf/simulated/floor/tiled/dark,/area/submap/dj) @@ -64,13 +64,13 @@ "bB" = (/obj/item/weapon/newspaper{desc = "An issue of The Griffon. Was Nanotrasen supplying this station at some point?"},/obj/structure/table/rack/shelf/steel,/turf/simulated/floor/carpet,/area/submap/dj) "bC" = (/obj/machinery/light/small,/turf/simulated/floor/carpet,/area/submap/dj) "bD" = (/obj/machinery/sleeper{dir = 8},/turf/simulated/floor/carpet,/area/submap/dj) -"bE" = (/obj/machinery/door/airlock{name = "Restroom"; req_access_txt = "0"},/turf/simulated/floor/tiled/steel_grid,/area/submap/dj) +"bE" = (/obj/machinery/door/airlock{name = "Restroom"},/turf/simulated/floor/tiled/steel_grid,/area/submap/dj) "bH" = (/obj/machinery/status_display{layer = 4; pixel_x = 32},/turf/simulated/floor/tiled/dark,/area/submap/dj) "bI" = (/obj/structure/curtain/open/shower,/obj/machinery/shower{dir = 4; tag = "icon-shower (EAST)"},/obj/effect/decal/cleanable/dirt,/obj/random/junk,/turf/simulated/floor/tiled/freezer,/area/submap/dj) "bJ" = (/obj/machinery/light_switch{pixel_x = 32; pixel_y = 9},/obj/random/maintenance/medical,/turf/simulated/floor/tiled/freezer,/area/submap/dj) "bK" = (/turf/simulated/shuttle/wall/hard_corner,/turf/space,/area/submap/dj) "bL" = (/turf/simulated/floor/tiled/dark,/area/submap/dj) -"bM" = (/obj/machinery/atmospherics/pipe/simple/hidden{dir = 6},/obj/machinery/access_button{command = "cycle_interior"; frequency = 1479; master_tag = "dj_station_airlock"; name = "interior access button"; pixel_x = 25; pixel_y = -25; req_access_txt = "0"},/obj/random/junk,/turf/simulated/floor/tiled/dark,/area/submap/dj) +"bM" = (/obj/machinery/atmospherics/pipe/simple/hidden{dir = 6},/obj/machinery/access_button{command = "cycle_interior"; frequency = 1479; master_tag = "dj_station_airlock"; name = "interior access button"; pixel_x = 25; pixel_y = -25},/obj/random/junk,/turf/simulated/floor/tiled/dark,/area/submap/dj) "bN" = (/obj/machinery/portable_atmospherics/canister/air,/obj/machinery/door/window/westleft,/turf/simulated/floor/plating,/area/submap/dj) "bO" = (/obj/structure/lattice,/obj/structure/grille,/turf/template_noop,/area/template_noop) "bP" = (/obj/structure/mirror{dir = 4; pixel_x = -32},/obj/structure/sink{dir = 8; pixel_x = -12; pixel_y = 2},/obj/effect/decal/cleanable/dirt,/obj/random/maintenance/medical,/turf/simulated/floor/tiled/freezer,/area/submap/dj) @@ -78,11 +78,11 @@ "bR" = (/obj/structure/toilet{dir = 8},/turf/simulated/floor/tiled/freezer,/area/submap/dj) "bS" = (/obj/item/weapon/paper_bin{pixel_x = 1; pixel_y = 9},/obj/item/weapon/pen,/obj/machinery/light,/obj/structure/table/standard,/turf/simulated/floor/tiled/asteroid_steel{icon_state = "dark"},/area/submap/dj) "bT" = (/obj/item/clothing/head/ushanka,/obj/structure/table/rack/shelf/steel,/turf/simulated/floor/tiled/asteroid_steel{icon_state = "dark"},/area/submap/dj) -"bU" = (/obj/machinery/door/airlock/external{frequency = 1479; icon_state = "door_locked"; id_tag = "dj_station_inner"; locked = 1; name = "DJ Station Interior Access"; req_access = null; req_access_txt = "0"},/obj/machinery/atmospherics/pipe/simple/hidden,/turf/simulated/floor/plating,/area/submap/dj) -"bV" = (/obj/machinery/atmospherics/unary/vent_pump/high_volume{dir = 1; frequency = 1479; id_tag = "dj_station_pump"},/obj/machinery/airlock_sensor{frequency = 1479; id_tag = "dj_station_sensor"; pixel_x = 25; pixel_y = -5},/obj/machinery/embedded_controller/radio/airlock/airlock_controller{frequency = 1479; id_tag = "dj_station_airlock"; pixel_x = -25; req_access_txt = "0"; tag_airpump = "dj_station_pump"; tag_chamber_sensor = "dj_station_sensor"; tag_exterior_door = "dj_station_outer"; tag_interior_door = "dj_station_inner"},/obj/machinery/light/small{dir = 4},/turf/simulated/floor/plating,/area/submap/dj) -"bW" = (/obj/machinery/door/airlock/external{frequency = 1479; icon_state = "door_locked"; id_tag = "dj_station_outer"; locked = 1; name = "DJ Station External Access"; req_access = null; req_access_txt = "0"},/turf/simulated/floor/plating,/area/submap/dj) +"bU" = (/obj/machinery/door/airlock/external{frequency = 1479; icon_state = "door_locked"; id_tag = "dj_station_inner"; locked = 1; name = "DJ Station Interior Access"; req_access = null},/obj/machinery/atmospherics/pipe/simple/hidden,/turf/simulated/floor/plating,/area/submap/dj) +"bV" = (/obj/machinery/atmospherics/unary/vent_pump/high_volume{dir = 1; frequency = 1479; id_tag = "dj_station_pump"},/obj/machinery/airlock_sensor{frequency = 1479; id_tag = "dj_station_sensor"; pixel_x = 25; pixel_y = -5},/obj/machinery/embedded_controller/radio/airlock/airlock_controller{frequency = 1479; id_tag = "dj_station_airlock"; pixel_x = -25; tag_airpump = "dj_station_pump"; tag_chamber_sensor = "dj_station_sensor"; tag_exterior_door = "dj_station_outer"; tag_interior_door = "dj_station_inner"},/obj/machinery/light/small{dir = 4},/turf/simulated/floor/plating,/area/submap/dj) +"bW" = (/obj/machinery/door/airlock/external{frequency = 1479; icon_state = "door_locked"; id_tag = "dj_station_outer"; locked = 1; name = "DJ Station External Access"; req_access = null},/turf/simulated/floor/plating,/area/submap/dj) "bX" = (/obj/effect/catwalk_plated/dark,/obj/structure/lattice,/turf/template_noop,/area/submap/dj) -"bY" = (/obj/machinery/access_button{command = "cycle_exterior"; frequency = 1479; master_tag = "dj_station_airlock"; name = "exterior access button"; pixel_x = 23; pixel_y = 35; req_access_txt = "0"},/obj/effect/catwalk_plated/dark,/obj/structure/lattice,/turf/template_noop,/area/submap/dj) +"bY" = (/obj/machinery/access_button{command = "cycle_exterior"; frequency = 1479; master_tag = "dj_station_airlock"; name = "exterior access button"; pixel_x = 23; pixel_y = 35},/obj/effect/catwalk_plated/dark,/obj/structure/lattice,/turf/template_noop,/area/submap/dj) "bZ" = (/obj/random/trash,/turf/simulated/floor/tiled/white,/area/submap/dj) "cu" = (/obj/item/weapon/stool/padded,/turf/simulated/floor/tiled/dark,/area/submap/dj) "ec" = (/obj/structure/table/standard,/obj/random/maintenance/security,/turf/simulated/floor/tiled/dark,/area/submap/dj) diff --git a/maps/overmap/space_pois/druglab_16x14.dmm b/modular_chomp/maps/overmap/space_pois/druglab_16x14.dmm similarity index 100% rename from maps/overmap/space_pois/druglab_16x14.dmm rename to modular_chomp/maps/overmap/space_pois/druglab_16x14.dmm diff --git a/maps/overmap/space_pois/emptyshell_17x15.dmm b/modular_chomp/maps/overmap/space_pois/emptyshell_17x15.dmm similarity index 100% rename from maps/overmap/space_pois/emptyshell_17x15.dmm rename to modular_chomp/maps/overmap/space_pois/emptyshell_17x15.dmm diff --git a/maps/overmap/space_pois/gasthelizards_19x14.dmm b/modular_chomp/maps/overmap/space_pois/gasthelizards_19x14.dmm similarity index 100% rename from maps/overmap/space_pois/gasthelizards_19x14.dmm rename to modular_chomp/maps/overmap/space_pois/gasthelizards_19x14.dmm diff --git a/maps/overmap/space_pois/golemtarget_30x30.dmm b/modular_chomp/maps/overmap/space_pois/golemtarget_30x30.dmm similarity index 100% rename from maps/overmap/space_pois/golemtarget_30x30.dmm rename to modular_chomp/maps/overmap/space_pois/golemtarget_30x30.dmm diff --git a/maps/overmap/space_pois/intactemptyship_13x11.dmm b/modular_chomp/maps/overmap/space_pois/intactemptyship_13x11.dmm similarity index 100% rename from maps/overmap/space_pois/intactemptyship_13x11.dmm rename to modular_chomp/maps/overmap/space_pois/intactemptyship_13x11.dmm diff --git a/maps/overmap/space_pois/mechtransport_9x15.dmm b/modular_chomp/maps/overmap/space_pois/mechtransport_9x15.dmm similarity index 100% rename from maps/overmap/space_pois/mechtransport_9x15.dmm rename to modular_chomp/maps/overmap/space_pois/mechtransport_9x15.dmm diff --git a/maps/overmap/space_pois/oldstation_80x45.dmm b/modular_chomp/maps/overmap/space_pois/oldstation_80x45.dmm similarity index 96% rename from maps/overmap/space_pois/oldstation_80x45.dmm rename to modular_chomp/maps/overmap/space_pois/oldstation_80x45.dmm index df6363eff2..88b3826989 100644 --- a/maps/overmap/space_pois/oldstation_80x45.dmm +++ b/modular_chomp/maps/overmap/space_pois/oldstation_80x45.dmm @@ -1,665 +1,665 @@ -"ab" = (/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_beta) -"ad" = (/obj/item/solar_assembly,/turf/simulated/floor/airless,/area/submap/oldstation_alpha) -"am" = (/obj/effect/floor_decal/corner/grey/diagonal,/obj/random/trash,/turf/simulated/floor/tiled/old_tile,/area/submap/oldstation_kitchen) -"ao" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/mob/living/simple_mob/mechanical/hivebot/swarm,/obj/random/junk,/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_charlie) -"ar" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/effect/floor_decal/rust,/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_charlie) -"au" = (/obj/structure/table/standard,/obj/item/weapon/folder/red,/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_beta) -"ay" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/research,/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_tox) -"aI" = (/obj/structure/cable/yellow,/obj/machinery/power/terminal{dir = 4},/turf/simulated/floor/plating,/area/submap/oldstation_power) -"aN" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/light,/mob/living/simple_mob/mechanical/hivebot/tank/armored/anti_melee,/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_charlie) -"aR" = (/obj/structure/table/standard,/obj/item/weapon/tank/anesthetic,/obj/item/clothing/mask/breath/medical,/obj/item/weapon/storage/firstaid/surgery,/obj/effect/floor_decal/rust,/turf/simulated/floor/tiled/old_tile/blue,/area/submap/oldstation_tox) -"aT" = (/mob/living/simple_mob/mechanical/hivebot/swarm,/obj/random/junk,/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_charlie) -"bc" = (/obj/structure/transit_tube/station,/obj/effect/floor_decal/rust,/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_charlie) -"bd" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_beta) -"bf" = (/obj/structure/cable,/obj/machinery/power/apc{dir = 4; name = "Beta Engineering APC"; pixel_x = 24; report_power_alarm = 0; start_charge = 0},/obj/random/junk,/turf/simulated/floor/tiled/asteroid_steel/airless,/area/submap/oldstation_alpha) -"bl" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/door/airlock/maintenance/command{name = "Bridge"},/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_bridge) -"bq" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/random/junk,/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_power) -"bw" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/mob/living/simple_mob/mechanical/hivebot/tank/armored/anti_melee,/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_charlie) -"by" = (/obj/structure/window/reinforced{dir = 8},/turf/simulated/floor/tiled/old_tile,/area/submap/oldstation_alpha) -"bA" = (/obj/random/trash,/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_hydro_sec) -"bC" = (/obj/machinery/firealarm{dir = 4; pixel_x = 24},/obj/effect/floor_decal/rust,/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_beta) -"bF" = (/obj/structure/table/standard,/obj/random/maintenance/research,/obj/random/maintenance/research,/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_tox) -"bH" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_alpha) -"bJ" = (/obj/random/junk,/turf/simulated/wall,/area/submap/oldstation_kitchen) -"bL" = (/obj/effect/decal/cleanable/blood/oil,/mob/living/simple_mob/mechanical/hivebot/ranged_damage/strong/guard,/turf/simulated/shuttle/floor/voidcraft/dark,/area/submap/oldstation_hiveboat) -"bN" = (/obj/structure/table/standard,/obj/machinery/light/small{dir = 4},/obj/item/weapon/paper{info = "**WARNING**

Catastrophic damage sustained to station. Powernet exhausted to reawaken crew.

Immediate Objectives

1: Activate emergency power generator
2: Lift station lockdown on the bridge

Please locate the 'Damage Report' on the bridge for a detailed situation report."; name = "Cryo Awakening Alert"},/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_beta) -"bP" = (/obj/structure/closet/crate/engineering/electrical,/turf/simulated/floor/plating,/area/submap/oldstation_bridge) -"bT" = (/obj/machinery/light/small{dir = 8},/turf/simulated/floor/tiled/old_tile/green,/area/submap/oldstation_hydro_sec) -"bW" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/door/firedoor,/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_beta) -"bX" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/door/firedoor,/obj/effect/floor_decal/rust,/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_charlie) -"bZ" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable{d2 = 8; icon_state = "0-8"},/obj/structure/cable{d2 = 4; icon_state = "0-4"},/obj/effect/wingrille_spawn/reinforced,/turf/simulated/floor/plating,/area/submap/oldstation_beta) -"ca" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/item/stack/cable_coil{amount = 2},/turf/simulated/floor/airless,/area/submap/oldstation_power) -"ce" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/firealarm{dir = 8; pixel_x = -24},/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_beta) -"ck" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/obj/structure/table/standard,/turf/simulated/floor/tiled/old_tile/red,/area/submap/oldstation_tox) -"cr" = (/obj/effect/decal/cleanable/cobweb,/obj/machinery/power/terminal{dir = 4},/obj/structure/cable/yellow{d2 = 2; icon_state = "0-2"},/turf/simulated/floor/plating,/area/submap/oldstation_power) -"cz" = (/mob/living/simple_mob/mechanical/hivebot/swarm,/turf/simulated/floor/plating,/area/submap/oldstation_charlie) -"cC" = (/obj/structure/table/reinforced,/obj/item/weapon/rig/military/equipped,/turf/simulated/floor/tiled/old_tile/red,/area/submap/oldstation_tox) -"cF" = (/obj/structure/cable/yellow{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/cable/yellow{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/plating,/area/submap/oldstation_power) -"cG" = (/obj/effect/decal/cleanable/cobweb2,/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_beta) -"cI" = (/obj/structure/transit_tube/station,/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_charlie) -"cK" = (/obj/structure/transit_tube{icon_state = "E-W-Pass"},/turf/template_noop,/area/template_noop) -"cN" = (/obj/structure/cable{d2 = 2; icon_state = "0-2"; pixel_y = 1},/obj/machinery/power/smes/buildable/hybrid,/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_power) -"cY" = (/obj/machinery/light{dir = 4},/obj/effect/floor_decal/rust,/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_charlie) -"da" = (/obj/structure/table/standard,/obj/item/weapon/reagent_containers/chem_disp_cartridge/champagne,/obj/item/weapon/reagent_containers/chem_disp_cartridge/icetea,/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_tox) -"di" = (/obj/structure/particle_accelerator/particle_emitter/center,/turf/simulated/floor/plating,/area/submap/oldstation_charlie) -"dp" = (/obj/machinery/computer{desc = "A computer long since rendered non-functional due to lack of maintenance. Spitting out error messages."; name = "Broken Computer"},/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_power) -"ds" = (/obj/structure/cable/yellow{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/airless,/area/submap/oldstation_power) -"dx" = (/turf/simulated/wall,/area/submap/oldstation_beta) -"dA" = (/obj/effect/decal/cleanable/vomit,/obj/effect/floor_decal/corner/grey/diagonal,/obj/random/trash,/turf/simulated/floor/tiled/old_tile,/area/submap/oldstation_kitchen) -"dC" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/door/firedoor,/obj/machinery/door/airlock/research,/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_tox) -"dK" = (/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_beta) -"dR" = (/obj/machinery/door/airlock/maintenance/medical{name = "Medical"},/turf/simulated/floor/tiled/asteroid_steel/airless,/area/submap/oldstation_alpha) -"dW" = (/obj/structure/table/standard,/obj/machinery/light/small{dir = 8},/obj/item/weapon/tool/crowbar,/obj/random/maintenance,/obj/random/maintenance,/obj/random/maintenance,/obj/random/maintenance,/obj/random/maintenance,/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_beta) -"dZ" = (/turf/simulated/mineral/floor/vacuum,/area/template_noop) -"ed" = (/obj/structure/closet/crate,/turf/simulated/floor/plating,/area/submap/oldstation_beta) -"ef" = (/obj/structure/table/standard,/obj/item/weapon/book/manual/nuclear,/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_tox) -"eg" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/random/junk,/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_charlie) -"eq" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/firedoor,/obj/effect/floor_decal/rust,/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_beta) -"er" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/mob/living/simple_mob/mechanical/hivebot/ranged_damage/strong/guard,/obj/effect/floor_decal/rust,/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_charlie) -"et" = (/obj/machinery/processor,/obj/effect/floor_decal/corner/grey/diagonal,/turf/simulated/floor/tiled/old_tile,/area/submap/oldstation_kitchen) -"eu" = (/obj/machinery/field_generator,/turf/simulated/floor/plating,/area/submap/oldstation_charlie) -"ey" = (/obj/structure/bed/chair{dir = 1},/turf/simulated/floor/tiled/old_tile/blue,/area/submap/oldstation_bridge) -"eC" = (/obj/effect/floor_decal/rust,/obj/random/junk,/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_charlie) -"eM" = (/obj/structure/table/standard,/obj/machinery/recharger,/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_beta) -"eN" = (/obj/structure/table/standard,/obj/item/seeds/harebell,/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_hydro_sec) -"eS" = (/mob/living/simple_mob/mechanical/hivebot/swarm,/turf/simulated/shuttle/floor/voidcraft/dark,/area/submap/oldstation_hiveboat) -"eT" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/random/gun/random,/obj/random/junk,/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_beta) -"eY" = (/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"; tag = "90Curve"},/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_charlie) -"fc" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/firedoor,/mob/living/simple_mob/mechanical/hivebot/swarm,/obj/effect/floor_decal/rust,/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_charlie) -"ff" = (/obj/machinery/light/small{dir = 4},/obj/random/trash,/turf/simulated/floor/tiled/asteroid_steel/airless,/area/submap/oldstation_alpha) -"fp" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/mob/living/simple_mob/mechanical/hivebot/swarm,/obj/effect/floor_decal/rust,/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_charlie) -"ft" = (/obj/machinery/light/small{dir = 8},/turf/simulated/floor/tiled/asteroid_steel/airless,/area/submap/oldstation_alpha) -"fx" = (/obj/machinery/light/small{dir = 1},/obj/effect/floor_decal/corner/grey/diagonal,/turf/simulated/floor/tiled/old_tile,/area/submap/oldstation_kitchen) -"fC" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_charlie) -"fH" = (/mob/living/simple_mob/mechanical/hivebot/tank/armored/anti_melee,/turf/simulated/floor/tiled/old_tile/blue,/area/submap/oldstation_tox) -"fK" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/effect/floor_decal/rust,/turf/simulated/floor/airless,/area/submap/oldstation_alpha) -"fU" = (/obj/structure/sign/biohazard{icon_state = "radiation"; name = "\improper HAZARDOUS RADIATION"},/turf/simulated/wall,/area/submap/oldstation_power) -"fW" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/obj/effect/floor_decal/rust,/obj/random/junk,/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_beta) -"fY" = (/obj/effect/floor_decal/corner/grey/diagonal,/obj/effect/floor_decal/rust,/obj/random/trash,/turf/simulated/floor/tiled/old_tile,/area/submap/oldstation_kitchen) -"ge" = (/obj/structure/particle_accelerator/particle_emitter/right,/turf/simulated/floor/plating,/area/submap/oldstation_charlie) -"gs" = (/obj/structure/sign/science,/turf/simulated/wall,/area/submap/oldstation_beta) -"gt" = (/obj/machinery/r_n_d/protolathe,/turf/simulated/floor/tiled/old_tile/blue,/area/submap/oldstation_tox) -"gu" = (/obj/structure/cable/yellow{d2 = 4; icon_state = "0-4"},/turf/simulated/floor/airless{icon_state = "solarpanel"},/area/submap/oldstation_power) -"gy" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_beta) -"gD" = (/turf/simulated/floor/tiled/old_tile/blue,/area/submap/oldstation_tox) -"gE" = (/obj/structure/closet/crate,/turf/simulated/shuttle/floor/voidcraft/dark,/area/submap/oldstation_hiveboat) -"gG" = (/turf/template_noop,/area/template_noop) -"gH" = (/obj/machinery/recharge_station,/turf/simulated/floor/plating,/area/submap/oldstation_charlie) -"gL" = (/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_bridge) -"gP" = (/obj/structure/closet/crate/medical,/turf/simulated/floor/airless,/area/submap/oldstation_alpha) -"gQ" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_power) -"gX" = (/obj/structure/cable/yellow,/obj/machinery/power/solar_control{name = "Station Solar Control Computer"},/obj/item/weapon/paper/solar,/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_power) -"gY" = (/turf/simulated/mineral/floor/vacuum,/area/submap/oldstation_alpha) -"gZ" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/firedoor,/obj/machinery/door/airlock/science,/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_charlie) -"ha" = (/obj/machinery/firealarm{dir = 8; pixel_x = -24},/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_beta) -"hf" = (/obj/structure/table/standard,/obj/item/weapon/reagent_containers/chem_disp_cartridge/goldschlager,/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_tox) -"hg" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/effect/floor_decal/rust,/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_beta) -"hh" = (/obj/machinery/light{dir = 4},/obj/machinery/firealarm{dir = 8; pixel_x = 28},/mob/living/simple_mob/mechanical/hivebot/tank/armored/anti_laser,/mob/living/simple_mob/mechanical/hivebot/tank/armored/anti_melee,/obj/effect/floor_decal/rust,/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_charlie) -"hk" = (/obj/machinery/firealarm{dir = 8; pixel_x = -24},/obj/structure/bed/chair{dir = 1},/turf/simulated/floor/tiled/old_tile/blue,/area/submap/oldstation_bridge) -"hn" = (/obj/effect/decal/remains/robot{icon_state = "gib2"},/mob/living/simple_mob/mechanical/hivebot/ranged_damage/strong/guard,/turf/simulated/shuttle/floor/voidcraft/dark,/area/submap/oldstation_hiveboat) -"ht" = (/obj/structure/window/reinforced,/turf/simulated/floor/tiled/old_tile,/area/submap/oldstation_alpha) -"hv" = (/obj/machinery/door/airlock/maintenance_hatch,/turf/simulated/floor/airless,/area/submap/oldstation_alpha) -"hw" = (/obj/effect/decal/cleanable/blood/oil,/obj/effect/decal/remains/robot{icon_state = "gib2"},/mob/living/simple_mob/mechanical/hivebot/swarm,/turf/simulated/shuttle/floor/voidcraft/dark,/area/submap/oldstation_hiveboat) -"hM" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/light/small{dir = 8},/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_beta) -"hN" = (/obj/structure/transit_tube,/obj/effect/wingrille_spawn/reinforced,/turf/simulated/floor/airless,/area/submap/oldstation_alpha) -"hR" = (/obj/machinery/alarm{dir = 1; pixel_y = -22},/turf/simulated/floor/tiled/old_tile/green,/area/submap/oldstation_hydro_sec) -"hS" = (/obj/structure/table/standard,/obj/item/weapon/dice/d8,/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_bridge) -"hU" = (/obj/machinery/door/airlock/security,/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_beta) -"hW" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/mob/living/simple_mob/mechanical/hivebot/swarm,/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_charlie) -"ih" = (/obj/structure/cable{d2 = 4; icon_state = "0-4"},/obj/machinery/door/firedoor,/obj/machinery/door/airlock/maintenance/engi{name = "Backup Generator Room"},/turf/simulated/floor/plating,/area/submap/oldstation_power) -"ij" = (/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_beta) -"im" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/door/firedoor,/obj/effect/floor_decal/rust,/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_beta) -"in" = (/obj/structure/bed/chair{dir = 1},/obj/effect/floor_decal/corner/blue/border{dir = 1},/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_bridge) -"iD" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/mob/living/simple_mob/mechanical/hivebot/tank/armored/anti_melee,/obj/effect/floor_decal/rust,/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_charlie) -"iP" = (/obj/machinery/atmospherics/pipe/simple/hidden,/obj/machinery/meter,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plating,/area/submap/oldstation_beta) -"iV" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_beta) -"iX" = (/mob/living/simple_mob/mechanical/hivebot/swarm,/turf/simulated/shuttle/floor/voidcraft/external,/area/submap/oldstation_hiveboat) -"iY" = (/turf/simulated/floor/plating,/area/submap/oldstation_charlie) -"ja" = (/obj/machinery/seed_extractor,/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_hydro_sec) -"ji" = (/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_beta) -"jj" = (/obj/structure/transit_tube/station,/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_beta) -"jA" = (/obj/structure/lattice,/turf/template_noop,/area/template_noop) -"jD" = (/obj/machinery/atmospherics/binary/pump{dir = 1},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plating,/area/submap/oldstation_beta) -"jO" = (/obj/structure/cable{d2 = 2; icon_state = "0-2"; pixel_y = 1},/obj/machinery/power/apc{dir = 1; name = "Theta Main Corridor APC"; pixel_y = 24; report_power_alarm = 0; start_charge = 0},/turf/simulated/floor/plating,/area/submap/oldstation_charlie) -"jP" = (/obj/machinery/atmospherics/unary/vent_pump{dir = 8},/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced{dir = 8},/turf/simulated/floor/tiled/old_tile,/area/submap/oldstation_alpha) -"jQ" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/firedoor,/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_beta) -"jV" = (/obj/machinery/firealarm{dir = 1; pixel_y = -24},/mob/living/simple_mob/mechanical/hivebot/swarm,/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_charlie) -"jX" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/door/airlock/maintenance_hatch,/turf/simulated/floor/plating,/area/submap/oldstation_hydro_sec) -"kh" = (/obj/structure/table/standard,/obj/item/weapon/reagent_containers/chem_disp_cartridge/corophizine,/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_tox) -"kj" = (/obj/structure/particle_accelerator/end_cap,/turf/simulated/floor/plating,/area/submap/oldstation_charlie) -"kk" = (/obj/structure/mirror{name = "dusty mirror"; pixel_x = -26},/turf/simulated/floor/tiled/old_tile,/area/submap/oldstation_bridge) -"kn" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_charlie) -"kt" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/wingrille_spawn/reinforced,/turf/simulated/floor/plating,/area/submap/oldstation_charlie) -"kv" = (/obj/machinery/door/firedoor/border_only,/obj/effect/floor_decal/rust,/turf/simulated/floor/tiled/asteroid_steel/airless,/area/submap/oldstation_alpha) -"kA" = (/obj/machinery/door/airlock/highsecurity,/turf/simulated/floor/plating,/area/submap/oldstation_hiveboat) -"kB" = (/obj/effect/floor_decal/corner/blue/border{dir = 8},/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_bridge) -"kC" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/effect/floor_decal/corner/green/border,/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_hydro_sec) -"kJ" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/random/trash,/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_beta) -"kN" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/floor_decal/rust,/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_beta) -"kR" = (/turf/simulated/floor/tiled/old_tile,/area/submap/oldstation_alpha) -"la" = (/obj/structure/table/standard,/obj/machinery/recharger,/obj/effect/floor_decal/corner/blue/border{dir = 8},/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_bridge) -"li" = (/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plating,/area/submap/oldstation_power) -"lo" = (/obj/machinery/atmospherics/unary/vent_pump{dir = 8},/obj/machinery/light{dir = 4},/obj/effect/floor_decal/rust,/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_charlie) -"ls" = (/obj/machinery/light{dir = 8},/obj/structure/bed/chair{dir = 1},/turf/simulated/floor/tiled/old_tile/blue,/area/submap/oldstation_bridge) -"lv" = (/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_tox) -"lw" = (/obj/effect/floor_decal/rust,/turf/simulated/floor/airless,/area/submap/oldstation_alpha) -"ly" = (/obj/machinery/shower{dir = 8},/obj/machinery/door/window/westright,/turf/simulated/floor/tiled/old_tile,/area/submap/oldstation_bridge) -"lz" = (/mob/living/simple_mob/mechanical/hivebot/ranged_damage/strong/guard,/obj/effect/floor_decal/rust,/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_charlie) -"lD" = (/obj/effect/landmark/loot_spawn/low,/turf/simulated/floor/tiled/old_tile/blue,/area/submap/oldstation_bridge) -"lR" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/plating,/area/submap/oldstation_charlie) -"mf" = (/obj/structure/table/reinforced,/obj/machinery/light{dir = 4},/obj/item/weapon/paper{info = "*Singularity Generator*

Modern power generation typically comes in two forms, a Fusion Generator or a Fission Generator. Fusion provides the best space to power ratio, and is typically seen on military or high security ships and stations, however Fission reactors require the usage of expensive, and rare, materials in its construction.. Fission generators are massive and bulky, and require a large reserve of uranium to power, however they are extremely cheap to operate and oft need little maintenance once operational.

The Singularity aims to alter this, a functional Singularity is essentially a controlled Black Hole, a Black Hole that generates far more power than Fusion or Fission generators can ever hope to produce. "; name = "Singularity Generator"},/turf/simulated/floor/tiled/old_tile/red,/area/submap/oldstation_tox) -"mj" = (/obj/machinery/light/small{dir = 8},/obj/machinery/firealarm{dir = 8; pixel_x = -24},/turf/simulated/floor/tiled/old_tile/green,/area/submap/oldstation_hydro_sec) -"mo" = (/obj/effect/floor_decal/rust,/turf/simulated/floor/tiled/old_tile/blue,/area/submap/oldstation_tox) -"mp" = (/obj/machinery/chemical_dispenser/full,/obj/structure/table/standard,/turf/simulated/floor/tiled/old_tile,/area/submap/oldstation_tox) -"mq" = (/turf/simulated/shuttle/floor/voidcraft/external,/area/submap/oldstation_hiveboat) -"mu" = (/obj/structure/table/reinforced,/obj/item/weapon/gun/energy/gun/fluff/gunsword,/turf/simulated/floor/tiled/old_tile/red,/area/submap/oldstation_tox) -"mw" = (/turf/simulated/wall,/area/submap/oldstation_alpha) -"mx" = (/obj/machinery/firealarm{dir = 4; pixel_x = -28},/turf/simulated/floor/tiled/old_tile/blue,/area/submap/oldstation_tox) -"my" = (/obj/effect/decal/remains/robot,/turf/simulated/shuttle/floor/voidcraft/dark,/area/submap/oldstation_hiveboat) -"mP" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_beta) -"mQ" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_power) -"mT" = (/obj/item/stack/cable_coil{amount = 2},/turf/simulated/floor/plating,/area/submap/oldstation_power) -"nb" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/effect/floor_decal/rust,/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_beta) -"ng" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/light/small{dir = 4},/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_power) -"ni" = (/obj/item/stack/medical/bruise_pack,/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_charlie) -"nr" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/science,/obj/effect/floor_decal/rust,/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_charlie) -"ns" = (/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,/obj/effect/floor_decal/rust,/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_tox) -"nt" = (/obj/structure/cable/yellow{d2 = 2; icon_state = "0-2"},/obj/machinery/power/terminal{dir = 4},/turf/simulated/floor/plating,/area/submap/oldstation_power) -"nv" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/old_tile/red,/area/submap/oldstation_tox) -"nw" = (/turf/simulated/floor/plating,/area/submap/oldstation_beta) -"nx" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/asteroid_steel/airless,/area/submap/oldstation_alpha) -"nI" = (/obj/structure/transit_tube_pod{dir = 4},/obj/structure/transit_tube/station,/obj/effect/floor_decal/rust,/turf/simulated/floor/tiled/asteroid_steel/airless,/area/submap/oldstation_alpha) -"nO" = (/obj/random/trash,/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_beta) -"nU" = (/obj/structure/table/rack/shelf/steel,/obj/item/clothing/suit/armor/pcarrier/blue/sol,/obj/item/clothing/suit/armor/pcarrier/blue/sol,/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_beta) -"nW" = (/turf/simulated/floor/tiled/asteroid_steel/airless,/area/submap/oldstation_alpha) -"oe" = (/obj/structure/table/standard,/obj/item/weapon/reagent_containers/chem_disp_cartridge/beer,/obj/item/weapon/reagent_containers/chem_disp_cartridge/moonshine,/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_tox) -"oi" = (/obj/machinery/mecha_part_fabricator,/obj/effect/floor_decal/rust,/turf/simulated/floor/tiled/old_tile/blue,/area/submap/oldstation_tox) -"oj" = (/obj/machinery/light/small{dir = 8},/obj/machinery/firealarm{dir = 8; pixel_x = -24},/obj/structure/bed/chair{dir = 4},/obj/effect/floor_decal/corner/grey/diagonal,/turf/simulated/floor/tiled/old_tile,/area/submap/oldstation_kitchen) -"ol" = (/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_charlie) -"oo" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/airlock/maintenance_hatch{req_one_access_txt = "271"},/turf/simulated/floor/plating,/area/submap/oldstation_charlie) -"ou" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/machinery/light/small{dir = 4},/obj/effect/floor_decal/rust,/obj/random/junk,/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_power) -"ox" = (/obj/random/maintenance/research,/turf/simulated/floor/tiled/old_tile/blue,/area/submap/oldstation_tox) -"oC" = (/turf/simulated/floor/plating,/area/submap/oldstation_hiveboat) -"oE" = (/obj/machinery/light/small{dir = 4},/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_beta) -"oG" = (/obj/machinery/firealarm{dir = 4; pixel_x = 24},/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_beta) -"oM" = (/obj/effect/decal/cleanable/blood/oil,/turf/simulated/wall,/area/submap/oldstation_hiveboat) -"oX" = (/obj/structure/table/standard,/obj/effect/floor_decal/corner/grey/diagonal,/turf/simulated/floor/tiled/old_tile,/area/submap/oldstation_kitchen) -"oZ" = (/obj/effect/decal/cleanable/blood/oil,/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_beta) -"pc" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/effect/decal/cleanable/generic,/obj/effect/floor_decal/rust,/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_beta) -"pi" = (/obj/random/trash,/turf/simulated/floor/tiled/asteroid_steel/airless,/area/submap/oldstation_alpha) -"pk" = (/turf/simulated/wall,/area/submap/oldstation_tox) -"pn" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/firealarm{dir = 4; pixel_x = -28},/obj/effect/floor_decal/rust,/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_charlie) -"po" = (/obj/effect/wingrille_spawn/reinforced,/turf/simulated/floor/plating,/area/submap/oldstation_charlie) -"pq" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/tiled/old_tile/red,/area/submap/oldstation_tox) -"pC" = (/obj/machinery/atmospherics/pipe/simple/hidden/universal,/obj/random/trash,/turf/simulated/floor/airless,/area/submap/oldstation_alpha) -"pJ" = (/obj/machinery/light/small{dir = 8},/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/effect/decal/cleanable/blood/oil,/obj/machinery/firealarm{dir = 8; pixel_x = -24},/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_power) -"pU" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/light{dir = 8},/mob/living/simple_mob/mechanical/hivebot/tank/armored/anti_melee,/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_charlie) -"qq" = (/obj/machinery/door/firedoor/border_only,/obj/random/trash,/turf/simulated/floor/tiled/asteroid_steel/airless,/area/submap/oldstation_alpha) -"qw" = (/obj/structure/table/standard,/obj/item/weapon/reagent_containers/chem_disp_cartridge/biomass,/obj/item/weapon/reagent_containers/chem_disp_cartridge/mutagen,/obj/item/weapon/reagent_containers/chem_disp_cartridge/tricord,/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_tox) -"qF" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/effect/floor_decal/rust,/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_beta) -"qG" = (/obj/item/clothing/head/welding,/obj/effect/floor_decal/rust,/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_power) -"qK" = (/obj/machinery/door/firedoor,/obj/effect/floor_decal/rust,/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_beta) -"qQ" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_charlie) -"qR" = (/obj/random/trash,/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_bridge) -"qU" = (/turf/simulated/wall,/area/submap/oldstation_bridge) -"qV" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/mob/living/simple_mob/mechanical/hivebot/ranged_damage/siege/fragmentation,/obj/effect/floor_decal/rust,/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_tox) -"ra" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/mob/living/simple_mob/mechanical/hivebot/tank/armored/anti_melee,/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_charlie) -"rb" = (/obj/structure/cable/yellow{d2 = 4; icon_state = "0-4"},/obj/machinery/power/solar,/turf/simulated/floor/airless{icon_state = "solarpanel"},/area/submap/oldstation_power) -"re" = (/obj/machinery/firealarm{dir = 8; pixel_x = 28},/obj/effect/floor_decal/rust,/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_charlie) -"rf" = (/obj/machinery/light/small{dir = 4},/turf/simulated/floor/tiled/old_tile/green,/area/submap/oldstation_hydro_sec) -"rg" = (/obj/structure/bed/chair{dir = 8},/obj/effect/floor_decal/corner/grey/diagonal,/turf/simulated/floor/tiled/old_tile,/area/submap/oldstation_kitchen) -"rm" = (/turf/simulated/mineral,/area/submap/oldstation_alpha) -"rp" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/light{dir = 1; in_use = 1},/mob/living/simple_mob/mechanical/hivebot/swarm,/obj/effect/floor_decal/rust,/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_charlie) -"ru" = (/obj/effect/decal/cleanable/cobweb,/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_beta) -"rw" = (/obj/structure/table/standard,/obj/item/weapon/reagent_containers/chem_disp_cartridge/deadrum,/obj/item/weapon/reagent_containers/chem_disp_cartridge/hot_coco,/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_tox) -"rC" = (/obj/structure/cable/yellow{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/plating,/area/submap/oldstation_power) -"rF" = (/obj/machinery/light/small{dir = 8},/obj/machinery/firealarm{dir = 8; pixel_x = -24},/obj/structure/cable/yellow,/turf/simulated/floor/plating,/area/submap/oldstation_power) -"rN" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/firedoor,/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_charlie) -"rO" = (/obj/random/junk,/turf/simulated/floor/tiled/asteroid_steel/airless,/area/submap/oldstation_alpha) -"rR" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_beta) -"sd" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/random/trash,/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_bridge) -"se" = (/obj/structure/cable/yellow{d2 = 8; icon_state = "0-8"},/turf/simulated/floor/airless{icon_state = "solarpanel"},/area/submap/oldstation_power) -"sk" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/effect/floor_decal/rust,/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_beta) -"sl" = (/obj/machinery/computer{desc = "A computer long since rendered non-functional due to lack of maintenance. Spitting out error messages."; name = "Broken Computer"},/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_beta) -"sm" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/wingrille_spawn/reinforced,/turf/simulated/floor/plating,/area/submap/oldstation_beta) -"sn" = (/obj/structure/toilet{pixel_y = 12},/turf/simulated/floor/tiled/old_tile,/area/submap/oldstation_bridge) -"sq" = (/obj/structure/table/standard,/obj/machinery/light/small,/obj/item/trash/plate,/turf/simulated/floor/plating,/area/submap/oldstation_charlie) -"ss" = (/turf/simulated/wall,/area/submap/oldstation_power) -"sy" = (/obj/structure/table/standard,/obj/machinery/light/small{dir = 4},/obj/item/weapon/reagent_containers/chem_disp_cartridge/bluecuracao,/obj/item/weapon/reagent_containers/chem_disp_cartridge/myelamine,/obj/item/weapon/reagent_containers/chem_disp_cartridge/sodawater,/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_tox) -"sB" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/mob/living/simple_mob/mechanical/hivebot/tank/armored/anti_melee,/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_charlie) -"sC" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_beta) -"sF" = (/obj/structure/mirror{name = "dusty mirror"; pixel_x = 26},/obj/structure/sink{dir = 4; pixel_x = 12},/turf/simulated/floor/tiled/old_tile,/area/submap/oldstation_bridge) -"sH" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/effect/decal/cleanable/generic,/obj/effect/floor_decal/rust,/obj/random/junk,/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_beta) -"sJ" = (/obj/machinery/power/solar,/obj/structure/cable/yellow{d2 = 8; icon_state = "0-8"},/turf/simulated/floor/airless{icon_state = "solarpanel"},/area/submap/oldstation_power) -"sL" = (/obj/structure/table/standard,/obj/effect/floor_decal/corner/blue/border{dir = 8},/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_bridge) -"sM" = (/obj/effect/landmark/loot_spawn/low,/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_power) -"td" = (/obj/effect/landmark/loot_spawn/low,/turf/simulated/floor/plating,/area/submap/oldstation_power) -"tg" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/maintenance/rnd{name = "Hydroponics"},/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_hydro_sec) -"tj" = (/obj/machinery/vending/dinnerware,/obj/effect/floor_decal/corner/grey/diagonal,/turf/simulated/floor/tiled/old_tile,/area/submap/oldstation_kitchen) -"tk" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/door/firedoor,/mob/living/simple_mob/mechanical/hivebot/swarm,/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_charlie) -"to" = (/obj/machinery/atmospherics/pipe/simple/hidden/universal,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/airlock/maintenance_hatch,/turf/simulated/floor/plating,/area/submap/oldstation_beta) -"tp" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_charlie) -"tq" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/mob/living/simple_mob/mechanical/hivebot/ranged_damage/strong/guard,/obj/effect/floor_decal/rust,/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_charlie) -"tC" = (/obj/machinery/light/small{dir = 8; pixel_y = -8},/obj/structure/mirror{name = "dusty mirror"; pixel_x = -26},/turf/simulated/floor/tiled/old_tile,/area/submap/oldstation_bridge) -"tD" = (/obj/structure/transit_tube,/obj/effect/wingrille_spawn/reinforced,/turf/simulated/floor/plating,/area/submap/oldstation_charlie) -"tP" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/firealarm{dir = 4; pixel_x = -28},/obj/random/trash,/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_charlie) -"ub" = (/obj/structure/table/standard,/obj/item/weapon/tool/crowbar,/obj/random/maintenance,/obj/random/maintenance,/obj/random/maintenance,/obj/random/maintenance,/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_beta) -"uh" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/door/airlock/highsecurity{name = "Prototype Laboratory"; req_access_txt = "271"},/turf/simulated/floor/tiled/old_tile/red,/area/submap/oldstation_tox) -"un" = (/obj/machinery/door/airlock/command,/obj/structure/barricade,/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_charlie) -"uq" = (/obj/effect/floor_decal/corner/blue/border{dir = 9},/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_bridge) -"uv" = (/obj/effect/decal/remains/robot{icon_state = "gibup"},/mob/living/simple_mob/mechanical/hivebot/swarm,/turf/simulated/shuttle/floor/voidcraft/dark,/area/submap/oldstation_hiveboat) -"uw" = (/obj/structure/table/reinforced,/obj/machinery/light{dir = 4},/obj/item/weapon/paper{info = "*K14-Multiphase Energy Gun*

The K14 Prototype Energy Gun is the first Energy Rifle that has been successfully been able to not only hold a larger ammo charge than other gun models, but is capable of swapping between different energy projectile types on command with no incidents.

The weapon still suffers several drawbacks, its alternative, non laser fire mode, can only fire one round before exhausting the energy cell, the weapon also remains prohibitively expensive, nonetheless NT Market Research fully believe this weapon will form the backbone of our Energy weapon catalogue.

The K14 is expected to undergo revision to fix the ammo issues, the K15 is expected to replace the 'stun' setting with a 'disable' setting in an attempt to bypass the ammo issues."; name = "K14 Energy Gun Report"},/turf/simulated/floor/tiled/old_tile/red,/area/submap/oldstation_tox) -"uy" = (/obj/effect/floor_decal/corner/blue/border{dir = 4},/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_bridge) -"uF" = (/obj/structure/table/rack/shelf/steel,/obj/item/clothing/head/helmet/material,/obj/item/clothing/head/helmet/material,/obj/random/gun/random,/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_beta) -"uK" = (/obj/structure/particle_accelerator/fuel_chamber,/turf/simulated/floor/plating,/area/submap/oldstation_charlie) -"uL" = (/obj/effect/decal/remains/human,/turf/template_noop,/area/template_noop) -"uM" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_charlie) -"uS" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/door/firedoor,/obj/effect/floor_decal/rust,/obj/random/junk,/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_beta) -"uT" = (/obj/machinery/particle_accelerator/control_box,/turf/simulated/floor/plating,/area/submap/oldstation_charlie) -"uZ" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/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/tiled/asteroid_steel,/area/submap/oldstation_beta) -"vr" = (/obj/machinery/light/small{dir = 4},/obj/machinery/pipedispenser,/turf/simulated/floor/tiled/asteroid_steel/airless,/area/submap/oldstation_alpha) -"vs" = (/obj/machinery/atmospherics/unary/vent_pump{dir = 1},/turf/simulated/floor/airless,/area/submap/oldstation_alpha) -"vt" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/airlock/external{name = "Engineering External Access"; req_one_access_txt = "271"},/turf/simulated/floor/plating,/area/submap/oldstation_power) -"vw" = (/obj/machinery/light{dir = 8},/turf/simulated/floor/tiled/old_tile/blue,/area/submap/oldstation_tox) -"vy" = (/obj/structure/cable{d2 = 2; icon_state = "0-2"; pixel_y = 1},/obj/machinery/power/apc{dir = 4; name = "Charlie Command APC"; pixel_x = 24; report_power_alarm = 0; start_charge = 0},/turf/simulated/floor/plating,/area/submap/oldstation_bridge) -"vz" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/airless,/area/submap/oldstation_power) -"vA" = (/obj/structure/table/standard,/obj/item/clothing/mask/gas,/obj/item/weapon/handcuffs,/obj/item/weapon/handcuffs,/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_beta) -"vC" = (/obj/effect/decal/cleanable/cobweb,/turf/simulated/floor/plating,/area/submap/oldstation_beta) -"vD" = (/mob/living/simple_mob/mechanical/hivebot/swarm,/obj/effect/floor_decal/rust,/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_charlie) -"vJ" = (/obj/machinery/atmospherics/pipe/tank/air{dir = 4},/turf/simulated/floor/plating,/area/submap/oldstation_beta) -"vX" = (/obj/effect/floor_decal/rust,/obj/random/junk,/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_beta) -"wf" = (/obj/machinery/door/firedoor/border_only,/turf/simulated/floor/tiled/asteroid_steel/airless,/area/submap/oldstation_alpha) -"wj" = (/obj/structure/window/reinforced{dir = 8},/obj/machinery/door/blast/regular,/turf/simulated/floor/tiled/old_tile/red,/area/submap/oldstation_tox) -"wo" = (/turf/simulated/wall/r_wall,/area/submap/oldstation_tox) -"wF" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/light/small{dir = 8},/obj/random/trash,/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_beta) -"wK" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_beta) -"wM" = (/obj/structure/table/standard,/obj/item/device/megaphone/super,/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_bridge) -"wP" = (/obj/structure/sign/poster/nanotrasen,/turf/simulated/wall,/area/submap/oldstation_bridge) -"wT" = (/obj/structure/table/standard,/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_power) -"wY" = (/obj/random/junk,/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_bridge) -"wZ" = (/obj/effect/decal/cleanable/egg_smudge,/obj/effect/floor_decal/corner/grey/diagonal,/turf/simulated/floor/tiled/old_tile,/area/submap/oldstation_kitchen) -"xe" = (/obj/machinery/light/small{dir = 8},/obj/structure/urinal{pixel_y = 30},/turf/simulated/floor/tiled/old_tile,/area/submap/oldstation_bridge) -"xg" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/chem_master,/obj/item/weapon/reagent_containers/glass/beaker,/turf/simulated/floor/tiled/old_tile,/area/submap/oldstation_tox) -"xj" = (/obj/structure/closet/crate,/obj/fiftyspawner/silver{amount = 25},/obj/fiftyspawner/gold{amount = 25},/obj/fiftyspawner/uranium,/obj/fiftyspawner/uranium,/obj/fiftyspawner/uranium,/turf/simulated/shuttle/floor/voidcraft/dark,/area/submap/oldstation_hiveboat) -"xr" = (/obj/item/stack/cable_coil,/obj/structure/cable,/obj/machinery/power/apc{dir = 4; name = "Charlie Engineering APC"; pixel_x = 24; report_power_alarm = 0; start_charge = 0},/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_power) -"xE" = (/obj/item/stack/cable_coil,/turf/simulated/floor/tiled/asteroid_steel/airless,/area/submap/oldstation_alpha) -"xF" = (/obj/structure/table/standard,/obj/item/weapon/storage/firstaid/bonemed,/turf/simulated/floor/tiled/old_tile,/area/submap/oldstation_alpha) -"xG" = (/obj/structure/table/standard,/obj/item/weapon/soap/nanotrasen,/obj/effect/floor_decal/corner/blue/border{dir = 4},/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_bridge) -"xH" = (/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_power) -"xL" = (/obj/machinery/light/small{dir = 4},/obj/structure/closet/crate,/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_beta) -"xO" = (/obj/structure/window/reinforced{dir = 4},/obj/machinery/door/blast/regular,/turf/simulated/floor/tiled/old_tile/red,/area/submap/oldstation_tox) -"xU" = (/obj/structure/closet/crate/radiation,/obj/fiftyspawner/uranium,/turf/simulated/floor/plating,/area/submap/oldstation_power) -"xV" = (/obj/effect/wingrille_spawn/reinforced,/turf/simulated/floor/plating,/area/submap/oldstation_hydro_sec) -"xZ" = (/obj/machinery/door/firedoor,/mob/living/simple_mob/mechanical/hivebot/swarm,/obj/effect/floor_decal/rust,/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_charlie) -"yc" = (/obj/structure/table/standard,/obj/item/weapon/folder/blue,/obj/effect/floor_decal/corner/blue/border{dir = 1},/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_bridge) -"yt" = (/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_beta) -"yz" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/effect/decal/cleanable/generic,/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_beta) -"yG" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/plating,/area/submap/oldstation_kitchen) -"yJ" = (/obj/machinery/door/airlock/maintenance_hatch,/turf/simulated/floor/plating,/area/submap/oldstation_beta) -"yK" = (/mob/living/simple_mob/mechanical/hivebot/swarm,/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_tox) -"yL" = (/mob/living/simple_mob/mechanical/hivebot/swarm,/obj/effect/floor_decal/rust,/obj/random/junk,/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_charlie) -"yM" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/door/firedoor,/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_beta) -"yT" = (/obj/structure/bed/chair{dir = 4},/obj/effect/floor_decal/corner/grey/diagonal,/turf/simulated/floor/tiled/old_tile,/area/submap/oldstation_kitchen) -"zb" = (/obj/structure/shuttle/engine/heater{dir = 4},/turf/simulated/wall,/area/submap/oldstation_hiveboat) -"zd" = (/obj/machinery/firealarm{dir = 4; pixel_x = -28},/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_tox) -"zf" = (/turf/simulated/floor/plating,/area/submap/oldstation_bridge) -"zi" = (/obj/structure/table/standard,/obj/item/weapon/stock_parts/matter_bin,/obj/item/weapon/stock_parts/scanning_module,/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_tox) -"zk" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/random/junk,/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_charlie) -"zy" = (/obj/structure/table/standard,/obj/item/weapon/pen,/obj/effect/floor_decal/corner/blue/border{dir = 1},/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_bridge) -"zE" = (/turf/simulated/wall/r_wall,/area/submap/oldstation_hiveboat) -"zM" = (/obj/machinery/light/small{dir = 8},/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_beta) -"zR" = (/obj/effect/landmark/loot_spawn/low,/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_beta) -"zU" = (/obj/effect/landmark/loot_spawn/low,/turf/simulated/shuttle/floor/voidcraft/dark,/area/submap/oldstation_hiveboat) -"zW" = (/obj/machinery/computer{desc = "A computer long since rendered non-functional due to lack of maintenance. Spitting out error messages."; dir = 1; name = "Broken Computer"},/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_beta) -"zX" = (/obj/random/maintenance/research,/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_tox) -"Ad" = (/obj/machinery/light,/turf/simulated/floor/tiled/old_tile/red,/area/submap/oldstation_tox) -"Ae" = (/obj/machinery/light/small{dir = 4},/obj/effect/floor_decal/rust,/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_beta) -"Am" = (/obj/effect/floor_decal/rust,/turf/simulated/floor/airless,/area/submap/oldstation_power) -"Ap" = (/obj/machinery/atmospherics/unary/engine/bigger{dir = 4},/turf/simulated/floor/plating,/area/submap/oldstation_hiveboat) -"Ar" = (/obj/machinery/computer/rdconsole/core,/turf/simulated/floor/tiled/old_tile/blue,/area/submap/oldstation_tox) -"AK" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/door/firedoor,/obj/machinery/door/airlock/maintenance/int{name = "Cryogenics"},/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_beta) -"AO" = (/obj/structure/table/standard,/obj/machinery/atmospherics/unary/vent_pump/on,/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_hydro_sec) -"AU" = (/mob/living/simple_mob/animal/space/carp/large,/turf/template_noop,/area/template_noop) -"AV" = (/obj/effect/floor_decal/corner/grey/diagonal,/obj/effect/floor_decal/rust,/obj/effect/floor_decal/rust,/turf/simulated/floor/tiled/old_tile,/area/submap/oldstation_kitchen) -"AZ" = (/obj/effect/floor_decal/corner/blue/border{dir = 1},/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_bridge) -"Bc" = (/turf/simulated/floor/airless,/area/submap/oldstation_alpha) -"Be" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_tox) -"Bm" = (/obj/structure/bed/chair{dir = 1},/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_tox) -"Bv" = (/obj/structure/transit_tube_pod{dir = 4},/turf/template_noop,/area/template_noop) -"BB" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/effect/landmark/loot_spawn/low,/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_beta) -"BC" = (/obj/structure/cable/yellow,/turf/simulated/floor/airless,/area/submap/oldstation_power) -"BE" = (/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/obj/effect/floor_decal/rust,/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_beta) -"BF" = (/obj/effect/floor_decal/corner/grey/diagonal,/turf/simulated/floor/tiled/old_tile,/area/submap/oldstation_kitchen) -"BG" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/mob/living/simple_mob/mechanical/hivebot/swarm,/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_charlie) -"BN" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/random/junk,/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_beta) -"BX" = (/obj/effect/decal/cleanable/cobweb2,/turf/simulated/floor/plating,/area/submap/oldstation_beta) -"BY" = (/obj/machinery/door/airlock/command{name = "Theta Station Access"},/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_beta) -"Cb" = (/obj/structure/closet/crate/engineering/electrical,/obj/item/solar_assembly,/obj/item/solar_assembly,/obj/item/solar_assembly,/obj/item/solar_assembly,/turf/simulated/floor/plating,/area/submap/oldstation_bridge) -"Cc" = (/obj/item/solar_assembly,/obj/item/solar_assembly,/obj/item/solar_assembly,/obj/item/solar_assembly,/obj/item/solar_assembly,/obj/item/solar_assembly,/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_power) -"Cd" = (/obj/random/multiple/gun/projectile/rifle,/turf/simulated/shuttle/floor/voidcraft/dark,/area/submap/oldstation_hiveboat) -"Cn" = (/obj/structure/window/reinforced{dir = 8},/obj/machinery/portable_atmospherics/canister/air,/turf/simulated/floor/tiled/old_tile,/area/submap/oldstation_alpha) -"Co" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass{name = "Kitchen"; req_access = list(28)},/turf/simulated/floor/tiled/old_tile,/area/submap/oldstation_kitchen) -"Cp" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/effect/floor_decal/rust,/obj/random/junk,/turf/simulated/floor/tiled/asteroid_steel/airless,/area/submap/oldstation_alpha) -"Cr" = (/obj/random/junk,/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_beta) -"Cs" = (/obj/machinery/computer{desc = "A computer long since rendered non-functional due to lack of maintenance. Spitting out error messages."; name = "Broken Computer"},/turf/simulated/floor/tiled/old_tile/blue,/area/submap/oldstation_bridge) -"Ct" = (/obj/effect/floor_decal/corner/grey/diagonal,/obj/effect/floor_decal/rust,/turf/simulated/floor/tiled/old_tile,/area/submap/oldstation_kitchen) -"Cz" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/light/small{dir = 4},/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_beta) -"CC" = (/turf/simulated/floor/tiled/old_tile/green,/area/submap/oldstation_hydro_sec) -"CQ" = (/obj/structure/table/standard,/obj/item/weapon/pen,/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_beta) -"CR" = (/obj/random/trash,/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_power) -"CX" = (/obj/random/junk,/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_power) -"Dg" = (/obj/structure/transit_tube,/obj/effect/wingrille_spawn/reinforced,/turf/simulated/floor/plating,/area/submap/oldstation_beta) -"Dj" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{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"},/obj/structure/cable/yellow{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/airless,/area/submap/oldstation_power) -"Dp" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/science,/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_charlie) -"Du" = (/obj/item/solar_assembly,/obj/structure/lattice,/turf/template_noop,/area/submap/oldstation_power) -"Dw" = (/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/obj/machinery/light/small{dir = 8},/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_beta) -"Dx" = (/obj/structure/closet/crate,/obj/fiftyspawner/steel{amount = 20},/obj/fiftyspawner/steel{amount = 20},/turf/simulated/shuttle/floor/voidcraft/external,/area/submap/oldstation_hiveboat) -"DE" = (/obj/effect/floor_decal/corner/green/border,/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_hydro_sec) -"DG" = (/obj/structure/girder,/turf/simulated/floor/airless,/area/template_noop) -"DO" = (/obj/effect/wingrille_spawn/reinforced,/turf/simulated/floor/plating,/area/submap/oldstation_bridge) -"DU" = (/obj/machinery/door/airlock/command,/turf/simulated/floor/tiled/asteroid_steel/airless,/area/submap/oldstation_alpha) -"DZ" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/obj/structure/table/standard,/obj/random/maintenance/research,/obj/random/maintenance/research,/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_tox) -"Eb" = (/obj/effect/floor_decal/rust,/obj/random/trash,/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_power) -"Er" = (/obj/effect/decal/cleanable/blood/oil,/mob/living/simple_mob/mechanical/hivebot/swarm,/turf/simulated/shuttle/floor/voidcraft/external,/area/submap/oldstation_hiveboat) -"Et" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/effect/floor_decal/rust,/obj/random/junk,/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_charlie) -"Eu" = (/obj/effect/floor_decal/corner/green/border{dir = 1},/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_hydro_sec) -"Ev" = (/obj/structure/cable{d2 = 2; icon_state = "0-2"; pixel_y = 1},/obj/machinery/power/smes/buildable/hybrid,/turf/simulated/floor/plating,/area/submap/oldstation_power) -"Ez" = (/obj/structure/table/standard,/obj/item/weapon/reagent_containers/chem_disp_cartridge/clonexadone,/obj/item/weapon/reagent_containers/chem_disp_cartridge/unathiliquor,/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_tox) -"EB" = (/obj/structure/transit_tube{icon_state = "N-S"},/turf/template_noop,/area/template_noop) -"EM" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/mob/living/simple_mob/mechanical/hivebot/swarm,/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_charlie) -"EO" = (/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_hydro_sec) -"EV" = (/turf/simulated/mineral,/area/template_noop) -"EX" = (/obj/machinery/power/rad_collector,/turf/simulated/floor/plating,/area/submap/oldstation_charlie) -"EZ" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/effect/floor_decal/rust,/obj/random/junk,/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_charlie) -"Fl" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/effect/floor_decal/rust,/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_tox) -"Fs" = (/obj/machinery/computer{desc = "A computer long since rendered non-functional due to lack of maintenance. Spitting out error messages."; dir = 1; name = "Broken Computer"},/turf/simulated/floor/tiled/old_tile/red,/area/submap/oldstation_tox) -"Fv" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_beta) -"Fw" = (/obj/structure/closet/secure_closet/freezer/fridge,/obj/effect/floor_decal/corner/grey/diagonal,/turf/simulated/floor/tiled/old_tile,/area/submap/oldstation_kitchen) -"Fy" = (/obj/effect/decal/cleanable/blood/oil,/mob/living/simple_mob/mechanical/hivebot/swarm,/turf/simulated/shuttle/floor/voidcraft/dark,/area/submap/oldstation_hiveboat) -"FE" = (/obj/structure/closet/crate,/obj/fiftyspawner/steel{amount = 30},/obj/fiftyspawner/titanium{amount = 30},/turf/simulated/shuttle/floor/voidcraft/external,/area/submap/oldstation_hiveboat) -"FL" = (/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/obj/random/junk,/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_charlie) -"FM" = (/obj/machinery/light/small{dir = 8},/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_power) -"FO" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/effect/floor_decal/rust,/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_charlie) -"FQ" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/plating,/area/submap/oldstation_power) -"FR" = (/turf/simulated/floor/tiled/old_tile/blue,/area/submap/oldstation_bridge) -"FZ" = (/obj/machinery/light/small{dir = 4},/obj/structure/closet/crate/secure/weapon,/turf/simulated/floor/plating,/area/submap/oldstation_charlie) -"Gg" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/door/firedoor,/obj/effect/floor_decal/rust,/obj/random/junk,/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_beta) -"Gi" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/airless,/area/submap/oldstation_alpha) -"Gw" = (/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/airless,/area/submap/oldstation_power) -"Gz" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/mob/living/simple_mob/mechanical/hivebot/tank/armored/anti_laser,/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_charlie) -"GB" = (/obj/effect/wingrille_spawn/reinforced,/turf/simulated/floor/airless,/area/submap/oldstation_alpha) -"GC" = (/obj/effect/decal/remains/human,/obj/effect/decal/cleanable/cobweb,/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_charlie) -"GF" = (/turf/simulated/wall,/area/submap/oldstation_kitchen) -"GH" = (/obj/machinery/light/small{dir = 1},/obj/effect/floor_decal/rust,/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_beta) -"GL" = (/obj/machinery/power/port_gen/pacman/super,/turf/simulated/floor/plating,/area/submap/oldstation_power) -"GN" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/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"},/obj/effect/floor_decal/rust,/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_charlie) -"GO" = (/obj/effect/decal/remains/robot{icon_state = "gib5"},/mob/living/simple_mob/mechanical/hivebot/ranged_damage/strong/guard,/turf/simulated/shuttle/floor/voidcraft/external,/area/submap/oldstation_hiveboat) -"Hb" = (/obj/structure/table/standard,/obj/machinery/atmospherics/unary/vent_pump/on,/obj/item/weapon/coin,/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_bridge) -"He" = (/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/mob/living/simple_mob/mechanical/hivebot/tank/armored/anti_laser,/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_charlie) -"Hm" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/maintenance/engi{name = "Engineering"},/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_power) -"Hn" = (/obj/effect/landmark/loot_spawn/low,/turf/simulated/floor/tiled/asteroid_steel/airless,/area/submap/oldstation_alpha) -"HB" = (/obj/structure/table/standard,/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/obj/effect/floor_decal/corner/grey/diagonal,/turf/simulated/floor/tiled/old_tile,/area/submap/oldstation_kitchen) -"HF" = (/obj/structure/table/standard,/obj/item/device/flash,/obj/item/device/flash,/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_beta) -"HK" = (/obj/structure/cable,/turf/simulated/floor/plating,/area/submap/oldstation_power) -"HM" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/light,/mob/living/simple_mob/mechanical/hivebot/swarm,/obj/effect/floor_decal/rust,/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_charlie) -"HR" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/effect/floor_decal/corner/grey/diagonal,/turf/simulated/floor/tiled/old_tile,/area/submap/oldstation_kitchen) -"Ib" = (/obj/effect/landmark/loot_spawn/low,/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_charlie) -"Ii" = (/turf/simulated/floor/airless,/area/template_noop) -"Ik" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/light{dir = 1; in_use = 1},/mob/living/simple_mob/mechanical/hivebot/tank/armored/anti_laser,/obj/effect/floor_decal/rust,/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_charlie) -"Im" = (/obj/structure/sign/redcross,/turf/simulated/wall,/area/submap/oldstation_beta) -"Ir" = (/obj/machinery/optable{name = "Robotics Operating Table"},/turf/simulated/floor/tiled/old_tile/blue,/area/submap/oldstation_tox) -"Iv" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/effect/floor_decal/rust,/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_beta) -"Iz" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/effect/floor_decal/rust,/turf/simulated/floor/tiled/asteroid_steel/airless,/area/submap/oldstation_alpha) -"IA" = (/obj/random/junk,/obj/random/junk,/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_power) -"ID" = (/obj/machinery/door/firedoor,/mob/living/simple_mob/mechanical/hivebot/swarm,/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_charlie) -"IE" = (/obj/structure/table/standard,/obj/machinery/recharger,/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_tox) -"IF" = (/obj/machinery/light/small,/turf/simulated/floor/tiled/old_tile/green,/area/submap/oldstation_hydro_sec) -"IW" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/obj/structure/table/standard,/obj/item/weapon/folder/white,/obj/item/weapon/reagent_containers/glass/beaker,/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_tox) -"IX" = (/obj/effect/wingrille_spawn/reinforced,/turf/simulated/floor/plating,/area/submap/oldstation_beta) -"Ji" = (/obj/structure/closet/crate/engineering/electrical,/obj/item/solar_assembly,/obj/item/solar_assembly,/obj/item/solar_assembly,/obj/item/solar_assembly,/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_beta) -"Jj" = (/turf/simulated/wall,/area/submap/oldstation_hydro_sec) -"Jk" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/mob/living/simple_mob/mechanical/hivebot/ranged_damage/strong/guard,/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_charlie) -"Jt" = (/obj/structure/transit_tube_pod{dir = 4},/obj/structure/transit_tube/station,/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_beta) -"Ju" = (/obj/structure/table/standard,/obj/effect/floor_decal/corner/blue/border{dir = 4},/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_bridge) -"Jx" = (/obj/machinery/portable_atmospherics/canister,/turf/simulated/floor/airless,/area/submap/oldstation_alpha) -"Jy" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/light/small{dir = 4},/obj/machinery/firealarm{dir = 4; pixel_x = 24},/obj/random/trash,/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_beta) -"JF" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/door/firedoor,/obj/machinery/door/airlock/science,/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_charlie) -"JT" = (/obj/structure/particle_accelerator/particle_emitter/left,/turf/simulated/floor/plating,/area/submap/oldstation_charlie) -"Kt" = (/obj/effect/decal/cleanable/flour,/obj/effect/floor_decal/corner/grey/diagonal,/obj/effect/floor_decal/rust,/obj/random/junk,/turf/simulated/floor/tiled/old_tile,/area/submap/oldstation_kitchen) -"Kv" = (/obj/effect/floor_decal/rust,/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_beta) -"Kz" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_bridge) -"KC" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/plating,/area/submap/oldstation_hydro_sec) -"KG" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/floor_decal/rust,/turf/simulated/floor/tiled/asteroid_steel/airless,/area/submap/oldstation_alpha) -"KL" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_power) -"KZ" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/mob/living/simple_mob/mechanical/hivebot/tank/armored/anti_laser,/obj/random/junk,/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_charlie) -"Lc" = (/obj/structure/cable,/obj/machinery/power/apc{dir = 4; name = "Charlie Main Corridor APC"; pixel_x = 24; report_power_alarm = 0; start_charge = 0},/obj/structure/closet/crate,/turf/simulated/floor/plating,/area/submap/oldstation_beta) -"Lh" = (/obj/machinery/light{dir = 4},/obj/machinery/door/firedoor,/obj/random/junk,/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_charlie) -"Lj" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/airless,/area/template_noop) -"Lk" = (/turf/simulated/floor/tiled/old_tile,/area/submap/oldstation_tox) -"Ll" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable{d2 = 8; icon_state = "0-8"},/obj/machinery/power/apc{name = "Charlie Kitchen APC"; pixel_y = -24; report_power_alarm = 0; start_charge = 0},/turf/simulated/floor/plating,/area/submap/oldstation_kitchen) -"Ln" = (/obj/structure/cable{d2 = 4; icon_state = "0-4"},/obj/machinery/power/apc{dir = 1; name = "Thete Prototype Lab APC"; pixel_y = 24; report_power_alarm = 0; start_charge = 0},/turf/simulated/floor/tiled/old_tile/red,/area/submap/oldstation_tox) -"Lo" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/science{name = "Artificial Program Core Room"},/turf/simulated/floor/plating,/area/submap/oldstation_charlie) -"Lp" = (/obj/effect/floor_decal/corner/green/border{dir = 1},/obj/random/trash,/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_hydro_sec) -"Lq" = (/turf/simulated/floor/tiled/old_tile/red,/area/submap/oldstation_tox) -"Lv" = (/obj/item/stolenpackage,/turf/simulated/shuttle/floor/voidcraft/dark,/area/submap/oldstation_hiveboat) -"Lw" = (/obj/effect/decal/cleanable/flour,/obj/effect/floor_decal/corner/grey/diagonal,/turf/simulated/floor/tiled/old_tile,/area/submap/oldstation_kitchen) -"LD" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/mob/living/simple_mob/mechanical/hivebot/swarm,/obj/effect/floor_decal/rust,/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_charlie) -"LG" = (/obj/structure/table/standard,/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/obj/item/weapon/storage/backpack,/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_beta) -"LN" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{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/airless,/area/submap/oldstation_power) -"LS" = (/obj/structure/table/standard,/obj/item/weapon/book/manual/security_space_law,/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_beta) -"LT" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/light{dir = 8},/mob/living/simple_mob/mechanical/hivebot/tank/armored/anti_laser,/obj/effect/floor_decal/rust,/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_charlie) -"Ma" = (/obj/random/maintenance/research,/obj/effect/floor_decal/rust,/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_tox) -"Mc" = (/obj/item/clothing/shoes/magboots,/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_power) -"Md" = (/obj/structure/table/standard,/obj/item/weapon/paper,/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_beta) -"Mi" = (/obj/effect/floor_decal/rust,/obj/random/junk,/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_tox) -"Mp" = (/mob/living/simple_mob/mechanical/hivebot/support/logistics,/turf/simulated/floor/tiled/old_tile/blue,/area/submap/oldstation_tox) -"Mq" = (/obj/effect/floor_decal/corner/grey/diagonal,/obj/effect/floor_decal/rust,/obj/random/junk,/turf/simulated/floor/tiled/old_tile,/area/submap/oldstation_kitchen) -"Ms" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/mob/living/simple_mob/mechanical/hivebot/tank/armored/anti_melee,/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_tox) -"Mx" = (/obj/structure/table/reinforced,/obj/machinery/the_singularitygen,/turf/simulated/floor/tiled/old_tile/red,/area/submap/oldstation_tox) -"MF" = (/obj/machinery/computer{desc = "A computer long since rendered non-functional due to lack of maintenance. Spitting out error messages."; dir = 8; name = "Broken Computer"},/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_beta) -"MI" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/effect/floor_decal/rust,/turf/simulated/floor/plating,/area/submap/oldstation_power) -"MK" = (/obj/effect/floor_decal/rust,/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_charlie) -"MM" = (/obj/structure/table/standard,/obj/item/weapon/reagent_containers/food/drinks/cans/cola,/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_beta) -"MN" = (/obj/structure/table/standard,/obj/item/weapon/broken_bottle,/obj/item/weapon/soap/deluxe,/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_tox) -"MT" = (/obj/structure/table/standard,/obj/fiftyspawner/grass,/obj/fiftyspawner/steel,/obj/effect/floor_decal/rust,/turf/simulated/floor/tiled/old_tile/blue,/area/submap/oldstation_tox) -"MW" = (/obj/structure/closet/crate/engineering{name = "plasma tank crate"},/obj/random/maintenance/medical,/obj/random/maintenance/medical,/obj/random/maintenance/research,/obj/random/maintenance/research,/obj/random/maintenance/research,/turf/simulated/floor/plating,/area/submap/oldstation_charlie) -"Nb" = (/mob/living/simple_mob/mechanical/hivebot/ranged_damage/siege/fragmentation,/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_tox) -"Nf" = (/obj/machinery/firealarm{dir = 8; pixel_x = -24},/turf/simulated/floor/tiled/old_tile/red,/area/submap/oldstation_tox) -"Nl" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/random/junk,/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_beta) -"Nq" = (/obj/machinery/door/airlock/maintenance/command{name = "Beta Station Access"},/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_beta) -"Ns" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/mob/living/simple_mob/mechanical/hivebot/swarm,/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_charlie) -"Nx" = (/obj/machinery/door/firedoor,/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_charlie) -"NH" = (/obj/machinery/light/small,/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_beta) -"NJ" = (/obj/structure/table/standard,/obj/item/weapon/reagent_containers/food/condiment/small/peppermill{pixel_x = 3},/obj/item/weapon/reagent_containers/food/condiment/small/saltshaker{pixel_x = -3},/obj/effect/floor_decal/corner/grey/diagonal,/turf/simulated/floor/tiled/old_tile,/area/submap/oldstation_kitchen) -"NK" = (/obj/structure/bed/chair/bay/chair/padded{dir = 8},/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_beta) -"NP" = (/turf/simulated/floor/airless,/area/submap/oldstation_power) -"NS" = (/obj/machinery/atmospherics/unary/vent_pump{dir = 8},/obj/effect/floor_decal/rust,/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_charlie) -"NZ" = (/obj/effect/landmark/loot_spawn/low,/turf/simulated/floor/tiled/old_tile/red,/area/submap/oldstation_tox) -"Og" = (/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_beta) -"Oh" = (/obj/structure/table/standard,/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_bridge) -"Op" = (/obj/structure/table/standard,/obj/item/weapon/stock_parts/manipulator,/obj/item/weapon/stock_parts/capacitor,/obj/item/weapon/stock_parts/micro_laser,/obj/item/stack/cable_coil,/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_tox) -"Ov" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/airless,/area/submap/oldstation_alpha) -"Oy" = (/obj/machinery/atmospherics/pipe/simple/hidden,/turf/simulated/floor/airless,/area/submap/oldstation_alpha) -"OA" = (/obj/effect/floor_decal/rust,/obj/random/trash,/turf/simulated/floor/tiled/asteroid_steel/airless,/area/submap/oldstation_alpha) -"OD" = (/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_power) -"OE" = (/obj/effect/decal/remains/robot{icon_state = "gibup"},/turf/simulated/shuttle/floor/voidcraft/dark,/area/submap/oldstation_hiveboat) -"OH" = (/obj/machinery/door/firedoor,/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_beta) -"OI" = (/obj/machinery/door/window/brigdoor/eastleft{dir = 8},/obj/machinery/door/blast/regular,/turf/simulated/floor/tiled/old_tile/red,/area/submap/oldstation_tox) -"Po" = (/obj/machinery/light{dir = 1; in_use = 1},/turf/simulated/floor/tiled/old_tile/red,/area/submap/oldstation_tox) -"Pq" = (/obj/item/roller,/turf/simulated/floor/tiled/old_tile,/area/submap/oldstation_alpha) -"Ps" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_beta) -"Pu" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/mob/living/simple_mob/mechanical/hivebot/swarm,/obj/effect/floor_decal/rust,/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_tox) -"Py" = (/obj/structure/table/standard,/obj/item/trash/plate,/obj/effect/floor_decal/corner/grey/diagonal,/turf/simulated/floor/tiled/old_tile,/area/submap/oldstation_kitchen) -"PC" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/random/trash,/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_beta) -"PP" = (/turf/simulated/wall,/area/submap/oldstation_hiveboat) -"PT" = (/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,/mob/living/simple_mob/mechanical/hivebot/swarm,/obj/effect/floor_decal/rust,/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_charlie) -"PZ" = (/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/obj/structure/cable{d2 = 8; icon_state = "0-8"},/obj/machinery/power/apc{dir = 4; name = "Theta RnD APC"; pixel_x = 24; report_power_alarm = 0; start_charge = 0},/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_charlie) -"Qe" = (/obj/structure/table/standard,/obj/item/weapon/tool/crowbar,/obj/random/maintenance,/obj/random/maintenance,/obj/random/maintenance,/obj/random/maintenance,/obj/random/maintenance,/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_beta) -"Qn" = (/obj/machinery/door/airlock,/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_bridge) -"Qp" = (/obj/effect/floor_decal/rust,/obj/random/junk,/obj/random/trash,/turf/simulated/floor/tiled/old_tile,/area/submap/oldstation_tox) -"Qv" = (/obj/structure/table/standard,/obj/structure/cable{d2 = 2; icon_state = "0-2"; pixel_y = 1},/obj/machinery/power/apc{dir = 8; name = "Charlie Security APC"; pixel_x = -24; report_power_alarm = 0; shock_proof = 0; start_charge = 0},/obj/item/weapon/folder/red,/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_beta) -"QA" = (/turf/simulated/floor/tiled/old_tile,/area/submap/oldstation_bridge) -"QB" = (/obj/structure/table/standard,/obj/item/weapon/reagent_containers/chem_disp_cartridge/acidspit,/obj/item/weapon/reagent_containers/chem_disp_cartridge/lemon,/obj/item/weapon/reagent_containers/chem_disp_cartridge/sacid,/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_tox) -"QE" = (/obj/structure/table/reinforced,/obj/item/weapon/paper{info = "*Health Analyser*

The portable Health Analyser is essentially a handheld variant of a health analyser. Years of research have concluded with this device which is capable of diagnosing even the most critical, obscure or technical injuries any humanoid entity is suffering in an easy to understand format that even a non-trained health professional can understand.

The health analyser is expected to go into full production as standard issue medical kit."; name = "Health Analyser Report"},/turf/simulated/floor/tiled/old_tile/red,/area/submap/oldstation_tox) -"QJ" = (/turf/simulated/floor/airless{icon_state = "solarpanel"},/area/submap/oldstation_power) -"QL" = (/obj/structure/sign/poster/nanotrasen,/turf/simulated/wall,/area/submap/oldstation_kitchen) -"QM" = (/obj/item/stack/cable_coil,/turf/template_noop,/area/template_noop) -"QP" = (/obj/structure/transit_tube,/turf/template_noop,/area/template_noop) -"Rf" = (/obj/effect/decal/cleanable/blood/oil,/turf/simulated/shuttle/floor/voidcraft/dark,/area/submap/oldstation_hiveboat) -"Rn" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_tox) -"Ro" = (/obj/machinery/atmospherics/unary/cryo_cell,/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_beta) -"Ru" = (/obj/machinery/light/small{dir = 4},/obj/structure/bed/chair{dir = 8},/obj/effect/floor_decal/corner/grey/diagonal,/turf/simulated/floor/tiled/old_tile,/area/submap/oldstation_kitchen) -"Rw" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/landmark/loot_spawn/low,/turf/simulated/floor/plating,/area/submap/oldstation_kitchen) -"RH" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/airlock/maintenance_hatch,/turf/simulated/floor/plating,/area/submap/oldstation_kitchen) -"RR" = (/obj/effect/wingrille_spawn/reinforced,/turf/simulated/floor/plating,/area/submap/oldstation_power) -"RT" = (/mob/living/simple_mob/mechanical/hivebot/ranged_damage/strong/guard,/turf/simulated/shuttle/floor/voidcraft/dark,/area/submap/oldstation_hiveboat) -"RU" = (/obj/structure/bed/chair/bay/chair/padded,/turf/simulated/floor/tiled/old_tile/red,/area/submap/oldstation_tox) -"RX" = (/obj/structure/cable/yellow{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/airless,/area/submap/oldstation_power) -"RZ" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/effect/floor_decal/rust,/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_power) -"Sa" = (/obj/machinery/light{dir = 4},/obj/structure/bed/chair{dir = 1},/turf/simulated/floor/tiled/old_tile/blue,/area/submap/oldstation_bridge) -"Sb" = (/obj/machinery/power/emitter,/turf/simulated/floor/plating,/area/submap/oldstation_charlie) -"Se" = (/obj/effect/floor_decal/corner/blue/border{dir = 5},/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_bridge) -"Sh" = (/obj/structure/cable/yellow{d2 = 8; icon_state = "0-8"},/turf/simulated/floor/airless,/area/submap/oldstation_power) -"Sn" = (/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_power) -"Ss" = (/obj/effect/floor_decal/rust,/turf/simulated/floor/tiled/asteroid_steel/airless,/area/submap/oldstation_alpha) -"Su" = (/obj/machinery/atmospherics/pipe/simple/hidden{dir = 9},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plating,/area/submap/oldstation_beta) -"Sy" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/item/solar_assembly,/turf/simulated/floor/plating,/area/submap/oldstation_beta) -"SG" = (/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_beta) -"SW" = (/obj/structure/table/reinforced,/obj/machinery/light{dir = 8},/obj/item/device/healthanalyzer/phasic,/turf/simulated/floor/tiled/old_tile/red,/area/submap/oldstation_tox) -"SZ" = (/obj/effect/floor_decal/rust,/obj/random/junk,/turf/simulated/floor/tiled/asteroid_steel/airless,/area/submap/oldstation_alpha) -"Tc" = (/mob/living/simple_mob/mechanical/hivebot/tank/armored/anti_laser,/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_tox) -"Tg" = (/mob/living/simple_mob/mechanical/hivebot/swarm,/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_charlie) -"Tl" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/airlock/maintenance_hatch,/turf/simulated/floor/plating,/area/submap/oldstation_hydro_sec) -"Tn" = (/turf/simulated/floor/plating,/area/submap/oldstation_power) -"Tr" = (/obj/machinery/door/airlock/maintenance_hatch,/turf/simulated/floor/plating,/area/submap/oldstation_charlie) -"Tu" = (/obj/structure/table/standard,/obj/item/weapon/reagent_containers/chem_disp_cartridge/ale,/obj/item/weapon/reagent_containers/chem_disp_cartridge/imidazoline,/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_tox) -"Tw" = (/mob/living/simple_mob/mechanical/hivebot/ranged_damage/strong/guard,/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_charlie) -"TC" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/old_tile/green,/area/submap/oldstation_hydro_sec) -"TD" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/mob/living/simple_mob/mechanical/hivebot/tank/armored/anti_melee,/obj/random/junk,/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_charlie) -"TE" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/effect/floor_decal/corner/green/border,/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_hydro_sec) -"TH" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/light/small{dir = 8},/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_beta) -"TK" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_tox) -"TL" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/airlock/external{name = "Engineering External Access"; req_one_access_txt = "271"},/turf/simulated/floor/airless,/area/submap/oldstation_power) -"TN" = (/turf/simulated/shuttle/floor/voidcraft/dark,/area/submap/oldstation_hiveboat) -"TO" = (/obj/machinery/light/small{dir = 4},/mob/living/simple_mob/mechanical/hivebot/swarm,/turf/simulated/floor/plating,/area/submap/oldstation_charlie) -"TP" = (/obj/structure/table/rack/shelf/steel,/obj/item/weapon/gun/energy/laser,/obj/item/weapon/gun/energy/laser{pixel_x = 4; pixel_y = 2},/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_beta) -"TR" = (/obj/machinery/atmospherics/binary/pump{dir = 8},/obj/effect/floor_decal/rust,/obj/random/junk,/turf/simulated/floor/tiled/asteroid_steel/airless,/area/submap/oldstation_alpha) -"TY" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/mob/living/simple_mob/mechanical/hivebot/tank/armored/anti_laser,/obj/effect/floor_decal/rust,/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_charlie) -"TZ" = (/obj/random/trash,/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_tox) -"Ud" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/door/firedoor,/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_charlie) -"Uh" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/effect/floor_decal/rust,/turf/simulated/floor/airless,/area/submap/oldstation_alpha) -"Up" = (/obj/structure/table/standard,/obj/item/weapon/flame/lighter/zippo/royal,/obj/effect/floor_decal/corner/blue/border{dir = 8},/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_bridge) -"Us" = (/obj/structure/cable/yellow{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/plating,/area/submap/oldstation_power) -"UB" = (/obj/effect/decal/cleanable/ash,/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_power) -"UC" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/effect/floor_decal/rust,/obj/random/junk,/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_beta) -"UF" = (/obj/structure/girder,/turf/simulated/floor/airless,/area/submap/oldstation_alpha) -"UH" = (/turf/simulated/mineral,/area/submap/oldstation_charlie) -"UI" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable{d2 = 8; icon_state = "0-8"},/obj/structure/cable{d2 = 4; icon_state = "0-4"},/obj/effect/wingrille_spawn/reinforced,/turf/simulated/floor/plating,/area/submap/oldstation_power) -"UJ" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/door/firedoor,/obj/machinery/door/airlock/research,/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_tox) -"UO" = (/obj/machinery/light/small{dir = 1},/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_beta) -"UR" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/light{dir = 8},/obj/machinery/door/firedoor,/obj/effect/floor_decal/rust,/obj/random/junk,/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_charlie) -"UT" = (/mob/living/simple_mob/mechanical/hivebot/tank/armored/anti_laser,/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_charlie) -"Vb" = (/obj/structure/reagent_dispensers/watertank/high,/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_hydro_sec) -"Vc" = (/obj/machinery/light{dir = 4},/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_charlie) -"Vk" = (/obj/effect/decal/remains/robot{icon_state = "gib5"},/mob/living/simple_mob/mechanical/hivebot/swarm,/turf/simulated/shuttle/floor/voidcraft/dark,/area/submap/oldstation_hiveboat) -"Vp" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/airless,/area/submap/oldstation_alpha) -"VC" = (/obj/structure/particle_accelerator/power_box,/turf/simulated/floor/plating,/area/submap/oldstation_charlie) -"VR" = (/obj/effect/decal/remains/robot,/mob/living/simple_mob/mechanical/hivebot/ranged_damage/strong/guard,/turf/simulated/shuttle/floor/voidcraft/dark,/area/submap/oldstation_hiveboat) -"VW" = (/obj/machinery/portable_atmospherics/hydroponics/soil,/turf/simulated/floor/grass,/area/submap/oldstation_hydro_sec) -"Wa" = (/obj/structure/cable,/obj/machinery/power/smes/buildable/hybrid,/obj/effect/floor_decal/rust,/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_power) -"Wf" = (/obj/structure/closet/crate/engineering/electrical,/obj/item/solar_assembly,/obj/item/solar_assembly,/obj/item/solar_assembly,/obj/item/solar_assembly,/obj/item/solar_assembly,/obj/item/solar_assembly,/turf/simulated/floor/plating,/area/submap/oldstation_beta) -"Wr" = (/obj/machinery/light{dir = 4},/turf/simulated/floor/tiled/old_tile/blue,/area/submap/oldstation_tox) -"Ws" = (/mob/living/simple_mob/mechanical/hivebot/ranged_damage/rapid,/turf/simulated/shuttle/floor/voidcraft/dark,/area/submap/oldstation_hiveboat) -"Wv" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plating,/area/submap/oldstation_bridge) -"WA" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/airlock/highsecurity{name = "Prototype Laboratory"; req_access_txt = "271"},/turf/simulated/floor/tiled/old_tile/red,/area/submap/oldstation_tox) -"WB" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/effect/floor_decal/rust,/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_power) -"WC" = (/turf/simulated/wall,/area/submap/oldstation_charlie) -"WJ" = (/obj/effect/landmark/loot_spawn/low,/turf/simulated/floor/plating,/area/submap/oldstation_beta) -"WP" = (/obj/machinery/door/window/brigdoor/eastleft,/obj/machinery/door/blast/regular,/turf/simulated/floor/tiled/old_tile/red,/area/submap/oldstation_tox) -"WY" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/unary/cryo_cell,/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_beta) -"WZ" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/airlock/maintenance_hatch,/turf/simulated/floor/plating,/area/submap/oldstation_bridge) -"Xa" = (/obj/structure/closet/crate/engineering/electrical,/obj/item/solar_assembly,/obj/item/solar_assembly,/obj/item/solar_assembly,/obj/item/solar_assembly,/turf/simulated/floor/plating,/area/submap/oldstation_beta) -"Xd" = (/obj/effect/floor_decal/rust,/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_tox) -"Xm" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/effect/floor_decal/rust,/obj/random/junk,/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_charlie) -"Xq" = (/obj/effect/landmark/loot_spawn/low,/turf/simulated/floor/tiled/old_tile/blue,/area/submap/oldstation_tox) -"Xu" = (/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/airless,/area/submap/oldstation_power) -"Xz" = (/obj/machinery/atmospherics/pipe/manifold/hidden{dir = 8},/turf/simulated/floor/airless,/area/submap/oldstation_alpha) -"XB" = (/obj/effect/wingrille_spawn/reinforced,/turf/simulated/floor/plating,/area/submap/oldstation_tox) -"XI" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/door/airlock/maintenance_hatch,/turf/simulated/floor/plating,/area/submap/oldstation_kitchen) -"XL" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/random/trash,/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_beta) -"XO" = (/turf/simulated/wall,/area/template_noop) -"XV" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_beta) -"Yd" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/light{dir = 8},/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_charlie) -"Ye" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_beta) -"Yg" = (/obj/effect/floor_decal/rust,/obj/random/trash,/turf/simulated/floor/airless,/area/submap/oldstation_alpha) -"Yj" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/mob/living/simple_mob/mechanical/hivebot/swarm,/obj/effect/floor_decal/rust,/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_charlie) -"Yl" = (/obj/random/maintenance/research,/obj/effect/floor_decal/rust,/turf/simulated/floor/tiled/old_tile/blue,/area/submap/oldstation_tox) -"Yn" = (/obj/effect/floor_decal/rust,/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_power) -"Yo" = (/obj/machinery/r_n_d/circuit_imprinter,/turf/simulated/floor/tiled/old_tile/blue,/area/submap/oldstation_tox) -"Yr" = (/obj/effect/wingrille_spawn/reinforced,/turf/simulated/floor/plating,/area/submap/oldstation_kitchen) -"Yt" = (/obj/structure/cable/yellow{d2 = 4; icon_state = "0-4"},/turf/simulated/floor/airless,/area/submap/oldstation_power) -"Yw" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/plating,/area/submap/oldstation_charlie) -"Yz" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/door/firedoor,/obj/machinery/door/airlock/science,/obj/effect/floor_decal/rust,/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_charlie) -"YA" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/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/submap/oldstation_power) -"YN" = (/obj/structure/table/reinforced,/obj/machinery/light{dir = 8},/obj/item/weapon/paper{info = "*Singularity Generator*

Modern power generation typically comes in two forms, a Fusion Generator or a Fission Generator. Fusion provides the best space to power ratio, and is typically seen on military or high security ships and stations, however Fission reactors require the usage of expensive, and rare, materials in its construction.. Fission generators are massive and bulky, and require a large reserve of uranium to power, however they are extremely cheap to operate and oft need little maintenance once operational.

The Singularity aims to alter this, a functional Singularity is essentially a controlled Black Hole, a Black Hole that generates far more power than Fusion or Fission generators can ever hope to produce. "; name = "Singularity Generator"},/obj/item/weapon/paper{info = "*Prototype Hardsuit*

The B01-RIG Hardsuit is a prototype powered exoskeleton. Based off of a recovered pre-void war era united Earth government powered military exosuit, the RIG Hardsuit is a breakthrough in Hardsuit technology, and is the first post-void war era Hardsuit that can be safely used by an operator.

The B01 however suffers a myriad of constraints. It is slow and bulky to move around, it lacks any significant armor plating against direct attacks and its internal heads up display is unfinished, resulting in the user being unable to see long distances.

The B01 is unlikely to see any form of mass production, but will serve as a base for future Hardsuit developments."; name = "B01-RIG Hardsuit Report"},/turf/simulated/floor/tiled/old_tile/red,/area/submap/oldstation_tox) -"YT" = (/obj/machinery/shower{dir = 8},/obj/machinery/door/window/westleft,/turf/simulated/floor/tiled/old_tile,/area/submap/oldstation_bridge) -"YX" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/effect/floor_decal/rust,/obj/random/junk,/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_beta) -"Zf" = (/obj/structure/table/standard,/obj/item/stack/cable_coil{amount = 15},/turf/simulated/floor/plating,/area/submap/oldstation_power) -"Zk" = (/obj/structure/table/standard,/obj/machinery/atmospherics/unary/vent_pump/on,/obj/item/clothing/mask/breath,/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_power) -"Zr" = (/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/plating,/area/submap/oldstation_kitchen) -"Zz" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable{d2 = 4; icon_state = "0-4"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/power/apc{dir = 1; name = "Charlie Hydroponics APC"; pixel_y = 24; report_power_alarm = 0; start_charge = 0},/turf/simulated/floor/plating,/area/submap/oldstation_hydro_sec) -"ZF" = (/obj/structure/closet/crate,/obj/random/maintenance/medical,/obj/random/maintenance/medical,/obj/random/maintenance/medical,/obj/random/maintenance/medical,/obj/random/maintenance/medical,/turf/simulated/floor/plating,/area/submap/oldstation_charlie) -"ZK" = (/obj/item/solar_assembly,/turf/template_noop,/area/template_noop) -"ZM" = (/obj/machinery/r_n_d/destructive_analyzer,/obj/effect/floor_decal/rust,/turf/simulated/floor/tiled/old_tile/blue,/area/submap/oldstation_tox) -"ZS" = (/obj/structure/table/standard,/obj/item/weapon/material/kitchen/utensil/fork,/obj/effect/floor_decal/corner/grey/diagonal,/turf/simulated/floor/tiled/old_tile,/area/submap/oldstation_kitchen) -"ZW" = (/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/effect/floor_decal/rust,/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_beta) -"ZZ" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/mob/living/simple_mob/mechanical/hivebot/swarm,/obj/random/junk,/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_charlie) - -(1,1,1) = {" -gGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGAUgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGAUgGgGgGgGgGgGgGgGgGgGgGgGUHUHUHUHUHUHUHUHUHUHUHgGgGgGgGgG -gGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGUHUHUHUHUHUHUHUHUHUHUHUHUHUHUHUHUHgGgG -gGgGAUgGgGgGgGgGgGgGAUgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGUHUHzEzEzEzEzEzEzEzEzEzEzEzEzEzEUHUHUHgG -gGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGAUgGgGgGgGgGgGgGgGgGgGgGgGgGuLgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGUHzEFEiXzEeSeSzEPPTNmyTNWsPPzExjzEUHUHgG -gGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGqUwPDODODODODOwPqUgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGUHUHzEiXErzEhweSzEeSeSeSPPhnRfzEOEPPzboCgG -gGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGqUqUFRFRCsCsCsFRFRqUqUgGgGgGgGgGgGgGgGEVEVEVgGgGgGgGgGjAUHUHzEiXiXzEeSVkzEeSeSPPeSTNRTzERfLvzbApgG -gGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGqUqUqUFRuqAZycinzyAZSelDqUqUqUqUgGgGjAgGEVdZdZEVgGjAgGgGgGjAUHUHzEPPmqkARfTNkAeSuveSeSWsTNkATNTNzboCgG -gGgGgGgGgGgGgGgGgGjAgGgGjAgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGqUvyqUCsUpgLgLgLgLgLJuCsqUxesnqUjAjAgGgGEVdZdZEVgGgGgGgGjAgGUHUHzEGOmqkATNVRkAeSeSeSeSRTTNkALvCdzbApgG -gGgGgGgGgGgGrmgGgGgGgGjAjAjAjAjAjAjAjAjAjAjAjAjAjAjAjAjAqUqUWvqUlskBqRgLwMgLgLuySaqUQAsFqUgGgGgGjAgGEVEVgGgGgGjAgGgGgGUHUHzEEriXzEPPTNzEeSPPTNeSTNWszETNzUzboCgG -gGgGgGjAgGrmgYrmjAgGjAgGgGjAgGgGgGgGgGgGgGgGgGgGgGgGgGgGqUCbWvqUCssLgLgLHbgLwYJuCsqUQnqUqUgGgGgGgGgGgGQPgGgGgGgGgGgGgGUHUHzEiXiXzEFyeSzEeSeSeSPPmybLzETNoMzbApgG -gGBcUFBcjArmgYrmrmgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGqUbPWvqUhkkBgLgLsdgLgLuyeyqUtClyqUgGgGgGgGgGgGgGgGgGgGgGgGgGgGUHUHzEDxiXzEuveSzETNRTRfTNTNTNzEgEzEUHUHgG -BcnWmwBcBcrmrmrmgGgGgGjAgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGqUzfWvqUqUlahSgLKzgLOhxGqUqUkkYTqUgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGUHUHzEzEzEkAkAzEzEzEzEzEzEzEzEzEUHUHgGgG -BcmwmwmwhvmwmwmwmwmwgGgGgGgGgGgGgGAUgGgGgGgGgGgGgGdxdxdxqUqUWZqUqUwPDODOblDODOwPqUqUQnqUqUdxdxdxgGgGgGgGgGgGgGWCWCWCWCgGgGUHUHWCiYiYiYiYWCUHUHUHUHUHUHWCWCWCWCgG -jAwfrOSZSsHnmwSsSsGBgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGIXJiijImbdwKijOHUOijijUCKvijGHqKCrvXKvgsijijIXgGQPgGgGgGgGgGpoGCIbWCWCWCWCWCWCWCLoLoWCWCWCWCWCWCWCWCWCczZFWCgG -BcwfnWnWnWSsDUSsnIhNQPQPcKQPQPQPQPQPQPQPQPQPcKQPQPDgjjijNqgysHhgimhgiVXLskKvnOijOHijKvKvBYijjjDgQPgGBvgGgGEBQPtDcIniunGztpgZBGiDYjervDMKTgololTgDpTwolTrczTOWCgG -BcGBmwmwrOSsmwftnWGBZKgGgGgGgGgGgGgGgGgGgGgGgGgGgGIXijxLImYeOgJjJjxVxVxVxVxVxVxVJjJjnbfWgszMijIXgGgGQPgGgGgGgGpoolVcWCEMZZJFhWFOHMFOLDTYhWaNFOLDYzXmolWCiYMWWCgG -gGBcxFmwnWffmwmwmwmwmwgGgGgGjAgGjAgGjAgGgGgGgGgGssssssssssTHkJJjmjCCVWVWVbVWVWCCrfJjqFAedxdxdxdxdxgGgGgGgGgGgGWCWCWCWCYdFLpkpkpkpkpkayaypkpkpkpkpksBloWCWCWCWCgG -jAnWPqGBnWnWmwBcBcjAUFjAjAQJNPNPNPNPXusJjAjAssssssZkMcsMssgyNlxVEuEuEuEuEuEuLpEuEuxVPsijdxQvsleMdxdxdxgGgGUHUHgGgGgGWCknKZpkXqgDoxfHlvTcgDgDgDgDpkTgvDWCgGgGgGgG -BcSspidRnWrOmwJxjAjAgGgGgGNPNPQJNPNPGwQJgGgGssdpIAgQEbYnsscePstgEOEObAAOjaeNEObAEOtgPsbCdxBBijijijLSdxgGEBUHUHUHgGgGWCtPqQpkvwArZMmoMazXmooiMTWrpkUTreWCWCWCWCgG -BcSskRGBkvqqmwBcBcgGgGgGgGNPGwrbXuShNPNPgGgGssFMCXKLWBoussgyyzxVDEDEDEkCTEDEDEDEDExVPsKvdxTHijCrijHFdxgGgGgGUHUHgGgGWCfctkpkmxgDgDgDNblvYlmomogDpkIDxZWCSbSbWCWC -gGBckRmwSsnWmwnWadBcgGAUgGgGNPgGGwgGNPgGgGgGRRODntcNODgQssjQbWJjbTVWVWIFTChRVWVWrfJjbWOHdxgyMdNKCroEdxgGgGgGgGWCWCWCWCLTTDpkgDgtYoMplvzXgDaRIrgDpkolcYWCSbeueuWC -gGjAgGUFSsrOGBnWBcBcjAgGgGgGNPgGGwgGNPgGIXIXRRODliMIUBgQHmgyCzJjJjJjJjJjjXJjJjJjJjJjhMKvhUgyCQzWijijdxjAjAjAjAWCiYjOWCfpaopkvwgDgDgDTZMimogDgDWrpkTgvDWCSbeueuWC -gGjAgGBcIznxbHCpKGGiGijAjAcaLNvzDjvzLNvzTLFQvtYAcFRZmTxHUIuZabTlKCKCZzKCZryGLlRwyGRHSGkNsmFvXVXVeTdKbZLjLjLjLjktYwlRooGNPZpklvbFDZTKTKqVXdziOplvpkololTriYiYeuWC -gGjAgGgGUhnWGBnWxElwjAgGgGgGligGGwgGGwgGIXIXRRSnliMIODbqHmgyCzbJGFGFGFGFXIGFGFGFGFGFhMKvhUijMMslijPsdxjAjAjAjAWCsqiYWCarqQpkXBXBXBXBXdFlpkpkpkpkpkTgaTWCiYEXEXWC -gGIijAjABcBcmwadBclwgGgGAUgGligGNPgGGwgGgGgGRRSnaIWaODbqssequSGFtjFwBFfxHRwZBFetoXGFbWqKdxijauNKijJydxgGgGgGgGWCWCWCWCURUdpklvlvyKlvXdFlpkQBTuoepkNxLhWCiYEXEXWC -gGjAgGgGgGVpUFgGjAgGgGgGgGYtrCQJNPNPGwQJgGgGsspJCRODqGngssIvqFYrBFBFLwoXHBoXBFamBFYrPsoGdxzMijnOijLGdxgGgGgGgGgGgGgGWCEtqQpklvlvLklvQpFlpklvlvqwpkTgyLWCiYuTgeWC -gGjAgGgGgGjAgGgGjAjAXOgGgGQJTnguRXQJdssegGgGssgXCcODYnmQsspcqFCoCtMqCtCtAVKtCtBFBFCoPsijdxijijijijvAdxgGgGgGgGgGgGgGWCpnqQpkMNIWTKxgPunsdCRndasypkUTeCWCdiJTuKWC -gGjAgGgGgGjAjAjAIiIiDGjAjAQJUsQJNPNPGwNPjAjAsssssswTsMxrssceNlYrBFBFdABFfYCtCtBFBFYrPsKvdxTPnUuFdxdxdxgGgGgGgGgGgGgGWCfpNspkefIElvmplvBepkzdlvEzpkTgTgWCkjVCWCWC -gGjAgGgGgGjAgGgGgGgGgGgGgGjATnjAGwjANPjAgGgGgGgGsssssssssswFPsGFojZSrgyTNJrgyTPyRuGFPsKvdxdxdxdxdxgGgGgGgGgGgGWCWCWCWCpUHepkBmBmLkTcLkMspkhfrwkhpkMKhhWCWCWCWCgG -BcgPmwgGjAjAgGgGgGgGgGgGgGNPliNPNPQJGwNPgGgGgGgGsscrEvtdfUYeBEGFQLYrYrYrYrYrYrYrQLGFDwrRgszMijIXgGgGgGgGgGgGgGpoolVcWCknJkpkpkpkpkpkayUJpkpkpkpkpktqNSWCczgHWCgG -jAnWBcOvHnnWgGgGgGgGgGgGgGNPTnNPNPQJGwsegGgGgGgGssrFHKTnihPCytBNyMiVhghgZWhghgYXGghgskijBYijJtDgQPQPQPcKQPQPQPtDbcMKunzkfCJFhWbXIkLDEZPTFOrprahWJFegolTrczFZWCgG -BcOAnWBcAmrOgGgGIijAjAjAjArbrCQJNPNPdsShjAjAjAjAssxUGLZffUjimPoZOHNHnOijNlijijNHOHijijijgsijzRIXgGgGgGgGgGgGgGpoMKMKWCeYtpgZBGrNbwBGuMNsUTjVlzvDnrololWCcziYWCgG -BcfKmwDulwBcgGgGgGgGgGgGgGgGjAgGBCgGjAgGgGgGgGgGssssssssssdxtodxdxdxIXIXAKIXIXdxdxdxyJdxdxdxdxdxgGgGgGgGgGgGgGWCWCWCWCWCWCwowowowowoWAuhwowowowowoWCWCWCWCWCWCgG -YgbfmwmwgGBcgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGdxvCiPdxdxruijijPsCrijijdxdxnwBXdxgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGwocCWPPoLnpqnvLqPoOIMxwogGgGgGgGgGgGgG -OAnWbyGBgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGdxnwjDdxhaijRoijWYijRoijcGdxnwWJdxgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGwoYNxOLqLqLqnvLqNZwjmfwogGgGgGgGgGgGgG -pCpihtGBgGjAgGgGgGgGjAgGgGgGgGgGgGjAgGgGgGgGgGgGgGgGgGgGdxvJSudxubijijijPsijijijMFdxedWfdxgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGwowowoNfLqLqnvLqLqwowowogGgGgGgGgGgGgG -OylwvrGBjAgGjAjAjAjAgGgGgGgGjAQMjAgGgGjAjAjAjAjAjAjAjAjAdxdxSydxdWijRoijWYCrRoijbNdxXadxdxjAjAjAjAjAjAjAjAjAjAjAjAjAjAjAjAwoSWxOLqLqRUckLqLqwjuwwogGgGgGgGgGgGgG -XzTRjPGBgGgGgGgGgGgGgGgGgGjAgGEVEVgGgGgGgGgGgGgGgGgGgGgGgGdxLcdxQeijijijPsijijijMFdxnwdxgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGwoQEWPLqAdFsFsAdLqOImuwogGgGgGgGgGgGgG -vsSsCnGBgGjAgGgGgGgGgGgGjAgGZKEVEVEVgGjAgGgGgGgGgGgGgGgGgGdxdxdxijijRoijWYijRozRijdxdxdxgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGwowowowowoXBXBwowowowowogGgGgGgGgGgGgG -gGnWmwmwgGgGgGgGgGgGgGgGgGgGEVdZdZEVgGgGgGgGgGgGgGgGgGgGgGgGgGdxdxNHijijsCijijNHdxdxgGgGgGgGgGgGgGgGgGgGEVEVgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGAUgGgGgG -jAmwmwgGgGgGgGgGgGgGgGgGgGgGEVdZdZEVgGgGgGgGgGgGgGgGgGgGgGgGgGgGdxdxIXdxIXdxIXdxdxgGgGgGgGgGgGgGgGgGgGEVEVEVEVEVgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgG -gGgGgGgGgGgGgGgGgGgGgGgGgGgGgGEVEVgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGEVEVdZdZEVgGgGAUgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgG -gGgGgGgGgGgGAUgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGAUgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGEVEVdZdZEVgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGAUgGgGgGgGgGgGgG -gGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGEVEVEVEVgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgG -gGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGEVEVEVEVgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgG -gGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgG -"} +"ab" = (/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_beta) +"ad" = (/obj/item/solar_assembly,/turf/simulated/floor/airless,/area/submap/oldstation_alpha) +"am" = (/obj/effect/floor_decal/corner/grey/diagonal,/obj/random/trash,/turf/simulated/floor/tiled/old_tile,/area/submap/oldstation_kitchen) +"ao" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/mob/living/simple_mob/mechanical/hivebot/swarm,/obj/random/junk,/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_charlie) +"ar" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/effect/floor_decal/rust,/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_charlie) +"au" = (/obj/structure/table/standard,/obj/item/weapon/folder/red,/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_beta) +"ay" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/research,/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_tox) +"aI" = (/obj/structure/cable/yellow,/obj/machinery/power/terminal{dir = 4},/turf/simulated/floor/plating,/area/submap/oldstation_power) +"aN" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/light,/mob/living/simple_mob/mechanical/hivebot/tank/armored/anti_melee,/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_charlie) +"aR" = (/obj/structure/table/standard,/obj/item/weapon/tank/anesthetic,/obj/item/clothing/mask/breath/medical,/obj/item/weapon/storage/firstaid/surgery,/obj/effect/floor_decal/rust,/turf/simulated/floor/tiled/old_tile/blue,/area/submap/oldstation_tox) +"aT" = (/mob/living/simple_mob/mechanical/hivebot/swarm,/obj/random/junk,/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_charlie) +"bc" = (/obj/structure/transit_tube/station,/obj/effect/floor_decal/rust,/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_charlie) +"bd" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_beta) +"bf" = (/obj/structure/cable,/obj/machinery/power/apc{dir = 4; name = "Beta Engineering APC"; pixel_x = 24; start_charge = 0},/obj/random/junk,/turf/simulated/floor/tiled/asteroid_steel/airless,/area/submap/oldstation_alpha) +"bl" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/door/airlock/maintenance/command{name = "Bridge"},/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_bridge) +"bq" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/random/junk,/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_power) +"bw" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/mob/living/simple_mob/mechanical/hivebot/tank/armored/anti_melee,/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_charlie) +"by" = (/obj/structure/window/reinforced{dir = 8},/turf/simulated/floor/tiled/old_tile,/area/submap/oldstation_alpha) +"bA" = (/obj/random/trash,/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_hydro_sec) +"bC" = (/obj/machinery/firealarm{dir = 4; pixel_x = 24},/obj/effect/floor_decal/rust,/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_beta) +"bF" = (/obj/structure/table/standard,/obj/random/maintenance/research,/obj/random/maintenance/research,/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_tox) +"bH" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_alpha) +"bJ" = (/obj/random/junk,/turf/simulated/wall,/area/submap/oldstation_kitchen) +"bL" = (/obj/effect/decal/cleanable/blood/oil,/mob/living/simple_mob/mechanical/hivebot/ranged_damage/strong/guard,/turf/simulated/shuttle/floor/voidcraft/dark,/area/submap/oldstation_hiveboat) +"bN" = (/obj/structure/table/standard,/obj/machinery/light/small{dir = 4},/obj/item/weapon/paper{info = "**WARNING**

Catastrophic damage sustained to station. Powernet exhausted to reawaken crew.

Immediate Objectives

1: Activate emergency power generator
2: Lift station lockdown on the bridge

Please locate the 'Damage Report' on the bridge for a detailed situation report."; name = "Cryo Awakening Alert"},/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_beta) +"bP" = (/obj/structure/closet/crate/engineering/electrical,/turf/simulated/floor/plating,/area/submap/oldstation_bridge) +"bT" = (/obj/machinery/light/small{dir = 8},/turf/simulated/floor/tiled/old_tile/green,/area/submap/oldstation_hydro_sec) +"bW" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/door/firedoor,/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_beta) +"bX" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/door/firedoor,/obj/effect/floor_decal/rust,/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_charlie) +"bZ" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable{d2 = 8; icon_state = "0-8"},/obj/structure/cable{d2 = 4; icon_state = "0-4"},/obj/effect/wingrille_spawn/reinforced,/turf/simulated/floor/plating,/area/submap/oldstation_beta) +"ca" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/item/stack/cable_coil,/turf/simulated/floor/airless,/area/submap/oldstation_power) +"ce" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/firealarm{dir = 8; pixel_x = -24},/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_beta) +"ck" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/obj/structure/table/standard,/turf/simulated/floor/tiled/old_tile/red,/area/submap/oldstation_tox) +"cr" = (/obj/effect/decal/cleanable/cobweb,/obj/machinery/power/terminal{dir = 4},/obj/structure/cable/yellow{d2 = 2; icon_state = "0-2"},/turf/simulated/floor/plating,/area/submap/oldstation_power) +"cz" = (/mob/living/simple_mob/mechanical/hivebot/swarm,/turf/simulated/floor/plating,/area/submap/oldstation_charlie) +"cC" = (/obj/structure/table/reinforced,/obj/item/weapon/rig/military/equipped,/turf/simulated/floor/tiled/old_tile/red,/area/submap/oldstation_tox) +"cF" = (/obj/structure/cable/yellow{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/cable/yellow{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/plating,/area/submap/oldstation_power) +"cG" = (/obj/effect/decal/cleanable/cobweb2,/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_beta) +"cI" = (/obj/structure/transit_tube/station,/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_charlie) +"cK" = (/obj/structure/transit_tube{icon_state = "E-W-Pass"},/turf/template_noop,/area/template_noop) +"cN" = (/obj/structure/cable{d2 = 2; icon_state = "0-2"; pixel_y = 1},/obj/machinery/power/smes/buildable/hybrid,/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_power) +"cY" = (/obj/machinery/light{dir = 4},/obj/effect/floor_decal/rust,/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_charlie) +"da" = (/obj/structure/table/standard,/obj/item/weapon/reagent_containers/chem_disp_cartridge/champagne,/obj/item/weapon/reagent_containers/chem_disp_cartridge/icetea,/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_tox) +"di" = (/obj/structure/particle_accelerator/particle_emitter/center,/turf/simulated/floor/plating,/area/submap/oldstation_charlie) +"dp" = (/obj/machinery/computer{desc = "A computer long since rendered non-functional due to lack of maintenance. Spitting out error messages."; name = "Broken Computer"},/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_power) +"ds" = (/obj/structure/cable/yellow{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/airless,/area/submap/oldstation_power) +"dx" = (/turf/simulated/wall,/area/submap/oldstation_beta) +"dA" = (/obj/effect/decal/cleanable/vomit,/obj/effect/floor_decal/corner/grey/diagonal,/obj/random/trash,/turf/simulated/floor/tiled/old_tile,/area/submap/oldstation_kitchen) +"dC" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/door/firedoor,/obj/machinery/door/airlock/research,/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_tox) +"dK" = (/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_beta) +"dR" = (/obj/machinery/door/airlock/maintenance/medical{name = "Medical"},/turf/simulated/floor/tiled/asteroid_steel/airless,/area/submap/oldstation_alpha) +"dW" = (/obj/structure/table/standard,/obj/machinery/light/small{dir = 8},/obj/item/weapon/tool/crowbar,/obj/random/maintenance,/obj/random/maintenance,/obj/random/maintenance,/obj/random/maintenance,/obj/random/maintenance,/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_beta) +"dZ" = (/turf/simulated/mineral/floor/vacuum,/area/template_noop) +"ed" = (/obj/structure/closet/crate,/turf/simulated/floor/plating,/area/submap/oldstation_beta) +"ef" = (/obj/structure/table/standard,/obj/item/weapon/book/manual/nuclear,/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_tox) +"eg" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/random/junk,/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_charlie) +"eq" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/firedoor,/obj/effect/floor_decal/rust,/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_beta) +"er" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/mob/living/simple_mob/mechanical/hivebot/ranged_damage/strong/guard,/obj/effect/floor_decal/rust,/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_charlie) +"et" = (/obj/machinery/processor,/obj/effect/floor_decal/corner/grey/diagonal,/turf/simulated/floor/tiled/old_tile,/area/submap/oldstation_kitchen) +"eu" = (/obj/machinery/field_generator,/turf/simulated/floor/plating,/area/submap/oldstation_charlie) +"ey" = (/obj/structure/bed/chair{dir = 1},/turf/simulated/floor/tiled/old_tile/blue,/area/submap/oldstation_bridge) +"eC" = (/obj/effect/floor_decal/rust,/obj/random/junk,/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_charlie) +"eM" = (/obj/structure/table/standard,/obj/machinery/recharger,/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_beta) +"eN" = (/obj/structure/table/standard,/obj/item/seeds/harebell,/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_hydro_sec) +"eS" = (/mob/living/simple_mob/mechanical/hivebot/swarm,/turf/simulated/shuttle/floor/voidcraft/dark,/area/submap/oldstation_hiveboat) +"eT" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/random/gun/random,/obj/random/junk,/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_beta) +"eY" = (/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"; tag = "90Curve"},/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_charlie) +"fc" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/firedoor,/mob/living/simple_mob/mechanical/hivebot/swarm,/obj/effect/floor_decal/rust,/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_charlie) +"ff" = (/obj/machinery/light/small{dir = 4},/obj/random/trash,/turf/simulated/floor/tiled/asteroid_steel/airless,/area/submap/oldstation_alpha) +"fp" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/mob/living/simple_mob/mechanical/hivebot/swarm,/obj/effect/floor_decal/rust,/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_charlie) +"ft" = (/obj/machinery/light/small{dir = 8},/turf/simulated/floor/tiled/asteroid_steel/airless,/area/submap/oldstation_alpha) +"fx" = (/obj/machinery/light/small{dir = 1},/obj/effect/floor_decal/corner/grey/diagonal,/turf/simulated/floor/tiled/old_tile,/area/submap/oldstation_kitchen) +"fC" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_charlie) +"fH" = (/mob/living/simple_mob/mechanical/hivebot/tank/armored/anti_melee,/turf/simulated/floor/tiled/old_tile/blue,/area/submap/oldstation_tox) +"fK" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/effect/floor_decal/rust,/turf/simulated/floor/airless,/area/submap/oldstation_alpha) +"fU" = (/obj/structure/sign/biohazard{icon_state = "radiation"; name = "\improper HAZARDOUS RADIATION"},/turf/simulated/wall,/area/submap/oldstation_power) +"fW" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/obj/effect/floor_decal/rust,/obj/random/junk,/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_beta) +"fY" = (/obj/effect/floor_decal/corner/grey/diagonal,/obj/effect/floor_decal/rust,/obj/random/trash,/turf/simulated/floor/tiled/old_tile,/area/submap/oldstation_kitchen) +"ge" = (/obj/structure/particle_accelerator/particle_emitter/right,/turf/simulated/floor/plating,/area/submap/oldstation_charlie) +"gs" = (/obj/structure/sign/science,/turf/simulated/wall,/area/submap/oldstation_beta) +"gt" = (/obj/machinery/r_n_d/protolathe,/turf/simulated/floor/tiled/old_tile/blue,/area/submap/oldstation_tox) +"gu" = (/obj/structure/cable/yellow{d2 = 4; icon_state = "0-4"},/turf/simulated/floor/airless{icon_state = "solarpanel"},/area/submap/oldstation_power) +"gy" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_beta) +"gD" = (/turf/simulated/floor/tiled/old_tile/blue,/area/submap/oldstation_tox) +"gE" = (/obj/structure/closet/crate,/turf/simulated/shuttle/floor/voidcraft/dark,/area/submap/oldstation_hiveboat) +"gG" = (/turf/template_noop,/area/template_noop) +"gH" = (/obj/machinery/recharge_station,/turf/simulated/floor/plating,/area/submap/oldstation_charlie) +"gL" = (/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_bridge) +"gP" = (/obj/structure/closet/crate/medical,/turf/simulated/floor/airless,/area/submap/oldstation_alpha) +"gQ" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_power) +"gX" = (/obj/structure/cable/yellow,/obj/machinery/power/solar_control{name = "Station Solar Control Computer"},/obj/item/weapon/paper/solar,/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_power) +"gY" = (/turf/simulated/mineral/floor/vacuum,/area/submap/oldstation_alpha) +"gZ" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/firedoor,/obj/machinery/door/airlock/science,/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_charlie) +"ha" = (/obj/machinery/firealarm{dir = 8; pixel_x = -24},/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_beta) +"hf" = (/obj/structure/table/standard,/obj/item/weapon/reagent_containers/chem_disp_cartridge/goldschlager,/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_tox) +"hg" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/effect/floor_decal/rust,/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_beta) +"hh" = (/obj/machinery/light{dir = 4},/obj/machinery/firealarm{dir = 8; pixel_x = 28},/mob/living/simple_mob/mechanical/hivebot/tank/armored/anti_laser,/mob/living/simple_mob/mechanical/hivebot/tank/armored/anti_melee,/obj/effect/floor_decal/rust,/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_charlie) +"hk" = (/obj/machinery/firealarm{dir = 8; pixel_x = -24},/obj/structure/bed/chair{dir = 1},/turf/simulated/floor/tiled/old_tile/blue,/area/submap/oldstation_bridge) +"hn" = (/obj/effect/decal/remains/robot{icon_state = "gib2"},/mob/living/simple_mob/mechanical/hivebot/ranged_damage/strong/guard,/turf/simulated/shuttle/floor/voidcraft/dark,/area/submap/oldstation_hiveboat) +"ht" = (/obj/structure/window/reinforced,/turf/simulated/floor/tiled/old_tile,/area/submap/oldstation_alpha) +"hv" = (/obj/machinery/door/airlock/maintenance_hatch,/turf/simulated/floor/airless,/area/submap/oldstation_alpha) +"hw" = (/obj/effect/decal/cleanable/blood/oil,/obj/effect/decal/remains/robot{icon_state = "gib2"},/mob/living/simple_mob/mechanical/hivebot/swarm,/turf/simulated/shuttle/floor/voidcraft/dark,/area/submap/oldstation_hiveboat) +"hM" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/light/small{dir = 8},/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_beta) +"hN" = (/obj/structure/transit_tube,/obj/effect/wingrille_spawn/reinforced,/turf/simulated/floor/airless,/area/submap/oldstation_alpha) +"hR" = (/obj/machinery/alarm{dir = 1; pixel_y = -22},/turf/simulated/floor/tiled/old_tile/green,/area/submap/oldstation_hydro_sec) +"hS" = (/obj/structure/table/standard,/obj/item/weapon/dice/d8,/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_bridge) +"hU" = (/obj/machinery/door/airlock/security,/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_beta) +"hW" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/mob/living/simple_mob/mechanical/hivebot/swarm,/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_charlie) +"ih" = (/obj/structure/cable{d2 = 4; icon_state = "0-4"},/obj/machinery/door/firedoor,/obj/machinery/door/airlock/maintenance/engi{name = "Backup Generator Room"},/turf/simulated/floor/plating,/area/submap/oldstation_power) +"ij" = (/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_beta) +"im" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/door/firedoor,/obj/effect/floor_decal/rust,/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_beta) +"in" = (/obj/structure/bed/chair{dir = 1},/obj/effect/floor_decal/corner/blue/border{dir = 1},/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_bridge) +"iD" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/mob/living/simple_mob/mechanical/hivebot/tank/armored/anti_melee,/obj/effect/floor_decal/rust,/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_charlie) +"iP" = (/obj/machinery/atmospherics/pipe/simple/hidden,/obj/machinery/meter,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plating,/area/submap/oldstation_beta) +"iV" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_beta) +"iX" = (/mob/living/simple_mob/mechanical/hivebot/swarm,/turf/simulated/shuttle/floor/voidcraft/external,/area/submap/oldstation_hiveboat) +"iY" = (/turf/simulated/floor/plating,/area/submap/oldstation_charlie) +"ja" = (/obj/machinery/seed_extractor,/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_hydro_sec) +"ji" = (/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_beta) +"jj" = (/obj/structure/transit_tube/station,/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_beta) +"jA" = (/obj/structure/lattice,/turf/template_noop,/area/template_noop) +"jD" = (/obj/machinery/atmospherics/binary/pump{dir = 1},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plating,/area/submap/oldstation_beta) +"jO" = (/obj/structure/cable{d2 = 2; icon_state = "0-2"; pixel_y = 1},/obj/machinery/power/apc{dir = 1; name = "Theta Main Corridor APC"; pixel_y = 24; start_charge = 0},/turf/simulated/floor/plating,/area/submap/oldstation_charlie) +"jP" = (/obj/machinery/atmospherics/unary/vent_pump{dir = 8},/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced{dir = 8},/turf/simulated/floor/tiled/old_tile,/area/submap/oldstation_alpha) +"jQ" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/firedoor,/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_beta) +"jV" = (/obj/machinery/firealarm{dir = 1; pixel_y = -24},/mob/living/simple_mob/mechanical/hivebot/swarm,/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_charlie) +"jX" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/door/airlock/maintenance_hatch,/turf/simulated/floor/plating,/area/submap/oldstation_hydro_sec) +"kh" = (/obj/structure/table/standard,/obj/item/weapon/reagent_containers/chem_disp_cartridge/corophizine,/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_tox) +"kj" = (/obj/structure/particle_accelerator/end_cap,/turf/simulated/floor/plating,/area/submap/oldstation_charlie) +"kk" = (/obj/structure/mirror{name = "dusty mirror"; pixel_x = -26},/turf/simulated/floor/tiled/old_tile,/area/submap/oldstation_bridge) +"kn" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_charlie) +"kt" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/wingrille_spawn/reinforced,/turf/simulated/floor/plating,/area/submap/oldstation_charlie) +"kv" = (/obj/machinery/door/firedoor/border_only,/obj/effect/floor_decal/rust,/turf/simulated/floor/tiled/asteroid_steel/airless,/area/submap/oldstation_alpha) +"kA" = (/obj/machinery/door/airlock/highsecurity,/turf/simulated/floor/plating,/area/submap/oldstation_hiveboat) +"kB" = (/obj/effect/floor_decal/corner/blue/border{dir = 8},/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_bridge) +"kC" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/effect/floor_decal/corner/green/border,/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_hydro_sec) +"kJ" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/random/trash,/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_beta) +"kN" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/floor_decal/rust,/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_beta) +"kR" = (/turf/simulated/floor/tiled/old_tile,/area/submap/oldstation_alpha) +"la" = (/obj/structure/table/standard,/obj/machinery/recharger,/obj/effect/floor_decal/corner/blue/border{dir = 8},/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_bridge) +"li" = (/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plating,/area/submap/oldstation_power) +"lo" = (/obj/machinery/atmospherics/unary/vent_pump{dir = 8},/obj/machinery/light{dir = 4},/obj/effect/floor_decal/rust,/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_charlie) +"ls" = (/obj/machinery/light{dir = 8},/obj/structure/bed/chair{dir = 1},/turf/simulated/floor/tiled/old_tile/blue,/area/submap/oldstation_bridge) +"lv" = (/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_tox) +"lw" = (/obj/effect/floor_decal/rust,/turf/simulated/floor/airless,/area/submap/oldstation_alpha) +"ly" = (/obj/machinery/shower{dir = 8},/obj/machinery/door/window/westright,/turf/simulated/floor/tiled/old_tile,/area/submap/oldstation_bridge) +"lz" = (/mob/living/simple_mob/mechanical/hivebot/ranged_damage/strong/guard,/obj/effect/floor_decal/rust,/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_charlie) +"lD" = (/obj/effect/landmark/loot_spawn/low,/turf/simulated/floor/tiled/old_tile/blue,/area/submap/oldstation_bridge) +"lR" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/plating,/area/submap/oldstation_charlie) +"mf" = (/obj/structure/table/reinforced,/obj/machinery/light{dir = 4},/obj/item/weapon/paper{info = "*Singularity Generator*

Modern power generation typically comes in two forms, a Fusion Generator or a Fission Generator. Fusion provides the best space to power ratio, and is typically seen on military or high security ships and stations, however Fission reactors require the usage of expensive, and rare, materials in its construction.. Fission generators are massive and bulky, and require a large reserve of uranium to power, however they are extremely cheap to operate and oft need little maintenance once operational.

The Singularity aims to alter this, a functional Singularity is essentially a controlled Black Hole, a Black Hole that generates far more power than Fusion or Fission generators can ever hope to produce. "; name = "Singularity Generator"},/turf/simulated/floor/tiled/old_tile/red,/area/submap/oldstation_tox) +"mj" = (/obj/machinery/light/small{dir = 8},/obj/machinery/firealarm{dir = 8; pixel_x = -24},/turf/simulated/floor/tiled/old_tile/green,/area/submap/oldstation_hydro_sec) +"mo" = (/obj/effect/floor_decal/rust,/turf/simulated/floor/tiled/old_tile/blue,/area/submap/oldstation_tox) +"mp" = (/obj/machinery/chemical_dispenser/full,/obj/structure/table/standard,/turf/simulated/floor/tiled/old_tile,/area/submap/oldstation_tox) +"mq" = (/turf/simulated/shuttle/floor/voidcraft/external,/area/submap/oldstation_hiveboat) +"mu" = (/obj/structure/table/reinforced,/obj/item/weapon/gun/energy/gun/fluff/gunsword,/turf/simulated/floor/tiled/old_tile/red,/area/submap/oldstation_tox) +"mw" = (/turf/simulated/wall,/area/submap/oldstation_alpha) +"mx" = (/obj/machinery/firealarm{dir = 4; pixel_x = -28},/turf/simulated/floor/tiled/old_tile/blue,/area/submap/oldstation_tox) +"my" = (/obj/effect/decal/remains/robot,/turf/simulated/shuttle/floor/voidcraft/dark,/area/submap/oldstation_hiveboat) +"mP" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_beta) +"mQ" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_power) +"mT" = (/obj/item/stack/cable_coil,/turf/simulated/floor/plating,/area/submap/oldstation_power) +"nb" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/effect/floor_decal/rust,/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_beta) +"ng" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/light/small{dir = 4},/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_power) +"ni" = (/obj/item/stack/medical/bruise_pack,/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_charlie) +"nr" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/science,/obj/effect/floor_decal/rust,/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_charlie) +"ns" = (/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,/obj/effect/floor_decal/rust,/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_tox) +"nt" = (/obj/structure/cable/yellow{d2 = 2; icon_state = "0-2"},/obj/machinery/power/terminal{dir = 4},/turf/simulated/floor/plating,/area/submap/oldstation_power) +"nv" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/old_tile/red,/area/submap/oldstation_tox) +"nw" = (/turf/simulated/floor/plating,/area/submap/oldstation_beta) +"nx" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/asteroid_steel/airless,/area/submap/oldstation_alpha) +"nI" = (/obj/structure/transit_tube_pod{dir = 4},/obj/structure/transit_tube/station,/obj/effect/floor_decal/rust,/turf/simulated/floor/tiled/asteroid_steel/airless,/area/submap/oldstation_alpha) +"nO" = (/obj/random/trash,/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_beta) +"nU" = (/obj/structure/table/rack/shelf/steel,/obj/item/clothing/suit/armor/pcarrier/blue/sol,/obj/item/clothing/suit/armor/pcarrier/blue/sol,/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_beta) +"nW" = (/turf/simulated/floor/tiled/asteroid_steel/airless,/area/submap/oldstation_alpha) +"oe" = (/obj/structure/table/standard,/obj/item/weapon/reagent_containers/chem_disp_cartridge/beer,/obj/item/weapon/reagent_containers/chem_disp_cartridge/moonshine,/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_tox) +"oi" = (/obj/machinery/mecha_part_fabricator,/obj/effect/floor_decal/rust,/turf/simulated/floor/tiled/old_tile/blue,/area/submap/oldstation_tox) +"oj" = (/obj/machinery/light/small{dir = 8},/obj/machinery/firealarm{dir = 8; pixel_x = -24},/obj/structure/bed/chair{dir = 4},/obj/effect/floor_decal/corner/grey/diagonal,/turf/simulated/floor/tiled/old_tile,/area/submap/oldstation_kitchen) +"ol" = (/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_charlie) +"oo" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/airlock/maintenance_hatch,/turf/simulated/floor/plating,/area/submap/oldstation_charlie) +"ou" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/machinery/light/small{dir = 4},/obj/effect/floor_decal/rust,/obj/random/junk,/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_power) +"ox" = (/obj/random/maintenance/research,/turf/simulated/floor/tiled/old_tile/blue,/area/submap/oldstation_tox) +"oC" = (/turf/simulated/floor/plating,/area/submap/oldstation_hiveboat) +"oE" = (/obj/machinery/light/small{dir = 4},/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_beta) +"oG" = (/obj/machinery/firealarm{dir = 4; pixel_x = 24},/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_beta) +"oM" = (/obj/effect/decal/cleanable/blood/oil,/turf/simulated/wall,/area/submap/oldstation_hiveboat) +"oX" = (/obj/structure/table/standard,/obj/effect/floor_decal/corner/grey/diagonal,/turf/simulated/floor/tiled/old_tile,/area/submap/oldstation_kitchen) +"oZ" = (/obj/effect/decal/cleanable/blood/oil,/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_beta) +"pc" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/effect/decal/cleanable/generic,/obj/effect/floor_decal/rust,/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_beta) +"pi" = (/obj/random/trash,/turf/simulated/floor/tiled/asteroid_steel/airless,/area/submap/oldstation_alpha) +"pk" = (/turf/simulated/wall,/area/submap/oldstation_tox) +"pn" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/firealarm{dir = 4; pixel_x = -28},/obj/effect/floor_decal/rust,/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_charlie) +"po" = (/obj/effect/wingrille_spawn/reinforced,/turf/simulated/floor/plating,/area/submap/oldstation_charlie) +"pq" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/tiled/old_tile/red,/area/submap/oldstation_tox) +"pC" = (/obj/machinery/atmospherics/pipe/simple/hidden/universal,/obj/random/trash,/turf/simulated/floor/airless,/area/submap/oldstation_alpha) +"pJ" = (/obj/machinery/light/small{dir = 8},/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/effect/decal/cleanable/blood/oil,/obj/machinery/firealarm{dir = 8; pixel_x = -24},/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_power) +"pU" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/light{dir = 8},/mob/living/simple_mob/mechanical/hivebot/tank/armored/anti_melee,/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_charlie) +"qq" = (/obj/machinery/door/firedoor/border_only,/obj/random/trash,/turf/simulated/floor/tiled/asteroid_steel/airless,/area/submap/oldstation_alpha) +"qw" = (/obj/structure/table/standard,/obj/item/weapon/reagent_containers/chem_disp_cartridge/biomass,/obj/item/weapon/reagent_containers/chem_disp_cartridge/mutagen,/obj/item/weapon/reagent_containers/chem_disp_cartridge/tricord,/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_tox) +"qF" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/effect/floor_decal/rust,/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_beta) +"qG" = (/obj/item/clothing/head/welding,/obj/effect/floor_decal/rust,/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_power) +"qK" = (/obj/machinery/door/firedoor,/obj/effect/floor_decal/rust,/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_beta) +"qQ" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_charlie) +"qR" = (/obj/random/trash,/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_bridge) +"qU" = (/turf/simulated/wall,/area/submap/oldstation_bridge) +"qV" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/mob/living/simple_mob/mechanical/hivebot/ranged_damage/siege/fragmentation,/obj/effect/floor_decal/rust,/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_tox) +"ra" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/mob/living/simple_mob/mechanical/hivebot/tank/armored/anti_melee,/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_charlie) +"rb" = (/obj/structure/cable/yellow{d2 = 4; icon_state = "0-4"},/obj/machinery/power/solar,/turf/simulated/floor/airless{icon_state = "solarpanel"},/area/submap/oldstation_power) +"re" = (/obj/machinery/firealarm{dir = 8; pixel_x = 28},/obj/effect/floor_decal/rust,/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_charlie) +"rf" = (/obj/machinery/light/small{dir = 4},/turf/simulated/floor/tiled/old_tile/green,/area/submap/oldstation_hydro_sec) +"rg" = (/obj/structure/bed/chair{dir = 8},/obj/effect/floor_decal/corner/grey/diagonal,/turf/simulated/floor/tiled/old_tile,/area/submap/oldstation_kitchen) +"rm" = (/turf/simulated/mineral,/area/submap/oldstation_alpha) +"rp" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/light{dir = 1; in_use = 1},/mob/living/simple_mob/mechanical/hivebot/swarm,/obj/effect/floor_decal/rust,/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_charlie) +"ru" = (/obj/effect/decal/cleanable/cobweb,/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_beta) +"rw" = (/obj/structure/table/standard,/obj/item/weapon/reagent_containers/chem_disp_cartridge/deadrum,/obj/item/weapon/reagent_containers/chem_disp_cartridge/hot_coco,/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_tox) +"rC" = (/obj/structure/cable/yellow{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/plating,/area/submap/oldstation_power) +"rF" = (/obj/machinery/light/small{dir = 8},/obj/machinery/firealarm{dir = 8; pixel_x = -24},/obj/structure/cable/yellow,/turf/simulated/floor/plating,/area/submap/oldstation_power) +"rN" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/firedoor,/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_charlie) +"rO" = (/obj/random/junk,/turf/simulated/floor/tiled/asteroid_steel/airless,/area/submap/oldstation_alpha) +"rR" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_beta) +"sd" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/random/trash,/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_bridge) +"se" = (/obj/structure/cable/yellow{d2 = 8; icon_state = "0-8"},/turf/simulated/floor/airless{icon_state = "solarpanel"},/area/submap/oldstation_power) +"sk" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/effect/floor_decal/rust,/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_beta) +"sl" = (/obj/machinery/computer{desc = "A computer long since rendered non-functional due to lack of maintenance. Spitting out error messages."; name = "Broken Computer"},/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_beta) +"sm" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/wingrille_spawn/reinforced,/turf/simulated/floor/plating,/area/submap/oldstation_beta) +"sn" = (/obj/structure/toilet{pixel_y = 12},/turf/simulated/floor/tiled/old_tile,/area/submap/oldstation_bridge) +"sq" = (/obj/structure/table/standard,/obj/machinery/light/small,/obj/item/trash/plate,/turf/simulated/floor/plating,/area/submap/oldstation_charlie) +"ss" = (/turf/simulated/wall,/area/submap/oldstation_power) +"sy" = (/obj/structure/table/standard,/obj/machinery/light/small{dir = 4},/obj/item/weapon/reagent_containers/chem_disp_cartridge/bluecuracao,/obj/item/weapon/reagent_containers/chem_disp_cartridge/myelamine,/obj/item/weapon/reagent_containers/chem_disp_cartridge/sodawater,/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_tox) +"sB" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/mob/living/simple_mob/mechanical/hivebot/tank/armored/anti_melee,/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_charlie) +"sC" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_beta) +"sF" = (/obj/structure/mirror{name = "dusty mirror"; pixel_x = 26},/obj/structure/sink{dir = 4; pixel_x = 12},/turf/simulated/floor/tiled/old_tile,/area/submap/oldstation_bridge) +"sH" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/effect/decal/cleanable/generic,/obj/effect/floor_decal/rust,/obj/random/junk,/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_beta) +"sJ" = (/obj/machinery/power/solar,/obj/structure/cable/yellow{d2 = 8; icon_state = "0-8"},/turf/simulated/floor/airless{icon_state = "solarpanel"},/area/submap/oldstation_power) +"sL" = (/obj/structure/table/standard,/obj/effect/floor_decal/corner/blue/border{dir = 8},/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_bridge) +"sM" = (/obj/effect/landmark/loot_spawn/low,/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_power) +"td" = (/obj/effect/landmark/loot_spawn/low,/turf/simulated/floor/plating,/area/submap/oldstation_power) +"tg" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/maintenance/rnd{name = "Hydroponics"},/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_hydro_sec) +"tj" = (/obj/machinery/vending/dinnerware,/obj/effect/floor_decal/corner/grey/diagonal,/turf/simulated/floor/tiled/old_tile,/area/submap/oldstation_kitchen) +"tk" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/door/firedoor,/mob/living/simple_mob/mechanical/hivebot/swarm,/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_charlie) +"to" = (/obj/machinery/atmospherics/pipe/simple/hidden/universal,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/airlock/maintenance_hatch,/turf/simulated/floor/plating,/area/submap/oldstation_beta) +"tp" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_charlie) +"tq" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/mob/living/simple_mob/mechanical/hivebot/ranged_damage/strong/guard,/obj/effect/floor_decal/rust,/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_charlie) +"tC" = (/obj/machinery/light/small{dir = 8; pixel_y = -8},/obj/structure/mirror{name = "dusty mirror"; pixel_x = -26},/turf/simulated/floor/tiled/old_tile,/area/submap/oldstation_bridge) +"tD" = (/obj/structure/transit_tube,/obj/effect/wingrille_spawn/reinforced,/turf/simulated/floor/plating,/area/submap/oldstation_charlie) +"tP" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/firealarm{dir = 4; pixel_x = -28},/obj/random/trash,/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_charlie) +"ub" = (/obj/structure/table/standard,/obj/item/weapon/tool/crowbar,/obj/random/maintenance,/obj/random/maintenance,/obj/random/maintenance,/obj/random/maintenance,/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_beta) +"uh" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/door/airlock/highsecurity{name = "Prototype Laboratory"},/turf/simulated/floor/tiled/old_tile/red,/area/submap/oldstation_tox) +"un" = (/obj/machinery/door/airlock/command,/obj/structure/barricade,/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_charlie) +"uq" = (/obj/effect/floor_decal/corner/blue/border{dir = 9},/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_bridge) +"uv" = (/obj/effect/decal/remains/robot{icon_state = "gibup"},/mob/living/simple_mob/mechanical/hivebot/swarm,/turf/simulated/shuttle/floor/voidcraft/dark,/area/submap/oldstation_hiveboat) +"uw" = (/obj/structure/table/reinforced,/obj/machinery/light{dir = 4},/obj/item/weapon/paper{info = "*K14-Multiphase Energy Gun*

The K14 Prototype Energy Gun is the first Energy Rifle that has been successfully been able to not only hold a larger ammo charge than other gun models, but is capable of swapping between different energy projectile types on command with no incidents.

The weapon still suffers several drawbacks, its alternative, non laser fire mode, can only fire one round before exhausting the energy cell, the weapon also remains prohibitively expensive, nonetheless NT Market Research fully believe this weapon will form the backbone of our Energy weapon catalogue.

The K14 is expected to undergo revision to fix the ammo issues, the K15 is expected to replace the 'stun' setting with a 'disable' setting in an attempt to bypass the ammo issues."; name = "K14 Energy Gun Report"},/turf/simulated/floor/tiled/old_tile/red,/area/submap/oldstation_tox) +"uy" = (/obj/effect/floor_decal/corner/blue/border{dir = 4},/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_bridge) +"uF" = (/obj/structure/table/rack/shelf/steel,/obj/item/clothing/head/helmet/material,/obj/item/clothing/head/helmet/material,/obj/random/gun/random,/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_beta) +"uK" = (/obj/structure/particle_accelerator/fuel_chamber,/turf/simulated/floor/plating,/area/submap/oldstation_charlie) +"uL" = (/obj/effect/decal/remains/human,/turf/template_noop,/area/template_noop) +"uM" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_charlie) +"uS" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/door/firedoor,/obj/effect/floor_decal/rust,/obj/random/junk,/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_beta) +"uT" = (/obj/machinery/particle_accelerator/control_box,/turf/simulated/floor/plating,/area/submap/oldstation_charlie) +"uZ" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/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/tiled/asteroid_steel,/area/submap/oldstation_beta) +"vr" = (/obj/machinery/light/small{dir = 4},/obj/machinery/pipedispenser,/turf/simulated/floor/tiled/asteroid_steel/airless,/area/submap/oldstation_alpha) +"vs" = (/obj/machinery/atmospherics/unary/vent_pump{dir = 1},/turf/simulated/floor/airless,/area/submap/oldstation_alpha) +"vt" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/airlock/external{name = "Engineering External Access"},/turf/simulated/floor/plating,/area/submap/oldstation_power) +"vw" = (/obj/machinery/light{dir = 8},/turf/simulated/floor/tiled/old_tile/blue,/area/submap/oldstation_tox) +"vy" = (/obj/structure/cable{d2 = 2; icon_state = "0-2"; pixel_y = 1},/obj/machinery/power/apc{dir = 4; name = "Charlie Command APC"; pixel_x = 24; start_charge = 0},/turf/simulated/floor/plating,/area/submap/oldstation_bridge) +"vz" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/airless,/area/submap/oldstation_power) +"vA" = (/obj/structure/table/standard,/obj/item/clothing/mask/gas,/obj/item/weapon/handcuffs,/obj/item/weapon/handcuffs,/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_beta) +"vC" = (/obj/effect/decal/cleanable/cobweb,/turf/simulated/floor/plating,/area/submap/oldstation_beta) +"vD" = (/mob/living/simple_mob/mechanical/hivebot/swarm,/obj/effect/floor_decal/rust,/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_charlie) +"vJ" = (/obj/machinery/atmospherics/pipe/tank/air{dir = 4},/turf/simulated/floor/plating,/area/submap/oldstation_beta) +"vX" = (/obj/effect/floor_decal/rust,/obj/random/junk,/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_beta) +"wf" = (/obj/machinery/door/firedoor/border_only,/turf/simulated/floor/tiled/asteroid_steel/airless,/area/submap/oldstation_alpha) +"wj" = (/obj/structure/window/reinforced{dir = 8},/obj/machinery/door/blast/regular,/turf/simulated/floor/tiled/old_tile/red,/area/submap/oldstation_tox) +"wo" = (/turf/simulated/wall/r_wall,/area/submap/oldstation_tox) +"wF" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/light/small{dir = 8},/obj/random/trash,/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_beta) +"wK" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_beta) +"wM" = (/obj/structure/table/standard,/obj/item/device/megaphone/super,/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_bridge) +"wP" = (/obj/structure/sign/poster/nanotrasen,/turf/simulated/wall,/area/submap/oldstation_bridge) +"wT" = (/obj/structure/table/standard,/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_power) +"wY" = (/obj/random/junk,/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_bridge) +"wZ" = (/obj/effect/decal/cleanable/egg_smudge,/obj/effect/floor_decal/corner/grey/diagonal,/turf/simulated/floor/tiled/old_tile,/area/submap/oldstation_kitchen) +"xe" = (/obj/machinery/light/small{dir = 8},/obj/structure/urinal{pixel_y = 30},/turf/simulated/floor/tiled/old_tile,/area/submap/oldstation_bridge) +"xg" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/chem_master,/obj/item/weapon/reagent_containers/glass/beaker,/turf/simulated/floor/tiled/old_tile,/area/submap/oldstation_tox) +"xj" = (/obj/structure/closet/crate,/obj/fiftyspawner/silver,/obj/fiftyspawner/gold,/obj/fiftyspawner/uranium,/obj/fiftyspawner/uranium,/obj/fiftyspawner/uranium,/turf/simulated/shuttle/floor/voidcraft/dark,/area/submap/oldstation_hiveboat) +"xr" = (/obj/item/stack/cable_coil,/obj/structure/cable,/obj/machinery/power/apc{dir = 4; name = "Charlie Engineering APC"; pixel_x = 24; start_charge = 0},/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_power) +"xE" = (/obj/item/stack/cable_coil,/turf/simulated/floor/tiled/asteroid_steel/airless,/area/submap/oldstation_alpha) +"xF" = (/obj/structure/table/standard,/obj/item/weapon/storage/firstaid/bonemed,/turf/simulated/floor/tiled/old_tile,/area/submap/oldstation_alpha) +"xG" = (/obj/structure/table/standard,/obj/item/weapon/soap/nanotrasen,/obj/effect/floor_decal/corner/blue/border{dir = 4},/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_bridge) +"xH" = (/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_power) +"xL" = (/obj/machinery/light/small{dir = 4},/obj/structure/closet/crate,/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_beta) +"xO" = (/obj/structure/window/reinforced{dir = 4},/obj/machinery/door/blast/regular,/turf/simulated/floor/tiled/old_tile/red,/area/submap/oldstation_tox) +"xU" = (/obj/structure/closet/crate/radiation,/obj/fiftyspawner/uranium,/turf/simulated/floor/plating,/area/submap/oldstation_power) +"xV" = (/obj/effect/wingrille_spawn/reinforced,/turf/simulated/floor/plating,/area/submap/oldstation_hydro_sec) +"xZ" = (/obj/machinery/door/firedoor,/mob/living/simple_mob/mechanical/hivebot/swarm,/obj/effect/floor_decal/rust,/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_charlie) +"yc" = (/obj/structure/table/standard,/obj/item/weapon/folder/blue,/obj/effect/floor_decal/corner/blue/border{dir = 1},/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_bridge) +"yt" = (/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_beta) +"yz" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/effect/decal/cleanable/generic,/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_beta) +"yG" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/plating,/area/submap/oldstation_kitchen) +"yJ" = (/obj/machinery/door/airlock/maintenance_hatch,/turf/simulated/floor/plating,/area/submap/oldstation_beta) +"yK" = (/mob/living/simple_mob/mechanical/hivebot/swarm,/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_tox) +"yL" = (/mob/living/simple_mob/mechanical/hivebot/swarm,/obj/effect/floor_decal/rust,/obj/random/junk,/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_charlie) +"yM" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/door/firedoor,/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_beta) +"yT" = (/obj/structure/bed/chair{dir = 4},/obj/effect/floor_decal/corner/grey/diagonal,/turf/simulated/floor/tiled/old_tile,/area/submap/oldstation_kitchen) +"zb" = (/obj/structure/shuttle/engine/heater{dir = 4},/turf/simulated/wall,/area/submap/oldstation_hiveboat) +"zd" = (/obj/machinery/firealarm{dir = 4; pixel_x = -28},/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_tox) +"zf" = (/turf/simulated/floor/plating,/area/submap/oldstation_bridge) +"zi" = (/obj/structure/table/standard,/obj/item/weapon/stock_parts/matter_bin,/obj/item/weapon/stock_parts/scanning_module,/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_tox) +"zk" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/random/junk,/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_charlie) +"zy" = (/obj/structure/table/standard,/obj/item/weapon/pen,/obj/effect/floor_decal/corner/blue/border{dir = 1},/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_bridge) +"zE" = (/turf/simulated/wall/r_wall,/area/submap/oldstation_hiveboat) +"zM" = (/obj/machinery/light/small{dir = 8},/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_beta) +"zR" = (/obj/effect/landmark/loot_spawn/low,/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_beta) +"zU" = (/obj/effect/landmark/loot_spawn/low,/turf/simulated/shuttle/floor/voidcraft/dark,/area/submap/oldstation_hiveboat) +"zW" = (/obj/machinery/computer{desc = "A computer long since rendered non-functional due to lack of maintenance. Spitting out error messages."; dir = 1; name = "Broken Computer"},/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_beta) +"zX" = (/obj/random/maintenance/research,/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_tox) +"Ad" = (/obj/machinery/light,/turf/simulated/floor/tiled/old_tile/red,/area/submap/oldstation_tox) +"Ae" = (/obj/machinery/light/small{dir = 4},/obj/effect/floor_decal/rust,/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_beta) +"Am" = (/obj/effect/floor_decal/rust,/turf/simulated/floor/airless,/area/submap/oldstation_power) +"Ap" = (/obj/machinery/atmospherics/unary/engine/bigger{dir = 4},/turf/simulated/floor/plating,/area/submap/oldstation_hiveboat) +"Ar" = (/obj/machinery/computer/rdconsole/core,/turf/simulated/floor/tiled/old_tile/blue,/area/submap/oldstation_tox) +"AK" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/door/firedoor,/obj/machinery/door/airlock/maintenance/int{name = "Cryogenics"},/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_beta) +"AO" = (/obj/structure/table/standard,/obj/machinery/atmospherics/unary/vent_pump/on,/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_hydro_sec) +"AU" = (/mob/living/simple_mob/animal/space/carp/large,/turf/template_noop,/area/template_noop) +"AV" = (/obj/effect/floor_decal/corner/grey/diagonal,/obj/effect/floor_decal/rust,/obj/effect/floor_decal/rust,/turf/simulated/floor/tiled/old_tile,/area/submap/oldstation_kitchen) +"AZ" = (/obj/effect/floor_decal/corner/blue/border{dir = 1},/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_bridge) +"Bc" = (/turf/simulated/floor/airless,/area/submap/oldstation_alpha) +"Be" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_tox) +"Bm" = (/obj/structure/bed/chair{dir = 1},/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_tox) +"Bv" = (/obj/structure/transit_tube_pod{dir = 4},/turf/template_noop,/area/template_noop) +"BB" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/effect/landmark/loot_spawn/low,/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_beta) +"BC" = (/obj/structure/cable/yellow,/turf/simulated/floor/airless,/area/submap/oldstation_power) +"BE" = (/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/obj/effect/floor_decal/rust,/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_beta) +"BF" = (/obj/effect/floor_decal/corner/grey/diagonal,/turf/simulated/floor/tiled/old_tile,/area/submap/oldstation_kitchen) +"BG" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/mob/living/simple_mob/mechanical/hivebot/swarm,/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_charlie) +"BN" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/random/junk,/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_beta) +"BX" = (/obj/effect/decal/cleanable/cobweb2,/turf/simulated/floor/plating,/area/submap/oldstation_beta) +"BY" = (/obj/machinery/door/airlock/command{name = "Theta Station Access"},/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_beta) +"Cb" = (/obj/structure/closet/crate/engineering/electrical,/obj/item/solar_assembly,/obj/item/solar_assembly,/obj/item/solar_assembly,/obj/item/solar_assembly,/turf/simulated/floor/plating,/area/submap/oldstation_bridge) +"Cc" = (/obj/item/solar_assembly,/obj/item/solar_assembly,/obj/item/solar_assembly,/obj/item/solar_assembly,/obj/item/solar_assembly,/obj/item/solar_assembly,/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_power) +"Cd" = (/obj/random/multiple/gun/projectile/rifle,/turf/simulated/shuttle/floor/voidcraft/dark,/area/submap/oldstation_hiveboat) +"Cn" = (/obj/structure/window/reinforced{dir = 8},/obj/machinery/portable_atmospherics/canister/air,/turf/simulated/floor/tiled/old_tile,/area/submap/oldstation_alpha) +"Co" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass{name = "Kitchen"},/turf/simulated/floor/tiled/old_tile,/area/submap/oldstation_kitchen) +"Cp" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/effect/floor_decal/rust,/obj/random/junk,/turf/simulated/floor/tiled/asteroid_steel/airless,/area/submap/oldstation_alpha) +"Cr" = (/obj/random/junk,/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_beta) +"Cs" = (/obj/machinery/computer{desc = "A computer long since rendered non-functional due to lack of maintenance. Spitting out error messages."; name = "Broken Computer"},/turf/simulated/floor/tiled/old_tile/blue,/area/submap/oldstation_bridge) +"Ct" = (/obj/effect/floor_decal/corner/grey/diagonal,/obj/effect/floor_decal/rust,/turf/simulated/floor/tiled/old_tile,/area/submap/oldstation_kitchen) +"Cz" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/light/small{dir = 4},/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_beta) +"CC" = (/turf/simulated/floor/tiled/old_tile/green,/area/submap/oldstation_hydro_sec) +"CQ" = (/obj/structure/table/standard,/obj/item/weapon/pen,/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_beta) +"CR" = (/obj/random/trash,/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_power) +"CX" = (/obj/random/junk,/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_power) +"Dg" = (/obj/structure/transit_tube,/obj/effect/wingrille_spawn/reinforced,/turf/simulated/floor/plating,/area/submap/oldstation_beta) +"Dj" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{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"},/obj/structure/cable/yellow{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/airless,/area/submap/oldstation_power) +"Dp" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/science,/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_charlie) +"Du" = (/obj/item/solar_assembly,/obj/structure/lattice,/turf/template_noop,/area/submap/oldstation_power) +"Dw" = (/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/obj/machinery/light/small{dir = 8},/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_beta) +"Dx" = (/obj/structure/closet/crate,/obj/fiftyspawner/steel,/obj/fiftyspawner/steel,/turf/simulated/shuttle/floor/voidcraft/external,/area/submap/oldstation_hiveboat) +"DE" = (/obj/effect/floor_decal/corner/green/border,/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_hydro_sec) +"DG" = (/obj/structure/girder,/turf/simulated/floor/airless,/area/template_noop) +"DO" = (/obj/effect/wingrille_spawn/reinforced,/turf/simulated/floor/plating,/area/submap/oldstation_bridge) +"DU" = (/obj/machinery/door/airlock/command,/turf/simulated/floor/tiled/asteroid_steel/airless,/area/submap/oldstation_alpha) +"DZ" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/obj/structure/table/standard,/obj/random/maintenance/research,/obj/random/maintenance/research,/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_tox) +"Eb" = (/obj/effect/floor_decal/rust,/obj/random/trash,/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_power) +"Er" = (/obj/effect/decal/cleanable/blood/oil,/mob/living/simple_mob/mechanical/hivebot/swarm,/turf/simulated/shuttle/floor/voidcraft/external,/area/submap/oldstation_hiveboat) +"Et" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/effect/floor_decal/rust,/obj/random/junk,/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_charlie) +"Eu" = (/obj/effect/floor_decal/corner/green/border{dir = 1},/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_hydro_sec) +"Ev" = (/obj/structure/cable{d2 = 2; icon_state = "0-2"; pixel_y = 1},/obj/machinery/power/smes/buildable/hybrid,/turf/simulated/floor/plating,/area/submap/oldstation_power) +"Ez" = (/obj/structure/table/standard,/obj/item/weapon/reagent_containers/chem_disp_cartridge/clonexadone,/obj/item/weapon/reagent_containers/chem_disp_cartridge/unathiliquor,/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_tox) +"EB" = (/obj/structure/transit_tube{icon_state = "N-S"},/turf/template_noop,/area/template_noop) +"EM" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/mob/living/simple_mob/mechanical/hivebot/swarm,/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_charlie) +"EO" = (/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_hydro_sec) +"EV" = (/turf/simulated/mineral,/area/template_noop) +"EX" = (/obj/machinery/power/rad_collector,/turf/simulated/floor/plating,/area/submap/oldstation_charlie) +"EZ" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/effect/floor_decal/rust,/obj/random/junk,/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_charlie) +"Fl" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/effect/floor_decal/rust,/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_tox) +"Fs" = (/obj/machinery/computer{desc = "A computer long since rendered non-functional due to lack of maintenance. Spitting out error messages."; dir = 1; name = "Broken Computer"},/turf/simulated/floor/tiled/old_tile/red,/area/submap/oldstation_tox) +"Fv" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_beta) +"Fw" = (/obj/structure/closet/secure_closet/freezer/fridge,/obj/effect/floor_decal/corner/grey/diagonal,/turf/simulated/floor/tiled/old_tile,/area/submap/oldstation_kitchen) +"Fy" = (/obj/effect/decal/cleanable/blood/oil,/mob/living/simple_mob/mechanical/hivebot/swarm,/turf/simulated/shuttle/floor/voidcraft/dark,/area/submap/oldstation_hiveboat) +"FE" = (/obj/structure/closet/crate,/obj/fiftyspawner/steel,/obj/fiftyspawner/titanium,/turf/simulated/shuttle/floor/voidcraft/external,/area/submap/oldstation_hiveboat) +"FL" = (/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/obj/random/junk,/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_charlie) +"FM" = (/obj/machinery/light/small{dir = 8},/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_power) +"FO" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/effect/floor_decal/rust,/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_charlie) +"FQ" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/plating,/area/submap/oldstation_power) +"FR" = (/turf/simulated/floor/tiled/old_tile/blue,/area/submap/oldstation_bridge) +"FZ" = (/obj/machinery/light/small{dir = 4},/obj/structure/closet/crate/secure/weapon,/turf/simulated/floor/plating,/area/submap/oldstation_charlie) +"Gg" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/door/firedoor,/obj/effect/floor_decal/rust,/obj/random/junk,/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_beta) +"Gi" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/airless,/area/submap/oldstation_alpha) +"Gw" = (/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/airless,/area/submap/oldstation_power) +"Gz" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/mob/living/simple_mob/mechanical/hivebot/tank/armored/anti_laser,/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_charlie) +"GB" = (/obj/effect/wingrille_spawn/reinforced,/turf/simulated/floor/airless,/area/submap/oldstation_alpha) +"GC" = (/obj/effect/decal/remains/human,/obj/effect/decal/cleanable/cobweb,/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_charlie) +"GF" = (/turf/simulated/wall,/area/submap/oldstation_kitchen) +"GH" = (/obj/machinery/light/small{dir = 1},/obj/effect/floor_decal/rust,/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_beta) +"GL" = (/obj/machinery/power/port_gen/pacman/super,/turf/simulated/floor/plating,/area/submap/oldstation_power) +"GN" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/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"},/obj/effect/floor_decal/rust,/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_charlie) +"GO" = (/obj/effect/decal/remains/robot{icon_state = "gib5"},/mob/living/simple_mob/mechanical/hivebot/ranged_damage/strong/guard,/turf/simulated/shuttle/floor/voidcraft/external,/area/submap/oldstation_hiveboat) +"Hb" = (/obj/structure/table/standard,/obj/machinery/atmospherics/unary/vent_pump/on,/obj/item/weapon/coin,/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_bridge) +"He" = (/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/mob/living/simple_mob/mechanical/hivebot/tank/armored/anti_laser,/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_charlie) +"Hm" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/maintenance/engi{name = "Engineering"},/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_power) +"Hn" = (/obj/effect/landmark/loot_spawn/low,/turf/simulated/floor/tiled/asteroid_steel/airless,/area/submap/oldstation_alpha) +"HB" = (/obj/structure/table/standard,/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/obj/effect/floor_decal/corner/grey/diagonal,/turf/simulated/floor/tiled/old_tile,/area/submap/oldstation_kitchen) +"HF" = (/obj/structure/table/standard,/obj/item/device/flash,/obj/item/device/flash,/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_beta) +"HK" = (/obj/structure/cable,/turf/simulated/floor/plating,/area/submap/oldstation_power) +"HM" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/light,/mob/living/simple_mob/mechanical/hivebot/swarm,/obj/effect/floor_decal/rust,/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_charlie) +"HR" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/effect/floor_decal/corner/grey/diagonal,/turf/simulated/floor/tiled/old_tile,/area/submap/oldstation_kitchen) +"Ib" = (/obj/effect/landmark/loot_spawn/low,/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_charlie) +"Ii" = (/turf/simulated/floor/airless,/area/template_noop) +"Ik" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/light{dir = 1; in_use = 1},/mob/living/simple_mob/mechanical/hivebot/tank/armored/anti_laser,/obj/effect/floor_decal/rust,/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_charlie) +"Im" = (/obj/structure/sign/redcross,/turf/simulated/wall,/area/submap/oldstation_beta) +"Ir" = (/obj/machinery/optable{name = "Robotics Operating Table"},/turf/simulated/floor/tiled/old_tile/blue,/area/submap/oldstation_tox) +"Iv" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/effect/floor_decal/rust,/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_beta) +"Iz" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/effect/floor_decal/rust,/turf/simulated/floor/tiled/asteroid_steel/airless,/area/submap/oldstation_alpha) +"IA" = (/obj/random/junk,/obj/random/junk,/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_power) +"ID" = (/obj/machinery/door/firedoor,/mob/living/simple_mob/mechanical/hivebot/swarm,/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_charlie) +"IE" = (/obj/structure/table/standard,/obj/machinery/recharger,/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_tox) +"IF" = (/obj/machinery/light/small,/turf/simulated/floor/tiled/old_tile/green,/area/submap/oldstation_hydro_sec) +"IW" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/obj/structure/table/standard,/obj/item/weapon/folder/white,/obj/item/weapon/reagent_containers/glass/beaker,/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_tox) +"IX" = (/obj/effect/wingrille_spawn/reinforced,/turf/simulated/floor/plating,/area/submap/oldstation_beta) +"Ji" = (/obj/structure/closet/crate/engineering/electrical,/obj/item/solar_assembly,/obj/item/solar_assembly,/obj/item/solar_assembly,/obj/item/solar_assembly,/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_beta) +"Jj" = (/turf/simulated/wall,/area/submap/oldstation_hydro_sec) +"Jk" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/mob/living/simple_mob/mechanical/hivebot/ranged_damage/strong/guard,/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_charlie) +"Jt" = (/obj/structure/transit_tube_pod{dir = 4},/obj/structure/transit_tube/station,/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_beta) +"Ju" = (/obj/structure/table/standard,/obj/effect/floor_decal/corner/blue/border{dir = 4},/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_bridge) +"Jx" = (/obj/machinery/portable_atmospherics/canister,/turf/simulated/floor/airless,/area/submap/oldstation_alpha) +"Jy" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/light/small{dir = 4},/obj/machinery/firealarm{dir = 4; pixel_x = 24},/obj/random/trash,/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_beta) +"JF" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/door/firedoor,/obj/machinery/door/airlock/science,/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_charlie) +"JT" = (/obj/structure/particle_accelerator/particle_emitter/left,/turf/simulated/floor/plating,/area/submap/oldstation_charlie) +"Kt" = (/obj/effect/decal/cleanable/flour,/obj/effect/floor_decal/corner/grey/diagonal,/obj/effect/floor_decal/rust,/obj/random/junk,/turf/simulated/floor/tiled/old_tile,/area/submap/oldstation_kitchen) +"Kv" = (/obj/effect/floor_decal/rust,/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_beta) +"Kz" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_bridge) +"KC" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/plating,/area/submap/oldstation_hydro_sec) +"KG" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/floor_decal/rust,/turf/simulated/floor/tiled/asteroid_steel/airless,/area/submap/oldstation_alpha) +"KL" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_power) +"KZ" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/mob/living/simple_mob/mechanical/hivebot/tank/armored/anti_laser,/obj/random/junk,/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_charlie) +"Lc" = (/obj/structure/cable,/obj/machinery/power/apc{dir = 4; name = "Charlie Main Corridor APC"; pixel_x = 24; start_charge = 0},/obj/structure/closet/crate,/turf/simulated/floor/plating,/area/submap/oldstation_beta) +"Lh" = (/obj/machinery/light{dir = 4},/obj/machinery/door/firedoor,/obj/random/junk,/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_charlie) +"Lj" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/airless,/area/template_noop) +"Lk" = (/turf/simulated/floor/tiled/old_tile,/area/submap/oldstation_tox) +"Ll" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable{d2 = 8; icon_state = "0-8"},/obj/machinery/power/apc{name = "Charlie Kitchen APC"; pixel_y = -24; start_charge = 0},/turf/simulated/floor/plating,/area/submap/oldstation_kitchen) +"Ln" = (/obj/structure/cable{d2 = 4; icon_state = "0-4"},/obj/machinery/power/apc{dir = 1; name = "Thete Prototype Lab APC"; pixel_y = 24; start_charge = 0},/turf/simulated/floor/tiled/old_tile/red,/area/submap/oldstation_tox) +"Lo" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/science{name = "Artificial Program Core Room"},/turf/simulated/floor/plating,/area/submap/oldstation_charlie) +"Lp" = (/obj/effect/floor_decal/corner/green/border{dir = 1},/obj/random/trash,/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_hydro_sec) +"Lq" = (/turf/simulated/floor/tiled/old_tile/red,/area/submap/oldstation_tox) +"Lv" = (/obj/item/stolenpackage,/turf/simulated/shuttle/floor/voidcraft/dark,/area/submap/oldstation_hiveboat) +"Lw" = (/obj/effect/decal/cleanable/flour,/obj/effect/floor_decal/corner/grey/diagonal,/turf/simulated/floor/tiled/old_tile,/area/submap/oldstation_kitchen) +"LD" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/mob/living/simple_mob/mechanical/hivebot/swarm,/obj/effect/floor_decal/rust,/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_charlie) +"LG" = (/obj/structure/table/standard,/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/obj/item/weapon/storage/backpack,/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_beta) +"LN" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{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/airless,/area/submap/oldstation_power) +"LS" = (/obj/structure/table/standard,/obj/item/weapon/book/manual/security_space_law,/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_beta) +"LT" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/light{dir = 8},/mob/living/simple_mob/mechanical/hivebot/tank/armored/anti_laser,/obj/effect/floor_decal/rust,/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_charlie) +"Ma" = (/obj/random/maintenance/research,/obj/effect/floor_decal/rust,/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_tox) +"Mc" = (/obj/item/clothing/shoes/magboots,/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_power) +"Md" = (/obj/structure/table/standard,/obj/item/weapon/paper,/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_beta) +"Mi" = (/obj/effect/floor_decal/rust,/obj/random/junk,/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_tox) +"Mp" = (/mob/living/simple_mob/mechanical/hivebot/support/logistics,/turf/simulated/floor/tiled/old_tile/blue,/area/submap/oldstation_tox) +"Mq" = (/obj/effect/floor_decal/corner/grey/diagonal,/obj/effect/floor_decal/rust,/obj/random/junk,/turf/simulated/floor/tiled/old_tile,/area/submap/oldstation_kitchen) +"Ms" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/mob/living/simple_mob/mechanical/hivebot/tank/armored/anti_melee,/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_tox) +"Mx" = (/obj/structure/table/reinforced,/obj/machinery/the_singularitygen,/turf/simulated/floor/tiled/old_tile/red,/area/submap/oldstation_tox) +"MF" = (/obj/machinery/computer{desc = "A computer long since rendered non-functional due to lack of maintenance. Spitting out error messages."; dir = 8; name = "Broken Computer"},/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_beta) +"MI" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/effect/floor_decal/rust,/turf/simulated/floor/plating,/area/submap/oldstation_power) +"MK" = (/obj/effect/floor_decal/rust,/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_charlie) +"MM" = (/obj/structure/table/standard,/obj/item/weapon/reagent_containers/food/drinks/cans/cola,/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_beta) +"MN" = (/obj/structure/table/standard,/obj/item/weapon/broken_bottle,/obj/item/weapon/soap/deluxe,/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_tox) +"MT" = (/obj/structure/table/standard,/obj/fiftyspawner/grass,/obj/fiftyspawner/steel,/obj/effect/floor_decal/rust,/turf/simulated/floor/tiled/old_tile/blue,/area/submap/oldstation_tox) +"MW" = (/obj/structure/closet/crate/engineering{name = "plasma tank crate"},/obj/random/maintenance/medical,/obj/random/maintenance/medical,/obj/random/maintenance/research,/obj/random/maintenance/research,/obj/random/maintenance/research,/turf/simulated/floor/plating,/area/submap/oldstation_charlie) +"Nb" = (/mob/living/simple_mob/mechanical/hivebot/ranged_damage/siege/fragmentation,/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_tox) +"Nf" = (/obj/machinery/firealarm{dir = 8; pixel_x = -24},/turf/simulated/floor/tiled/old_tile/red,/area/submap/oldstation_tox) +"Nl" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/random/junk,/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_beta) +"Nq" = (/obj/machinery/door/airlock/maintenance/command{name = "Beta Station Access"},/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_beta) +"Ns" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/mob/living/simple_mob/mechanical/hivebot/swarm,/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_charlie) +"Nx" = (/obj/machinery/door/firedoor,/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_charlie) +"NH" = (/obj/machinery/light/small,/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_beta) +"NJ" = (/obj/structure/table/standard,/obj/item/weapon/reagent_containers/food/condiment/small/peppermill{pixel_x = 3},/obj/item/weapon/reagent_containers/food/condiment/small/saltshaker{pixel_x = -3},/obj/effect/floor_decal/corner/grey/diagonal,/turf/simulated/floor/tiled/old_tile,/area/submap/oldstation_kitchen) +"NK" = (/obj/structure/bed/chair/bay/chair/padded{dir = 8},/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_beta) +"NP" = (/turf/simulated/floor/airless,/area/submap/oldstation_power) +"NS" = (/obj/machinery/atmospherics/unary/vent_pump{dir = 8},/obj/effect/floor_decal/rust,/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_charlie) +"NZ" = (/obj/effect/landmark/loot_spawn/low,/turf/simulated/floor/tiled/old_tile/red,/area/submap/oldstation_tox) +"Og" = (/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_beta) +"Oh" = (/obj/structure/table/standard,/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_bridge) +"Op" = (/obj/structure/table/standard,/obj/item/weapon/stock_parts/manipulator,/obj/item/weapon/stock_parts/capacitor,/obj/item/weapon/stock_parts/micro_laser,/obj/item/stack/cable_coil,/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_tox) +"Ov" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/airless,/area/submap/oldstation_alpha) +"Oy" = (/obj/machinery/atmospherics/pipe/simple/hidden,/turf/simulated/floor/airless,/area/submap/oldstation_alpha) +"OA" = (/obj/effect/floor_decal/rust,/obj/random/trash,/turf/simulated/floor/tiled/asteroid_steel/airless,/area/submap/oldstation_alpha) +"OD" = (/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_power) +"OE" = (/obj/effect/decal/remains/robot{icon_state = "gibup"},/turf/simulated/shuttle/floor/voidcraft/dark,/area/submap/oldstation_hiveboat) +"OH" = (/obj/machinery/door/firedoor,/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_beta) +"OI" = (/obj/machinery/door/window/brigdoor/eastleft{dir = 8},/obj/machinery/door/blast/regular,/turf/simulated/floor/tiled/old_tile/red,/area/submap/oldstation_tox) +"Po" = (/obj/machinery/light{dir = 1; in_use = 1},/turf/simulated/floor/tiled/old_tile/red,/area/submap/oldstation_tox) +"Pq" = (/obj/item/roller,/turf/simulated/floor/tiled/old_tile,/area/submap/oldstation_alpha) +"Ps" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_beta) +"Pu" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/mob/living/simple_mob/mechanical/hivebot/swarm,/obj/effect/floor_decal/rust,/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_tox) +"Py" = (/obj/structure/table/standard,/obj/item/trash/plate,/obj/effect/floor_decal/corner/grey/diagonal,/turf/simulated/floor/tiled/old_tile,/area/submap/oldstation_kitchen) +"PC" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/random/trash,/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_beta) +"PP" = (/turf/simulated/wall,/area/submap/oldstation_hiveboat) +"PT" = (/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,/mob/living/simple_mob/mechanical/hivebot/swarm,/obj/effect/floor_decal/rust,/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_charlie) +"PZ" = (/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/obj/structure/cable{d2 = 8; icon_state = "0-8"},/obj/machinery/power/apc{dir = 4; name = "Theta RnD APC"; pixel_x = 24; start_charge = 0},/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_charlie) +"Qe" = (/obj/structure/table/standard,/obj/item/weapon/tool/crowbar,/obj/random/maintenance,/obj/random/maintenance,/obj/random/maintenance,/obj/random/maintenance,/obj/random/maintenance,/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_beta) +"Qn" = (/obj/machinery/door/airlock,/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_bridge) +"Qp" = (/obj/effect/floor_decal/rust,/obj/random/junk,/obj/random/trash,/turf/simulated/floor/tiled/old_tile,/area/submap/oldstation_tox) +"Qv" = (/obj/structure/table/standard,/obj/structure/cable{d2 = 2; icon_state = "0-2"; pixel_y = 1},/obj/machinery/power/apc{dir = 8; name = "Charlie Security APC"; pixel_x = -24; start_charge = 0},/obj/item/weapon/folder/red,/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_beta) +"QA" = (/turf/simulated/floor/tiled/old_tile,/area/submap/oldstation_bridge) +"QB" = (/obj/structure/table/standard,/obj/item/weapon/reagent_containers/chem_disp_cartridge/acidspit,/obj/item/weapon/reagent_containers/chem_disp_cartridge/lemon,/obj/item/weapon/reagent_containers/chem_disp_cartridge/sacid,/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_tox) +"QE" = (/obj/structure/table/reinforced,/obj/item/weapon/paper{info = "*Health Analyser*

The portable Health Analyser is essentially a handheld variant of a health analyser. Years of research have concluded with this device which is capable of diagnosing even the most critical, obscure or technical injuries any humanoid entity is suffering in an easy to understand format that even a non-trained health professional can understand.

The health analyser is expected to go into full production as standard issue medical kit."; name = "Health Analyser Report"},/turf/simulated/floor/tiled/old_tile/red,/area/submap/oldstation_tox) +"QJ" = (/turf/simulated/floor/airless{icon_state = "solarpanel"},/area/submap/oldstation_power) +"QL" = (/obj/structure/sign/poster/nanotrasen,/turf/simulated/wall,/area/submap/oldstation_kitchen) +"QM" = (/obj/item/stack/cable_coil,/turf/template_noop,/area/template_noop) +"QP" = (/obj/structure/transit_tube,/turf/template_noop,/area/template_noop) +"Rf" = (/obj/effect/decal/cleanable/blood/oil,/turf/simulated/shuttle/floor/voidcraft/dark,/area/submap/oldstation_hiveboat) +"Rn" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_tox) +"Ro" = (/obj/machinery/atmospherics/unary/cryo_cell,/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_beta) +"Ru" = (/obj/machinery/light/small{dir = 4},/obj/structure/bed/chair{dir = 8},/obj/effect/floor_decal/corner/grey/diagonal,/turf/simulated/floor/tiled/old_tile,/area/submap/oldstation_kitchen) +"Rw" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/landmark/loot_spawn/low,/turf/simulated/floor/plating,/area/submap/oldstation_kitchen) +"RH" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/airlock/maintenance_hatch,/turf/simulated/floor/plating,/area/submap/oldstation_kitchen) +"RR" = (/obj/effect/wingrille_spawn/reinforced,/turf/simulated/floor/plating,/area/submap/oldstation_power) +"RT" = (/mob/living/simple_mob/mechanical/hivebot/ranged_damage/strong/guard,/turf/simulated/shuttle/floor/voidcraft/dark,/area/submap/oldstation_hiveboat) +"RU" = (/obj/structure/bed/chair/bay/chair/padded,/turf/simulated/floor/tiled/old_tile/red,/area/submap/oldstation_tox) +"RX" = (/obj/structure/cable/yellow{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/airless,/area/submap/oldstation_power) +"RZ" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/effect/floor_decal/rust,/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_power) +"Sa" = (/obj/machinery/light{dir = 4},/obj/structure/bed/chair{dir = 1},/turf/simulated/floor/tiled/old_tile/blue,/area/submap/oldstation_bridge) +"Sb" = (/obj/machinery/power/emitter,/turf/simulated/floor/plating,/area/submap/oldstation_charlie) +"Se" = (/obj/effect/floor_decal/corner/blue/border{dir = 5},/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_bridge) +"Sh" = (/obj/structure/cable/yellow{d2 = 8; icon_state = "0-8"},/turf/simulated/floor/airless,/area/submap/oldstation_power) +"Sn" = (/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_power) +"Ss" = (/obj/effect/floor_decal/rust,/turf/simulated/floor/tiled/asteroid_steel/airless,/area/submap/oldstation_alpha) +"Su" = (/obj/machinery/atmospherics/pipe/simple/hidden{dir = 9},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plating,/area/submap/oldstation_beta) +"Sy" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/item/solar_assembly,/turf/simulated/floor/plating,/area/submap/oldstation_beta) +"SG" = (/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_beta) +"SW" = (/obj/structure/table/reinforced,/obj/machinery/light{dir = 8},/obj/item/device/healthanalyzer/phasic,/turf/simulated/floor/tiled/old_tile/red,/area/submap/oldstation_tox) +"SZ" = (/obj/effect/floor_decal/rust,/obj/random/junk,/turf/simulated/floor/tiled/asteroid_steel/airless,/area/submap/oldstation_alpha) +"Tc" = (/mob/living/simple_mob/mechanical/hivebot/tank/armored/anti_laser,/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_tox) +"Tg" = (/mob/living/simple_mob/mechanical/hivebot/swarm,/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_charlie) +"Tl" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/airlock/maintenance_hatch,/turf/simulated/floor/plating,/area/submap/oldstation_hydro_sec) +"Tn" = (/turf/simulated/floor/plating,/area/submap/oldstation_power) +"Tr" = (/obj/machinery/door/airlock/maintenance_hatch,/turf/simulated/floor/plating,/area/submap/oldstation_charlie) +"Tu" = (/obj/structure/table/standard,/obj/item/weapon/reagent_containers/chem_disp_cartridge/ale,/obj/item/weapon/reagent_containers/chem_disp_cartridge/imidazoline,/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_tox) +"Tw" = (/mob/living/simple_mob/mechanical/hivebot/ranged_damage/strong/guard,/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_charlie) +"TC" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/old_tile/green,/area/submap/oldstation_hydro_sec) +"TD" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/mob/living/simple_mob/mechanical/hivebot/tank/armored/anti_melee,/obj/random/junk,/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_charlie) +"TE" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/effect/floor_decal/corner/green/border,/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_hydro_sec) +"TH" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/light/small{dir = 8},/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_beta) +"TK" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_tox) +"TL" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/airlock/external{name = "Engineering External Access"},/turf/simulated/floor/airless,/area/submap/oldstation_power) +"TN" = (/turf/simulated/shuttle/floor/voidcraft/dark,/area/submap/oldstation_hiveboat) +"TO" = (/obj/machinery/light/small{dir = 4},/mob/living/simple_mob/mechanical/hivebot/swarm,/turf/simulated/floor/plating,/area/submap/oldstation_charlie) +"TP" = (/obj/structure/table/rack/shelf/steel,/obj/item/weapon/gun/energy/laser,/obj/item/weapon/gun/energy/laser{pixel_x = 4; pixel_y = 2},/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_beta) +"TR" = (/obj/machinery/atmospherics/binary/pump{dir = 8},/obj/effect/floor_decal/rust,/obj/random/junk,/turf/simulated/floor/tiled/asteroid_steel/airless,/area/submap/oldstation_alpha) +"TY" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/mob/living/simple_mob/mechanical/hivebot/tank/armored/anti_laser,/obj/effect/floor_decal/rust,/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_charlie) +"TZ" = (/obj/random/trash,/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_tox) +"Ud" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/door/firedoor,/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_charlie) +"Uh" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/effect/floor_decal/rust,/turf/simulated/floor/airless,/area/submap/oldstation_alpha) +"Up" = (/obj/structure/table/standard,/obj/item/weapon/flame/lighter/zippo/royal,/obj/effect/floor_decal/corner/blue/border{dir = 8},/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_bridge) +"Us" = (/obj/structure/cable/yellow{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/plating,/area/submap/oldstation_power) +"UB" = (/obj/effect/decal/cleanable/ash,/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_power) +"UC" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/effect/floor_decal/rust,/obj/random/junk,/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_beta) +"UF" = (/obj/structure/girder,/turf/simulated/floor/airless,/area/submap/oldstation_alpha) +"UH" = (/turf/simulated/mineral,/area/submap/oldstation_charlie) +"UI" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable{d2 = 8; icon_state = "0-8"},/obj/structure/cable{d2 = 4; icon_state = "0-4"},/obj/effect/wingrille_spawn/reinforced,/turf/simulated/floor/plating,/area/submap/oldstation_power) +"UJ" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/door/firedoor,/obj/machinery/door/airlock/research,/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_tox) +"UO" = (/obj/machinery/light/small{dir = 1},/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_beta) +"UR" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/light{dir = 8},/obj/machinery/door/firedoor,/obj/effect/floor_decal/rust,/obj/random/junk,/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_charlie) +"UT" = (/mob/living/simple_mob/mechanical/hivebot/tank/armored/anti_laser,/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_charlie) +"Vb" = (/obj/structure/reagent_dispensers/watertank/high,/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_hydro_sec) +"Vc" = (/obj/machinery/light{dir = 4},/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_charlie) +"Vk" = (/obj/effect/decal/remains/robot{icon_state = "gib5"},/mob/living/simple_mob/mechanical/hivebot/swarm,/turf/simulated/shuttle/floor/voidcraft/dark,/area/submap/oldstation_hiveboat) +"Vp" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/airless,/area/submap/oldstation_alpha) +"VC" = (/obj/structure/particle_accelerator/power_box,/turf/simulated/floor/plating,/area/submap/oldstation_charlie) +"VR" = (/obj/effect/decal/remains/robot,/mob/living/simple_mob/mechanical/hivebot/ranged_damage/strong/guard,/turf/simulated/shuttle/floor/voidcraft/dark,/area/submap/oldstation_hiveboat) +"VW" = (/obj/machinery/portable_atmospherics/hydroponics/soil,/turf/simulated/floor/grass,/area/submap/oldstation_hydro_sec) +"Wa" = (/obj/structure/cable,/obj/machinery/power/smes/buildable/hybrid,/obj/effect/floor_decal/rust,/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_power) +"Wf" = (/obj/structure/closet/crate/engineering/electrical,/obj/item/solar_assembly,/obj/item/solar_assembly,/obj/item/solar_assembly,/obj/item/solar_assembly,/obj/item/solar_assembly,/obj/item/solar_assembly,/turf/simulated/floor/plating,/area/submap/oldstation_beta) +"Wr" = (/obj/machinery/light{dir = 4},/turf/simulated/floor/tiled/old_tile/blue,/area/submap/oldstation_tox) +"Ws" = (/mob/living/simple_mob/mechanical/hivebot/ranged_damage/rapid,/turf/simulated/shuttle/floor/voidcraft/dark,/area/submap/oldstation_hiveboat) +"Wv" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plating,/area/submap/oldstation_bridge) +"WA" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/airlock/highsecurity{name = "Prototype Laboratory"},/turf/simulated/floor/tiled/old_tile/red,/area/submap/oldstation_tox) +"WB" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/effect/floor_decal/rust,/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_power) +"WC" = (/turf/simulated/wall,/area/submap/oldstation_charlie) +"WJ" = (/obj/effect/landmark/loot_spawn/low,/turf/simulated/floor/plating,/area/submap/oldstation_beta) +"WP" = (/obj/machinery/door/window/brigdoor/eastleft,/obj/machinery/door/blast/regular,/turf/simulated/floor/tiled/old_tile/red,/area/submap/oldstation_tox) +"WY" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/unary/cryo_cell,/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_beta) +"WZ" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/airlock/maintenance_hatch,/turf/simulated/floor/plating,/area/submap/oldstation_bridge) +"Xa" = (/obj/structure/closet/crate/engineering/electrical,/obj/item/solar_assembly,/obj/item/solar_assembly,/obj/item/solar_assembly,/obj/item/solar_assembly,/turf/simulated/floor/plating,/area/submap/oldstation_beta) +"Xd" = (/obj/effect/floor_decal/rust,/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_tox) +"Xm" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/effect/floor_decal/rust,/obj/random/junk,/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_charlie) +"Xq" = (/obj/effect/landmark/loot_spawn/low,/turf/simulated/floor/tiled/old_tile/blue,/area/submap/oldstation_tox) +"Xu" = (/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/airless,/area/submap/oldstation_power) +"Xz" = (/obj/machinery/atmospherics/pipe/manifold/hidden{dir = 8},/turf/simulated/floor/airless,/area/submap/oldstation_alpha) +"XB" = (/obj/effect/wingrille_spawn/reinforced,/turf/simulated/floor/plating,/area/submap/oldstation_tox) +"XI" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/door/airlock/maintenance_hatch,/turf/simulated/floor/plating,/area/submap/oldstation_kitchen) +"XL" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/random/trash,/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_beta) +"XO" = (/turf/simulated/wall,/area/template_noop) +"XV" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_beta) +"Yd" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/light{dir = 8},/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_charlie) +"Ye" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_beta) +"Yg" = (/obj/effect/floor_decal/rust,/obj/random/trash,/turf/simulated/floor/airless,/area/submap/oldstation_alpha) +"Yj" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/mob/living/simple_mob/mechanical/hivebot/swarm,/obj/effect/floor_decal/rust,/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_charlie) +"Yl" = (/obj/random/maintenance/research,/obj/effect/floor_decal/rust,/turf/simulated/floor/tiled/old_tile/blue,/area/submap/oldstation_tox) +"Yn" = (/obj/effect/floor_decal/rust,/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_power) +"Yo" = (/obj/machinery/r_n_d/circuit_imprinter,/turf/simulated/floor/tiled/old_tile/blue,/area/submap/oldstation_tox) +"Yr" = (/obj/effect/wingrille_spawn/reinforced,/turf/simulated/floor/plating,/area/submap/oldstation_kitchen) +"Yt" = (/obj/structure/cable/yellow{d2 = 4; icon_state = "0-4"},/turf/simulated/floor/airless,/area/submap/oldstation_power) +"Yw" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/plating,/area/submap/oldstation_charlie) +"Yz" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/door/firedoor,/obj/machinery/door/airlock/science,/obj/effect/floor_decal/rust,/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_charlie) +"YA" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/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/submap/oldstation_power) +"YN" = (/obj/structure/table/reinforced,/obj/machinery/light{dir = 8},/obj/item/weapon/paper{info = "*Singularity Generator*

Modern power generation typically comes in two forms, a Fusion Generator or a Fission Generator. Fusion provides the best space to power ratio, and is typically seen on military or high security ships and stations, however Fission reactors require the usage of expensive, and rare, materials in its construction.. Fission generators are massive and bulky, and require a large reserve of uranium to power, however they are extremely cheap to operate and oft need little maintenance once operational.

The Singularity aims to alter this, a functional Singularity is essentially a controlled Black Hole, a Black Hole that generates far more power than Fusion or Fission generators can ever hope to produce. "; name = "Singularity Generator"},/obj/item/weapon/paper{info = "*Prototype Hardsuit*

The B01-RIG Hardsuit is a prototype powered exoskeleton. Based off of a recovered pre-void war era united Earth government powered military exosuit, the RIG Hardsuit is a breakthrough in Hardsuit technology, and is the first post-void war era Hardsuit that can be safely used by an operator.

The B01 however suffers a myriad of constraints. It is slow and bulky to move around, it lacks any significant armor plating against direct attacks and its internal heads up display is unfinished, resulting in the user being unable to see long distances.

The B01 is unlikely to see any form of mass production, but will serve as a base for future Hardsuit developments."; name = "B01-RIG Hardsuit Report"},/turf/simulated/floor/tiled/old_tile/red,/area/submap/oldstation_tox) +"YT" = (/obj/machinery/shower{dir = 8},/obj/machinery/door/window/westleft,/turf/simulated/floor/tiled/old_tile,/area/submap/oldstation_bridge) +"YX" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/effect/floor_decal/rust,/obj/random/junk,/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_beta) +"Zf" = (/obj/structure/table/standard,/obj/item/stack/cable_coil,/turf/simulated/floor/plating,/area/submap/oldstation_power) +"Zk" = (/obj/structure/table/standard,/obj/machinery/atmospherics/unary/vent_pump/on,/obj/item/clothing/mask/breath,/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_power) +"Zr" = (/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/plating,/area/submap/oldstation_kitchen) +"Zz" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable{d2 = 4; icon_state = "0-4"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/power/apc{dir = 1; name = "Charlie Hydroponics APC"; pixel_y = 24; start_charge = 0},/turf/simulated/floor/plating,/area/submap/oldstation_hydro_sec) +"ZF" = (/obj/structure/closet/crate,/obj/random/maintenance/medical,/obj/random/maintenance/medical,/obj/random/maintenance/medical,/obj/random/maintenance/medical,/obj/random/maintenance/medical,/turf/simulated/floor/plating,/area/submap/oldstation_charlie) +"ZK" = (/obj/item/solar_assembly,/turf/template_noop,/area/template_noop) +"ZM" = (/obj/machinery/r_n_d/destructive_analyzer,/obj/effect/floor_decal/rust,/turf/simulated/floor/tiled/old_tile/blue,/area/submap/oldstation_tox) +"ZS" = (/obj/structure/table/standard,/obj/item/weapon/material/kitchen/utensil/fork,/obj/effect/floor_decal/corner/grey/diagonal,/turf/simulated/floor/tiled/old_tile,/area/submap/oldstation_kitchen) +"ZW" = (/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/effect/floor_decal/rust,/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_beta) +"ZZ" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/mob/living/simple_mob/mechanical/hivebot/swarm,/obj/random/junk,/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldstation_charlie) + +(1,1,1) = {" +gGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGAUgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGAUgGgGgGgGgGgGgGgGgGgGgGgGUHUHUHUHUHUHUHUHUHUHUHgGgGgGgGgG +gGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGUHUHUHUHUHUHUHUHUHUHUHUHUHUHUHUHUHgGgG +gGgGAUgGgGgGgGgGgGgGAUgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGUHUHzEzEzEzEzEzEzEzEzEzEzEzEzEzEUHUHUHgG +gGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGAUgGgGgGgGgGgGgGgGgGgGgGgGgGuLgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGUHzEFEiXzEeSeSzEPPTNmyTNWsPPzExjzEUHUHgG +gGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGqUwPDODODODODOwPqUgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGUHUHzEiXErzEhweSzEeSeSeSPPhnRfzEOEPPzboCgG +gGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGqUqUFRFRCsCsCsFRFRqUqUgGgGgGgGgGgGgGgGEVEVEVgGgGgGgGgGjAUHUHzEiXiXzEeSVkzEeSeSPPeSTNRTzERfLvzbApgG +gGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGqUqUqUFRuqAZycinzyAZSelDqUqUqUqUgGgGjAgGEVdZdZEVgGjAgGgGgGjAUHUHzEPPmqkARfTNkAeSuveSeSWsTNkATNTNzboCgG +gGgGgGgGgGgGgGgGgGjAgGgGjAgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGqUvyqUCsUpgLgLgLgLgLJuCsqUxesnqUjAjAgGgGEVdZdZEVgGgGgGgGjAgGUHUHzEGOmqkATNVRkAeSeSeSeSRTTNkALvCdzbApgG +gGgGgGgGgGgGrmgGgGgGgGjAjAjAjAjAjAjAjAjAjAjAjAjAjAjAjAjAqUqUWvqUlskBqRgLwMgLgLuySaqUQAsFqUgGgGgGjAgGEVEVgGgGgGjAgGgGgGUHUHzEEriXzEPPTNzEeSPPTNeSTNWszETNzUzboCgG +gGgGgGjAgGrmgYrmjAgGjAgGgGjAgGgGgGgGgGgGgGgGgGgGgGgGgGgGqUCbWvqUCssLgLgLHbgLwYJuCsqUQnqUqUgGgGgGgGgGgGQPgGgGgGgGgGgGgGUHUHzEiXiXzEFyeSzEeSeSeSPPmybLzETNoMzbApgG +gGBcUFBcjArmgYrmrmgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGqUbPWvqUhkkBgLgLsdgLgLuyeyqUtClyqUgGgGgGgGgGgGgGgGgGgGgGgGgGgGUHUHzEDxiXzEuveSzETNRTRfTNTNTNzEgEzEUHUHgG +BcnWmwBcBcrmrmrmgGgGgGjAgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGqUzfWvqUqUlahSgLKzgLOhxGqUqUkkYTqUgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGUHUHzEzEzEkAkAzEzEzEzEzEzEzEzEzEUHUHgGgG +BcmwmwmwhvmwmwmwmwmwgGgGgGgGgGgGgGAUgGgGgGgGgGgGgGdxdxdxqUqUWZqUqUwPDODOblDODOwPqUqUQnqUqUdxdxdxgGgGgGgGgGgGgGWCWCWCWCgGgGUHUHWCiYiYiYiYWCUHUHUHUHUHUHWCWCWCWCgG +jAwfrOSZSsHnmwSsSsGBgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGIXJiijImbdwKijOHUOijijUCKvijGHqKCrvXKvgsijijIXgGQPgGgGgGgGgGpoGCIbWCWCWCWCWCWCWCLoLoWCWCWCWCWCWCWCWCWCczZFWCgG +BcwfnWnWnWSsDUSsnIhNQPQPcKQPQPQPQPQPQPQPQPQPcKQPQPDgjjijNqgysHhgimhgiVXLskKvnOijOHijKvKvBYijjjDgQPgGBvgGgGEBQPtDcIniunGztpgZBGiDYjervDMKTgololTgDpTwolTrczTOWCgG +BcGBmwmwrOSsmwftnWGBZKgGgGgGgGgGgGgGgGgGgGgGgGgGgGIXijxLImYeOgJjJjxVxVxVxVxVxVxVJjJjnbfWgszMijIXgGgGQPgGgGgGgGpoolVcWCEMZZJFhWFOHMFOLDTYhWaNFOLDYzXmolWCiYMWWCgG +gGBcxFmwnWffmwmwmwmwmwgGgGgGjAgGjAgGjAgGgGgGgGgGssssssssssTHkJJjmjCCVWVWVbVWVWCCrfJjqFAedxdxdxdxdxgGgGgGgGgGgGWCWCWCWCYdFLpkpkpkpkpkayaypkpkpkpkpksBloWCWCWCWCgG +jAnWPqGBnWnWmwBcBcjAUFjAjAQJNPNPNPNPXusJjAjAssssssZkMcsMssgyNlxVEuEuEuEuEuEuLpEuEuxVPsijdxQvsleMdxdxdxgGgGUHUHgGgGgGWCknKZpkXqgDoxfHlvTcgDgDgDgDpkTgvDWCgGgGgGgG +BcSspidRnWrOmwJxjAjAgGgGgGNPNPQJNPNPGwQJgGgGssdpIAgQEbYnsscePstgEOEObAAOjaeNEObAEOtgPsbCdxBBijijijLSdxgGEBUHUHUHgGgGWCtPqQpkvwArZMmoMazXmooiMTWrpkUTreWCWCWCWCgG +BcSskRGBkvqqmwBcBcgGgGgGgGNPGwrbXuShNPNPgGgGssFMCXKLWBoussgyyzxVDEDEDEkCTEDEDEDEDExVPsKvdxTHijCrijHFdxgGgGgGUHUHgGgGWCfctkpkmxgDgDgDNblvYlmomogDpkIDxZWCSbSbWCWC +gGBckRmwSsnWmwnWadBcgGAUgGgGNPgGGwgGNPgGgGgGRRODntcNODgQssjQbWJjbTVWVWIFTChRVWVWrfJjbWOHdxgyMdNKCroEdxgGgGgGgGWCWCWCWCLTTDpkgDgtYoMplvzXgDaRIrgDpkolcYWCSbeueuWC +gGjAgGUFSsrOGBnWBcBcjAgGgGgGNPgGGwgGNPgGIXIXRRODliMIUBgQHmgyCzJjJjJjJjJjjXJjJjJjJjJjhMKvhUgyCQzWijijdxjAjAjAjAWCiYjOWCfpaopkvwgDgDgDTZMimogDgDWrpkTgvDWCSbeueuWC +gGjAgGBcIznxbHCpKGGiGijAjAcaLNvzDjvzLNvzTLFQvtYAcFRZmTxHUIuZabTlKCKCZzKCZryGLlRwyGRHSGkNsmFvXVXVeTdKbZLjLjLjLjktYwlRooGNPZpklvbFDZTKTKqVXdziOplvpkololTriYiYeuWC +gGjAgGgGUhnWGBnWxElwjAgGgGgGligGGwgGGwgGIXIXRRSnliMIODbqHmgyCzbJGFGFGFGFXIGFGFGFGFGFhMKvhUijMMslijPsdxjAjAjAjAWCsqiYWCarqQpkXBXBXBXBXdFlpkpkpkpkpkTgaTWCiYEXEXWC +gGIijAjABcBcmwadBclwgGgGAUgGligGNPgGGwgGgGgGRRSnaIWaODbqssequSGFtjFwBFfxHRwZBFetoXGFbWqKdxijauNKijJydxgGgGgGgGWCWCWCWCURUdpklvlvyKlvXdFlpkQBTuoepkNxLhWCiYEXEXWC +gGjAgGgGgGVpUFgGjAgGgGgGgGYtrCQJNPNPGwQJgGgGsspJCRODqGngssIvqFYrBFBFLwoXHBoXBFamBFYrPsoGdxzMijnOijLGdxgGgGgGgGgGgGgGWCEtqQpklvlvLklvQpFlpklvlvqwpkTgyLWCiYuTgeWC +gGjAgGgGgGjAgGgGjAjAXOgGgGQJTnguRXQJdssegGgGssgXCcODYnmQsspcqFCoCtMqCtCtAVKtCtBFBFCoPsijdxijijijijvAdxgGgGgGgGgGgGgGWCpnqQpkMNIWTKxgPunsdCRndasypkUTeCWCdiJTuKWC +gGjAgGgGgGjAjAjAIiIiDGjAjAQJUsQJNPNPGwNPjAjAsssssswTsMxrssceNlYrBFBFdABFfYCtCtBFBFYrPsKvdxTPnUuFdxdxdxgGgGgGgGgGgGgGWCfpNspkefIElvmplvBepkzdlvEzpkTgTgWCkjVCWCWC +gGjAgGgGgGjAgGgGgGgGgGgGgGjATnjAGwjANPjAgGgGgGgGsssssssssswFPsGFojZSrgyTNJrgyTPyRuGFPsKvdxdxdxdxdxgGgGgGgGgGgGWCWCWCWCpUHepkBmBmLkTcLkMspkhfrwkhpkMKhhWCWCWCWCgG +BcgPmwgGjAjAgGgGgGgGgGgGgGNPliNPNPQJGwNPgGgGgGgGsscrEvtdfUYeBEGFQLYrYrYrYrYrYrYrQLGFDwrRgszMijIXgGgGgGgGgGgGgGpoolVcWCknJkpkpkpkpkpkayUJpkpkpkpkpktqNSWCczgHWCgG +jAnWBcOvHnnWgGgGgGgGgGgGgGNPTnNPNPQJGwsegGgGgGgGssrFHKTnihPCytBNyMiVhghgZWhghgYXGghgskijBYijJtDgQPQPQPcKQPQPQPtDbcMKunzkfCJFhWbXIkLDEZPTFOrprahWJFegolTrczFZWCgG +BcOAnWBcAmrOgGgGIijAjAjAjArbrCQJNPNPdsShjAjAjAjAssxUGLZffUjimPoZOHNHnOijNlijijNHOHijijijgsijzRIXgGgGgGgGgGgGgGpoMKMKWCeYtpgZBGrNbwBGuMNsUTjVlzvDnrololWCcziYWCgG +BcfKmwDulwBcgGgGgGgGgGgGgGgGjAgGBCgGjAgGgGgGgGgGssssssssssdxtodxdxdxIXIXAKIXIXdxdxdxyJdxdxdxdxdxgGgGgGgGgGgGgGWCWCWCWCWCWCwowowowowoWAuhwowowowowoWCWCWCWCWCWCgG +YgbfmwmwgGBcgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGdxvCiPdxdxruijijPsCrijijdxdxnwBXdxgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGwocCWPPoLnpqnvLqPoOIMxwogGgGgGgGgGgGgG +OAnWbyGBgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGdxnwjDdxhaijRoijWYijRoijcGdxnwWJdxgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGwoYNxOLqLqLqnvLqNZwjmfwogGgGgGgGgGgGgG +pCpihtGBgGjAgGgGgGgGjAgGgGgGgGgGgGjAgGgGgGgGgGgGgGgGgGgGdxvJSudxubijijijPsijijijMFdxedWfdxgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGwowowoNfLqLqnvLqLqwowowogGgGgGgGgGgGgG +OylwvrGBjAgGjAjAjAjAgGgGgGgGjAQMjAgGgGjAjAjAjAjAjAjAjAjAdxdxSydxdWijRoijWYCrRoijbNdxXadxdxjAjAjAjAjAjAjAjAjAjAjAjAjAjAjAjAwoSWxOLqLqRUckLqLqwjuwwogGgGgGgGgGgGgG +XzTRjPGBgGgGgGgGgGgGgGgGgGjAgGEVEVgGgGgGgGgGgGgGgGgGgGgGgGdxLcdxQeijijijPsijijijMFdxnwdxgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGwoQEWPLqAdFsFsAdLqOImuwogGgGgGgGgGgGgG +vsSsCnGBgGjAgGgGgGgGgGgGjAgGZKEVEVEVgGjAgGgGgGgGgGgGgGgGgGdxdxdxijijRoijWYijRozRijdxdxdxgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGwowowowowoXBXBwowowowowogGgGgGgGgGgGgG +gGnWmwmwgGgGgGgGgGgGgGgGgGgGEVdZdZEVgGgGgGgGgGgGgGgGgGgGgGgGgGdxdxNHijijsCijijNHdxdxgGgGgGgGgGgGgGgGgGgGEVEVgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGAUgGgGgG +jAmwmwgGgGgGgGgGgGgGgGgGgGgGEVdZdZEVgGgGgGgGgGgGgGgGgGgGgGgGgGgGdxdxIXdxIXdxIXdxdxgGgGgGgGgGgGgGgGgGgGEVEVEVEVEVgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgG +gGgGgGgGgGgGgGgGgGgGgGgGgGgGgGEVEVgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGEVEVdZdZEVgGgGAUgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgG +gGgGgGgGgGgGAUgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGAUgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGEVEVdZdZEVgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGAUgGgGgGgGgGgGgG +gGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGEVEVEVEVgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgG +gGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGEVEVEVEVgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgG +gGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgGgG +"} diff --git a/maps/overmap/space_pois/onehalf_32x20.dmm b/modular_chomp/maps/overmap/space_pois/onehalf_32x20.dmm similarity index 99% rename from maps/overmap/space_pois/onehalf_32x20.dmm rename to modular_chomp/maps/overmap/space_pois/onehalf_32x20.dmm index c3239c0bfa..f02ce6bee8 100644 --- a/maps/overmap/space_pois/onehalf_32x20.dmm +++ b/modular_chomp/maps/overmap/space_pois/onehalf_32x20.dmm @@ -1,165 +1,165 @@ -"aa" = (/turf/template_noop,/area/template_noop) -"ab" = (/obj/structure/lattice,/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"; tag = ""},/turf/template_noop,/area/submap/onehalf) -"ac" = (/obj/structure/lattice,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; tag = ""},/turf/template_noop,/area/submap/onehalf) -"af" = (/obj/structure/lattice,/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"; tag = ""},/turf/template_noop,/area/submap/onehalf) -"al" = (/obj/machinery/sleeper{dir = 4},/turf/simulated/floor/tiled/asteroid_steel{icon_state = "white"; tag = "icon-white"},/area/submap/onehalf) -"am" = (/turf/simulated/floor/tiled/asteroid_steel{icon_state = "white"; tag = "icon-white"},/area/submap/onehalf) -"an" = (/obj/structure/table/standard,/obj/item/weapon/storage/firstaid/toxin{pixel_x = 3; pixel_y = 5},/obj/item/weapon/storage/firstaid/fire,/turf/simulated/floor/tiled/asteroid_steel{icon_state = "white"; tag = "icon-white"},/area/submap/onehalf) -"ao" = (/obj/structure/bed,/obj/item/weapon/bedsheet/brown,/turf/simulated/floor/tiled/old_tile/purple,/area/submap/onehalf) -"ap" = (/turf/simulated/floor/tiled/old_tile/purple,/area/submap/onehalf) -"aq" = (/obj/machinery/door/airlock/external,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plating,/area/submap/onehalf) -"av" = (/obj/machinery/door/blast/regular,/turf/simulated/floor/tiled/asteroid_steel/airless,/area/submap/onehalf) -"ax" = (/obj/structure/lattice,/turf/template_noop,/area/submap/onehalf) -"ay" = (/obj/structure/table/standard,/turf/simulated/floor/tiled/asteroid_steel/airless,/area/submap/onehalf) -"az" = (/obj/machinery/washing_machine,/turf/simulated/floor/tiled/asteroid_steel/airless,/area/submap/onehalf) -"aA" = (/obj/structure/bed/roller,/turf/simulated/floor/tiled/asteroid_steel{icon_state = "white"; tag = "icon-white"},/area/submap/onehalf) -"aB" = (/obj/machinery/light{dir = 4},/obj/structure/table/standard,/obj/item/weapon/storage/firstaid{pixel_x = 4; pixel_y = 3},/obj/item/weapon/storage/firstaid/combat,/turf/simulated/floor/tiled/asteroid_steel{icon_state = "white"; tag = "icon-white"},/area/submap/onehalf) -"aC" = (/obj/machinery/light{dir = 8},/turf/simulated/floor/tiled/old_tile/purple,/area/submap/onehalf) -"aD" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/light/small{dir = 8},/turf/simulated/floor/plating,/area/submap/onehalf) -"aE" = (/obj/structure/disposalpipe/trunk,/turf/simulated/floor/tiled/asteroid_steel/airless,/area/submap/onehalf) -"aF" = (/obj/structure/disposalpipe/trunk,/obj/item/weapon/ore/diamond,/obj/item/weapon/ore/diamond,/obj/item/weapon/ore/diamond,/obj/item/weapon/ore/diamond,/obj/item/weapon/ore/diamond,/obj/item/weapon/ore/diamond,/turf/simulated/floor/tiled/asteroid_steel/airless,/area/submap/onehalf) -"aJ" = (/obj/machinery/iv_drip,/obj/effect/floor_decal/rust,/turf/simulated/floor/tiled/asteroid_steel{icon_state = "white"; tag = "icon-white"},/area/submap/onehalf) -"aK" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"; tag = ""},/turf/simulated/floor/tiled/asteroid_steel{icon_state = "white"; tag = "icon-white"},/area/submap/onehalf) -"aL" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable,/obj/effect/floor_decal/rust,/turf/simulated/floor/tiled/asteroid_steel/airless,/area/submap/onehalf) -"aM" = (/obj/structure/disposalpipe/segment,/obj/structure/disposalpipe/segment,/obj/machinery/door/blast/regular,/turf/simulated/floor/plating,/area/submap/onehalf) -"aQ" = (/turf/simulated/wall,/area/submap/onehalf) -"aR" = (/obj/structure/disposalpipe/segment,/obj/machinery/door/blast/regular,/turf/simulated/floor/plating,/area/submap/onehalf) -"aS" = (/obj/structure/disposalpipe/trunk,/obj/structure/disposaloutlet{dir = 1},/turf/simulated/floor/tiled/asteroid_steel/airless,/area/submap/onehalf) -"aT" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/asteroid_steel/airless,/area/submap/onehalf) -"aU" = (/obj/item/stack/material/steel,/turf/simulated/floor/plating,/area/submap/onehalf) -"aV" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/airlock/maintenance/medical{name = "Medical"},/turf/simulated/floor/tiled/asteroid_steel{icon_state = "white"; tag = "icon-white"},/area/submap/onehalf) -"aW" = (/obj/machinery/door/airlock,/turf/simulated/floor/plating,/area/submap/onehalf) -"aX" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/effect/floor_decal/industrial/warning{dir = 9},/turf/simulated/floor/tiled/asteroid_steel/airless,/area/submap/onehalf) -"aY" = (/obj/structure/cable{d2 = 8; icon_state = "0-8"},/obj/structure/closet/crate/medical,/obj/item/clothing/accessory/stethoscope,/obj/item/device/healthanalyzer/improved,/obj/item/weapon/reagent_containers/blood/OPlus,/obj/item/weapon/reagent_containers/blood/OPlus,/obj/item/weapon/reagent_containers/blood/OPlus,/turf/simulated/floor/tiled/asteroid_steel{icon_state = "white"; tag = "icon-white"},/area/submap/onehalf) -"aZ" = (/obj/structure/cable{d2 = 8; icon_state = "0-8"},/obj/effect/floor_decal/industrial/warning{dir = 1},/turf/simulated/floor/tiled/asteroid_steel/airless,/area/submap/onehalf) -"ba" = (/obj/structure/disposalpipe/segment,/obj/effect/floor_decal/industrial/warning{dir = 1},/turf/simulated/floor/tiled/asteroid_steel/airless,/area/submap/onehalf) -"bb" = (/obj/effect/floor_decal/industrial/warning{dir = 1},/turf/simulated/floor/tiled/asteroid_steel/airless,/area/submap/onehalf) -"bc" = (/obj/structure/grille,/obj/effect/wingrille_spawn/reinforced,/obj/structure/disposalpipe/segment,/turf/simulated/floor/plating,/area/submap/onehalf) -"bd" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; tag = ""},/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/effect/floor_decal/rust,/turf/simulated/floor/tiled/asteroid_steel/airless,/area/submap/onehalf) -"be" = (/obj/structure/disposalpipe/broken{dir = 4; tag = "icon-pipe-b (EAST)"},/obj/item/stack/cable_coil/cut,/turf/simulated/floor/tiled/asteroid_steel/airless,/area/submap/onehalf) -"bg" = (/obj/structure/disposalpipe/junction{dir = 4; tag = "icon-pipe-j1 (EAST)"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; tag = ""},/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/tiled/asteroid_steel/airless,/area/submap/onehalf) -"bh" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; tag = ""},/turf/simulated/floor/tiled/asteroid_steel/airless,/area/submap/onehalf) -"bi" = (/obj/structure/disposalpipe/broken{dir = 4; tag = "icon-pipe-b (EAST)"},/turf/simulated/floor/plating,/area/submap/onehalf) -"bj" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; tag = ""},/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/tiled/asteroid_steel/airless,/area/submap/onehalf) -"bk" = (/obj/structure/disposalpipe/junction{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; tag = ""},/turf/simulated/floor/tiled/asteroid_steel/airless,/area/submap/onehalf) -"bl" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; tag = ""},/obj/machinery/door/airlock/glass{name = "Central Access"},/turf/simulated/floor/tiled/asteroid_steel/airless,/area/submap/onehalf) -"bm" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"; tag = ""},/turf/simulated/floor/tiled/asteroid_steel/airless,/area/submap/onehalf) -"bo" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/asteroid_steel/airless,/area/submap/onehalf) -"bp" = (/obj/machinery/door/airlock/maintenance_hatch{name = "maintenance hatch"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating,/area/submap/onehalf) -"bq" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/light/small{dir = 1},/turf/simulated/floor/tiled/asteroid_steel/airless,/area/submap/onehalf) -"br" = (/obj/structure/disposalpipe/junction{dir = 1; icon_state = "pipe-y"},/turf/simulated/floor/tiled/asteroid_steel/airless,/area/submap/onehalf) -"bs" = (/obj/structure/disposalpipe/trunk{dir = 8},/obj/machinery/disposal,/turf/simulated/floor/plating,/area/submap/onehalf) -"bu" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating,/area/submap/onehalf) -"bw" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/asteroid_steel/airless,/area/submap/onehalf) -"bx" = (/obj/structure/disposalpipe/segment,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/asteroid_steel/airless,/area/submap/onehalf) -"by" = (/obj/structure/disposalpipe/segment,/obj/effect/floor_decal/industrial/warning{dir = 5},/turf/simulated/floor/tiled/asteroid_steel/airless,/area/submap/onehalf) -"bA" = (/obj/structure/disposalpipe/segment,/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/asteroid_steel/airless,/area/submap/onehalf) -"bB" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/door/airlock/glass{name = "Central Access"},/turf/simulated/floor/tiled/asteroid_steel/airless,/area/submap/onehalf) -"bC" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/asteroid_steel/airless,/area/submap/onehalf) -"bD" = (/obj/structure/disposalpipe/junction{dir = 8},/turf/simulated/floor/tiled/asteroid_steel/airless,/area/submap/onehalf) -"bE" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/light,/turf/simulated/floor/tiled/asteroid_steel/airless,/area/submap/onehalf) -"bF" = (/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor/tiled/asteroid_steel/airless,/area/submap/onehalf) -"bH" = (/obj/machinery/portable_atmospherics/canister/oxygen,/turf/simulated/floor/tiled/asteroid_steel/airless,/area/submap/onehalf) -"bI" = (/obj/structure/bed/chair{dir = 4},/turf/simulated/floor/tiled/asteroid_steel/airless,/area/submap/onehalf) -"bJ" = (/obj/structure/girder,/turf/simulated/floor/tiled/asteroid_steel/airless,/area/submap/onehalf) -"bK" = (/obj/machinery/vending/coffee{name = "\improper Solar's Best Hot Drinks"},/turf/simulated/floor/tiled/asteroid_steel/airless,/area/submap/onehalf) -"bL" = (/obj/machinery/vending/snack,/turf/simulated/floor/tiled/asteroid_steel/airless,/area/submap/onehalf) -"bQ" = (/obj/structure/cable{d2 = 4; icon_state = "0-4"},/turf/simulated/floor/tiled/asteroid_steel/airless,/area/submap/onehalf) -"bU" = (/obj/item/stack/material/steel,/turf/template_noop,/area/submap/onehalf) -"bV" = (/obj/structure/disposalpipe/segment,/obj/item/stack/rods,/turf/simulated/floor/plating,/area/submap/onehalf) -"bX" = (/turf/simulated/wall/r_wall,/area/submap/onehalf) -"bZ" = (/obj/structure/disposalpipe/junction{dir = 1; tag = "icon-pipe-j1 (NORTH)"},/obj/item/weapon/material/shard,/turf/simulated/floor/plating,/area/submap/onehalf) -"ca" = (/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/asteroid_steel/airless,/area/submap/onehalf) -"cb" = (/obj/structure/grille,/turf/simulated/floor/tiled/asteroid_steel/airless,/area/submap/onehalf) -"cd" = (/obj/structure/table/standard,/obj/item/device/flashlight/lamp,/turf/simulated/floor/tiled/asteroid_steel/airless,/area/submap/onehalf) -"ce" = (/obj/structure/table/standard,/obj/item/weapon/paper,/obj/item/weapon/pen,/turf/simulated/floor/tiled/asteroid_steel/airless,/area/submap/onehalf) -"cf" = (/obj/structure/closet/emcloset,/turf/simulated/floor/tiled/asteroid_steel/airless,/area/submap/onehalf) -"cg" = (/obj/machinery/light{dir = 1; on = 1},/obj/machinery/computer{desc = "A computer long since rendered non-functional due to lack of maintenance. Spitting out error messages."; name = "Broken Computer"},/turf/simulated/floor/tiled/asteroid_steel/airless,/area/submap/onehalf) -"ch" = (/obj/machinery/computer{desc = "A computer long since rendered non-functional due to lack of maintenance. Spitting out error messages."; name = "Broken Computer"},/turf/simulated/floor/tiled/asteroid_steel/airless,/area/submap/onehalf) -"ci" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/table/standard,/obj/item/weapon/spacecash/c1000,/obj/item/weapon/spacecash/c1000{pixel_y = 11},/turf/simulated/floor/tiled/asteroid_steel/airless,/area/submap/onehalf) -"cj" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plating,/area/submap/onehalf) -"ck" = (/obj/structure/girder/reinforced,/turf/simulated/floor/tiled/asteroid_steel/airless,/area/submap/onehalf) -"cl" = (/turf/simulated/floor/plating,/area/submap/onehalf) -"cm" = (/obj/structure/lattice,/obj/structure/disposalpipe/segment{dir = 4},/obj/item/stack/rods,/turf/template_noop,/area/submap/onehalf) -"cn" = (/obj/structure/lattice,/obj/structure/disposalpipe/segment{dir = 4},/obj/item/weapon/material/shard{icon_state = "small"; tag = "icon-small"},/turf/template_noop,/area/submap/onehalf) -"co" = (/obj/structure/grille,/obj/effect/wingrille_spawn/reinforced,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating,/area/submap/onehalf) -"cp" = (/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/obj/structure/table/standard,/obj/item/weapon/paper_bin,/turf/simulated/floor/tiled/asteroid_steel/airless,/area/submap/onehalf) -"cq" = (/obj/structure/bed/chair{dir = 8; icon_state = "chair"; tag = "icon-chair (WEST)"},/obj/effect/floor_decal/rust,/obj/effect/floor_decal/rust,/turf/simulated/floor/tiled/asteroid_steel/airless,/area/submap/onehalf) -"cs" = (/obj/structure/bed/chair{dir = 1; icon_state = "chair"; tag = "icon-chair (NORTH)"},/obj/effect/floor_decal/rust,/turf/simulated/floor/tiled/asteroid_steel/airless,/area/submap/onehalf) -"ct" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"; tag = ""},/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/table/standard,/obj/item/weapon/flame/lighter/zippo/red,/turf/simulated/floor/tiled/asteroid_steel/airless,/area/submap/onehalf) -"cu" = (/obj/structure/grille,/obj/effect/wingrille_spawn/reinforced,/obj/structure/cable{d2 = 4; icon_state = "0-4"},/obj/structure/cable{d2 = 2; icon_state = "0-2"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; tag = ""},/turf/simulated/floor/plating,/area/submap/onehalf) -"cv" = (/obj/item/stack/rods,/turf/template_noop,/area/submap/onehalf) -"cx" = (/obj/structure/lattice,/obj/item/stack/material/plasteel,/turf/template_noop,/area/submap/onehalf) -"cy" = (/obj/structure/lattice,/obj/item/weapon/material/shard{icon_state = "medium"; tag = "icon-medium"},/turf/template_noop,/area/submap/onehalf) -"cz" = (/obj/structure/grille/broken,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plating,/area/submap/onehalf) -"cA" = (/obj/structure/disposalpipe/trunk{dir = 1},/obj/machinery/disposal,/turf/simulated/floor/tiled/asteroid_steel/airless,/area/submap/onehalf) -"cC" = (/obj/structure/cable,/obj/machinery/power/solar_control{dir = 8},/turf/simulated/floor/tiled/asteroid_steel/airless,/area/submap/onehalf) -"cD" = (/obj/structure/grille,/obj/effect/wingrille_spawn/reinforced,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plating,/area/submap/onehalf) -"cE" = (/obj/item/stack/tile/wood,/turf/template_noop,/area/submap/onehalf) -"cF" = (/turf/template_noop,/area/submap/onehalf) -"cG" = (/obj/structure/lattice,/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/template_noop,/area/submap/onehalf) -"cH" = (/obj/structure/lattice,/obj/structure/disposalpipe/broken{dir = 1; tag = "icon-pipe-b (NORTH)"},/obj/structure/disposalpipe/broken{dir = 8; tag = "icon-pipe-b (WEST)"},/turf/template_noop,/area/submap/onehalf) -"cJ" = (/obj/machinery/light/small,/turf/simulated/floor/tiled/asteroid_steel/airless,/area/submap/onehalf) -"cK" = (/obj/machinery/door/airlock/maintenance/command{name = "Bridge"},/turf/simulated/floor/tiled/asteroid_steel/airless,/area/submap/onehalf) -"cL" = (/obj/item/weapon/tool/crowbar,/turf/simulated/floor/plating,/area/submap/onehalf) -"cM" = (/obj/structure/safe/floor,/obj/item/weapon/tank/oxygen/red,/obj/item/clothing/mask/gas/syndicate,/obj/item/weapon/reagent_containers/food/drinks/bottle/rum,/obj/item/weapon/reagent_containers/food/drinks/bottle/rum,/turf/simulated/floor/plating,/area/submap/onehalf) -"cN" = (/turf/simulated/floor/tiled/asteroid_steel/airless,/area/submap/onehalf) -"cO" = (/obj/structure/lattice,/obj/item/stack/cable_coil/cut,/turf/template_noop,/area/submap/onehalf) -"cQ" = (/obj/machinery/light{dir = 8},/obj/machinery/vending/sovietsoda,/turf/simulated/floor/tiled/asteroid_steel/airless,/area/submap/onehalf) -"cR" = (/obj/item/stack/material/plasteel,/turf/template_noop,/area/submap/onehalf) -"cS" = (/obj/structure/lattice,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/template_noop,/area/submap/onehalf) -"cU" = (/obj/structure/grille,/obj/effect/wingrille_spawn/reinforced,/turf/simulated/floor/plating,/area/submap/onehalf) -"cV" = (/obj/structure/table/standard,/obj/machinery/recharger,/turf/simulated/floor/tiled/asteroid_steel/airless,/area/submap/onehalf) -"cW" = (/obj/structure/bed/chair,/turf/simulated/floor/tiled/asteroid_steel/airless,/area/submap/onehalf) -"cX" = (/obj/structure/table/standard,/obj/item/weapon/storage/firstaid/toxin,/turf/simulated/floor/tiled/asteroid_steel/airless,/area/submap/onehalf) -"cY" = (/obj/structure/grille,/obj/effect/wingrille_spawn/reinforced,/obj/structure/cable{d2 = 4; icon_state = "0-4"},/obj/structure/cable,/turf/simulated/floor/plating,/area/submap/onehalf) -"cZ" = (/obj/structure/lattice,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/template_noop,/area/submap/onehalf) -"db" = (/obj/structure/table/standard,/obj/item/device/flashlight,/turf/simulated/floor/tiled/asteroid_steel/airless,/area/submap/onehalf) -"dc" = (/obj/structure/table/standard,/obj/item/weapon/coin/phoron,/turf/simulated/floor/tiled/asteroid_steel/airless,/area/submap/onehalf) -"dd" = (/obj/structure/closet/firecloset/full,/turf/simulated/floor/tiled/asteroid_steel/airless,/area/submap/onehalf) -"de" = (/obj/machinery/light,/obj/structure/table/standard,/obj/item/weapon/storage/firstaid,/turf/simulated/floor/tiled/asteroid_steel/airless,/area/submap/onehalf) -"df" = (/obj/structure/lattice,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/template_noop,/area/submap/onehalf) -"dg" = (/obj/structure/girder/reinforced,/obj/item/stack/material/plasteel,/turf/simulated/floor/tiled/asteroid_steel/airless,/area/submap/onehalf) -"dj" = (/obj/structure/grille,/obj/item/weapon/material/shard,/turf/simulated/floor/plating,/area/submap/onehalf) -"dk" = (/obj/structure/grille,/obj/effect/wingrille_spawn/reinforced,/obj/structure/cable{d2 = 2; icon_state = "0-2"},/obj/structure/cable{d2 = 4; icon_state = "0-4"},/turf/simulated/floor/plating,/area/submap/onehalf) -"dl" = (/obj/structure/grille,/obj/effect/wingrille_spawn/reinforced,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; tag = ""},/turf/simulated/floor/plating,/area/submap/onehalf) -"dm" = (/obj/structure/grille,/obj/effect/wingrille_spawn/reinforced,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; tag = ""},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; tag = ""},/turf/simulated/floor/plating,/area/submap/onehalf) -"dn" = (/obj/structure/grille,/obj/effect/wingrille_spawn/reinforced,/obj/structure/cable{d2 = 2; icon_state = "0-2"},/obj/structure/cable{d2 = 8; icon_state = "0-8"},/turf/simulated/floor/plating,/area/submap/onehalf) -"do" = (/obj/structure/lattice,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; tag = ""},/obj/item/weapon/material/shard{icon_state = "medium"; tag = "icon-medium"},/turf/template_noop,/area/submap/onehalf) -"dp" = (/obj/structure/lattice,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; tag = ""},/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/item/stack/rods,/turf/template_noop,/area/submap/onehalf) -"dq" = (/obj/structure/lattice,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; tag = ""},/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"; tag = ""},/turf/template_noop,/area/submap/onehalf) -"fE" = (/obj/effect/floor_decal/industrial/warning{dir = 1},/obj/effect/floor_decal/rust,/turf/simulated/floor/tiled/asteroid_steel/airless,/area/submap/onehalf) -"nc" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/floor_decal/rust,/turf/simulated/floor/tiled/asteroid_steel/airless,/area/submap/onehalf) -"oC" = (/obj/effect/floor_decal/rust,/turf/simulated/floor/tiled/asteroid_steel{icon_state = "white"; tag = "icon-white"},/area/submap/onehalf) -"pK" = (/obj/machinery/computer{desc = "A computer long since rendered non-functional due to lack of maintenance. Spitting out error messages."; dir = 8; name = "Broken Computer"},/turf/simulated/floor/tiled/asteroid_steel/airless,/area/submap/onehalf) -"ud" = (/obj/machinery/computer{desc = "A computer long since rendered non-functional due to lack of maintenance. Spitting out error messages."; dir = 1; name = "Broken Computer"},/turf/simulated/floor/tiled/asteroid_steel/airless,/area/submap/onehalf) -"vw" = (/obj/structure/disposalpipe/junction{dir = 8},/obj/effect/floor_decal/rust,/turf/simulated/floor/tiled/asteroid_steel/airless,/area/submap/onehalf) -"xF" = (/obj/effect/floor_decal/rust,/turf/simulated/floor/tiled/asteroid_steel/airless,/area/submap/onehalf) -"Dl" = (/obj/effect/floor_decal/industrial/warning,/turf/simulated/floor/plating,/area/submap/onehalf) -"DD" = (/obj/structure/bed/chair{dir = 8; icon_state = "chair"; tag = "icon-chair (WEST)"},/obj/effect/floor_decal/rust,/turf/simulated/floor/tiled/asteroid_steel/airless,/area/submap/onehalf) -"MS" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/disposalpipe/segment,/obj/effect/floor_decal/rust,/turf/simulated/floor/tiled/asteroid_steel/airless,/area/submap/onehalf) -"RL" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/light,/obj/effect/floor_decal/rust,/turf/simulated/floor/tiled/asteroid_steel/airless,/area/submap/onehalf) -"So" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; tag = ""},/obj/effect/floor_decal/rust,/turf/simulated/floor/tiled/asteroid_steel/airless,/area/submap/onehalf) - -(1,1,1) = {" -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaabacacacacacacacacaccGaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaacOacafaQaQaQaQaQaQcUaQaQcSaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaacNaQaQaQaQalamanaQaoapaoaQaqaQavaQavaQavaQavaQaaDlDlDlaaaa -aaaaaxaxaxayazaQaAoCaBaQaCapaoaQaDaQaEaQaFaQaEaQaEaQaxaQcNaQaaaa -aaaaaacvcNaxcNaQaJaKaYaQaoapaoaQaqaQaMaQaRaQaRaQaRaQaaaQaSaQaaaa -aaaaaxcNaxaTcNaQaQaVaQaQaQaWaQaQaXaZbafEbabbbabbbyaQaQaQbcaQaQaa -aaaaaxaUbebdbhbhbhbgSobhbjbhbkblbmbwMSncMSbwbobwMSbwbpbqbrbscUaa -aaaaaabibubwbwbwbwbxbwbwaLbwbAbBbCbwvwRLvwbwbDbEbFcNaQbHxFbIcUaa -aaaaaabJcNaQcfbKbLcAdgckbXcNcabXbXbXbXbXbXbXbXbXbXbXaQaQcUaQaQaa -aaaaaaaabUclbJaQckbXcNaxbXclbVcbaacUcdcecfcgchbQcibXaxaaaaaaaaaa -aaaaaaaaaaaaaaaackaaaabUaxaxbZcmcncocpDDxFcscNxFctcucGaaaaaaaaaa -aaaaaaaaaaaaaacvcNcxaaaacNcycabXbXbXcAxFxFxFcNcNcCcDcSaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaxcEaacFcGcHcKcJcKcNcNcLcMcNxFpKcDcSaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaacvaxcNcOclbXbXbXcQcNcNcNcNcNpKcDcSaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaacRcEaxcScNcUaxcUcVcqcNcWxFcNcXcYcZaaaaaaaaaa -aaaaaaaaaaaaaaaaaacvaaaabXcjcNcUaacUdbdcddududcNdebXdfaaaaaaaaaa -aaaaaaaaaaaaaaaaaadgaxclckczdjbXbXbXbXdkdldmdldnbXbXcSaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaacxdodpacacacacacdqacacacdqacacafaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -"} +"aa" = (/turf/template_noop,/area/template_noop) +"ab" = (/obj/structure/lattice,/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"; tag = ""},/turf/template_noop,/area/submap/onehalf) +"ac" = (/obj/structure/lattice,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; tag = ""},/turf/template_noop,/area/submap/onehalf) +"af" = (/obj/structure/lattice,/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"; tag = ""},/turf/template_noop,/area/submap/onehalf) +"al" = (/obj/machinery/sleeper{dir = 4},/turf/simulated/floor/tiled/asteroid_steel{icon_state = "white"; tag = "icon-white"},/area/submap/onehalf) +"am" = (/turf/simulated/floor/tiled/asteroid_steel{icon_state = "white"; tag = "icon-white"},/area/submap/onehalf) +"an" = (/obj/structure/table/standard,/obj/item/weapon/storage/firstaid/toxin{pixel_x = 3; pixel_y = 5},/obj/item/weapon/storage/firstaid/fire,/turf/simulated/floor/tiled/asteroid_steel{icon_state = "white"; tag = "icon-white"},/area/submap/onehalf) +"ao" = (/obj/structure/bed,/obj/item/weapon/bedsheet/brown,/turf/simulated/floor/tiled/old_tile/purple,/area/submap/onehalf) +"ap" = (/turf/simulated/floor/tiled/old_tile/purple,/area/submap/onehalf) +"aq" = (/obj/machinery/door/airlock/external,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plating,/area/submap/onehalf) +"av" = (/obj/machinery/door/blast/regular,/turf/simulated/floor/tiled/asteroid_steel/airless,/area/submap/onehalf) +"ax" = (/obj/structure/lattice,/turf/template_noop,/area/submap/onehalf) +"ay" = (/obj/structure/table/standard,/turf/simulated/floor/tiled/asteroid_steel/airless,/area/submap/onehalf) +"az" = (/obj/machinery/washing_machine,/turf/simulated/floor/tiled/asteroid_steel/airless,/area/submap/onehalf) +"aA" = (/obj/structure/bed/roller,/turf/simulated/floor/tiled/asteroid_steel{icon_state = "white"; tag = "icon-white"},/area/submap/onehalf) +"aB" = (/obj/machinery/light{dir = 4},/obj/structure/table/standard,/obj/item/weapon/storage/firstaid{pixel_x = 4; pixel_y = 3},/obj/item/weapon/storage/firstaid/combat,/turf/simulated/floor/tiled/asteroid_steel{icon_state = "white"; tag = "icon-white"},/area/submap/onehalf) +"aC" = (/obj/machinery/light{dir = 8},/turf/simulated/floor/tiled/old_tile/purple,/area/submap/onehalf) +"aD" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/light/small{dir = 8},/turf/simulated/floor/plating,/area/submap/onehalf) +"aE" = (/obj/structure/disposalpipe/trunk,/turf/simulated/floor/tiled/asteroid_steel/airless,/area/submap/onehalf) +"aF" = (/obj/structure/disposalpipe/trunk,/obj/item/weapon/ore/diamond,/obj/item/weapon/ore/diamond,/obj/item/weapon/ore/diamond,/obj/item/weapon/ore/diamond,/obj/item/weapon/ore/diamond,/obj/item/weapon/ore/diamond,/turf/simulated/floor/tiled/asteroid_steel/airless,/area/submap/onehalf) +"aJ" = (/obj/machinery/iv_drip,/obj/effect/floor_decal/rust,/turf/simulated/floor/tiled/asteroid_steel{icon_state = "white"; tag = "icon-white"},/area/submap/onehalf) +"aK" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"; tag = ""},/turf/simulated/floor/tiled/asteroid_steel{icon_state = "white"; tag = "icon-white"},/area/submap/onehalf) +"aL" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable,/obj/effect/floor_decal/rust,/turf/simulated/floor/tiled/asteroid_steel/airless,/area/submap/onehalf) +"aM" = (/obj/structure/disposalpipe/segment,/obj/structure/disposalpipe/segment,/obj/machinery/door/blast/regular,/turf/simulated/floor/plating,/area/submap/onehalf) +"aQ" = (/turf/simulated/wall,/area/submap/onehalf) +"aR" = (/obj/structure/disposalpipe/segment,/obj/machinery/door/blast/regular,/turf/simulated/floor/plating,/area/submap/onehalf) +"aS" = (/obj/structure/disposalpipe/trunk,/obj/structure/disposaloutlet{dir = 1},/turf/simulated/floor/tiled/asteroid_steel/airless,/area/submap/onehalf) +"aT" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/asteroid_steel/airless,/area/submap/onehalf) +"aU" = (/obj/item/stack/material/steel,/turf/simulated/floor/plating,/area/submap/onehalf) +"aV" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/airlock/maintenance/medical{name = "Medical"},/turf/simulated/floor/tiled/asteroid_steel{icon_state = "white"; tag = "icon-white"},/area/submap/onehalf) +"aW" = (/obj/machinery/door/airlock,/turf/simulated/floor/plating,/area/submap/onehalf) +"aX" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/effect/floor_decal/industrial/warning{dir = 9},/turf/simulated/floor/tiled/asteroid_steel/airless,/area/submap/onehalf) +"aY" = (/obj/structure/cable{d2 = 8; icon_state = "0-8"},/obj/structure/closet/crate/medical,/obj/item/clothing/accessory/stethoscope,/obj/item/device/healthanalyzer/improved,/obj/item/weapon/reagent_containers/blood/OPlus,/obj/item/weapon/reagent_containers/blood/OPlus,/obj/item/weapon/reagent_containers/blood/OPlus,/turf/simulated/floor/tiled/asteroid_steel{icon_state = "white"; tag = "icon-white"},/area/submap/onehalf) +"aZ" = (/obj/structure/cable{d2 = 8; icon_state = "0-8"},/obj/effect/floor_decal/industrial/warning{dir = 1},/turf/simulated/floor/tiled/asteroid_steel/airless,/area/submap/onehalf) +"ba" = (/obj/structure/disposalpipe/segment,/obj/effect/floor_decal/industrial/warning{dir = 1},/turf/simulated/floor/tiled/asteroid_steel/airless,/area/submap/onehalf) +"bb" = (/obj/effect/floor_decal/industrial/warning{dir = 1},/turf/simulated/floor/tiled/asteroid_steel/airless,/area/submap/onehalf) +"bc" = (/obj/structure/grille,/obj/effect/wingrille_spawn/reinforced,/obj/structure/disposalpipe/segment,/turf/simulated/floor/plating,/area/submap/onehalf) +"bd" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; tag = ""},/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/effect/floor_decal/rust,/turf/simulated/floor/tiled/asteroid_steel/airless,/area/submap/onehalf) +"be" = (/obj/structure/disposalpipe/broken{dir = 4; tag = "icon-pipe-b (EAST)"},/obj/item/stack/cable_coil/cut,/turf/simulated/floor/tiled/asteroid_steel/airless,/area/submap/onehalf) +"bg" = (/obj/structure/disposalpipe/junction{dir = 4; tag = "icon-pipe-j1 (EAST)"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; tag = ""},/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/tiled/asteroid_steel/airless,/area/submap/onehalf) +"bh" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; tag = ""},/turf/simulated/floor/tiled/asteroid_steel/airless,/area/submap/onehalf) +"bi" = (/obj/structure/disposalpipe/broken{dir = 4; tag = "icon-pipe-b (EAST)"},/turf/simulated/floor/plating,/area/submap/onehalf) +"bj" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; tag = ""},/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/tiled/asteroid_steel/airless,/area/submap/onehalf) +"bk" = (/obj/structure/disposalpipe/junction{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; tag = ""},/turf/simulated/floor/tiled/asteroid_steel/airless,/area/submap/onehalf) +"bl" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; tag = ""},/obj/machinery/door/airlock/glass{name = "Central Access"},/turf/simulated/floor/tiled/asteroid_steel/airless,/area/submap/onehalf) +"bm" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"; tag = ""},/turf/simulated/floor/tiled/asteroid_steel/airless,/area/submap/onehalf) +"bo" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/asteroid_steel/airless,/area/submap/onehalf) +"bp" = (/obj/machinery/door/airlock/maintenance_hatch{name = "maintenance hatch"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating,/area/submap/onehalf) +"bq" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/light/small{dir = 1},/turf/simulated/floor/tiled/asteroid_steel/airless,/area/submap/onehalf) +"br" = (/obj/structure/disposalpipe/junction{dir = 1; icon_state = "pipe-y"},/turf/simulated/floor/tiled/asteroid_steel/airless,/area/submap/onehalf) +"bs" = (/obj/structure/disposalpipe/trunk{dir = 8},/obj/machinery/disposal,/turf/simulated/floor/plating,/area/submap/onehalf) +"bu" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating,/area/submap/onehalf) +"bw" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/asteroid_steel/airless,/area/submap/onehalf) +"bx" = (/obj/structure/disposalpipe/segment,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/asteroid_steel/airless,/area/submap/onehalf) +"by" = (/obj/structure/disposalpipe/segment,/obj/effect/floor_decal/industrial/warning{dir = 5},/turf/simulated/floor/tiled/asteroid_steel/airless,/area/submap/onehalf) +"bA" = (/obj/structure/disposalpipe/segment,/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/asteroid_steel/airless,/area/submap/onehalf) +"bB" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/door/airlock/glass{name = "Central Access"},/turf/simulated/floor/tiled/asteroid_steel/airless,/area/submap/onehalf) +"bC" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/asteroid_steel/airless,/area/submap/onehalf) +"bD" = (/obj/structure/disposalpipe/junction{dir = 8},/turf/simulated/floor/tiled/asteroid_steel/airless,/area/submap/onehalf) +"bE" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/light,/turf/simulated/floor/tiled/asteroid_steel/airless,/area/submap/onehalf) +"bF" = (/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor/tiled/asteroid_steel/airless,/area/submap/onehalf) +"bH" = (/obj/machinery/portable_atmospherics/canister/oxygen,/turf/simulated/floor/tiled/asteroid_steel/airless,/area/submap/onehalf) +"bI" = (/obj/structure/bed/chair{dir = 4},/turf/simulated/floor/tiled/asteroid_steel/airless,/area/submap/onehalf) +"bJ" = (/obj/structure/girder,/turf/simulated/floor/tiled/asteroid_steel/airless,/area/submap/onehalf) +"bK" = (/obj/machinery/vending/coffee{name = "\improper Solar's Best Hot Drinks"},/turf/simulated/floor/tiled/asteroid_steel/airless,/area/submap/onehalf) +"bL" = (/obj/machinery/vending/snack,/turf/simulated/floor/tiled/asteroid_steel/airless,/area/submap/onehalf) +"bQ" = (/obj/structure/cable{d2 = 4; icon_state = "0-4"},/turf/simulated/floor/tiled/asteroid_steel/airless,/area/submap/onehalf) +"bU" = (/obj/item/stack/material/steel,/turf/template_noop,/area/submap/onehalf) +"bV" = (/obj/structure/disposalpipe/segment,/obj/item/stack/rods,/turf/simulated/floor/plating,/area/submap/onehalf) +"bX" = (/turf/simulated/wall/r_wall,/area/submap/onehalf) +"bZ" = (/obj/structure/disposalpipe/junction{dir = 1; tag = "icon-pipe-j1 (NORTH)"},/obj/item/weapon/material/shard,/turf/simulated/floor/plating,/area/submap/onehalf) +"ca" = (/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/asteroid_steel/airless,/area/submap/onehalf) +"cb" = (/obj/structure/grille,/turf/simulated/floor/tiled/asteroid_steel/airless,/area/submap/onehalf) +"cd" = (/obj/structure/table/standard,/obj/item/device/flashlight/lamp,/turf/simulated/floor/tiled/asteroid_steel/airless,/area/submap/onehalf) +"ce" = (/obj/structure/table/standard,/obj/item/weapon/paper,/obj/item/weapon/pen,/turf/simulated/floor/tiled/asteroid_steel/airless,/area/submap/onehalf) +"cf" = (/obj/structure/closet/emcloset,/turf/simulated/floor/tiled/asteroid_steel/airless,/area/submap/onehalf) +"cg" = (/obj/machinery/light{dir = 1; on = 1},/obj/machinery/computer{desc = "A computer long since rendered non-functional due to lack of maintenance. Spitting out error messages."; name = "Broken Computer"},/turf/simulated/floor/tiled/asteroid_steel/airless,/area/submap/onehalf) +"ch" = (/obj/machinery/computer{desc = "A computer long since rendered non-functional due to lack of maintenance. Spitting out error messages."; name = "Broken Computer"},/turf/simulated/floor/tiled/asteroid_steel/airless,/area/submap/onehalf) +"ci" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/table/standard,/obj/item/weapon/spacecash/c1000,/obj/item/weapon/spacecash/c1000{pixel_y = 11},/turf/simulated/floor/tiled/asteroid_steel/airless,/area/submap/onehalf) +"cj" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plating,/area/submap/onehalf) +"ck" = (/obj/structure/girder/reinforced,/turf/simulated/floor/tiled/asteroid_steel/airless,/area/submap/onehalf) +"cl" = (/turf/simulated/floor/plating,/area/submap/onehalf) +"cm" = (/obj/structure/lattice,/obj/structure/disposalpipe/segment{dir = 4},/obj/item/stack/rods,/turf/template_noop,/area/submap/onehalf) +"cn" = (/obj/structure/lattice,/obj/structure/disposalpipe/segment{dir = 4},/obj/item/weapon/material/shard{icon_state = "small"; tag = "icon-small"},/turf/template_noop,/area/submap/onehalf) +"co" = (/obj/structure/grille,/obj/effect/wingrille_spawn/reinforced,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating,/area/submap/onehalf) +"cp" = (/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/obj/structure/table/standard,/obj/item/weapon/paper_bin,/turf/simulated/floor/tiled/asteroid_steel/airless,/area/submap/onehalf) +"cq" = (/obj/structure/bed/chair{dir = 8; icon_state = "chair"; tag = "icon-chair (WEST)"},/obj/effect/floor_decal/rust,/obj/effect/floor_decal/rust,/turf/simulated/floor/tiled/asteroid_steel/airless,/area/submap/onehalf) +"cs" = (/obj/structure/bed/chair{dir = 1; icon_state = "chair"; tag = "icon-chair (NORTH)"},/obj/effect/floor_decal/rust,/turf/simulated/floor/tiled/asteroid_steel/airless,/area/submap/onehalf) +"ct" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"; tag = ""},/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/table/standard,/obj/item/weapon/flame/lighter/zippo/red,/turf/simulated/floor/tiled/asteroid_steel/airless,/area/submap/onehalf) +"cu" = (/obj/structure/grille,/obj/effect/wingrille_spawn/reinforced,/obj/structure/cable{d2 = 4; icon_state = "0-4"},/obj/structure/cable{d2 = 2; icon_state = "0-2"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; tag = ""},/turf/simulated/floor/plating,/area/submap/onehalf) +"cv" = (/obj/item/stack/rods,/turf/template_noop,/area/submap/onehalf) +"cx" = (/obj/structure/lattice,/obj/item/stack/material/plasteel,/turf/template_noop,/area/submap/onehalf) +"cy" = (/obj/structure/lattice,/obj/item/weapon/material/shard{icon_state = "medium"; tag = "icon-medium"},/turf/template_noop,/area/submap/onehalf) +"cz" = (/obj/structure/grille/broken,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plating,/area/submap/onehalf) +"cA" = (/obj/structure/disposalpipe/trunk{dir = 1},/obj/machinery/disposal,/turf/simulated/floor/tiled/asteroid_steel/airless,/area/submap/onehalf) +"cC" = (/obj/structure/cable,/obj/machinery/power/solar_control{dir = 8},/turf/simulated/floor/tiled/asteroid_steel/airless,/area/submap/onehalf) +"cD" = (/obj/structure/grille,/obj/effect/wingrille_spawn/reinforced,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plating,/area/submap/onehalf) +"cE" = (/obj/item/stack/tile/wood,/turf/template_noop,/area/submap/onehalf) +"cF" = (/turf/template_noop,/area/submap/onehalf) +"cG" = (/obj/structure/lattice,/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/template_noop,/area/submap/onehalf) +"cH" = (/obj/structure/lattice,/obj/structure/disposalpipe/broken{dir = 1; tag = "icon-pipe-b (NORTH)"},/obj/structure/disposalpipe/broken{dir = 8; tag = "icon-pipe-b (WEST)"},/turf/template_noop,/area/submap/onehalf) +"cJ" = (/obj/machinery/light/small,/turf/simulated/floor/tiled/asteroid_steel/airless,/area/submap/onehalf) +"cK" = (/obj/machinery/door/airlock/maintenance/command{name = "Bridge"},/turf/simulated/floor/tiled/asteroid_steel/airless,/area/submap/onehalf) +"cL" = (/obj/item/weapon/tool/crowbar,/turf/simulated/floor/plating,/area/submap/onehalf) +"cM" = (/obj/structure/safe/floor,/obj/item/weapon/tank/oxygen/red,/obj/item/clothing/mask/gas/syndicate,/obj/item/weapon/reagent_containers/food/drinks/bottle/rum,/obj/item/weapon/reagent_containers/food/drinks/bottle/rum,/turf/simulated/floor/plating,/area/submap/onehalf) +"cN" = (/turf/simulated/floor/tiled/asteroid_steel/airless,/area/submap/onehalf) +"cO" = (/obj/structure/lattice,/obj/item/stack/cable_coil/cut,/turf/template_noop,/area/submap/onehalf) +"cQ" = (/obj/machinery/light{dir = 8},/obj/machinery/vending/sovietsoda,/turf/simulated/floor/tiled/asteroid_steel/airless,/area/submap/onehalf) +"cR" = (/obj/item/stack/material/plasteel,/turf/template_noop,/area/submap/onehalf) +"cS" = (/obj/structure/lattice,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/template_noop,/area/submap/onehalf) +"cU" = (/obj/structure/grille,/obj/effect/wingrille_spawn/reinforced,/turf/simulated/floor/plating,/area/submap/onehalf) +"cV" = (/obj/structure/table/standard,/obj/machinery/recharger,/turf/simulated/floor/tiled/asteroid_steel/airless,/area/submap/onehalf) +"cW" = (/obj/structure/bed/chair,/turf/simulated/floor/tiled/asteroid_steel/airless,/area/submap/onehalf) +"cX" = (/obj/structure/table/standard,/obj/item/weapon/storage/firstaid/toxin,/turf/simulated/floor/tiled/asteroid_steel/airless,/area/submap/onehalf) +"cY" = (/obj/structure/grille,/obj/effect/wingrille_spawn/reinforced,/obj/structure/cable{d2 = 4; icon_state = "0-4"},/obj/structure/cable,/turf/simulated/floor/plating,/area/submap/onehalf) +"cZ" = (/obj/structure/lattice,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/template_noop,/area/submap/onehalf) +"db" = (/obj/structure/table/standard,/obj/item/device/flashlight,/turf/simulated/floor/tiled/asteroid_steel/airless,/area/submap/onehalf) +"dc" = (/obj/structure/table/standard,/obj/item/weapon/coin/phoron,/turf/simulated/floor/tiled/asteroid_steel/airless,/area/submap/onehalf) +"dd" = (/obj/structure/closet/firecloset/full,/turf/simulated/floor/tiled/asteroid_steel/airless,/area/submap/onehalf) +"de" = (/obj/machinery/light,/obj/structure/table/standard,/obj/item/weapon/storage/firstaid,/turf/simulated/floor/tiled/asteroid_steel/airless,/area/submap/onehalf) +"df" = (/obj/structure/lattice,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/template_noop,/area/submap/onehalf) +"dg" = (/obj/structure/girder/reinforced,/obj/item/stack/material/plasteel,/turf/simulated/floor/tiled/asteroid_steel/airless,/area/submap/onehalf) +"dj" = (/obj/structure/grille,/obj/item/weapon/material/shard,/turf/simulated/floor/plating,/area/submap/onehalf) +"dk" = (/obj/structure/grille,/obj/effect/wingrille_spawn/reinforced,/obj/structure/cable{d2 = 2; icon_state = "0-2"},/obj/structure/cable{d2 = 4; icon_state = "0-4"},/turf/simulated/floor/plating,/area/submap/onehalf) +"dl" = (/obj/structure/grille,/obj/effect/wingrille_spawn/reinforced,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; tag = ""},/turf/simulated/floor/plating,/area/submap/onehalf) +"dm" = (/obj/structure/grille,/obj/effect/wingrille_spawn/reinforced,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; tag = ""},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; tag = ""},/turf/simulated/floor/plating,/area/submap/onehalf) +"dn" = (/obj/structure/grille,/obj/effect/wingrille_spawn/reinforced,/obj/structure/cable{d2 = 2; icon_state = "0-2"},/obj/structure/cable{d2 = 8; icon_state = "0-8"},/turf/simulated/floor/plating,/area/submap/onehalf) +"do" = (/obj/structure/lattice,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; tag = ""},/obj/item/weapon/material/shard{icon_state = "medium"; tag = "icon-medium"},/turf/template_noop,/area/submap/onehalf) +"dp" = (/obj/structure/lattice,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; tag = ""},/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/item/stack/rods,/turf/template_noop,/area/submap/onehalf) +"dq" = (/obj/structure/lattice,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; tag = ""},/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"; tag = ""},/turf/template_noop,/area/submap/onehalf) +"fE" = (/obj/effect/floor_decal/industrial/warning{dir = 1},/obj/effect/floor_decal/rust,/turf/simulated/floor/tiled/asteroid_steel/airless,/area/submap/onehalf) +"nc" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/floor_decal/rust,/turf/simulated/floor/tiled/asteroid_steel/airless,/area/submap/onehalf) +"oC" = (/obj/effect/floor_decal/rust,/turf/simulated/floor/tiled/asteroid_steel{icon_state = "white"; tag = "icon-white"},/area/submap/onehalf) +"pK" = (/obj/machinery/computer{desc = "A computer long since rendered non-functional due to lack of maintenance. Spitting out error messages."; dir = 8; name = "Broken Computer"},/turf/simulated/floor/tiled/asteroid_steel/airless,/area/submap/onehalf) +"ud" = (/obj/machinery/computer{desc = "A computer long since rendered non-functional due to lack of maintenance. Spitting out error messages."; dir = 1; name = "Broken Computer"},/turf/simulated/floor/tiled/asteroid_steel/airless,/area/submap/onehalf) +"vw" = (/obj/structure/disposalpipe/junction{dir = 8},/obj/effect/floor_decal/rust,/turf/simulated/floor/tiled/asteroid_steel/airless,/area/submap/onehalf) +"xF" = (/obj/effect/floor_decal/rust,/turf/simulated/floor/tiled/asteroid_steel/airless,/area/submap/onehalf) +"Dl" = (/obj/effect/floor_decal/industrial/warning,/turf/simulated/floor/plating,/area/submap/onehalf) +"DD" = (/obj/structure/bed/chair{dir = 8; icon_state = "chair"; tag = "icon-chair (WEST)"},/obj/effect/floor_decal/rust,/turf/simulated/floor/tiled/asteroid_steel/airless,/area/submap/onehalf) +"MS" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/disposalpipe/segment,/obj/effect/floor_decal/rust,/turf/simulated/floor/tiled/asteroid_steel/airless,/area/submap/onehalf) +"RL" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/light,/obj/effect/floor_decal/rust,/turf/simulated/floor/tiled/asteroid_steel/airless,/area/submap/onehalf) +"So" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; tag = ""},/obj/effect/floor_decal/rust,/turf/simulated/floor/tiled/asteroid_steel/airless,/area/submap/onehalf) + +(1,1,1) = {" +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaabacacacacacacacacaccGaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaacOacafaQaQaQaQaQaQcUaQaQcSaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaacNaQaQaQaQalamanaQaoapaoaQaqaQavaQavaQavaQavaQaaDlDlDlaaaa +aaaaaxaxaxayazaQaAoCaBaQaCapaoaQaDaQaEaQaFaQaEaQaEaQaxaQcNaQaaaa +aaaaaacvcNaxcNaQaJaKaYaQaoapaoaQaqaQaMaQaRaQaRaQaRaQaaaQaSaQaaaa +aaaaaxcNaxaTcNaQaQaVaQaQaQaWaQaQaXaZbafEbabbbabbbyaQaQaQbcaQaQaa +aaaaaxaUbebdbhbhbhbgSobhbjbhbkblbmbwMSncMSbwbobwMSbwbpbqbrbscUaa +aaaaaabibubwbwbwbwbxbwbwaLbwbAbBbCbwvwRLvwbwbDbEbFcNaQbHxFbIcUaa +aaaaaabJcNaQcfbKbLcAdgckbXcNcabXbXbXbXbXbXbXbXbXbXbXaQaQcUaQaQaa +aaaaaaaabUclbJaQckbXcNaxbXclbVcbaacUcdcecfcgchbQcibXaxaaaaaaaaaa +aaaaaaaaaaaaaaaackaaaabUaxaxbZcmcncocpDDxFcscNxFctcucGaaaaaaaaaa +aaaaaaaaaaaaaacvcNcxaaaacNcycabXbXbXcAxFxFxFcNcNcCcDcSaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaxcEaacFcGcHcKcJcKcNcNcLcMcNxFpKcDcSaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaacvaxcNcOclbXbXbXcQcNcNcNcNcNpKcDcSaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaacRcEaxcScNcUaxcUcVcqcNcWxFcNcXcYcZaaaaaaaaaa +aaaaaaaaaaaaaaaaaacvaaaabXcjcNcUaacUdbdcddududcNdebXdfaaaaaaaaaa +aaaaaaaaaaaaaaaaaadgaxclckczdjbXbXbXbXdkdldmdldnbXbXcSaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaacxdodpacacacacacdqacacacdqacacafaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +"} diff --git a/modular_chomp/maps/overmap/space_pois/space_pois.dm b/modular_chomp/maps/overmap/space_pois/space_pois.dm new file mode 100644 index 0000000000..bc6af10858 --- /dev/null +++ b/modular_chomp/maps/overmap/space_pois/space_pois.dm @@ -0,0 +1,271 @@ +/* +MAPPER QUICK GUDE +Looking to add new overmap POI's with as little code knowledge as possible? Here's the vital stuff: +-Maps are stored in /datum/map_template/dynamic_overmap templates, you will need to make one template per POI. Code automagically handles adding templates to the overmap. +-The "name" variable must be unique. +-The "mappath" variable must be the file path of your map file. Store maps in "modular_chomp/maps/overmap/space_pois." +-The "block_size" variable is the tile size of your map's LARGEST dimension. Code may break horribly if you do not set this correctly. + -If your map is 60 tiles by 45 tiles, the block_size should be 60. +-ADD YOUR MAP(s) TO THE #include LIST BELOW. This lets github catch POI's breaking in the future. +-Keep templates alphebetical. +-Include the map dimensions in the map file name. + +Less important +-"scanner_desc" is the information presented to players upon scanning the POI. You should probably fill this out but it's not necessary for POI spawning. +-"poi_icon" is the icon_state used when the POI is first scanned. +-"active_icon" is the icon_state used when the POI is loaded into the game. +-POI icons use "icons/obj/overmap.dmi" by default. Using other .dmi files is not currently supported but would be easy to code if desired. +-"poi_color" colors the overmap object when set, does nothing when null. Uses hexadecimal color codes. +-Most POI spawning code is in dynamic_sector.dm, if you're looking for it. +*/ + + +// This causes PoI maps to get 'checked' and compiled, when undergoing a unit test. +// This is so CI can validate PoIs, and ensure future changes don't break PoIs, as PoIs are loaded at runtime and the compiler can't catch errors. +// When adding a new PoI, please add it to this list. +#if MAP_TEST +#include "abandonedtele_13x12.dmm" +#include "abandonedzoo_20x20.dmm" +#include "asteroid1_20x20.dmm" +#include "asteroid2_20x20.dmm" +#include "asteroid3_20x20.dmm" +#include "asteroid4_20x20.dmm" +#include "asteroid5_40x40.dmm" +#include "blowntcommsat_53x56.dmm" +#include "clownmime_28x20.dmm" +#include "debris1_20x20.dmm" +#include "debris2_20x20.dmm" +#include "debris3_30x20.dmm" +#include "deepstorage_85x67.dmm" +#include "derelict1_40x40.dmm" +#include "derelict2_20x20.dmm" +#include "derelict3_40x40.dmm" +#include "derelict4_40x40.dmm" +#include "derelict5_40x40.dmm" +#include "dj_31x28.dmm" +#include "druglab_16x14.dmm" +#include "emptyshell_17x15.dmm" +#include "gasthelizards_19x14.dmm" +#include "golemtarget_30x30.dmm" +#include "intactemptyship_13x11.dmm" +#include "mechtransport_9x15.dmm" +#include "oldstation_80x45.dmm" +#include "onehalf_32x20.dmm" +#include "spacebar_40x40.dmm" +#include "syndiecakesfactory_40x40.dmm" +#include "syndiedepot_57x49.dmm" +#include "turretedoutpost_23x19.dmm" +#include "ussp_84x90.dmm" +#include "ussptele_21x12.dmm" +#include "wayhome_30x30.dmm" +#include "whiteship_55x30.dmm" +#include "wizardcrash_20x35.dmm" +#endif + +// Vars (excluding mappath) are passed to the overmap object after scanning. +// Every template MUST have a unique name both because of the mapping subsystem and the overmap system. +/datum/map_template/dynamic_overmap + name = "bluespace static" + mappath = null + annihilate = TRUE + var/scanner_desc = "Unable to resolve bluespace fluctuations." + var/poi_icon = "ring" + var/active_icon = "ring_active" // Icon to use when the POI is loaded. Set to null to disable behavior. + var/poi_color = null + var/block_size = 60 // The size of the map's largest dimension. If the map is 66x49, this var should be 66. Essential for laoding/unloading system. + +// Stolen from map_template/shelter +/datum/map_template/dynamic_overmap/proc/update_lighting(turf/deploy_location) + var/affected = get_affected_turfs(deploy_location, centered=TRUE) + for(var/turf/T in affected) + T.lighting_build_overlay() + +/datum/map_template/dynamic_overmap/abandonedtele_13x12 + name = "abandoned tele" + mappath = "modular_chomp/maps/overmap/space_pois/abandonedtele_13x12.dmm" + block_size = 13 + +/datum/map_template/dynamic_overmap/abandonedzoo_20x20 + name = "abandoned zoo" + mappath = "modular_chomp/maps/overmap/space_pois/abandonedzoo_20x20.dmm" + block_size = 20 + +/datum/map_template/dynamic_overmap/asteroid1_20x20 + name = "asteroid" + mappath = "modular_chomp/maps/overmap/space_pois/asteroid1_20x20.dmm" + poi_icon = "asteroid1" + active_icon = "asteroid1_g" + block_size = 20 + +/datum/map_template/dynamic_overmap/asteroid2_20x20 + name = "asteroider" + mappath = "modular_chomp/maps/overmap/space_pois/asteroid2_20x20.dmm" + poi_icon = "asteroid2" + active_icon = "asteroid2_g" + block_size = 20 + +/datum/map_template/dynamic_overmap/asteroid3_20x20 + name = "asteroidest" + mappath = "modular_chomp/maps/overmap/space_pois/asteroid3_20x20.dmm" + poi_icon = "asteroid3" + active_icon = "asteroid3_g" + block_size = 20 + +/datum/map_template/dynamic_overmap/asteroid4_20x20 + name = "asteroidester" + mappath = "modular_chomp/maps/overmap/space_pois/asteroid4_20x20.dmm" + poi_icon = "asteroid2" + active_icon = "asteroid2_g" + block_size = 20 + +/datum/map_template/dynamic_overmap/asteroid5_40x40 + name = "asteroidestest" + mappath = "modular_chomp/maps/overmap/space_pois/asteroid5_40x40.dmm" + poi_icon = "asteroid0" + active_icon = "asteroid0_g" + block_size = 40 + +/datum/map_template/dynamic_overmap/blowntcommsat_53x56 + name = "commsat" + mappath = "modular_chomp/maps/overmap/space_pois/blowntcommsat_53x56.dmm" + block_size = 56 + +/datum/map_template/dynamic_overmap/clownmime_28x20 + name = "honk" + mappath = "modular_chomp/maps/overmap/space_pois/clownmime_28x20.dmm" + block_size = 28 + +/datum/map_template/dynamic_overmap/debris1_20x20 + name = "debris" + mappath = "modular_chomp/maps/overmap/space_pois/debris1_20x20.dmm" + block_size = 20 + +/datum/map_template/dynamic_overmap/debris2_20x20 + name = "debriss" + mappath = "modular_chomp/maps/overmap/space_pois/debris2_20x20.dmm" + block_size = 20 + +/datum/map_template/dynamic_overmap/debris3_30x20 + name = "debrisss" + mappath = "modular_chomp/maps/overmap/space_pois/debris3_30x20.dmm" + block_size = 30 + +/datum/map_template/dynamic_overmap/deepstorage_85x67 + name = "storage facility" + mappath = "modular_chomp/maps/overmap/space_pois/deepstorage_85x67.dmm" + block_size = 85 + +/datum/map_template/dynamic_overmap/derelict1_40x40 + name = "ruins" + mappath = "modular_chomp/maps/overmap/space_pois/derelict1_40x40.dmm" + block_size = 40 + +/datum/map_template/dynamic_overmap/derelict2_20x20 + name = "ruins again" + mappath = "modular_chomp/maps/overmap/space_pois/derelict2_20x20.dmm" + block_size = 20 + +/datum/map_template/dynamic_overmap/derelict3_40x40 + name = "ruins three" + mappath = "modular_chomp/maps/overmap/space_pois/derelict3_40x40.dmm" + block_size = 40 + +/datum/map_template/dynamic_overmap/derelict4_40x40 + name = "ruins maybe" + mappath = "modular_chomp/maps/overmap/space_pois/derelict4_40x40.dmm" + block_size = 40 + +/datum/map_template/dynamic_overmap/derelict5_40x40 + name = "ruins?" + mappath = "modular_chomp/maps/overmap/space_pois/derelict5_40x40.dmm" + block_size = 40 + +/datum/map_template/dynamic_overmap/dj_31x28 + name = "DJ Grooves" + mappath = "modular_chomp/maps/overmap/space_pois/dj_31x28.dmm" + block_size = 31 + +/datum/map_template/dynamic_overmap/druglab_16x14 + name = "lab" + mappath = "modular_chomp/maps/overmap/space_pois/druglab_16x14.dmm" + block_size = 16 + +/datum/map_template/dynamic_overmap/emptyshell_17x15 + name = "ruins..." + mappath = "modular_chomp/maps/overmap/space_pois/emptyshell_17x15.dmm" + block_size = 17 + +/datum/map_template/dynamic_overmap/gasthelizards_19x14 + name = "unknown" + mappath = "modular_chomp/maps/overmap/space_pois/gasthelizards_19x14.dmm" + block_size = 19 + +/datum/map_template/dynamic_overmap/golemtarget_30x30 + name = "unknown too" + mappath = "modular_chomp/maps/overmap/space_pois/golemtarget_30x30.dmm" + block_size = 30 + +/datum/map_template/dynamic_overmap/intactemptyship_13x11 + name = "ship" + mappath = "modular_chomp/maps/overmap/space_pois/intactemptyship_13x11.dmm" + block_size = 13 + +/datum/map_template/dynamic_overmap/mechtransport_9x15 + name = "transport" + mappath = "modular_chomp/maps/overmap/space_pois/mechtransport_9x15.dmm" + block_size = 15 + +/datum/map_template/dynamic_overmap/oldstation_80x45 + name = "station" + mappath = "modular_chomp/maps/overmap/space_pois/oldstation_80x45.dmm" + block_size = 80 + +/datum/map_template/dynamic_overmap/onehalf_32x20 + name = "lorem ipsum" + mappath = "modular_chomp/maps/overmap/space_pois/onehalf_32x20.dmm" + block_size = 32 + +/datum/map_template/dynamic_overmap/spacebar_40x40 + name = "alcohol" + mappath = "modular_chomp/maps/overmap/space_pois/spacebar_40x40.dmm" + block_size = 40 + +/datum/map_template/dynamic_overmap/syndiecakesfactory_40x40 + name = "land o' cakes" + mappath = "modular_chomp/maps/overmap/space_pois/syndiecakesfactory_40x40.dmm" + block_size = 40 + +/datum/map_template/dynamic_overmap/syndiedepot_57x49 + name = "depot" + mappath = "modular_chomp/maps/overmap/space_pois/syndiedepot_57x49.dmm" + block_size = 57 + +/datum/map_template/dynamic_overmap/turretedoutpost_23x19 + name = "gunpowder" + mappath = "modular_chomp/maps/overmap/space_pois/turretedoutpost_23x19.dmm" + block_size = 23 + +/datum/map_template/dynamic_overmap/ussp_84x90 + name = "facility" + mappath = "modular_chomp/maps/overmap/space_pois/ussp_84x90.dmm" + block_size = 90 + +/datum/map_template/dynamic_overmap/ussptele_21x12 + name = "facility but small" + mappath = "modular_chomp/maps/overmap/space_pois/ussptele_21x12.dmm" + block_size = 21 + +/datum/map_template/dynamic_overmap/wayhome_30x30 + name = "something" + mappath = "modular_chomp/maps/overmap/space_pois/wayhome_30x30.dmm" + block_size = 30 + +/datum/map_template/dynamic_overmap/whiteship_55x30 + name = "ship2" + mappath = "modular_chomp/maps/overmap/space_pois/whiteship_55x30.dmm" + block_size = 55 + +/datum/map_template/dynamic_overmap/wizardcrash_20x35 + name = "also something" + mappath = "modular_chomp/maps/overmap/space_pois/wizardcrash_20x35.dmm" + block_size = 35 diff --git a/maps/overmap/space_pois/spacebar_40x40.dmm b/modular_chomp/maps/overmap/space_pois/spacebar_40x40.dmm similarity index 98% rename from maps/overmap/space_pois/spacebar_40x40.dmm rename to modular_chomp/maps/overmap/space_pois/spacebar_40x40.dmm index 6e9879ed20..6aaa9b3cd3 100644 --- a/maps/overmap/space_pois/spacebar_40x40.dmm +++ b/modular_chomp/maps/overmap/space_pois/spacebar_40x40.dmm @@ -15,7 +15,7 @@ "av" = (/obj/effect/decal/remains/human,/turf/simulated/floor/wood,/area/submap/spacebar) "aw" = (/obj/structure/reagent_dispensers/beerkeg,/turf/simulated/floor/wood,/area/submap/spacebar) "ax" = (/turf/simulated/shuttle/floor,/area/submap/spacebar) -"ay" = (/obj/machinery/door/airlock{name = "Bar Storage"; req_access_txt = "25"},/turf/simulated/floor/wood,/area/submap/spacebar) +"ay" = (/obj/machinery/door/airlock{name = "Bar Storage"},/turf/simulated/floor/wood,/area/submap/spacebar) "az" = (/obj/structure/table/standard,/obj/machinery/reagentgrinder,/turf/simulated/floor/wood,/area/submap/spacebar) "aB" = (/obj/machinery/door/airlock/glass_external{autoclose = 0; frequency = 1379; icon_state = "door_locked"; id_tag = "spacebar_exterior"; locked = 1; name = "Bar Airlock"},/turf/simulated/shuttle/floor,/area/submap/spacebar) "aD" = (/turf/simulated/floor/wood,/area/submap/spacebar) @@ -27,7 +27,7 @@ "aJ" = (/obj/effect/wingrille_spawn/reinforced/crescent,/turf/simulated/floor/plating,/area/submap/spacebar) "aK" = (/obj/structure/table/marble,/turf/simulated/floor/wood,/area/submap/spacebar) "aL" = (/obj/item/weapon/reagent_containers/glass/rag,/obj/structure/table/marble,/turf/simulated/floor/wood,/area/submap/spacebar) -"aM" = (/obj/machinery/door/airlock{name = "Bar Storage"; req_access_txt = "25"},/turf/simulated/floor/tiled/asteroid_steel{icon_state = "wood"},/area/submap/spacebar) +"aM" = (/obj/machinery/door/airlock{name = "Bar Storage"},/turf/simulated/floor/tiled/asteroid_steel{icon_state = "wood"},/area/submap/spacebar) "aP" = (/obj/machinery/light{dir = 1},/turf/simulated/floor/tiled/asteroid_steel,/area/submap/spacebar) "aQ" = (/obj/effect/wingrille_spawn/reinforced,/turf/simulated/floor/plating,/area/submap/spacebar) "aR" = (/obj/effect/wingrille_spawn/reinforced,/turf/simulated/wall,/area/submap/spacebar) diff --git a/maps/overmap/space_pois/syndiecakesfactory_40x40.dmm b/modular_chomp/maps/overmap/space_pois/syndiecakesfactory_40x40.dmm similarity index 99% rename from maps/overmap/space_pois/syndiecakesfactory_40x40.dmm rename to modular_chomp/maps/overmap/space_pois/syndiecakesfactory_40x40.dmm index f8ee0bdffb..879b29f4ae 100644 --- a/maps/overmap/space_pois/syndiecakesfactory_40x40.dmm +++ b/modular_chomp/maps/overmap/space_pois/syndiecakesfactory_40x40.dmm @@ -244,9 +244,7 @@ /area/submap/syndiecakesfactory) "uF" = ( /obj/machinery/gibber/autogibber, -/obj/structure/plasticflaps{ - canmove = 0 - }, +/obj/structure/plasticflaps, /turf/simulated/floor/tiled/asteroid_steel, /area/submap/syndiecakesfactory) "vQ" = ( diff --git a/modular_chomp/maps/overmap/space_pois/syndiedepot_57x49.dmm b/modular_chomp/maps/overmap/space_pois/syndiedepot_57x49.dmm new file mode 100644 index 0000000000..7c12ed7df0 --- /dev/null +++ b/modular_chomp/maps/overmap/space_pois/syndiedepot_57x49.dmm @@ -0,0 +1,3857 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"ad" = ( +/turf/template_noop, +/area/template_noop) +"ae" = ( +/obj/structure/simple_door/iron, +/turf/simulated/floor/tiled/asteroid_steel{ + icon_state = "dark" + }, +/area/submap/syndiedepotoutter) +"ag" = ( +/obj/effect/decal/cleanable/cobweb, +/turf/simulated/floor/tiled/asteroid_steel{ + icon_state = "dark" + }, +/area/submap/syndiedepotoutter) +"ai" = ( +/obj/effect/decal/cleanable/spiderling_remains, +/turf/simulated/floor/tiled/asteroid_steel{ + icon_state = "dark" + }, +/area/submap/syndiedepotoutter) +"am" = ( +/obj/structure/fans/tiny, +/turf/simulated/floor/tiled/asteroid_steel{ + icon_state = "dark" + }, +/area/submap/syndiedepotoutter) +"ao" = ( +/turf/simulated/wall, +/area/submap/syndiedepotoutter) +"aq" = ( +/obj/machinery/light, +/turf/simulated/mineral/floor/vacuum, +/area/submap/syndiedepotoutter) +"as" = ( +/obj/effect/decal/cleanable/cobweb2, +/turf/simulated/floor/tiled/asteroid_steel{ + icon_state = "dark" + }, +/area/submap/syndiedepotoutter) +"au" = ( +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/mineral/floor/vacuum, +/area/submap/syndiedepotoutter) +"aw" = ( +/obj/structure/bed, +/turf/simulated/floor/tiled/asteroid_steel{ + icon_state = "dark" + }, +/area/submap/syndiedepotinner) +"ay" = ( +/obj/item/weapon/reagent_containers/food/drinks/flask/barflask, +/obj/structure/table/standard, +/turf/simulated/floor/tiled/asteroid_steel{ + icon_state = "dark" + }, +/area/submap/syndiedepotinner) +"az" = ( +/obj/structure/reagent_dispensers/beerkeg, +/obj/structure/table/standard, +/turf/simulated/floor/tiled/asteroid_steel{ + icon_state = "dark" + }, +/area/submap/syndiedepotinner) +"aG" = ( +/obj/machinery/light/small, +/turf/simulated/floor/tiled/asteroid_steel{ + icon_state = "dark" + }, +/area/submap/syndiedepotinner) +"aH" = ( +/obj/effect/decal/cleanable/blood, +/obj/machinery/door/airlock/phoron{ + icon_state = "door_locked"; + locked = 1 + }, +/turf/simulated/floor/tiled/techfloor, +/area/submap/syndiedepotinner) +"aN" = ( +/obj/item/weapon/storage/backpack/holding/duffle, +/turf/simulated/floor/greengrid/nitrogen, +/area/submap/syndiedepotinner) +"aO" = ( +/obj/item/stack/material/steel{ + layer = 4.1 + }, +/turf/simulated/floor/tiled/asteroid_steel{ + icon_state = "dark" + }, +/area/submap/syndiedepotinner) +"aP" = ( +/obj/machinery/light{ + dir = 1; + on = 1 + }, +/obj/item/stack/material/steel{ + layer = 4.1 + }, +/turf/simulated/floor/tiled/asteroid_steel{ + icon_state = "dark" + }, +/area/submap/syndiedepotinner) +"aV" = ( +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/mineral/floor/vacuum, +/area/submap/syndiedepotoutter) +"aX" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/simulated/floor/tiled/asteroid_steel{ + icon_state = "dark" + }, +/area/submap/syndiedepotinner) +"bk" = ( +/obj/machinery/light{ + dir = 1; + on = 1 + }, +/obj/machinery/portable_atmospherics/canister/oxygen, +/turf/simulated/floor/tiled/asteroid_steel{ + icon_state = "dark" + }, +/area/submap/syndiedepotoutter) +"bo" = ( +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled/asteroid_steel{ + icon_state = "dark" + }, +/area/submap/syndiedepotinner) +"br" = ( +/obj/machinery/door/airlock/external{ + id_tag = "sst_away" + }, +/obj/structure/fans/tiny, +/turf/simulated/floor/tiled/techfloor, +/area/submap/syndiedepotoutter) +"bu" = ( +/obj/structure/dispenser, +/turf/simulated/floor/tiled/asteroid_steel{ + icon_state = "dark" + }, +/area/submap/syndiedepotoutter) +"bw" = ( +/obj/item/weapon/storage/box/donkpockets, +/obj/structure/table/standard, +/turf/simulated/floor/tiled/asteroid_steel{ + icon_state = "dark" + }, +/area/submap/syndiedepotinner) +"bz" = ( +/obj/machinery/portable_atmospherics/canister/oxygen, +/turf/simulated/floor/tiled/asteroid_steel{ + icon_state = "dark" + }, +/area/submap/syndiedepotinner) +"bF" = ( +/obj/structure/bed/chair, +/turf/simulated/floor/tiled/asteroid_steel{ + icon_state = "dark" + }, +/area/submap/syndiedepotinner) +"bH" = ( +/obj/machinery/door/airlock/silver, +/turf/simulated/floor/tiled/techfloor, +/area/submap/syndiedepotinner) +"bI" = ( +/obj/machinery/door/airlock/external{ + id_tag = "sst_away" + }, +/turf/simulated/floor/tiled/techfloor, +/area/submap/syndiedepotoutter) +"bL" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/tiled/asteroid_steel{ + icon_state = "dark" + }, +/area/submap/syndiedepotinner) +"bM" = ( +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/power/apc/high{ + dir = 4; + pixel_x = 20 + }, +/turf/simulated/floor/tiled/asteroid_steel{ + icon_state = "dark" + }, +/area/submap/syndiedepotinner) +"bO" = ( +/obj/item/weapon/reagent_containers/food/snacks/syndicake, +/obj/structure/table/standard, +/turf/simulated/floor/tiled/asteroid_steel{ + icon_state = "dark" + }, +/area/submap/syndiedepotinner) +"bR" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/obj/effect/decal/cleanable/blood, +/turf/simulated/floor/tiled/asteroid_steel{ + icon_state = "dark" + }, +/area/submap/syndiedepotinner) +"bU" = ( +/obj/structure/table/standard, +/turf/simulated/floor/tiled/asteroid_steel{ + icon_state = "dark" + }, +/area/submap/syndiedepotoutter) +"bV" = ( +/obj/item/weapon/folder, +/obj/item/weapon/pen, +/obj/structure/table/standard, +/turf/simulated/floor/tiled/asteroid_steel{ + icon_state = "dark" + }, +/area/submap/syndiedepotinner) +"bW" = ( +/obj/structure/cable, +/obj/machinery/power/terminal, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/asteroid_steel{ + icon_state = "dark" + }, +/area/submap/syndiedepotinner) +"ca" = ( +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/structure/sign/warning/emergence, +/turf/simulated/wall/dungeon, +/area/submap/syndiedepotinner) +"cd" = ( +/turf/simulated/floor/tiled/kafel_full, +/area/submap/syndiedepotinner) +"ce" = ( +/obj/machinery/light/small{ + dir = 4; + tag = "icon-bulb1 (EAST)" + }, +/turf/simulated/floor/tiled/kafel_full, +/area/submap/syndiedepotinner) +"ci" = ( +/obj/structure/cable{ + d2 = 2; + icon_state = "0-2" + }, +/obj/machinery/power/smes/buildable/hybrid, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/asteroid_steel{ + icon_state = "dark" + }, +/area/submap/syndiedepotinner) +"cm" = ( +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/structure/table/standard, +/obj/machinery/microwave/advanced, +/turf/simulated/floor/tiled/asteroid_steel{ + icon_state = "dark" + }, +/area/submap/syndiedepotinner) +"cn" = ( +/obj/machinery/light{ + dir = 1; + on = 1 + }, +/turf/simulated/floor/tiled/asteroid_steel{ + icon_state = "dark" + }, +/area/submap/syndiedepotinner) +"co" = ( +/obj/effect/floor_decal/techfloor/orange{ + dir = 6 + }, +/turf/simulated/floor/tiled/techfloor, +/area/submap/syndiedepotinner) +"cq" = ( +/obj/structure/mirror{ + pixel_x = -32 + }, +/turf/simulated/floor/tiled/kafel_full, +/area/submap/syndiedepotinner) +"cr" = ( +/obj/structure/sink{ + dir = 4; + pixel_x = 12 + }, +/turf/simulated/floor/tiled/kafel_full, +/area/submap/syndiedepotinner) +"cv" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/turf/simulated/floor/tiled/asteroid_steel{ + icon_state = "dark" + }, +/area/submap/syndiedepotinner) +"cw" = ( +/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/simple/hidden{ + dir = 4 + }, +/turf/simulated/floor/tiled/asteroid_steel{ + icon_state = "dark" + }, +/area/submap/syndiedepotinner) +"cA" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/machinery/power/supermatter, +/turf/simulated/floor/greengrid/nitrogen, +/area/submap/syndiedepotinner) +"cB" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/turf/simulated/floor/tiled/asteroid_steel{ + icon_state = "dark" + }, +/area/submap/syndiedepotinner) +"cC" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/obj/structure/sign/warning/emergence, +/turf/simulated/wall/dungeon, +/area/submap/syndiedepotinner) +"cE" = ( +/obj/structure/toilet{ + dir = 8 + }, +/turf/simulated/floor/tiled/kafel_full, +/area/submap/syndiedepotinner) +"cF" = ( +/obj/structure/table/standard, +/obj/item/weapon/flame/candle/everburn, +/turf/simulated/mineral/floor/vacuum, +/area/submap/syndiedepotoutter) +"cG" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/simulated/mineral/floor/vacuum, +/area/submap/syndiedepotoutter) +"cH" = ( +/obj/machinery/light, +/turf/simulated/floor/tiled/asteroid_steel{ + icon_state = "dark" + }, +/area/submap/syndiedepotinner) +"cI" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/asteroid_steel{ + icon_state = "dark" + }, +/area/submap/syndiedepotinner) +"cJ" = ( +/obj/structure/cable, +/turf/simulated/floor/tiled/asteroid_steel{ + icon_state = "dark" + }, +/area/submap/syndiedepotinner) +"cM" = ( +/obj/machinery/light{ + dir = 1; + on = 1 + }, +/turf/simulated/mineral/floor/vacuum, +/area/submap/syndiedepotoutter) +"cO" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/wall/iron, +/area/submap/syndiedepotinner) +"cT" = ( +/obj/machinery/light{ + dir = 1; + on = 1 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/asteroid_steel{ + icon_state = "dark" + }, +/area/submap/syndiedepotinner) +"cU" = ( +/obj/machinery/light{ + dir = 1; + on = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden, +/turf/simulated/floor/tiled/asteroid_steel{ + icon_state = "dark" + }, +/area/submap/syndiedepotinner) +"cV" = ( +/obj/machinery/recharge_station, +/turf/simulated/floor/tiled/asteroid_steel{ + icon_state = "dark" + }, +/area/submap/syndiedepotinner) +"cW" = ( +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled/asteroid_steel{ + icon_state = "dark" + }, +/area/submap/syndiedepotinner) +"cY" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/simulated/floor/tiled/asteroid_steel{ + icon_state = "dark" + }, +/area/submap/syndiedepotinner) +"cZ" = ( +/turf/simulated/floor/tiled/asteroid_steel{ + icon_state = "dark" + }, +/area/submap/syndiedepotoutter) +"db" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/light/small, +/turf/simulated/floor, +/area/submap/syndiedepotinner) +"dd" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/turf/simulated/floor/tiled/asteroid_steel{ + icon_state = "dark" + }, +/area/submap/syndiedepotinner) +"de" = ( +/obj/structure/cable, +/obj/machinery/power/apc/high{ + dir = 4; + pixel_x = 20 + }, +/turf/simulated/floor, +/area/submap/syndiedepotoutter) +"df" = ( +/turf/simulated/mineral/floor/vacuum, +/area/submap/syndiedepotoutter) +"dg" = ( +/turf/simulated/wall/iron, +/area/submap/syndiedepotinner) +"dL" = ( +/obj/item/stack/material/steel{ + layer = 4.1 + }, +/obj/structure/closet/emcloset, +/turf/simulated/floor/tiled/asteroid_steel{ + icon_state = "dark" + }, +/area/submap/syndiedepotinner) +"ea" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/obj/machinery/door/blast/puzzle{ + checkrange_mult = 3; + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/submap/syndiedepotinner) +"ee" = ( +/obj/structure/prop/lock/projectile{ + pixel_y = 6 + }, +/turf/simulated/floor/tiled/techfloor, +/area/submap/syndiedepotinner) +"eK" = ( +/obj/effect/floor_decal/techfloor/orange, +/turf/simulated/floor/tiled/techfloor, +/area/submap/syndiedepotinner) +"eM" = ( +/obj/machinery/door/airlock/phoron{ + icon_state = "door_locked"; + locked = 1 + }, +/turf/simulated/floor/tiled/techfloor, +/area/submap/syndiedepotinner) +"fz" = ( +/obj/machinery/light/small, +/turf/simulated/floor, +/area/submap/syndiedepotinner) +"gv" = ( +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/effect/landmark/loot_spawn, +/turf/simulated/floor/greengrid/nitrogen, +/area/submap/syndiedepotinner) +"iw" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/asteroid_steel{ + icon_state = "dark" + }, +/area/submap/syndiedepotinner) +"kB" = ( +/obj/structure/closet/syndicate/suit, +/turf/simulated/floor/tiled/asteroid_steel{ + icon_state = "dark" + }, +/area/submap/syndiedepotinner) +"kJ" = ( +/turf/simulated/wall/iron, +/area/submap/syndiedepotoutter) +"mt" = ( +/obj/structure/table/standard, +/turf/simulated/floor/tiled/asteroid_steel{ + icon_state = "dark" + }, +/area/submap/syndiedepotinner) +"oM" = ( +/obj/effect/floor_decal/techfloor/orange{ + dir = 10 + }, +/turf/simulated/floor/tiled/techfloor, +/area/submap/syndiedepotinner) +"qg" = ( +/obj/machinery/light{ + dir = 1; + on = 1 + }, +/obj/structure/closet/syndicate/suit, +/turf/simulated/floor/tiled/asteroid_steel{ + icon_state = "dark" + }, +/area/submap/syndiedepotinner) +"qt" = ( +/obj/machinery/replicator, +/turf/simulated/floor/greengrid/nitrogen, +/area/submap/syndiedepotinner) +"rd" = ( +/obj/machinery/power/emitter, +/turf/simulated/floor/tiled/asteroid_steel{ + icon_state = "dark" + }, +/area/submap/syndiedepotinner) +"rw" = ( +/obj/random/multiple/large_corp_crate, +/turf/simulated/floor/tiled/asteroid_steel{ + icon_state = "dark" + }, +/area/submap/syndiedepotinner) +"sg" = ( +/obj/machinery/light{ + dir = 1; + on = 1 + }, +/obj/effect/floor_decal/techfloor/orange{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor, +/area/submap/syndiedepotinner) +"tF" = ( +/mob/living/simple_mob/humanoid/merc/ranged/rifle/mag/poi, +/turf/simulated/floor/tiled/asteroid_steel{ + icon_state = "dark" + }, +/area/submap/syndiedepotinner) +"uK" = ( +/obj/machinery/power/singularity_beacon/syndicate, +/turf/simulated/floor/greengrid/nitrogen, +/area/submap/syndiedepotinner) +"vC" = ( +/obj/structure/table/standard, +/obj/item/weapon/storage/box/syndicate, +/turf/simulated/floor/tiled/asteroid_steel{ + icon_state = "dark" + }, +/area/submap/syndiedepotinner) +"vH" = ( +/obj/item/weapon/storage/belt/holding, +/turf/simulated/floor/greengrid/nitrogen, +/area/submap/syndiedepotinner) +"wv" = ( +/obj/item/weapon/inducer/syndicate, +/turf/simulated/floor/tiled/asteroid_steel{ + icon_state = "dark" + }, +/area/submap/syndiedepotinner) +"xv" = ( +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/item/weapon/storage/toolbox/syndicate/powertools, +/turf/simulated/floor/greengrid/nitrogen, +/area/submap/syndiedepotinner) +"xV" = ( +/obj/machinery/light, +/obj/random/multiple/large_corp_crate, +/turf/simulated/floor/tiled/asteroid_steel{ + icon_state = "dark" + }, +/area/submap/syndiedepotinner) +"ya" = ( +/mob/living/simple_mob/humanoid/merc/ranged/technician/poi, +/turf/simulated/floor/tiled/asteroid_steel{ + icon_state = "dark" + }, +/area/submap/syndiedepotinner) +"yi" = ( +/obj/machinery/light{ + dir = 1; + on = 1 + }, +/obj/machinery/power/emitter, +/turf/simulated/floor/tiled/asteroid_steel{ + icon_state = "dark" + }, +/area/submap/syndiedepotinner) +"ym" = ( +/obj/structure/sign/warning/emergence, +/turf/simulated/wall/dungeon, +/area/submap/syndiedepotinner) +"zT" = ( +/obj/effect/landmark/loot_spawn, +/turf/simulated/floor/greengrid/nitrogen, +/area/submap/syndiedepotinner) +"AF" = ( +/obj/machinery/door/blast/puzzle{ + checkrange_mult = 3 + }, +/turf/simulated/floor/tiled/techfloor, +/area/submap/syndiedepotinner) +"AT" = ( +/obj/structure/sign/poster, +/turf/simulated/wall/iron, +/area/submap/syndiedepotinner) +"Cc" = ( +/obj/structure/closet/syndicate, +/turf/simulated/floor/tiled/asteroid_steel{ + icon_state = "dark" + }, +/area/submap/syndiedepotinner) +"Cy" = ( +/obj/machinery/door/airlock/external{ + id_tag = "sst_away" + }, +/obj/structure/fans/tiny, +/obj/structure/fans/hardlight, +/turf/simulated/floor/tiled/techfloor, +/area/submap/syndiedepotinner) +"Dh" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/structure/closet/syndicate/personal, +/turf/simulated/floor/tiled/asteroid_steel{ + icon_state = "dark" + }, +/area/submap/syndiedepotinner) +"DC" = ( +/obj/effect/floor_decal/techfloor/orange{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/submap/syndiedepotinner) +"Fl" = ( +/mob/living/simple_mob/humanoid/merc/melee/sword/poi, +/turf/simulated/floor/tiled/asteroid_steel{ + icon_state = "dark" + }, +/area/submap/syndiedepotinner) +"Hc" = ( +/obj/structure/table/standard, +/obj/item/weapon/card/id/syndicate, +/obj/item/weapon/card/id/syndicate, +/obj/item/weapon/card/id/syndicate, +/obj/item/weapon/card/id/syndicate, +/obj/item/weapon/card/id/syndicate, +/obj/item/weapon/card/id/syndicate, +/obj/item/weapon/card/id/syndicate, +/turf/simulated/floor/tiled/asteroid_steel{ + icon_state = "dark" + }, +/area/submap/syndiedepotinner) +"Ia" = ( +/mob/living/simple_mob/humanoid/merc/ranged/smg, +/turf/simulated/floor/tiled/asteroid_steel{ + icon_state = "dark" + }, +/area/submap/syndiedepotinner) +"Jh" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/mob/living/simple_mob/humanoid/merc/ranged/smg, +/turf/simulated/floor/tiled/asteroid_steel{ + icon_state = "dark" + }, +/area/submap/syndiedepotinner) +"Jl" = ( +/turf/simulated/wall/dungeon, +/area/submap/syndiedepotinner) +"Jv" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/tiled/asteroid_steel{ + icon_state = "dark" + }, +/area/submap/syndiedepotinner) +"KN" = ( +/turf/simulated/floor/tiled/asteroid_steel{ + icon_state = "dark" + }, +/area/submap/syndiedepotinner) +"Ll" = ( +/obj/machinery/light{ + dir = 1; + on = 1 + }, +/obj/effect/landmark/loot_spawn, +/turf/simulated/floor/greengrid/nitrogen, +/area/submap/syndiedepotinner) +"Mr" = ( +/obj/machinery/light{ + dir = 1; + on = 1 + }, +/obj/structure/closet/syndicate/resources, +/turf/simulated/floor/tiled/asteroid_steel{ + icon_state = "dark" + }, +/area/submap/syndiedepotinner) +"NM" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/obj/item/clothing/accessory/medal/dungeon, +/turf/simulated/floor/greengrid/nitrogen, +/area/submap/syndiedepotinner) +"NQ" = ( +/obj/machinery/door/airlock/multi_tile/metal/mait{ + icon_state = "door_locked"; + locked = 1 + }, +/turf/simulated/floor/tiled/asteroid_steel{ + icon_state = "dark" + }, +/area/submap/syndiedepotinner) +"NS" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/obj/item/stolenpackage, +/turf/simulated/floor/greengrid/nitrogen, +/area/submap/syndiedepotinner) +"Oj" = ( +/mob/living/simple_mob/humanoid/merc/ranged/sniper, +/turf/simulated/mineral/floor/vacuum, +/area/submap/syndiedepotoutter) +"Oq" = ( +/obj/item/toy/syndicateballoon, +/turf/simulated/floor/tiled/asteroid_steel{ + icon_state = "dark" + }, +/area/submap/syndiedepotinner) +"OD" = ( +/turf/template_noop, +/area/submap/syndiedepotoutter) +"QR" = ( +/turf/simulated/mineral, +/area/submap/syndiedepotoutter) +"Rr" = ( +/obj/structure/closet/syndicate/nuclear, +/turf/simulated/floor/tiled/asteroid_steel{ + icon_state = "dark" + }, +/area/submap/syndiedepotinner) +"RQ" = ( +/obj/structure/closet/syndicate/resources/everything, +/turf/simulated/floor/tiled/asteroid_steel{ + icon_state = "dark" + }, +/area/submap/syndiedepotinner) +"Sf" = ( +/obj/structure/closet/syndicate/resources, +/turf/simulated/floor/tiled/asteroid_steel{ + icon_state = "dark" + }, +/area/submap/syndiedepotinner) +"Sn" = ( +/obj/structure/dispenser, +/turf/simulated/floor/tiled/asteroid_steel{ + icon_state = "dark" + }, +/area/submap/syndiedepotinner) +"SF" = ( +/obj/machinery/door/airlock/hatch{ + icon_state = "door_locked"; + locked = 1 + }, +/turf/simulated/floor, +/area/submap/syndiedepotinner) +"SK" = ( +/obj/item/stolenpackage, +/turf/simulated/floor/greengrid/nitrogen, +/area/submap/syndiedepotinner) +"Te" = ( +/obj/machinery/atmospherics/unary/vent_pump/on, +/turf/simulated/floor/tiled/asteroid_steel{ + icon_state = "dark" + }, +/area/submap/syndiedepotinner) +"TQ" = ( +/obj/machinery/vending/emergencyfood/filled, +/turf/simulated/floor/tiled/asteroid_steel{ + icon_state = "dark" + }, +/area/submap/syndiedepotinner) +"TX" = ( +/obj/machinery/door/airlock/phoron{ + icon_state = "door_locked"; + locked = 1 + }, +/turf/simulated/floor/tiled/asteroid_steel{ + icon_state = "dark" + }, +/area/submap/syndiedepotinner) +"UA" = ( +/mob/living/simple_mob/humanoid/merc/ranged/space, +/turf/simulated/mineral/floor/vacuum, +/area/submap/syndiedepotoutter) +"UT" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/asteroid_steel{ + icon_state = "dark" + }, +/area/submap/syndiedepotinner) +"UV" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/turf/simulated/floor/greengrid/nitrogen, +/area/submap/syndiedepotinner) +"VZ" = ( +/obj/structure/closet/emcloset, +/turf/simulated/floor/tiled/asteroid_steel{ + icon_state = "dark" + }, +/area/submap/syndiedepotinner) +"WI" = ( +/obj/machinery/suit_cycler/syndicate, +/turf/simulated/floor/tiled/asteroid_steel{ + icon_state = "dark" + }, +/area/submap/syndiedepotinner) +"Xz" = ( +/obj/structure/reagent_dispensers/beerkeg/fakenuke{ + desc = "Something seems off about this bomb."; + name = "\improper Nuclear Fission Explosive" + }, +/turf/simulated/floor/greengrid/nitrogen, +/area/submap/syndiedepotinner) +"Yj" = ( +/mob/living/simple_mob/humanoid/merc/ranged/ionrifle, +/turf/simulated/floor/tiled/asteroid_steel{ + icon_state = "dark" + }, +/area/submap/syndiedepotinner) +"YU" = ( +/obj/machinery/light{ + dir = 1; + on = 1 + }, +/mob/living/simple_mob/humanoid/merc/melee/sword/poi, +/turf/simulated/floor/tiled/asteroid_steel{ + icon_state = "dark" + }, +/area/submap/syndiedepotinner) +"Zh" = ( +/obj/machinery/door/blast/puzzle{ + checkrange_mult = 3; + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/submap/syndiedepotinner) +"Zs" = ( +/obj/machinery/door/airlock/hatch{ + icon_state = "door_locked"; + locked = 1 + }, +/obj/structure/fans/hardlight, +/turf/simulated/floor, +/area/submap/syndiedepotinner) +"ZC" = ( +/obj/random/multiple/corp_crate, +/turf/simulated/floor/tiled/asteroid_steel{ + icon_state = "dark" + }, +/area/submap/syndiedepotinner) + +(1,1,1) = {" +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +"} +(2,1,1) = {" +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +"} +(3,1,1) = {" +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +"} +(4,1,1) = {" +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +"} +(5,1,1) = {" +ad +ad +ad +ad +ad +ad +ad +ad +OD +OD +OD +OD +OD +OD +OD +OD +OD +OD +QR +QR +OD +OD +OD +OD +QR +OD +OD +OD +OD +OD +OD +QR +OD +OD +OD +OD +OD +OD +OD +OD +OD +OD +OD +OD +OD +ad +ad +ad +ad +"} +(6,1,1) = {" +ad +ad +ad +ad +ad +ad +ad +ad +OD +OD +OD +OD +OD +OD +OD +OD +QR +QR +QR +QR +QR +OD +OD +QR +QR +QR +QR +OD +OD +QR +QR +QR +OD +OD +OD +OD +OD +OD +OD +OD +OD +OD +OD +OD +OD +ad +ad +ad +ad +"} +(7,1,1) = {" +ad +ad +ad +ad +ad +ad +ad +ad +OD +OD +OD +OD +OD +OD +QR +QR +QR +QR +QR +QR +QR +QR +QR +QR +QR +QR +QR +QR +QR +QR +QR +QR +QR +OD +OD +OD +OD +OD +OD +OD +OD +OD +OD +OD +OD +ad +ad +ad +ad +"} +(8,1,1) = {" +ad +ad +ad +ad +ad +ad +ad +ad +OD +OD +OD +OD +OD +QR +QR +QR +QR +df +df +QR +QR +QR +QR +QR +df +QR +QR +QR +QR +QR +QR +QR +QR +QR +OD +OD +OD +OD +OD +OD +OD +OD +OD +OD +OD +ad +ad +ad +ad +"} +(9,1,1) = {" +ad +ad +ad +ad +ad +ad +ad +ad +OD +OD +OD +OD +QR +QR +QR +df +df +df +df +df +UA +df +df +df +df +df +df +df +df +df +df +QR +QR +OD +OD +OD +OD +OD +OD +OD +OD +OD +OD +OD +OD +ad +ad +ad +ad +"} +(10,1,1) = {" +ad +ad +ad +ad +ad +ad +ad +ad +OD +OD +OD +QR +QR +QR +QR +df +df +aV +df +df +df +df +aV +df +df +df +df +df +df +df +df +QR +QR +QR +OD +QR +OD +OD +OD +OD +OD +OD +OD +OD +OD +ad +ad +ad +ad +"} +(11,1,1) = {" +ad +ad +ad +ad +ad +ad +ad +ad +OD +OD +QR +QR +QR +QR +QR +dg +dg +dg +dg +dg +dg +dg +dg +dg +dg +SF +dg +aV +df +UA +df +QR +QR +QR +QR +QR +OD +OD +QR +OD +OD +OD +OD +OD +OD +ad +ad +ad +ad +"} +(12,1,1) = {" +ad +ad +ad +ad +ad +ad +ad +ad +OD +QR +QR +ao +ao +ao +QR +dg +KN +KN +dg +Cc +Rr +Dh +Sn +bz +dg +fz +dg +dg +dg +df +df +df +QR +QR +QR +OD +OD +QR +QR +QR +OD +OD +OD +OD +OD +ad +ad +ad +ad +"} +(13,1,1) = {" +ad +ad +ad +ad +ad +ad +ad +ad +OD +QR +ag +cZ +cZ +ao +am +aH +KN +aG +dg +KN +wv +KN +Ia +KN +dg +Zs +dg +Oq +dg +cM +df +df +df +df +QR +QR +QR +QR +QR +QR +QR +OD +OD +OD +OD +ad +ad +ad +ad +"} +(14,1,1) = {" +ad +ad +ad +ad +ad +ad +ad +ad +QR +QR +cZ +cZ +cZ +ao +am +eM +KN +KN +dg +KN +KN +KN +KN +KN +eM +KN +ya +KN +dg +dg +dg +dg +df +df +df +QR +QR +QR +QR +OD +OD +OD +OD +OD +OD +ad +ad +ad +ad +"} +(15,1,1) = {" +ad +ad +ad +ad +ad +ad +ad +ad +OD +QR +ai +cZ +cZ +ao +QR +dg +Mr +KN +NQ +KN +KN +Oq +KN +KN +AT +KN +KN +KN +eM +KN +KN +dg +dg +df +df +df +Oj +QR +QR +OD +OD +OD +OD +OD +OD +ad +ad +ad +ad +"} +(16,1,1) = {" +ad +ad +ad +ad +ad +ad +ad +ad +OD +QR +cZ +cZ +cZ +ao +QR +dg +Sf +KN +KN +KN +KN +bo +KN +VZ +dg +Hc +KN +bo +dg +KN +KN +RQ +dg +cM +df +df +df +QR +QR +QR +OD +OD +OD +OD +OD +ad +ad +ad +ad +"} +(17,1,1) = {" +ad +ad +ad +OD +OD +QR +OD +OD +OD +ae +cZ +cZ +cZ +ao +QR +dg +Sf +aG +dg +dg +dg +dg +eM +dg +dg +dg +eM +dg +dg +dg +cn +mt +dg +df +UA +df +df +QR +QR +QR +QR +OD +OD +OD +OD +ad +ad +ad +ad +"} +(18,1,1) = {" +ad +ad +ad +OD +OD +QR +QR +OD +OD +ae +cZ +cZ +cZ +ao +QR +dg +dg +eM +dg +dg +KN +Yj +KN +dg +VZ +bV +KN +KN +rw +dg +KN +cY +dg +df +df +df +df +df +QR +QR +QR +QR +OD +OD +OD +ad +ad +ad +ad +"} +(19,1,1) = {" +ad +ad +ad +OD +OD +OD +QR +QR +OD +QR +as +cZ +bU +ao +QR +dg +aO +KN +VZ +dg +cn +KN +KN +eM +KN +KN +KN +KN +rw +dg +KN +KN +dg +df +df +df +df +df +QR +QR +QR +OD +OD +OD +OD +ad +ad +ad +ad +"} +(20,1,1) = {" +ad +ad +ad +OD +OD +OD +OD +QR +QR +QR +cZ +ai +cZ +ao +QR +dg +aO +aO +VZ +AT +KN +KN +VZ +dg +sg +oM +tF +Fl +xV +dg +dg +eM +dg +dg +df +df +df +df +QR +QR +OD +OD +OD +OD +OD +ad +ad +ad +ad +"} +(21,1,1) = {" +ad +ad +ad +OD +OD +OD +OD +QR +QR +QR +cZ +cZ +as +ao +QR +dg +aO +aO +dL +dg +dg +eM +dg +dg +ee +eK +KN +iw +KN +eM +KN +ya +dd +dg +SF +dg +cM +df +QR +QR +OD +QR +OD +OD +OD +ad +ad +ad +ad +"} +(22,1,1) = {" +ad +ad +ad +OD +OD +OD +OD +OD +QR +QR +QR +ao +ao +ao +QR +dg +aP +aO +dg +dg +cn +KN +VZ +dg +DC +co +KN +cv +cI +cO +cT +cI +cI +cO +db +cO +de +df +QR +QR +QR +OD +OD +OD +OD +ad +ad +ad +ad +"} +(23,1,1) = {" +ad +ad +ad +OD +OD +OD +OD +QR +QR +QR +QR +QR +QR +QR +QR +dg +KN +aO +dg +KN +KN +Yj +KN +dg +bL +bW +ci +cw +cJ +dg +dg +eM +dg +dg +Zs +dg +dg +df +df +QR +QR +OD +OD +OD +OD +ad +ad +ad +ad +"} +(24,1,1) = {" +ad +ad +ad +OD +OD +OD +OD +QR +QR +QR +df +df +QR +QR +QR +dg +KN +KN +TX +KN +KN +KN +Oq +dg +bM +Jl +Jl +ea +ym +Jl +TQ +KN +KN +dg +KN +dd +dg +cM +df +QR +QR +QR +OD +OD +OD +ad +ad +ad +ad +"} +(25,1,1) = {" +ad +ad +ad +OD +OD +OD +QR +QR +QR +QR +df +df +QR +QR +QR +dg +dg +eM +dg +dg +dg +eM +dg +dg +dg +Jl +uK +UV +vH +Jl +TQ +Oq +Fl +eM +KN +KN +dg +df +UA +QR +QR +QR +QR +OD +OD +ad +ad +ad +ad +"} +(26,1,1) = {" +ad +ad +ad +OD +OD +QR +QR +OD +QR +QR +df +df +dg +dg +dg +dg +dg +KN +KN +KN +dg +KN +Ia +KN +KN +AF +Xz +NS +aN +Jl +TQ +KN +KN +dg +dg +TX +dg +df +df +df +QR +QR +QR +QR +OD +ad +ad +ad +ad +"} +(27,1,1) = {" +ad +ad +ad +OD +OD +OD +OD +OD +QR +QR +df +df +dg +aw +KN +VZ +dg +kB +KN +KN +AT +KN +KN +Te +cm +ca +gv +cA +xv +ca +cU +Jv +KN +eM +KN +KN +dg +df +df +df +QR +QR +QR +OD +OD +ad +ad +ad +ad +"} +(28,1,1) = {" +ad +ad +ad +OD +OD +OD +OD +QR +QR +QR +df +aq +dg +aw +KN +KN +dg +kB +KN +Ia +dg +KN +KN +KN +mt +Jl +Ll +NM +qt +AF +KN +KN +KN +dg +yi +KN +dg +df +df +df +QR +QR +QR +OD +OD +ad +ad +ad +ad +"} +(29,1,1) = {" +ad +ad +ad +QR +OD +OD +QR +QR +QR +QR +df +df +dg +aw +KN +cH +dg +qg +Oq +KN +dg +cn +KN +bF +bO +Jl +zT +NS +SK +Jl +cV +KN +KN +AT +rd +Ia +dg +dg +df +df +QR +QR +OD +OD +OD +ad +ad +ad +ad +"} +(30,1,1) = {" +ad +ad +ad +OD +OD +OD +OD +QR +QR +QR +UA +df +dg +KN +KN +KN +dg +kB +KN +ya +eM +KN +Fl +bF +vC +Jl +Jl +cC +Zh +Jl +dg +eM +dg +dg +VZ +KN +KN +dg +df +df +QR +QR +OD +OD +OD +ad +ad +ad +ad +"} +(31,1,1) = {" +ad +ad +ad +OD +OD +OD +OD +QR +QR +QR +df +df +dg +ay +KN +KN +dg +kB +KN +KN +dg +KN +KN +KN +KN +eM +KN +cB +KN +VZ +dg +KN +KN +dg +dg +eM +dg +dg +cM +df +QR +QR +QR +OD +OD +ad +ad +ad +ad +"} +(32,1,1) = {" +ad +ad +ad +OD +QR +OD +OD +OD +QR +QR +df +df +dg +az +KN +KN +eM +KN +KN +VZ +dg +KN +bw +KN +Oq +dg +KN +UT +tF +KN +AT +YU +KN +Oq +KN +KN +KN +dg +df +df +QR +QR +QR +OD +QR +ad +ad +ad +ad +"} +(33,1,1) = {" +ad +ad +ad +OD +OD +OD +OD +QR +QR +QR +df +df +dg +dg +eM +dg +dg +eM +dg +dg +dg +eM +dg +dg +dg +dg +cn +KN +KN +KN +eM +KN +KN +KN +KN +KN +KN +dg +df +UA +QR +QR +QR +QR +QR +ad +ad +ad +ad +"} +(34,1,1) = {" +ad +ad +ad +OD +OD +QR +QR +QR +QR +QR +df +aq +dg +cn +KN +TX +KN +KN +KN +eM +KN +KN +ZC +dg +bR +dg +mt +aX +KN +Oq +dg +aO +KN +cV +cV +cV +VZ +dg +df +df +QR +QR +OD +QR +OD +ad +ad +ad +ad +"} +(35,1,1) = {" +ad +ad +ad +OD +QR +OD +QR +QR +QR +df +df +df +dg +KN +KN +dg +cn +KN +KN +dg +KN +Yj +ZC +dg +dg +dg +dg +dg +dg +dg +dg +eM +dg +dg +dg +dg +dg +dg +cM +df +QR +QR +OD +OD +OD +ad +ad +ad +ad +"} +(36,1,1) = {" +ad +ad +ad +OD +OD +OD +QR +QR +QR +QR +df +df +dg +dg +Zs +dg +mt +Jh +KN +AT +cn +KN +ZC +dg +cd +cd +cq +cq +bH +KN +cW +KN +KN +KN +dg +df +df +df +df +df +QR +QR +QR +OD +OD +ad +ad +ad +ad +"} +(37,1,1) = {" +ad +ad +ad +OD +OD +OD +OD +QR +QR +QR +df +df +au +SF +fz +dg +KN +KN +KN +dg +VZ +KN +KN +bH +cd +ce +cr +cE +dg +Oq +WI +WI +WI +VZ +dg +df +df +df +df +df +QR +QR +QR +QR +OD +ad +ad +ad +ad +"} +(38,1,1) = {" +ad +ad +ad +OD +OD +OD +OD +QR +QR +QR +df +df +df +dg +dg +dg +dg +dg +dg +dg +dg +Cy +dg +dg +dg +dg +dg +dg +dg +dg +dg +dg +dg +dg +dg +cM +df +df +df +QR +QR +QR +QR +QR +QR +ad +ad +ad +ad +"} +(39,1,1) = {" +ad +ad +ad +OD +OD +QR +QR +QR +QR +QR +QR +QR +df +Oj +UA +df +df +au +df +df +df +df +df +UA +df +df +df +au +df +df +df +df +df +df +df +df +df +df +QR +QR +QR +QR +OD +QR +OD +ad +ad +ad +ad +"} +(40,1,1) = {" +ad +ad +ad +OD +QR +QR +QR +QR +QR +QR +QR +QR +QR +df +df +df +df +df +df +df +df +df +df +df +df +df +df +df +df +df +df +df +df +df +df +UA +df +QR +QR +QR +QR +QR +OD +OD +OD +ad +ad +ad +ad +"} +(41,1,1) = {" +ad +ad +ad +QR +QR +QR +QR +QR +QR +QR +QR +QR +QR +QR +QR +QR +QR +QR +QR +kJ +kJ +br +kJ +kJ +QR +QR +QR +QR +QR +QR +QR +QR +QR +QR +QR +QR +QR +QR +QR +QR +OD +QR +QR +OD +OD +ad +ad +ad +ad +"} +(42,1,1) = {" +ad +ad +ad +OD +OD +QR +QR +QR +QR +QR +QR +QR +QR +QR +QR +QR +QR +QR +QR +kJ +bu +cZ +cZ +kJ +QR +QR +QR +QR +kJ +kJ +QR +QR +QR +QR +QR +QR +QR +QR +df +QR +QR +OD +OD +OD +OD +ad +ad +ad +ad +"} +(43,1,1) = {" +ad +ad +ad +OD +QR +QR +QR +QR +QR +QR +QR +QR +QR +QR +QR +QR +QR +QR +QR +kJ +bk +cZ +cZ +kJ +kJ +kJ +df +cF +df +df +QR +QR +QR +kJ +kJ +df +df +df +df +OD +OD +OD +OD +OD +OD +ad +ad +ad +ad +"} +(44,1,1) = {" +ad +ad +ad +OD +OD +QR +QR +QR +QR +QR +QR +QR +QR +QR +QR +QR +QR +QR +QR +kJ +bU +cZ +cZ +bI +am +ao +df +cG +df +kJ +kJ +QR +QR +QR +df +QR +df +kJ +kJ +QR +OD +OD +OD +OD +OD +ad +ad +ad +ad +"} +(45,1,1) = {" +ad +ad +ad +OD +QR +QR +QR +QR +QR +QR +QR +QR +QR +QR +QR +QR +QR +QR +QR +kJ +cZ +cZ +cZ +kJ +kJ +QR +df +df +df +QR +df +df +df +df +df +OD +OD +OD +OD +OD +QR +OD +OD +OD +OD +ad +ad +ad +ad +"} +(46,1,1) = {" +ad +ad +ad +QR +QR +QR +QR +QR +QR +QR +QR +QR +QR +QR +QR +QR +QR +QR +QR +kJ +kJ +cZ +kJ +kJ +QR +QR +df +df +QR +QR +df +kJ +QR +df +QR +OD +OD +OD +OD +OD +OD +OD +OD +OD +OD +ad +ad +ad +ad +"} +(47,1,1) = {" +ad +ad +ad +OD +QR +QR +QR +QR +QR +QR +QR +QR +QR +QR +QR +QR +QR +QR +QR +QR +kJ +kJ +kJ +QR +QR +QR +QR +df +df +df +df +kJ +df +df +kJ +df +OD +OD +OD +OD +OD +OD +OD +OD +OD +ad +ad +ad +ad +"} +(48,1,1) = {" +ad +ad +ad +OD +QR +QR +QR +QR +QR +QR +QR +QR +QR +QR +QR +QR +QR +QR +QR +QR +QR +QR +QR +QR +QR +QR +QR +QR +df +df +df +df +df +QR +kJ +OD +OD +OD +OD +OD +OD +OD +OD +OD +OD +ad +ad +ad +ad +"} +(49,1,1) = {" +ad +ad +ad +QR +OD +QR +QR +QR +QR +QR +QR +QR +QR +QR +QR +QR +QR +QR +QR +QR +QR +QR +QR +QR +kJ +kJ +OD +df +df +df +kJ +QR +df +df +df +df +df +df +OD +OD +OD +OD +OD +OD +OD +ad +ad +ad +ad +"} +(50,1,1) = {" +ad +ad +ad +OD +OD +OD +QR +QR +QR +QR +QR +QR +QR +QR +QR +QR +QR +QR +QR +QR +QR +QR +QR +QR +QR +OD +OD +kJ +df +QR +kJ +df +QR +QR +QR +df +df +OD +OD +OD +OD +OD +OD +OD +OD +ad +ad +ad +ad +"} +(51,1,1) = {" +ad +ad +ad +OD +OD +OD +OD +OD +QR +QR +QR +OD +OD +QR +QR +QR +QR +OD +QR +QR +QR +QR +OD +OD +OD +OD +QR +kJ +df +QR +df +df +df +df +df +df +kJ +OD +OD +OD +OD +OD +OD +OD +OD +ad +ad +ad +ad +"} +(52,1,1) = {" +ad +ad +ad +OD +OD +OD +OD +OD +QR +OD +OD +OD +OD +OD +QR +OD +OD +OD +QR +QR +OD +OD +OD +OD +OD +OD +OD +df +df +QR +QR +QR +kJ +kJ +QR +OD +kJ +OD +OD +OD +OD +OD +OD +OD +OD +ad +ad +ad +ad +"} +(53,1,1) = {" +ad +ad +ad +OD +OD +OD +OD +OD +OD +OD +OD +OD +OD +OD +OD +OD +OD +OD +QR +OD +OD +OD +OD +OD +OD +OD +OD +OD +OD +df +OD +OD +QR +OD +OD +OD +OD +OD +OD +OD +OD +OD +OD +OD +OD +ad +ad +ad +ad +"} +(54,1,1) = {" +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +"} +(55,1,1) = {" +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +"} +(56,1,1) = {" +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +"} +(57,1,1) = {" +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +"} diff --git a/maps/overmap/space_pois/turretedoutpost_23x19.dmm b/modular_chomp/maps/overmap/space_pois/turretedoutpost_23x19.dmm similarity index 100% rename from maps/overmap/space_pois/turretedoutpost_23x19.dmm rename to modular_chomp/maps/overmap/space_pois/turretedoutpost_23x19.dmm diff --git a/maps/overmap/space_pois/ussp_84x90.dmm b/modular_chomp/maps/overmap/space_pois/ussp_84x90.dmm similarity index 97% rename from maps/overmap/space_pois/ussp_84x90.dmm rename to modular_chomp/maps/overmap/space_pois/ussp_84x90.dmm index 73427f0d62..d73c29e4f7 100644 --- a/maps/overmap/space_pois/ussp_84x90.dmm +++ b/modular_chomp/maps/overmap/space_pois/ussp_84x90.dmm @@ -207,7 +207,7 @@ "fY" = (/obj/structure/table/reinforced,/obj/item/weapon/paper/djstation{info = "August 21 - Most Excellent Commissar Grigor
August 22 - Nobody
August 23 - Nobody
August 24 - Nobody
August 25 - Why do I even bother?
August 26 - Nobody
August 27 -"; name = "visitor log"},/turf/simulated/floor/tiled/asteroid_steel{icon_state = "dark"},/area/derelict/arrival) "fZ" = (/obj/structure/table/reinforced,/obj/item/weapon/paper_bin,/obj/item/weapon/pen,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/tiled/red,/area/derelict/arrival) "ga" = (/obj/effect/decal/remains/human{desc = "This guy seemed to have died in terrible way! Half his remains are dust."; name = "gnawed bones"},/obj/effect/decal/cleanable/blood/splatter,/obj/effect/decal/cleanable/blood/splatter,/turf/simulated/floor/tiled/old_tile/beige,/area/derelict/eva{name = "Derelict Annex"}) -"gb" = (/obj/machinery/door/window/eastleft{locked = 1},/obj/effect/decal/cleanable/blood/splatter,/turf/simulated/floor/tiled/old_tile/beige,/area/derelict/eva{name = "Derelict Annex"}) +"gb" = (/obj/machinery/door/window/eastleft,/obj/effect/decal/cleanable/blood/splatter,/turf/simulated/floor/tiled/old_tile/beige,/area/derelict/eva{name = "Derelict Annex"}) "gd" = (/obj/structure/closet,/turf/simulated/floor/tiled/old_tile/beige,/area/derelict/eva{name = "Derelict Annex"}) "gf" = (/obj/structure/bed/chair/wood{dir = 4},/turf/simulated/floor/tiled/old_tile/gray,/area/derelict/eva{name = "Derelict Annex"}) "gg" = (/obj/structure/table/standard,/turf/simulated/floor/tiled/old_tile/gray,/area/derelict/eva{name = "Derelict Annex"}) @@ -328,8 +328,8 @@ "ji" = (/obj/machinery/light/small{dir = 8},/turf/simulated/shuttle/floor/black,/area/derelict/arrival) "jj" = (/obj/item/weapon/paper/djstation{info = "Fuck. Fuckfuckfuck. I knew this mission was a mistake, that idiot Thomas got himself killed by some angry Russian security bot in the armoury, and the Lt. ran into the annex like a moron and got himself trapped. Now I'm just sitting on my god damn hands because this shuttle won't bloody move. Stupid USSP piece of shit docking arm must be jammed and I don't have the kit to go out and fix it.

Who the hell attacks a space station without EVA gear anyways? It's not like you can just bloody well waltz out into space with a hot coffee and shrug it off."; name = "unknown report"},/turf/simulated/shuttle/floor/black,/area/derelict/arrival) "jk" = (/turf/simulated/shuttle/floor/black,/area/derelict/arrival) -"jl" = (/obj/machinery/door/airlock/external{id_tag = "s_docking_airlock"; locked = 1; name = "Shuttle Airlock"; req_access_txt = "150"},/turf/simulated/shuttle/floor{icon_state = "floor4"},/area/derelict/arrival) -"jm" = (/obj/machinery/door/airlock/external{name = "Docking Port"; req_access_txt = "0"},/turf/simulated/floor{icon_state = "brown"},/area/derelict/arrival) +"jl" = (/obj/machinery/door/airlock/external{id_tag = "s_docking_airlock"; locked = 1; name = "Shuttle Airlock"},/turf/simulated/shuttle/floor{icon_state = "floor4"},/area/derelict/arrival) +"jm" = (/obj/machinery/door/airlock/external{name = "Docking Port"},/turf/simulated/floor{icon_state = "brown"},/area/derelict/arrival) "jn" = (/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/tiled/old_tile/gray,/area/derelict/arrival) "jp" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/effect/decal/cleanable/blood/drip,/turf/simulated/floor/tiled/old_tile/gray,/area/derelict/arrival) "jw" = (/obj/structure/sign/securearea{desc = "A warning sign which reads 'RADIOACTIVE AREA'"; icon_state = "radiation"; name = "RADIOACTIVE AREA"; pixel_x = 32},/obj/machinery/light/small{dir = 4},/turf/simulated/floor/tiled/old_tile/gray,/area/derelict/eva{name = "Derelict Annex"}) @@ -341,9 +341,9 @@ "jG" = (/obj/effect/decal/cleanable/dirt,/obj/effect/floor_decal/stairs/dark_stairs{dir = 8},/turf/simulated/floor/tiled/old_tile/gray,/area/derelict/eva{name = "Derelict Annex"}) "jI" = (/obj/structure/table/fancyblack,/obj/item/weapon/flame/candle/everburn,/turf/simulated/floor/wood,/area/derelict/crew_quarters) "jJ" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/manifold/hidden{dir = 8},/turf/simulated/floor/wood,/area/derelict/crew_quarters) -"jK" = (/obj/machinery/door/airlock/external{frequency = 1502; id_tag = "rus_inner_2"; req_access_txt = "0"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4},/turf/simulated/floor/plating,/area/derelict/crew_quarters) +"jK" = (/obj/machinery/door/airlock/external{frequency = 1502; id_tag = "rus_inner_2"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4},/turf/simulated/floor/plating,/area/derelict/crew_quarters) "jL" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/light/small,/obj/machinery/atmospherics/unary/vent_pump/high_volume{dir = 8; frequency = 1502; id_tag = "rus_pump_2"},/turf/simulated/floor/plating,/area/derelict/crew_quarters) -"jM" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/airlock/external{frequency = 1502; id_tag = "rus_outer_2"; locked = 1; req_access_txt = "0"},/turf/simulated/floor/plating,/area/derelict/crew_quarters) +"jM" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/airlock/external{frequency = 1502; id_tag = "rus_outer_2"},/turf/simulated/floor/plating,/area/derelict/crew_quarters) "jN" = (/obj/structure/window/reinforced,/obj/machinery/light/small{pixel_x = 16; pixel_y = 5},/turf/template_noop,/area/derelict/eva{name = "Derelict Annex"}) "jO" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/catwalk_plated/white,/turf/template_noop,/area/derelict/solar_control) "jP" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/effect/catwalk_plated/white,/turf/template_noop,/area/derelict/solar_control) @@ -363,11 +363,11 @@ "ki" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/decal/cleanable/blood/tracks{color = "red"; desc = "Your instincts say you shouldn't be following these."; dir = 4; icon = 'icons/effects/blood.dmi'; icon_state = "tracks"},/obj/effect/floor_decal/stairs/dark_stairs{dir = 4},/turf/simulated/floor/tiled/old_tile/gray,/area/derelict/eva{name = "Derelict Annex"}) "kj" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/decal/cleanable/blood,/obj/effect/decal/cleanable/blood,/obj/effect/decal/remains/human{desc = "This guy seemed to have died in terrible way! Half his remains are dust."; name = "Human remains"},/obj/effect/decal/cleanable/blood/tracks{color = "red"; desc = "Your instincts say you shouldn't be following these."; dir = 4; icon = 'icons/effects/blood.dmi'; icon_state = "tracks"},/turf/simulated/floor/tiled/old_tile/gray,/area/derelict/eva{name = "Derelict Annex"}) "km" = (/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 1},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plating,/area/derelict/eva{name = "Derelict Annex"}) -"kn" = (/obj/machinery/door/airlock/external{req_access_txt = "0"},/turf/simulated/floor/tiled/old_tile/gray,/area/derelict/eva{name = "Derelict Annex"}) +"kn" = (/obj/machinery/door/airlock/external,/turf/simulated/floor/tiled/old_tile/gray,/area/derelict/eva{name = "Derelict Annex"}) "kq" = (/obj/structure/cable{d2 = 4; icon_state = "0-4"},/obj/machinery/power/apc/alarms_hidden{dir = 1; pixel_y = 24},/turf/simulated/floor/reinforced/airless,/area/derelict/eva{name = "Derelict Annex"}) -"kr" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/airlock/external{req_access_txt = "0"},/turf/simulated/floor/tiled/old_tile/gray,/area/derelict/eva{name = "Derelict Annex"}) +"kr" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/airlock/external,/turf/simulated/floor/tiled/old_tile/gray,/area/derelict/eva{name = "Derelict Annex"}) "ks" = (/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 1},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plating,/area/derelict/eva{name = "Derelict Annex"}) -"kt" = (/obj/machinery/door/airlock/external{req_access_txt = "0"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/old_tile/gray,/area/derelict/eva{name = "Derelict Annex"}) +"kt" = (/obj/machinery/door/airlock/external,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/old_tile/gray,/area/derelict/eva{name = "Derelict Annex"}) "ku" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/tiled/old_tile/gray,/area/derelict/eva{name = "Derelict Annex"}) "kv" = (/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor/tiled/old_tile/gray,/area/derelict/eva{name = "Derelict Annex"}) "kw" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/floor_decal/stairs/dark_stairs{dir = 8},/turf/simulated/floor/tiled/old_tile/gray,/area/derelict/eva{name = "Derelict Annex"}) @@ -382,7 +382,7 @@ "kF" = (/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/hidden,/turf/simulated/floor/wood,/area/derelict/crew_quarters) "kG" = (/obj/structure/sign/vacuum,/turf/simulated/shuttle/wall,/area/derelict/crew_quarters) "kH" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/effect/catwalk_plated/white,/turf/template_noop,/area/derelict/solar_control) -"kI" = (/obj/machinery/light/small{dir = 8},/obj/machinery/access_button{command = "cycle_exterior"; frequency = 1502; master_tag = "rus_airlock_2"; name = "exterior access button"; pixel_x = -25; req_access_txt = "0"},/obj/effect/catwalk_plated/white,/turf/template_noop,/area/derelict/crew_quarters) +"kI" = (/obj/machinery/light/small{dir = 8},/obj/machinery/access_button{command = "cycle_exterior"; frequency = 1502; master_tag = "rus_airlock_2"; name = "exterior access button"; pixel_x = -25},/obj/effect/catwalk_plated/white,/turf/template_noop,/area/derelict/crew_quarters) "kJ" = (/obj/effect/catwalk_plated/white,/turf/template_noop,/area/derelict/solar_control) "kK" = (/obj/machinery/power/tracker,/obj/structure/cable{d2 = 8; icon_state = "0-8"},/turf/simulated/floor/airless{icon_state = "solarpanel"},/area/derelict/solar_control) "kR" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/old_tile/gray,/area/derelict/arrival) @@ -399,13 +399,13 @@ "ll" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/carpet,/area/derelict/bridge) "lm" = (/obj/effect/decal/cleanable/dirt,/obj/structure/table/fancyblack,/obj/item/weapon/flame/candle/everburn,/turf/simulated/floor/wood,/area/derelict/crew_quarters) "ln" = (/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/hidden{dir = 5},/turf/simulated/floor/wood,/area/derelict/crew_quarters) -"lo" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4},/obj/machinery/door/airlock/external{frequency = 1502; id_tag = "rus_inner_2"; req_access_txt = "0"},/turf/simulated/floor/plating,/area/derelict/crew_quarters) -"lp" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/light/small{dir = 1},/obj/machinery/airlock_sensor{frequency = 1502; id_tag = "rus_sensor_2"; pixel_y = 27},/obj/machinery/embedded_controller/radio/airlock/airlock_controller{frequency = 1502; id_tag = "rus_airlock_2"; pixel_y = -25; req_access_txt = "0"; tag_airpump = "rus_pump_2"; tag_chamber_sensor = "rus_sensor_2"; tag_exterior_door = "rus_outer_2"; tag_interior_door = "rus_inner_2"},/obj/machinery/atmospherics/unary/vent_pump/high_volume{dir = 8; frequency = 1502; id_tag = "rus_pump_2"},/turf/simulated/floor/plating,/area/derelict/crew_quarters) -"lq" = (/obj/machinery/door/airlock/external{frequency = 1502; id_tag = "rus_outer_2"; locked = 1; req_access_txt = "0"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/plating,/area/derelict/crew_quarters) +"lo" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4},/obj/machinery/door/airlock/external{frequency = 1502; id_tag = "rus_inner_2"},/turf/simulated/floor/plating,/area/derelict/crew_quarters) +"lp" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/light/small{dir = 1},/obj/machinery/airlock_sensor{frequency = 1502; id_tag = "rus_sensor_2"; pixel_y = 27},/obj/machinery/embedded_controller/radio/airlock/airlock_controller{frequency = 1502; id_tag = "rus_airlock_2"; pixel_y = -25; tag_airpump = "rus_pump_2"; tag_chamber_sensor = "rus_sensor_2"; tag_exterior_door = "rus_outer_2"; tag_interior_door = "rus_inner_2"},/obj/machinery/atmospherics/unary/vent_pump/high_volume{dir = 8; frequency = 1502; id_tag = "rus_pump_2"},/turf/simulated/floor/plating,/area/derelict/crew_quarters) +"lq" = (/obj/machinery/door/airlock/external{frequency = 1502; id_tag = "rus_outer_2"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/plating,/area/derelict/crew_quarters) "lr" = (/obj/structure/window/reinforced{dir = 1},/obj/machinery/light/small{dir = 1; pixel_x = 16; pixel_y = -5},/turf/template_noop,/area/derelict/eva{name = "Derelict Annex"}) "ls" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/effect/catwalk_plated/white,/turf/template_noop,/area/derelict/solar_control) "lt" = (/obj/machinery/light/small{dir = 8},/obj/structure/bed/chair/comfy{dir = 4},/turf/simulated/shuttle/floor/black,/area/derelict/arrival) -"lu" = (/obj/machinery/door/airlock/external{name = "Docking Port"; req_access_txt = "0"},/turf/simulated/floor/tiled/old_tile/gray,/area/derelict/arrival) +"lu" = (/obj/machinery/door/airlock/external{name = "Docking Port"},/turf/simulated/floor/tiled/old_tile/gray,/area/derelict/arrival) "lv" = (/obj/effect/decal/cleanable/blood/splatter,/obj/effect/decal/remains/human{desc = "This guy seemed to have died in terrible way! Half his remains are dust."; name = "Human remains"},/turf/simulated/floor/tiled/old_tile/gray,/area/derelict/arrival) "lx" = (/obj/effect/decal/cleanable/blood/splatter,/turf/simulated/floor/tiled/old_tile/yellow,/area/derelict/arrival) "ly" = (/obj/machinery/vending/sovietsoda,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/tiled/old_tile/yellow,/area/derelict/arrival) @@ -413,7 +413,7 @@ "lC" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/effect/catwalk_plated/white,/turf/template_noop,/area/derelict/solar_control) "lD" = (/turf/simulated/floor/reinforced/airless,/area/derelict/eva{name = "Derelict Annex"}) "lE" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/airlock{name = "Mess Hall"},/turf/simulated/floor/tiled/old_tile/gray,/area/derelict/eva{name = "Derelict Annex"}) -"lG" = (/obj/machinery/light/spot{dir = 4; tag = "icon-tube1 (EAST)"},/obj/machinery/access_button{command = "cycle_interior"; frequency = 1502; master_tag = "rus_airlock_2"; name = "interior access button"; pixel_x = 25; req_access_txt = "0"},/turf/simulated/floor/wood,/area/derelict/crew_quarters) +"lG" = (/obj/machinery/light/spot{dir = 4; tag = "icon-tube1 (EAST)"},/obj/machinery/access_button{command = "cycle_interior"; frequency = 1502; master_tag = "rus_airlock_2"; name = "interior access button"; pixel_x = 25},/turf/simulated/floor/wood,/area/derelict/crew_quarters) "lH" = (/obj/machinery/power/solar{id = "russolar"},/obj/structure/cable,/turf/simulated/floor/airless{icon_state = "solarpanel"},/area/derelict/solar_control) "lI" = (/obj/structure/window/reinforced/tinted,/turf/simulated/shuttle/floor/black,/area/derelict/arrival) "lJ" = (/obj/structure/window/reinforced/tinted,/obj/machinery/light/small{dir = 4},/turf/simulated/shuttle/floor/black,/area/derelict/arrival) @@ -668,7 +668,7 @@ "rN" = (/obj/machinery/portable_atmospherics/canister/air,/obj/machinery/atmospherics/portables_connector{dir = 4},/turf/simulated/floor/tiled/old_tile/green,/area/derelict/arrival) "rO" = (/obj/machinery/light/spot,/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4},/turf/simulated/floor/tiled/old_tile/green,/area/derelict/arrival) "rP" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/manifold/hidden{dir = 1},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/old_tile/green,/area/derelict/arrival) -"rQ" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4},/obj/machinery/access_button{command = "cycle_interior"; frequency = 1501; master_tag = "rus_airlock_1"; name = "interior access button"; pixel_y = -25; req_access_txt = "0"},/turf/simulated/floor/tiled/old_tile/green,/area/derelict/arrival) +"rQ" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4},/obj/machinery/access_button{command = "cycle_interior"; frequency = 1501; master_tag = "rus_airlock_1"; name = "interior access button"; pixel_y = -25},/turf/simulated/floor/tiled/old_tile/green,/area/derelict/arrival) "rR" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/hidden{dir = 10; initialize_directions = 10},/turf/simulated/floor/tiled/old_tile/green,/area/derelict/arrival) "rS" = (/obj/machinery/light/spot,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/tiled/old_tile/green,/area/derelict/arrival) "rT" = (/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/tiled/old_tile/green,/area/derelict/arrival) @@ -678,14 +678,14 @@ "rX" = (/obj/structure/table/standard,/turf/simulated/floor/tiled/old_tile/green,/area/derelict/arrival) "rY" = (/obj/item/weapon/surgical/cautery,/turf/template_noop,/area/derelict/arrival) "rZ" = (/obj/structure/sign/vacuum,/turf/simulated/shuttle/wall/hard_corner,/area/derelict/arrival) -"sa" = (/obj/machinery/door/airlock/external{frequency = 1501; id_tag = "rus_inner_1"; req_access_txt = "0"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden,/turf/simulated/floor/plating,/area/derelict/arrival) -"sb" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden,/obj/machinery/door/airlock/external{frequency = 1501; id_tag = "rus_inner_1"; req_access_txt = "0"},/turf/simulated/floor/plating,/area/derelict/arrival) -"sc" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/light/small{dir = 4; tag = "icon-bulb1 (EAST)"},/obj/machinery/atmospherics/unary/vent_pump/high_volume{dir = 1; frequency = 1501; id_tag = "rus_pump_1"},/obj/machinery/airlock_sensor{frequency = 1501; id_tag = "rus_sensor_1"; pixel_x = 25; pixel_y = -5},/obj/machinery/embedded_controller/radio/airlock/airlock_controller{frequency = 1501; id_tag = "rus_airlock_1"; pixel_x = -25; req_access_txt = "0"; tag_airpump = "rus_pump_1"; tag_chamber_sensor = "rus_sensor_1"; tag_exterior_door = "rus_outer_1"; tag_interior_door = "rus_inner_1"},/turf/simulated/floor/plating,/area/derelict/arrival) +"sa" = (/obj/machinery/door/airlock/external{frequency = 1501; id_tag = "rus_inner_1"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden,/turf/simulated/floor/plating,/area/derelict/arrival) +"sb" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden,/obj/machinery/door/airlock/external{frequency = 1501; id_tag = "rus_inner_1"},/turf/simulated/floor/plating,/area/derelict/arrival) +"sc" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/light/small{dir = 4; tag = "icon-bulb1 (EAST)"},/obj/machinery/atmospherics/unary/vent_pump/high_volume{dir = 1; frequency = 1501; id_tag = "rus_pump_1"},/obj/machinery/airlock_sensor{frequency = 1501; id_tag = "rus_sensor_1"; pixel_x = 25; pixel_y = -5},/obj/machinery/embedded_controller/radio/airlock/airlock_controller{frequency = 1501; id_tag = "rus_airlock_1"; pixel_x = -25; tag_airpump = "rus_pump_1"; tag_chamber_sensor = "rus_sensor_1"; tag_exterior_door = "rus_outer_1"; tag_interior_door = "rus_inner_1"},/turf/simulated/floor/plating,/area/derelict/arrival) "sd" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/light/small{dir = 8},/obj/machinery/atmospherics/unary/vent_pump/high_volume{dir = 1; frequency = 1501; id_tag = "rus_pump_1"},/turf/simulated/floor/plating,/area/derelict/arrival) -"se" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/airlock/external{frequency = 1501; id_tag = "rus_outer_1"; locked = 1; req_access_txt = "0"},/turf/simulated/floor/plating,/area/derelict/arrival) -"sf" = (/obj/machinery/door/airlock/external{frequency = 1501; id_tag = "rus_outer_1"; locked = 1; req_access_txt = "0"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plating,/area/derelict/arrival) +"se" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/airlock/external{frequency = 1501; id_tag = "rus_outer_1"},/turf/simulated/floor/plating,/area/derelict/arrival) +"sf" = (/obj/machinery/door/airlock/external{frequency = 1501; id_tag = "rus_outer_1"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plating,/area/derelict/arrival) "sg" = (/obj/item/stack/cable_coil{amount = 1},/turf/template_noop,/area/space) -"sh" = (/obj/machinery/light/small{dir = 1},/obj/machinery/access_button{command = "cycle_exterior"; frequency = 1501; master_tag = "rus_airlock_1"; name = "exterior access button"; pixel_y = 25; req_access_txt = "0"},/obj/effect/catwalk_plated/white,/turf/template_noop,/area/derelict/arrival) +"sh" = (/obj/machinery/light/small{dir = 1},/obj/machinery/access_button{command = "cycle_exterior"; frequency = 1501; master_tag = "rus_airlock_1"; name = "exterior access button"; pixel_y = 25},/obj/effect/catwalk_plated/white,/turf/template_noop,/area/derelict/arrival) "si" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/effect/catwalk_plated/white,/turf/template_noop,/area/derelict/solar_control) "sj" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/effect/catwalk_plated/white,/turf/template_noop,/area/derelict/solar_control) "sk" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/effect/catwalk_plated/white,/turf/template_noop,/area/derelict/solar_control) diff --git a/maps/overmap/space_pois/ussptele_21x12.dmm b/modular_chomp/maps/overmap/space_pois/ussptele_21x12.dmm similarity index 100% rename from maps/overmap/space_pois/ussptele_21x12.dmm rename to modular_chomp/maps/overmap/space_pois/ussptele_21x12.dmm diff --git a/maps/overmap/space_pois/wayhome_30x30.dmm b/modular_chomp/maps/overmap/space_pois/wayhome_30x30.dmm similarity index 91% rename from maps/overmap/space_pois/wayhome_30x30.dmm rename to modular_chomp/maps/overmap/space_pois/wayhome_30x30.dmm index e0f6408633..6ec559e45d 100644 --- a/maps/overmap/space_pois/wayhome_30x30.dmm +++ b/modular_chomp/maps/overmap/space_pois/wayhome_30x30.dmm @@ -1,7 +1,6 @@ "a" = (/turf/template_noop,/area/template_noop) "b" = (/turf/simulated/mineral/vacuum,/area/submap/way_home) "c" = (/obj/item/instrument/trombone/spectral,/obj/item/clothing/suit/skeleton,/turf/simulated/mineral/floor/vacuum,/area/submap/way_home) -"d" = (/obj/structure/signpost{name = "salvation"},/turf/simulated/mineral/floor/vacuum,/area/submap/way_home) "e" = (/obj/structure/loot_pile/surface/bones,/turf/simulated/mineral/floor/vacuum,/area/submap/way_home) "s" = (/turf/simulated/mineral/floor/vacuum,/area/submap/way_home) "E" = (/obj/item/clothing/mask/smokable/pipe/bonepipe,/turf/simulated/mineral/floor/vacuum,/area/submap/way_home) @@ -24,7 +23,7 @@ aaaaaabbbbbbsssaaaaaaaaaaaaaaa aaaaaaabbbsssssaaaaaaaaaaaaaaa aaaaaaabbaasssssaaaaaaaaaaaaaa aaaaaaaaaaaaassssaaaaaaaaaaaaa -aaaaaaaaaaaaassdssaaaaaaaaaaaa +aaaaaaaaaaaaasssssaaaaaaaaaaaa aaaaaaaaaaaaasEesssaaaaaaaaaaa aaaaaaaaaaaaaassssssaaaaaaaaaa aaaaaaaaaaaaaasssbssaaaaaaaaaa diff --git a/maps/overmap/space_pois/whiteship_55x30.dmm b/modular_chomp/maps/overmap/space_pois/whiteship_55x30.dmm similarity index 100% rename from maps/overmap/space_pois/whiteship_55x30.dmm rename to modular_chomp/maps/overmap/space_pois/whiteship_55x30.dmm diff --git a/maps/overmap/space_pois/wizardcrash_20x35.dmm b/modular_chomp/maps/overmap/space_pois/wizardcrash_20x35.dmm similarity index 100% rename from maps/overmap/space_pois/wizardcrash_20x35.dmm rename to modular_chomp/maps/overmap/space_pois/wizardcrash_20x35.dmm diff --git a/modular_chomp/maps/runtime/runtime_station.dmm b/modular_chomp/maps/runtime/runtime_station.dmm new file mode 100644 index 0000000000..0bac9fab12 --- /dev/null +++ b/modular_chomp/maps/runtime/runtime_station.dmm @@ -0,0 +1,2602 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"ah" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/landmark/start{ + name = "Head of Personnel" + }, +/turf/simulated/floor/wood, +/area/crew_quarters/cafeteria) +"aw" = ( +/obj/structure/closet/crate/freezer, +/turf/simulated/floor/tiled/freezer, +/area/crew_quarters/cafeteria) +"aA" = ( +/obj/structure/bed/chair/wood, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/landmark/start{ + name = "Scientist" + }, +/turf/simulated/floor/wood, +/area/crew_quarters/cafeteria) +"aD" = ( +/obj/random/trash_pile, +/turf/simulated/floor/plating, +/area/crew_quarters/cafeteria) +"aP" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/fans/tiny, +/turf/simulated/floor/tiled/steel_grid, +/area/crew_quarters/cafeteria) +"aW" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/cafeteria) +"bA" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/crew_quarters/cafeteria) +"bK" = ( +/obj/machinery/door/firedoor/border_only, +/obj/effect/wingrille_spawn/reinforced, +/turf/simulated/floor/plating, +/area/crew_quarters/cafeteria) +"cb" = ( +/obj/machinery/door/firedoor/border_only, +/obj/effect/floor_decal/industrial/loading, +/obj/machinery/navbeacon/delivery/west{ + location = "Kitchen" + }, +/obj/structure/plasticflaps/mining{ + opacity = 1 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/cafeteria) +"cg" = ( +/obj/structure/closet/gmcloset, +/obj/item/glass_jar, +/obj/item/device/retail_scanner/civilian, +/obj/item/device/retail_scanner/civilian, +/obj/machinery/camera/network/civilian{ + c_tag = "CIV - Bar Storage" + }, +/obj/machinery/firealarm{ + pixel_y = 24 + }, +/obj/item/clothing/head/that{ + pixel_x = 4; + pixel_y = 6 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/wood, +/area/crew_quarters/cafeteria) +"ch" = ( +/obj/structure/closet/crate, +/obj/random/maintenance/cargo, +/obj/random/maintenance, +/obj/random/maintenance, +/obj/random/maintenance/clean, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/crew_quarters/cafeteria) +"cu" = ( +/obj/machinery/gibber, +/turf/simulated/floor/tiled/freezer, +/area/crew_quarters/cafeteria) +"cC" = ( +/obj/machinery/appliance/cooker/grill, +/obj/effect/floor_decal/corner/grey/diagonal{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/cafeteria) +"cT" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/wood, +/area/crew_quarters/cafeteria) +"cY" = ( +/obj/structure/catwalk, +/obj/random/junk, +/turf/simulated/floor/plating, +/area/crew_quarters/cafeteria) +"dt" = ( +/obj/structure/table/marble, +/obj/effect/floor_decal/corner/grey/diagonal{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/item/weapon/storage/box/donkpockets{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/weapon/reagent_containers/glass/beaker{ + pixel_x = 5 + }, +/obj/item/weapon/reagent_containers/food/condiment/enzyme, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/cafeteria) +"dw" = ( +/obj/effect/floor_decal/corner/grey/diagonal{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/cafeteria) +"dT" = ( +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/crew_quarters/cafeteria) +"ef" = ( +/obj/structure/table/marble, +/obj/machinery/cash_register/civilian{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/door/blast/shutters{ + dir = 2; + id = "bar"; + layer = 3.1; + name = "Bar Shutters" + }, +/obj/item/toy/xmastree, +/turf/simulated/floor/lino, +/area/crew_quarters/cafeteria) +"en" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/wood, +/area/crew_quarters/cafeteria) +"eo" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/landmark/start{ + name = "Chief Medical Officer" + }, +/turf/simulated/floor/wood, +/area/crew_quarters/cafeteria) +"es" = ( +/turf/simulated/wall/r_wall, +/area/crew_quarters/cafeteria) +"eE" = ( +/obj/item/weapon/stool/padded, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/landmark/start{ + name = "Intern" + }, +/turf/simulated/floor/wood, +/area/crew_quarters/cafeteria) +"fj" = ( +/obj/structure/table/marble, +/obj/structure/disposalpipe/segment, +/obj/machinery/door/blast/shutters{ + dir = 2; + id = "bar"; + layer = 3.1; + name = "Bar Shutters" + }, +/turf/simulated/floor/lino, +/area/crew_quarters/cafeteria) +"fo" = ( +/obj/item/weapon/stool/padded, +/obj/effect/landmark/start{ + name = "Chemist" + }, +/turf/simulated/floor/wood, +/area/crew_quarters/cafeteria) +"fE" = ( +/obj/effect/floor_decal/corner/grey/diagonal{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/structure/table/marble, +/obj/item/weapon/material/knife/butch, +/obj/item/weapon/material/kitchen/rollingpin, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/cafeteria) +"fJ" = ( +/obj/structure/closet/emcloset, +/turf/simulated/floor/plating, +/area/crew_quarters/cafeteria) +"fZ" = ( +/obj/structure/table/marble, +/obj/effect/floor_decal/corner/grey/diagonal{ + dir = 4 + }, +/obj/machinery/door/blast/shutters{ + dir = 4; + id = "kitchen"; + layer = 3.3; + name = "Kitchen Shutters" + }, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/cafeteria) +"gh" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled/freezer, +/area/crew_quarters/cafeteria) +"gQ" = ( +/obj/machinery/vending/cigarette{ + dir = 1 + }, +/obj/machinery/ai_status_display{ + pixel_y = -32 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/cafeteria) +"gX" = ( +/obj/machinery/media/jukebox, +/turf/simulated/floor/wood, +/area/crew_quarters/cafeteria) +"hp" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/effect/landmark/start{ + name = "Psychiatrist" + }, +/turf/simulated/floor/wood, +/area/crew_quarters/cafeteria) +"hC" = ( +/obj/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/obj/machinery/camera/network/civilian{ + c_tag = "CIV - Cafeteria Port"; + dir = 4 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/cafeteria) +"hH" = ( +/obj/machinery/vending/cola{ + dir = 1 + }, +/obj/item/device/radio/intercom{ + dir = 4; + name = "Station Intercom (General)"; + pixel_x = 21 + }, +/obj/machinery/status_display{ + pixel_y = -32 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/cafeteria) +"hK" = ( +/obj/structure/bed/chair/wood, +/turf/simulated/floor/wood, +/area/crew_quarters/cafeteria) +"hO" = ( +/turf/simulated/floor/plating, +/area/crew_quarters/cafeteria) +"hR" = ( +/obj/item/weapon/stool/padded, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/landmark/start{ + name = "Botanist" + }, +/turf/simulated/floor/wood, +/area/crew_quarters/cafeteria) +"il" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/cyan{ + dir = 4 + }, +/obj/structure/closet/crate, +/obj/item/weapon/reagent_containers/food/drinks/flask/barflask, +/obj/random/powercell, +/obj/random/maintenance, +/obj/random/maintenance/clean, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/crew_quarters/cafeteria) +"ix" = ( +/obj/effect/landmark{ + name = "JoinLateCryo" + }, +/turf/simulated/floor/wood, +/area/crew_quarters/cafeteria) +"iE" = ( +/obj/effect/floor_decal/corner/grey/diagonal{ + dir = 4 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/cafeteria) +"iQ" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/structure/fans/tiny, +/turf/simulated/floor/tiled/steel_grid, +/area/crew_quarters/cafeteria) +"jg" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/effect/landmark/start{ + name = "Medical Doctor" + }, +/turf/simulated/floor/wood, +/area/crew_quarters/cafeteria) +"jj" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/crew_quarters/cafeteria) +"jB" = ( +/obj/structure/bed/chair/wood, +/obj/effect/landmark/start{ + name = "Warden" + }, +/turf/simulated/floor/wood, +/area/crew_quarters/cafeteria) +"jX" = ( +/obj/structure/table/marble, +/obj/machinery/chemical_dispenser/bar_soft/full, +/turf/simulated/floor/lino, +/area/crew_quarters/cafeteria) +"kg" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/landmark/start{ + name = "Internal Affairs Agent" + }, +/turf/simulated/floor/wood, +/area/crew_quarters/cafeteria) +"kq" = ( +/obj/structure/bed/chair/wood, +/obj/effect/landmark/start{ + name = "Security Officer" + }, +/turf/simulated/floor/wood, +/area/crew_quarters/cafeteria) +"kA" = ( +/turf/simulated/floor/wood, +/area/crew_quarters/cafeteria) +"kQ" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/door/window/southright{ + name = "Kitchen Delivery"; + req_access = list(28) + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/cafeteria) +"lo" = ( +/obj/effect/floor_decal/corner/grey/diagonal{ + dir = 4 + }, +/obj/item/device/radio/intercom{ + dir = 1; + name = "Station Intercom (General)"; + pixel_y = 21 + }, +/obj/structure/closet/secure_closet/freezer/fridge, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/cafeteria) +"lF" = ( +/obj/item/weapon/stool/padded, +/obj/machinery/atmospherics/unary/vent_pump/on, +/obj/effect/landmark/start{ + name = "Chaplain" + }, +/turf/simulated/floor/wood, +/area/crew_quarters/cafeteria) +"lQ" = ( +/obj/item/weapon/stool/padded, +/obj/structure/disposalpipe/segment, +/obj/effect/landmark/start{ + name = "Bartender" + }, +/turf/simulated/floor/wood, +/area/crew_quarters/cafeteria) +"nh" = ( +/obj/machinery/vending/coffee{ + dir = 1 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/cafeteria) +"nQ" = ( +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/cafeteria) +"os" = ( +/obj/machinery/door/firedoor/border_only, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/fans/hardlight/colorable{ + light_color = "#D7D7D7" + }, +/turf/simulated/floor/plating, +/area/crew_quarters/cafeteria) +"oM" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 1 + }, +/turf/simulated/floor/tiled/freezer, +/area/crew_quarters/cafeteria) +"oT" = ( +/obj/item/weapon/card/id/gold/captain/spare, +/turf/simulated/floor/wood, +/area/crew_quarters/cafeteria) +"oU" = ( +/obj/effect/landmark{ + name = "JoinLateStationGateway" + }, +/turf/simulated/floor/wood, +/area/crew_quarters/cafeteria) +"oW" = ( +/obj/machinery/door/firedoor/multi_tile/glass{ + dir = 1 + }, +/obj/structure/fans/tiny, +/turf/simulated/floor/tiled/steel_grid, +/area/crew_quarters/cafeteria) +"pi" = ( +/obj/structure/closet, +/obj/random/maintenance, +/obj/random/maintenance, +/obj/random/maintenance/clean, +/obj/random/maintenance/clean, +/turf/simulated/floor/plating, +/area/crew_quarters/cafeteria) +"pm" = ( +/obj/item/weapon/stool/padded, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/effect/landmark/start{ + name = "Barista" + }, +/turf/simulated/floor/wood, +/area/crew_quarters/cafeteria) +"pu" = ( +/obj/random/obstruction, +/turf/simulated/floor/plating, +/area/crew_quarters/cafeteria) +"pw" = ( +/obj/structure/table/woodentable, +/obj/machinery/reagentgrinder, +/obj/item/weapon/reagent_containers/food/drinks/shaker, +/obj/item/weapon/packageWrap, +/obj/structure/cable/green, +/turf/simulated/floor/wood, +/area/crew_quarters/cafeteria) +"pA" = ( +/obj/machinery/portable_atmospherics/powered/pump/filled, +/obj/structure/cable, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/crew_quarters/cafeteria) +"qj" = ( +/obj/effect/floor_decal/corner/grey/diagonal{ + dir = 4 + }, +/obj/structure/extinguisher_cabinet{ + pixel_x = -28 + }, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/cafeteria) +"qC" = ( +/obj/effect/landmark{ + name = "JoinLateGateway" + }, +/turf/simulated/floor/wood, +/area/crew_quarters/cafeteria) +"qR" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/brown/border{ + dir = 8 + }, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals6{ + dir = 10 + }, +/obj/effect/landmark/start{ + name = "Quartermaster" + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/cafeteria) +"qS" = ( +/obj/machinery/newscaster{ + pixel_y = 30 + }, +/obj/effect/landmark/start, +/turf/simulated/floor/wood, +/area/crew_quarters/cafeteria) +"rS" = ( +/obj/machinery/vending/boozeomat, +/turf/simulated/floor/lino, +/area/crew_quarters/cafeteria) +"sa" = ( +/obj/item/device/radio/intercom{ + dir = 1; + name = "Station Intercom (General)"; + pixel_y = 21 + }, +/obj/machinery/atmospherics/unary/vent_pump/on, +/turf/simulated/floor/tiled/freezer, +/area/crew_quarters/cafeteria) +"ss" = ( +/turf/simulated/wall, +/area/crew_quarters/cafeteria) +"sz" = ( +/obj/structure/table/marble, +/obj/item/weapon/reagent_containers/food/snacks/pie, +/obj/effect/floor_decal/corner/grey/diagonal{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/cafeteria) +"sB" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/freezer, +/area/crew_quarters/cafeteria) +"sC" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/landmark/start{ + name = "Detective" + }, +/turf/simulated/floor/wood, +/area/crew_quarters/cafeteria) +"te" = ( +/obj/structure/table/woodentable, +/obj/item/weapon/deck/cah{ + pixel_x = 2; + pixel_y = 2 + }, +/obj/item/weapon/deck/cah/black{ + pixel_x = -2; + pixel_y = -2 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/cafeteria) +"tj" = ( +/obj/item/weapon/stool/padded, +/obj/effect/landmark/start{ + name = "Explorer" + }, +/turf/simulated/floor/wood, +/area/crew_quarters/cafeteria) +"tT" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/landmark/start{ + name = "Engineer" + }, +/turf/simulated/floor/wood, +/area/crew_quarters/cafeteria) +"uv" = ( +/turf/simulated/floor/lino, +/area/crew_quarters/cafeteria) +"vm" = ( +/obj/structure/table/marble, +/obj/effect/floor_decal/corner/grey/diagonal{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/obj/item/device/starcaster_news{ + pixel_x = 8 + }, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/cafeteria) +"vF" = ( +/obj/effect/floor_decal/corner/grey/diagonal{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/cafeteria) +"vM" = ( +/obj/effect/floor_decal/corner/grey/diagonal{ + dir = 4 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/cafeteria) +"wc" = ( +/obj/effect/floor_decal/corner/grey/diagonal{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/cafeteria) +"wy" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/crew_quarters/cafeteria) +"wD" = ( +/obj/effect/floor_decal/corner/grey/diagonal{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/table/marble, +/obj/item/weapon/book/manual/chef_recipes, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/cafeteria) +"wW" = ( +/obj/structure/bed/chair/wood{ + dir = 1 + }, +/obj/machinery/atm{ + pixel_x = 30 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/cafeteria) +"wY" = ( +/obj/structure/bed/chair/wood{ + dir = 1 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/cafeteria) +"xd" = ( +/obj/effect/floor_decal/corner/grey/diagonal{ + dir = 4 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/cafeteria) +"xg" = ( +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 4 + }, +/obj/structure/reagent_dispensers/fueltank, +/turf/simulated/floor/plating, +/area/crew_quarters/cafeteria) +"xh" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 1 + }, +/turf/simulated/floor/lino, +/area/crew_quarters/cafeteria) +"xM" = ( +/obj/item/weapon/stool/padded, +/obj/effect/floor_decal/corner/grey/diagonal{ + dir = 4 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/cafeteria) +"ya" = ( +/obj/structure/table/marble, +/obj/effect/floor_decal/corner/grey/diagonal{ + dir = 4 + }, +/obj/item/weapon/reagent_containers/food/condiment/small/saltshaker{ + pixel_x = -3 + }, +/obj/item/weapon/reagent_containers/food/condiment/small/peppermill{ + pixel_x = 3 + }, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/cafeteria) +"ys" = ( +/obj/machinery/appliance/cooker/fryer, +/obj/effect/floor_decal/corner/grey/diagonal{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/cafeteria) +"yC" = ( +/obj/structure/table/woodentable, +/obj/item/weapon/gun/projectile/shotgun/doublebarrel, +/obj/item/weapon/tool/screwdriver, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/obj/item/device/radio/intercom{ + desc = "Talk... lisssssten through this."; + name = "Station Intercom (Brig Radio)"; + pixel_y = -21; + wires = 7 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/cafeteria) +"yJ" = ( +/obj/effect/floor_decal/steeldecal/steel_decals6{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/cafeteria) +"yP" = ( +/obj/machinery/door/window/southright{ + name = "Bar"; + req_access = list(25) + }, +/turf/simulated/floor/lino, +/area/crew_quarters/cafeteria) +"yT" = ( +/obj/structure/bed/chair/wood, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/landmark/start{ + name = "Xenobiologist" + }, +/turf/simulated/floor/wood, +/area/crew_quarters/cafeteria) +"yW" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/steeldecal/steel_decals6{ + dir = 10 + }, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals6{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/cafeteria) +"zf" = ( +/obj/machinery/smartfridge/drinks, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/lino, +/area/crew_quarters/cafeteria) +"zh" = ( +/obj/structure/plasticflaps{ + opacity = 1 + }, +/obj/machinery/door/firedoor/border_only, +/obj/effect/floor_decal/industrial/loading, +/obj/machinery/navbeacon/delivery/south{ + location = "Bar" + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/cafeteria) +"zu" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = -12; + pixel_y = 2 + }, +/obj/structure/sign/securearea{ + desc = "Under the painting a plaque reads: 'While the meat grinder may not have spared you, fear not. Not one part of you has gone to waste... You were delicious.'"; + icon_state = "monkey_painting"; + name = "Mr. Deempisi portrait"; + pixel_x = -28; + pixel_y = 4 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/cafeteria) +"zP" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/lino, +/area/crew_quarters/cafeteria) +"zQ" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/wood, +/area/crew_quarters/cafeteria) +"zR" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/lino, +/area/crew_quarters/cafeteria) +"zS" = ( +/obj/effect/floor_decal/corner/grey/diagonal{ + dir = 4 + }, +/obj/machinery/door/blast/shutters{ + dir = 4; + id = "kitchen"; + layer = 3.3; + name = "Kitchen Shutters" + }, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/cafeteria) +"zY" = ( +/obj/structure/reagent_dispensers/beerkeg, +/obj/machinery/alarm{ + dir = 1; + pixel_y = -22 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/cafeteria) +"Ai" = ( +/obj/effect/floor_decal/corner/grey/diagonal{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/cafeteria) +"Am" = ( +/obj/structure/flora/pottedplant/bamboo{ + pixel_y = 10 + }, +/obj/structure/table/bench/glass, +/turf/simulated/floor/wood, +/area/crew_quarters/cafeteria) +"At" = ( +/obj/machinery/power/apc{ + dir = 4; + name = "east bump"; + pixel_x = 24 + }, +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/light_switch{ + name = "light switch "; + pixel_x = 38 + }, +/obj/machinery/power/fractal_reactor/fluff/smes, +/turf/simulated/floor/wood, +/area/crew_quarters/cafeteria) +"AM" = ( +/obj/machinery/disposal, +/obj/structure/disposalpipe/trunk, +/turf/simulated/floor/tiled/dark, +/area/crew_quarters/cafeteria) +"AT" = ( +/obj/structure/bed/chair/wood{ + dir = 1 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/cafeteria) +"AU" = ( +/obj/effect/wingrille_spawn/reinforced, +/turf/simulated/floor/plating, +/area/crew_quarters/cafeteria) +"AX" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/cafeteria) +"Bj" = ( +/obj/structure/table/marble, +/obj/machinery/door/blast/shutters{ + dir = 2; + id = "bar"; + layer = 3.1; + name = "Bar Shutters" + }, +/turf/simulated/floor/lino, +/area/crew_quarters/cafeteria) +"BK" = ( +/obj/structure/flora/pottedplant, +/obj/machinery/light, +/turf/simulated/floor/wood, +/area/crew_quarters/cafeteria) +"BY" = ( +/obj/machinery/vending/snack{ + dir = 1 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/cafeteria) +"Cb" = ( +/obj/effect/floor_decal/corner/grey/diagonal{ + dir = 4 + }, +/obj/structure/sink/kitchen{ + pixel_y = 17 + }, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/cafeteria) +"Cq" = ( +/obj/machinery/camera/network/civilian{ + c_tag = "CIV - Cafeteria Starboard"; + dir = 8 + }, +/obj/effect/landmark/start{ + name = "Cyborg" + }, +/turf/simulated/floor/wood, +/area/crew_quarters/cafeteria) +"Ct" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 1 + }, +/obj/machinery/alarm{ + dir = 4; + pixel_x = -22 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/cafeteria) +"CR" = ( +/obj/item/weapon/stool/padded, +/obj/effect/landmark/start{ + name = "AI" + }, +/turf/simulated/floor/wood, +/area/crew_quarters/cafeteria) +"CU" = ( +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/computer/security/telescreen/entertainment{ + pixel_y = 32 + }, +/obj/effect/landmark/start{ + name = "Atmospheric Technician" + }, +/turf/simulated/floor/wood, +/area/crew_quarters/cafeteria) +"CZ" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/landmark/start{ + name = "Paramedic" + }, +/turf/simulated/floor/wood, +/area/crew_quarters/cafeteria) +"Db" = ( +/obj/effect/floor_decal/corner/grey/diagonal{ + dir = 4 + }, +/obj/structure/disposalpipe/sortjunction/flipped{ + dir = 4; + name = "Kitchen"; + sortType = "Kitchen" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/cafeteria) +"Dc" = ( +/obj/structure/table/marble, +/obj/machinery/cash_register/civilian{ + dir = 8 + }, +/obj/effect/floor_decal/corner/grey/diagonal{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/cafeteria) +"Dj" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled/freezer, +/area/crew_quarters/cafeteria) +"DR" = ( +/obj/effect/floor_decal/corner/grey/diagonal{ + dir = 4 + }, +/obj/machinery/status_display{ + layer = 4; + pixel_x = -32 + }, +/obj/machinery/chem_master/condimaster{ + name = "CondiMaster Neo"; + pixel_x = -5 + }, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/cafeteria) +"DV" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/turf/simulated/floor/lino, +/area/crew_quarters/cafeteria) +"Ev" = ( +/obj/effect/floor_decal/corner/grey/diagonal{ + dir = 4 + }, +/obj/machinery/hologram/holopad, +/obj/effect/floor_decal/industrial/outline/grey, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/cafeteria) +"EG" = ( +/obj/effect/floor_decal/corner/grey/diagonal{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/cafeteria) +"Fo" = ( +/obj/effect/floor_decal/corner/grey/diagonal{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/effect/floor_decal/steeldecal/steel_decals4, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 10 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/cafeteria) +"Fq" = ( +/obj/structure/table/marble, +/obj/item/weapon/reagent_containers/glass/rag, +/obj/item/weapon/reagent_containers/food/drinks/flask/barflask, +/obj/item/weapon/reagent_containers/food/drinks/flask/vacuumflask, +/obj/item/weapon/flame/lighter/zippo, +/obj/item/clothing/head/that{ + pixel_x = 4; + pixel_y = 6 + }, +/obj/machinery/alarm{ + dir = 8; + pixel_x = 22 + }, +/turf/simulated/floor/lino, +/area/crew_quarters/cafeteria) +"Fy" = ( +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/turf/simulated/floor/lino, +/area/crew_quarters/cafeteria) +"FM" = ( +/obj/effect/floor_decal/corner/grey/diagonal{ + dir = 4 + }, +/obj/machinery/button/remote/blast_door{ + id = "kitchen"; + name = "Kitchen Shutters Control"; + pixel_x = 26; + req_access = list(28) + }, +/obj/machinery/light_switch{ + name = "light switch "; + pixel_x = 36; + pixel_y = -6 + }, +/obj/machinery/button/holosign{ + id = "baropen"; + name = "Open Sign"; + pixel_x = 36; + pixel_y = 6 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/cafeteria) +"FV" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/landmark/start{ + name = "Command Secretary" + }, +/turf/simulated/floor/wood, +/area/crew_quarters/cafeteria) +"FY" = ( +/obj/machinery/vending/dinnerware{ + dir = 4; + pixel_x = -4 + }, +/obj/effect/floor_decal/corner/grey/diagonal{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/cafeteria) +"Ga" = ( +/obj/effect/landmark/start{ + name = "Head of Security" + }, +/turf/simulated/floor/wood, +/area/crew_quarters/cafeteria) +"Gc" = ( +/obj/structure/table/woodentable, +/obj/item/weapon/material/kitchen/utensil/fork, +/obj/item/weapon/material/kitchen/utensil/spoon{ + pixel_x = 2 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/wood, +/area/crew_quarters/cafeteria) +"Gd" = ( +/obj/structure/table/marble, +/obj/effect/floor_decal/corner/grey/diagonal{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/item/weapon/reagent_containers/food/snacks/mint, +/obj/item/weapon/packageWrap, +/obj/item/weapon/reagent_containers/dropper, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/cafeteria) +"Gf" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/door/window/southleft{ + name = "Bar Delivery"; + req_access = list(25) + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/cafeteria) +"GA" = ( +/obj/structure/table/marble, +/obj/item/weapon/material/ashtray/glass, +/obj/machinery/door/blast/shutters{ + dir = 2; + id = "bar"; + layer = 3.1; + name = "Bar Shutters" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/lino, +/area/crew_quarters/cafeteria) +"GJ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/plating, +/area/crew_quarters/cafeteria) +"Hs" = ( +/obj/machinery/appliance/mixer/cereal, +/obj/effect/floor_decal/corner/grey/diagonal{ + dir = 4 + }, +/obj/machinery/ai_status_display{ + pixel_x = -32 + }, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/cafeteria) +"Hz" = ( +/obj/effect/floor_decal/corner/grey/diagonal{ + dir = 4 + }, +/obj/machinery/alarm{ + dir = 4; + pixel_x = -22 + }, +/obj/structure/table/marble, +/obj/machinery/microwave{ + pixel_x = -3; + pixel_y = 6 + }, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/cafeteria) +"HP" = ( +/obj/machinery/appliance/cooker/oven, +/obj/effect/floor_decal/corner/grey/diagonal{ + dir = 4 + }, +/obj/machinery/light, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/cafeteria) +"HY" = ( +/obj/structure/closet/secure_closet/bar, +/turf/simulated/floor/wood, +/area/crew_quarters/cafeteria) +"Iv" = ( +/obj/structure/kitchenspike, +/obj/machinery/alarm/freezer{ + dir = 1; + pixel_y = -22 + }, +/turf/simulated/floor/tiled/freezer, +/area/crew_quarters/cafeteria) +"II" = ( +/obj/structure/bed/chair/wood{ + dir = 1 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/cafeteria) +"IP" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/lino, +/area/crew_quarters/cafeteria) +"IZ" = ( +/obj/effect/floor_decal/corner/grey/diagonal{ + dir = 4 + }, +/obj/machinery/camera/network/civilian{ + c_tag = "CIV - Kitchen"; + dir = 4 + }, +/obj/structure/table/marble, +/obj/machinery/microwave{ + pixel_x = -3; + pixel_y = 6 + }, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/cafeteria) +"Je" = ( +/obj/effect/landmark{ + name = "Observer-Start" + }, +/turf/simulated/floor/wood, +/area/crew_quarters/cafeteria) +"Jh" = ( +/obj/effect/floor_decal/steeldecal/steel_decals_central6, +/turf/simulated/floor/tiled/monotile, +/area/crew_quarters/cafeteria) +"KC" = ( +/obj/item/weapon/stool/padded, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/lino, +/area/crew_quarters/cafeteria) +"KF" = ( +/obj/structure/table/marble, +/obj/effect/floor_decal/corner/grey/diagonal{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/reagentgrinder, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/cafeteria) +"KS" = ( +/obj/item/device/radio/intercom{ + dir = 8; + name = "Station Intercom (General)"; + pixel_x = -21 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/lino, +/area/crew_quarters/cafeteria) +"KY" = ( +/obj/machinery/button/remote/blast_door{ + id = "bar"; + name = "Bar Shutters"; + pixel_x = -26; + pixel_y = -6 + }, +/obj/machinery/button/holosign{ + id = "baropen"; + name = "Open Sign"; + pixel_x = -24; + pixel_y = 6 + }, +/obj/machinery/light_switch{ + name = "light switch "; + pixel_x = -32; + pixel_y = 6 + }, +/obj/machinery/camera/network/civilian{ + c_tag = "CIV - Bar Fore"; + dir = 4 + }, +/obj/structure/sink/kitchen{ + pixel_y = 17 + }, +/turf/simulated/floor/lino, +/area/crew_quarters/cafeteria) +"Lr" = ( +/obj/effect/floor_decal/corner/grey/diagonal{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/cafeteria) +"Lx" = ( +/obj/structure/table/marble, +/obj/machinery/chemical_dispenser/bar_alc/full, +/obj/structure/sign/double/barsign{ + pixel_y = 32 + }, +/turf/simulated/floor/lino, +/area/crew_quarters/cafeteria) +"LG" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/fans/tiny, +/turf/simulated/floor/tiled/steel_grid, +/area/crew_quarters/cafeteria) +"LV" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled/freezer, +/area/crew_quarters/cafeteria) +"LW" = ( +/obj/effect/floor_decal/corner/grey/diagonal{ + dir = 4 + }, +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/newscaster{ + pixel_y = 30 + }, +/obj/structure/closet/secure_closet/freezer/meat, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/cafeteria) +"MI" = ( +/obj/structure/catwalk, +/obj/random/plushielarge, +/turf/simulated/floor/plating, +/area/crew_quarters/cafeteria) +"ML" = ( +/obj/structure/table/marble, +/obj/machinery/chemical_dispenser/bar_soft/full, +/obj/effect/floor_decal/corner/grey/diagonal{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/cafeteria) +"MM" = ( +/obj/structure/disposalpipe/sortjunction/flipped{ + dir = 4; + name = "Bar"; + sortType = "Bar" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/landmark/start{ + name = "Librarian" + }, +/turf/simulated/floor/wood, +/area/crew_quarters/cafeteria) +"MR" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4, +/turf/simulated/floor/wood, +/area/crew_quarters/cafeteria) +"Nl" = ( +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/lino, +/area/crew_quarters/cafeteria) +"Np" = ( +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 1 + }, +/obj/structure/closet/crate, +/obj/random/maintenance/cargo, +/obj/random/maintenance/cargo, +/obj/random/maintenance/cargo, +/obj/random/maintenance/cargo, +/obj/random/maintenance/cargo, +/obj/item/weapon/material/knife, +/turf/simulated/floor/plating, +/area/crew_quarters/cafeteria) +"NI" = ( +/obj/item/weapon/stool/padded, +/obj/effect/landmark/start{ + name = "Research Director" + }, +/turf/simulated/floor/wood, +/area/crew_quarters/cafeteria) +"NZ" = ( +/obj/effect/landmark/start{ + name = "Chef" + }, +/turf/simulated/floor/wood, +/area/crew_quarters/cafeteria) +"Of" = ( +/obj/structure/closet/secure_closet/freezer/meat, +/turf/simulated/floor/tiled/freezer, +/area/crew_quarters/cafeteria) +"Og" = ( +/obj/machinery/icecream_vat, +/obj/machinery/firealarm{ + pixel_y = 24 + }, +/turf/simulated/floor/tiled/freezer, +/area/crew_quarters/cafeteria) +"Oj" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/landmark/start{ + name = "Chief Engineer" + }, +/turf/simulated/floor/wood, +/area/crew_quarters/cafeteria) +"Ou" = ( +/obj/machinery/vending/coffee{ + dir = 1 + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/cafeteria) +"Ov" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/hologram/holopad, +/obj/effect/floor_decal/industrial/outline/grey, +/turf/simulated/floor/wood, +/area/crew_quarters/cafeteria) +"OH" = ( +/obj/effect/floor_decal/corner/grey/diagonal{ + dir = 4 + }, +/obj/machinery/door/blast/shutters{ + dir = 4; + id = "kitchen"; + layer = 3.3; + name = "Kitchen Shutters" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/cafeteria) +"OZ" = ( +/obj/machinery/light/small, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/crew_quarters/cafeteria) +"Pj" = ( +/obj/effect/landmark/start{ + name = "Geneticist" + }, +/turf/simulated/floor/wood, +/area/crew_quarters/cafeteria) +"Pu" = ( +/obj/structure/table/marble, +/obj/effect/floor_decal/corner/grey/diagonal{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/item/toy/xmastree, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/cafeteria) +"PA" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/crew_quarters/cafeteria) +"PY" = ( +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 9 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/cafeteria) +"Qk" = ( +/obj/effect/floor_decal/steeldecal/steel_decals6{ + dir = 5 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/brown/border{ + dir = 8 + }, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 10 + }, +/obj/effect/landmark/start, +/turf/simulated/floor/tiled, +/area/crew_quarters/cafeteria) +"Ql" = ( +/obj/effect/landmark{ + name = "JoinLateSifPlains" + }, +/turf/simulated/floor/wood, +/area/crew_quarters/cafeteria) +"Rp" = ( +/obj/machinery/door/firedoor/border_only, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/door/airlock/freezer{ + name = "Kitchen cold room"; + req_access = list(28) + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/obj/structure/fans/hardlight/colorable{ + light_color = "#D7D7D7" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/crew_quarters/cafeteria) +"Rs" = ( +/obj/machinery/computer/guestpass{ + dir = 4; + pixel_x = -19 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/cafeteria) +"RU" = ( +/obj/machinery/atmospherics/pipe/tank/air{ + dir = 1; + start_pressure = 4559.63 + }, +/turf/simulated/floor/plating, +/area/crew_quarters/cafeteria) +"So" = ( +/obj/machinery/atmospherics/valve, +/obj/machinery/space_heater, +/turf/simulated/floor/plating, +/area/crew_quarters/cafeteria) +"SG" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/simulated/floor/plating, +/area/crew_quarters/cafeteria) +"ST" = ( +/obj/structure/kitchenspike, +/turf/simulated/floor/tiled/freezer, +/area/crew_quarters/cafeteria) +"Tn" = ( +/obj/structure/table/woodentable, +/obj/item/device/radio/subspace{ + desc = "A heavy duty radio that can pick up all manor of shortwave and subspace frequencies. It's a bit bulkier than a normal radio thanks to the extra hardware. An engraving on the frame reads: IF FOUND, RETURN TO THE BAR!"; + name = "Bar subspace radio"; + pixel_y = 5 + }, +/obj/item/weapon/deck/cards{ + pixel_x = -5; + pixel_y = -2 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/cafeteria) +"Tx" = ( +/obj/effect/floor_decal/corner/grey/diagonal{ + dir = 4 + }, +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/obj/structure/closet/secure_closet/freezer/kitchen, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/cafeteria) +"TB" = ( +/obj/effect/floor_decal/corner/grey/diagonal{ + dir = 4 + }, +/obj/structure/disposalpipe/sortjunction{ + dir = 4; + name = "Hydroponics"; + sortType = "Hydroponics" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/cafeteria) +"TD" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 6 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/brown/border{ + dir = 4 + }, +/obj/effect/floor_decal/spline/fancy/wood/cee{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/cafeteria) +"TL" = ( +/obj/machinery/disposal, +/obj/structure/disposalpipe/trunk, +/obj/structure/extinguisher_cabinet{ + pixel_y = 30 + }, +/turf/simulated/floor/lino, +/area/crew_quarters/cafeteria) +"TZ" = ( +/obj/machinery/appliance/mixer/candy, +/obj/effect/floor_decal/corner/grey/diagonal{ + dir = 4 + }, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/cafeteria) +"Ux" = ( +/obj/item/weapon/stool/padded, +/obj/effect/landmark/start{ + name = "Cargo Technician" + }, +/turf/simulated/floor/wood, +/area/crew_quarters/cafeteria) +"Vc" = ( +/obj/machinery/hologram/holopad, +/obj/effect/floor_decal/industrial/outline/grey, +/obj/effect/landmark/start{ + name = "Shaft Miner" + }, +/turf/simulated/floor/wood, +/area/crew_quarters/cafeteria) +"Vf" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/firedoor/border_only, +/turf/simulated/floor/plating, +/area/crew_quarters/cafeteria) +"Vx" = ( +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/cafeteria) +"Wn" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/effect/landmark/start{ + name = "Janitor" + }, +/turf/simulated/floor/wood, +/area/crew_quarters/cafeteria) +"Xe" = ( +/obj/structure/table/woodentable, +/obj/item/weapon/material/kitchen/utensil/fork, +/obj/item/weapon/material/kitchen/utensil/spoon{ + pixel_x = 2 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/wood, +/area/crew_quarters/cafeteria) +"Xm" = ( +/obj/machinery/door/firedoor/border_only, +/obj/machinery/door/airlock/maintenance{ + name = "Bar Maintenance"; + req_access = list(25) + }, +/turf/simulated/floor/plating, +/area/crew_quarters/cafeteria) +"XL" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/landmark/start{ + name = "Roboticist" + }, +/turf/simulated/floor/wood, +/area/crew_quarters/cafeteria) +"XS" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 9 + }, +/obj/effect/floor_decal/corner/grey/diagonal{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/cafeteria) +"XU" = ( +/obj/machinery/door/airlock/glass{ + name = "Kitchen"; + req_access = list(28) + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/firedoor/border_only, +/turf/simulated/floor/tiled/steel_grid, +/area/crew_quarters/cafeteria) +"Ya" = ( +/obj/machinery/camera/network/civilian{ + c_tag = "CIV - Kitchen Cold Room"; + dir = 1 + }, +/obj/structure/closet/chefcloset, +/obj/item/glass_jar, +/obj/item/device/retail_scanner/civilian, +/obj/item/weapon/soap/nanotrasen, +/obj/item/device/destTagger{ + pixel_x = 4; + pixel_y = 3 + }, +/obj/item/weapon/packageWrap, +/obj/item/weapon/packageWrap, +/obj/item/weapon/packageWrap, +/obj/item/clothing/gloves/sterile/latex, +/obj/item/clothing/gloves/sterile/latex, +/turf/simulated/floor/tiled/freezer, +/area/crew_quarters/cafeteria) +"Yo" = ( +/obj/effect/landmark{ + name = "JoinLateCyborg" + }, +/turf/simulated/floor/wood, +/area/crew_quarters/cafeteria) +"Yw" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled/freezer, +/area/crew_quarters/cafeteria) +"YA" = ( +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/wood, +/area/crew_quarters/cafeteria) +"Zi" = ( +/obj/effect/floor_decal/corner/grey/diagonal{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/cafeteria) +"Zl" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/door/firedoor/border_only, +/obj/machinery/door/airlock{ + name = "Bar Backroom"; + req_access = list(25) + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/crew_quarters/cafeteria) +"ZA" = ( +/turf/space, +/area/space) +"ZQ" = ( +/obj/structure/table/marble, +/obj/effect/floor_decal/corner/grey/diagonal{ + dir = 4 + }, +/obj/item/weapon/reagent_containers/food/condiment/small/saltshaker{ + pixel_x = -3 + }, +/obj/item/weapon/reagent_containers/food/condiment/small/peppermill{ + pixel_x = 3 + }, +/obj/item/weapon/reagent_containers/food/condiment/small/sugar, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/cafeteria) +"ZR" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 10 + }, +/obj/machinery/floodlight, +/turf/simulated/floor/plating, +/area/crew_quarters/cafeteria) +"ZU" = ( +/obj/structure/table/marble, +/obj/effect/floor_decal/corner/grey/diagonal{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/junction{ + dir = 4 + }, +/obj/item/toy/xmastree, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/cafeteria) + +(1,1,1) = {" +es +es +es +es +es +es +es +es +es +es +es +es +es +es +es +es +es +es +es +es +"} +(2,1,1) = {" +es +bA +aD +ss +ss +os +ss +ss +fJ +pi +ZR +So +il +RU +ss +ZA +ZA +ZA +ZA +es +"} +(3,1,1) = {" +es +PA +SG +ss +aw +oM +ST +ss +ss +ss +ss +ss +ss +ss +ss +ss +ss +ZA +ZA +es +"} +(4,1,1) = {" +es +jj +xg +ss +Og +gh +Iv +ss +FY +TZ +Hs +IZ +Hz +DR +qj +ys +bK +ZA +ZA +es +"} +(5,1,1) = {" +es +Vf +AU +ss +sa +Dj +Ya +ss +Cb +Ai +vM +Ai +Ai +iE +Ai +cC +bK +ZA +ZA +es +"} +(6,1,1) = {" +es +wy +Np +ss +cu +LV +sB +Rp +XS +wc +dt +Pu +KF +fE +Ai +HP +bK +ZA +ZA +es +"} +(7,1,1) = {" +es +PA +hO +cb +kQ +Yw +Of +ss +LW +vF +Gd +ML +ya +wD +Ai +Tx +ss +ZA +ZA +es +"} +(8,1,1) = {" +es +GJ +ss +ss +ss +ss +ss +ss +lo +TB +xM +Ev +Ai +xd +Ai +Lr +es +ZA +ZA +es +"} +(9,1,1) = {" +es +hO +zh +Gf +zu +Ou +ss +AM +Zi +Db +dw +Zi +Zi +FM +Fo +EG +iQ +ZA +ZA +es +"} +(10,1,1) = {" +es +hO +Xm +PY +kA +zY +ss +ss +fZ +OH +zS +zS +fZ +ss +XU +bK +ss +ZA +ZA +es +"} +(11,1,1) = {" +es +aD +ss +cg +AX +yC +ss +gX +ZQ +ZU +Dc +vm +sz +hC +TD +BK +ss +ss +LG +es +"} +(12,1,1) = {" +es +dT +ss +HY +MR +pw +ss +qS +fo +eE +NI +CR +tj +kA +zQ +kA +Rs +Ct +Vx +es +"} +(13,1,1) = {" +es +pA +ss +ss +Zl +ss +ss +CU +Oj +kg +XL +FV +cT +cT +YA +en +Ov +aW +Jh +es +"} +(14,1,1) = {" +es +MI +ss +KY +xh +KS +GA +pm +eo +Wn +aA +Gc +II +oU +hK +At +wW +yW +yJ +es +"} +(15,1,1) = {" +es +pu +ss +TL +zR +Nl +fj +lQ +sC +MM +kq +Tn +AT +Ql +Am +ss +ss +aP +oW +es +"} +(16,1,1) = {" +es +cY +ss +rS +DV +KC +ef +hR +tT +jg +Vc +oT +kA +qC +gQ +ss +ZA +ZA +ZA +es +"} +(17,1,1) = {" +es +dT +ss +zf +zP +uv +Bj +Ux +Pj +CZ +jB +te +AT +Je +BY +bK +ZA +ZA +ZA +es +"} +(18,1,1) = {" +es +OZ +ss +Lx +IP +uv +Bj +lF +ah +hp +yT +Xe +wY +Yo +nh +bK +ZA +ZA +ZA +es +"} +(19,1,1) = {" +es +ch +ss +jX +Fq +Fy +yP +NZ +Ga +qR +Qk +Cq +nQ +ix +hH +ss +ZA +ZA +ZA +es +"} +(20,1,1) = {" +es +es +es +es +es +es +es +es +es +es +es +es +es +es +es +es +es +es +es +es +"} diff --git a/modular_chomp/maps/runtime/runtime_station_defines.dm b/modular_chomp/maps/runtime/runtime_station_defines.dm new file mode 100644 index 0000000000..614a80e6f0 --- /dev/null +++ b/modular_chomp/maps/runtime/runtime_station_defines.dm @@ -0,0 +1,47 @@ +#define Z_LEVEL_STATION_ONE 1 + +/datum/map/runtime_station + name = "Runtime Station" + full_name = "Southern Cross" + path = "modular_chomp/maps/runtime/runtime_station" + + lobby_icon = 'icons/misc/CHOMPSTATION.gif' //CHOMPStation Edit + lobby_screens = list() //CHOMPStation Edit - CHOMPStation image + id_hud_icons = 'icons/mob/hud_jobs_vr.dmi' //CHOMPStation Edit - Job icons for off-duty/exploration + + zlevel_datum_type = /datum/map_z_level/runtime_station + + station_name = "NLS Southern Cross" + station_short = "Southern Cross" + dock_name = "NCS Northern Star" // Now we're the centcom! + boss_name = "Central Command" + boss_short = "Centcom" + company_name = "NanoTrasen" + company_short = "NT" + starsys_name = "Vir" + use_overmap = FALSE + + shuttle_docked_message = "The scheduled shuttle to the %dock_name% has docked with the station at docks one and two. It will depart in approximately %ETD%." + shuttle_leaving_dock = "The Crew Transfer Shuttle has left the station. Estimate %ETA% until the shuttle docks at %dock_name%." + shuttle_called_message = "A crew transfer to %dock_name% has been scheduled. The shuttle has been called. Those leaving should proceed to docks one and two in approximately %ETA%." + shuttle_recall_message = "The scheduled crew transfer has been cancelled." + emergency_shuttle_docked_message = "The Emergency Shuttle has docked with the station at docks one and two. You have approximately %ETD% to board the Emergency Shuttle." + emergency_shuttle_leaving_dock = "The Emergency Shuttle has left the station. Estimate %ETA% until the shuttle docks at %dock_name%." + emergency_shuttle_called_message = "An emergency evacuation shuttle has been called. It will arrive at docks one and two in approximately %ETA%." + emergency_shuttle_recall_message = "The emergency shuttle has been recalled." + usable_email_tlds = list("freemail.nt") + allowed_spawns = list("Arrivals Shuttle","Gateway", "Cryogenic Storage", "Cyborg Storage", "Station gateway", "Sif plains") + default_skybox = /datum/skybox_settings/southern_cross + map_levels = list( + Z_LEVEL_STATION_ONE + ) + lateload_gateway = null + +/datum/skybox_settings/southern_cross + icon_state = "dyable" + random_color = TRUE + +/datum/map_z_level/runtime_station + z = Z_LEVEL_STATION_ONE + name = "Deck 1" + base_turf = /turf/space \ No newline at end of file diff --git a/modular_chomp/maps/submaps/shelters/BrodcastingPod-11x9.dmm b/modular_chomp/maps/submaps/shelters/BrodcastingPod-11x9.dmm new file mode 100644 index 0000000000..29c647ac30 --- /dev/null +++ b/modular_chomp/maps/submaps/shelters/BrodcastingPod-11x9.dmm @@ -0,0 +1,49 @@ +"a" = (/turf/simulated/shuttle/wall,/area/survivalpod/superpose/BordcastingPod) +"c" = (/obj/machinery/light,/turf/simulated/shuttle/floor/voidcraft,/area/survivalpod/superpose/BordcastingPod) +"e" = (/obj/structure/bed/chair/bay/chair/padded/blue,/obj/structure/sign/nanotrasen{pixel_y = 27},/turf/simulated/floor/atoll,/area/survivalpod/superpose/BordcastingPod) +"g" = (/obj/structure/window/reinforced/survival_pod{dir = 4},/obj/item/device/gps/computer,/turf/simulated/shuttle/floor/voidcraft,/area/survivalpod/superpose/BordcastingPod) +"h" = (/obj/machinery/light{dir = 8},/turf/simulated/floor/atoll,/area/survivalpod/superpose/BordcastingPod) +"i" = (/obj/structure/table/alien/blue,/turf/simulated/floor/atoll,/area/survivalpod/superpose/BordcastingPod) +"k" = (/obj/machinery/door/airlock/freezer,/turf/simulated/shuttle/plating/skipjack,/area/survivalpod/superpose/BordcastingPod) +"l" = (/obj/structure/window/reinforced/survival_pod{dir = 4},/turf/simulated/shuttle/floor/voidcraft,/area/survivalpod/superpose/BordcastingPod) +"m" = (/obj/structure/fans,/turf/simulated/shuttle/floor/voidcraft,/area/survivalpod/superpose/BordcastingPod) +"o" = (/turf/simulated/shuttle/floor/voidcraft,/area/survivalpod/superpose/BordcastingPod) +"p" = (/obj/structure/table/alien/blue,/obj/item/device/radio/intercom/entertainment{pixel_y = 5},/turf/simulated/floor/atoll,/area/survivalpod/superpose/BordcastingPod) +"q" = (/obj/machinery/newscaster{pixel_y = 29},/turf/simulated/shuttle/floor/voidcraft,/area/survivalpod/superpose/BordcastingPod) +"r" = (/obj/machinery/status_display{pixel_y = 32},/turf/simulated/floor/atoll,/area/survivalpod/superpose/BordcastingPod) +"u" = (/obj/machinery/atmospherics/pipe/manifold/hidden{dir = 4},/turf/simulated/shuttle/floor/voidcraft,/area/survivalpod/superpose/BordcastingPod) +"v" = (/turf/simulated/floor/atoll,/area/survivalpod/superpose/BordcastingPod) +"w" = (/obj/structure/window/reinforced/survival_pod{dir = 8},/obj/machinery/atmospherics/unary/vent_pump{external_pressure_bound = 0; external_pressure_bound_default = 0; icon_state = "map_vent_in"; initialize_directions = 1; internal_pressure_bound = 4000; internal_pressure_bound_default = 4000; pressure_checks = 2; pressure_checks_default = 2; pump_direction = 0; use_power = 1},/turf/simulated/floor/bluegrid{name = "Server Base"; nitrogen = 500; oxygen = 0; temperature = 80},/area/survivalpod/superpose/BordcastingPod) +"x" = (/obj/structure/table/glass,/obj/item/clothing/suit/storage/vest/press,/obj/item/clothing/accessory/badge/press/independent,/obj/item/device/tvcamera,/obj/item/device/camera,/obj/item/device/camera_film,/turf/simulated/shuttle/floor/voidcraft,/area/survivalpod/superpose/BordcastingPod) +"y" = (/obj/structure/table/alien/blue,/obj/item/weapon/paper_bin,/obj/item/weapon/pen/fountain4,/turf/simulated/floor/atoll,/area/survivalpod/superpose/BordcastingPod) +"z" = (/obj/machinery/smartfridge/survival_pod,/obj/item/weapon/storage/mre/random,/obj/item/weapon/storage/mre/random,/obj/item/weapon/storage/mre/random,/obj/item/weapon/storage/mre/random,/obj/item/weapon/storage/mre/random,/obj/item/weapon/storage/mre/random,/obj/item/weapon/storage/mre/menu9,/obj/item/weapon/storage/mre/menu9,/obj/item/weapon/storage/mre/menu10,/obj/item/weapon/storage/mre/menu10,/obj/item/weapon/storage/mre/menu11,/obj/item/weapon/storage/mre/menu11,/obj/item/device/fbp_backup_cell,/obj/item/device/fbp_backup_cell,/obj/item/device/fbp_backup_cell,/obj/item/device/fbp_backup_cell,/obj/item/device/fbp_backup_cell,/obj/item/weapon/storage/pill_bottle/antitox,/obj/item/weapon/storage/box/survival/space,/obj/item/device/healthanalyzer,/obj/item/weapon/storage/pill_bottle/dice_nerd,/obj/machinery/light{dir = 1},/obj/item/weapon/storage/firstaid/regular,/obj/item/weapon/extinguisher/mini,/obj/item/weapon/extinguisher/mini,/obj/item/weapon/storage/box/survival/space,/obj/item/weapon/storage/box/survival/space,/obj/item/device/radio,/obj/item/device/radio,/obj/item/device/radio,/obj/item/device/starcaster_news,/obj/item/device/starcaster_news,/obj/item/device/threadneedle,/obj/item/device/flashlight,/obj/item/device/flashlight,/obj/item/weapon/storage/toolbox/emergency,/obj/item/weapon/storage/pill_bottle/spaceacillin,/obj/random/soap,/obj/item/weapon/material/knife/machete/hatchet,/obj/item/weapon/storage/box/flare,/turf/simulated/shuttle/floor/voidcraft,/area/survivalpod/superpose/BordcastingPod) +"A" = (/obj/machinery/ai_status_display{pixel_y = 32},/turf/simulated/floor/atoll,/area/survivalpod/superpose/BordcastingPod) +"C" = (/obj/machinery/door/window/survival_pod{dir = 2},/turf/simulated/floor/atoll,/area/survivalpod/superpose/BordcastingPod) +"D" = (/obj/machinery/telecomms/relay,/turf/simulated/floor/bluegrid{name = "Server Base"; nitrogen = 500; oxygen = 0; temperature = 80},/area/survivalpod/superpose/BordcastingPod) +"E" = (/obj/structure/window/reinforced/survival_pod{dir = 8},/obj/structure/window/reinforced/survival_pod,/obj/machinery/atmospherics/pipe/manifold/hidden{dir = 8},/turf/simulated/floor/bluegrid{name = "Server Base"; nitrogen = 500; oxygen = 0; temperature = 80},/area/survivalpod/superpose/BordcastingPod) +"F" = (/obj/structure/table/glass,/obj/item/device/camerabug,/turf/simulated/shuttle/floor/voidcraft,/area/survivalpod/superpose/BordcastingPod) +"G" = (/obj/structure/table/glass,/obj/machinery/light,/turf/simulated/shuttle/floor/voidcraft,/area/survivalpod/superpose/BordcastingPod) +"I" = (/obj/machinery/light{dir = 4},/turf/simulated/floor/atoll,/area/survivalpod/superpose/BordcastingPod) +"J" = (/obj/machinery/atmospherics/unary/freezer{icon_state = "freezer_1"; power_setting = 20; set_temperature = 73; use_power = 1},/obj/structure/window/reinforced/survival_pod{dir = 1},/turf/simulated/shuttle/floor/voidcraft,/area/survivalpod/superpose/BordcastingPod) +"L" = (/obj/structure/window/reinforced/survival_pod{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden{dir = 5},/turf/simulated/shuttle/floor/voidcraft,/area/survivalpod/superpose/BordcastingPod) +"M" = (/obj/structure/window/reinforced/survival_pod{dir = 8},/obj/structure/window/reinforced/survival_pod{dir = 4},/obj/structure/window/reinforced/survival_pod{dir = 1},/obj/structure/window/reinforced/survival_pod,/obj/structure/grille,/turf/simulated/floor/plating,/area/survivalpod/superpose/BordcastingPod) +"N" = (/obj/machinery/door/window/survival_pod{dir = 2},/obj/machinery/atmospherics/unary/vent_pump{dir = 8; icon_state = "map_vent_out"; use_power = 1},/turf/simulated/floor/bluegrid{name = "Server Base"; nitrogen = 500; oxygen = 0; temperature = 80},/area/survivalpod/superpose/BordcastingPod) +"O" = (/obj/machinery/light{dir = 8},/turf/simulated/shuttle/floor/voidcraft,/area/survivalpod/superpose/BordcastingPod) +"P" = (/obj/machinery/atmospherics/portables_connector{dir = 1},/obj/machinery/portable_atmospherics/canister/nitrogen,/turf/simulated/shuttle/floor/voidcraft,/area/survivalpod/superpose/BordcastingPod) +"Q" = (/obj/structure/table/glass,/obj/structure/closet/walllocker_double/survival/west,/obj/item/weapon/gun/energy/locked/frontier/holdout/unlocked,/obj/machinery/light{dir = 8},/turf/simulated/shuttle/floor/voidcraft,/area/survivalpod/superpose/BordcastingPod) +"R" = (/obj/structure/table/glass,/obj/machinery/power/apc/alarms_hidden{pixel_y = -20},/turf/simulated/shuttle/floor/voidcraft,/area/survivalpod/superpose/BordcastingPod) +"U" = (/obj/structure/window/reinforced/survival_pod{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden,/turf/simulated/shuttle/floor/voidcraft,/area/survivalpod/superpose/BordcastingPod) +"W" = (/obj/machinery/camera{dir = 1},/turf/simulated/floor/atoll,/area/survivalpod/superpose/BordcastingPod) +"Y" = (/obj/machinery/computer/security/telescreen/entertainment{pixel_y = 28},/turf/simulated/shuttle/floor/voidcraft,/area/survivalpod/superpose/BordcastingPod) + +(1,1,1) = {" +aaaaaaaaaaa +amgvAervwDa +azlhpiyIENa +aOlvvvvvUoa +MxlhvWvIUJM +aQlCaaaCLua +MoooYoqooPM +aoocoGFRooa +aakaMaMaMaa +"} diff --git a/modular_chomp/maps/submaps/shelters/DemonPoolV2-43x28.dmm b/modular_chomp/maps/submaps/shelters/DemonPoolV2-43x28.dmm new file mode 100644 index 0000000000..5a007ed692 --- /dev/null +++ b/modular_chomp/maps/submaps/shelters/DemonPoolV2-43x28.dmm @@ -0,0 +1,79 @@ +"a" = (/turf/simulated/gore,/area/survivalpod/superpose/DemonPoolV2) +"b" = (/obj/structure/cult/talisman,/turf/simulated/floor/wood/alt{color = "red"},/area/survivalpod/superpose/DemonPoolV2) +"c" = (/turf/simulated/floor/gorefloor,/area/survivalpod/superpose/DemonPoolV2) +"d" = (/obj/structure/closet/crate,/obj/fiftyspawner/glass,/obj/fiftyspawner/glass,/obj/fiftyspawner/glass,/obj/fiftyspawner/glass,/obj/fiftyspawner/glass,/obj/fiftyspawner/steel,/obj/fiftyspawner/steel,/obj/fiftyspawner/steel,/obj/fiftyspawner/steel,/obj/fiftyspawner/steel,/obj/fiftyspawner/plastic,/obj/fiftyspawner/plastic,/obj/fiftyspawner/plastic,/obj/fiftyspawner/plastic,/obj/fiftyspawner/plastic,/turf/simulated/floor/cult,/area/survivalpod/superpose/DemonPoolV2) +"e" = (/obj/structure/simple_door/cult,/turf/simulated/floor/cult,/area/survivalpod/superpose/DemonPoolV2) +"f" = (/obj/effect/rune,/turf/simulated/floor/wood/alt{color = "red"},/area/survivalpod/superpose/DemonPoolV2) +"g" = (/obj/structure/closet/crate,/obj/fiftyspawner/wood,/obj/fiftyspawner/wood,/obj/fiftyspawner/wood/sif,/obj/fiftyspawner/wood/sif,/obj/fiftyspawner/turcarpet,/obj/fiftyspawner/tealcarpet,/obj/fiftyspawner/sblucarpet,/obj/fiftyspawner/purcarpet,/obj/fiftyspawner/oracarpet,/obj/fiftyspawner/blucarpet,/obj/fiftyspawner/marble,/obj/item/weapon/storage/briefcase/inflatable,/obj/item/weapon/storage/briefcase/inflatable,/obj/item/weapon/storage/briefcase/inflatable,/obj/fiftyspawner/cardboard,/obj/fiftyspawner/cardboard,/turf/simulated/floor/cult,/area/survivalpod/superpose/DemonPoolV2) +"h" = (/turf/simulated/floor/cult,/area/survivalpod/superpose/DemonPoolV2) +"i" = (/obj/structure/cult/tome,/turf/simulated/floor/wood/alt{color = "red"},/area/survivalpod/superpose/DemonPoolV2) +"j" = (/obj/structure/table/fancyblack,/obj/item/trash/plate,/obj/item/organ/internal/heart,/obj/machinery/light/floortube/flicker{dir = 8; pixel_x = 5},/turf/simulated/floor/wood/alt{color = "red"},/area/survivalpod/superpose/DemonPoolV2) +"k" = (/obj/structure/cult/pylon,/turf/simulated/floor/cult,/area/survivalpod/superpose/DemonPoolV2) +"l" = (/obj/item/weapon/bone/ribs,/turf/simulated/floor/lava,/area/survivalpod/superpose/DemonPoolV2) +"m" = (/obj/structure/loot_pile/surface/bones,/turf/simulated/floor/gorefloor2,/area/survivalpod/superpose/DemonPoolV2) +"n" = (/obj/structure/cult/pylon,/turf/simulated/floor/gorefloor2,/area/survivalpod/superpose/DemonPoolV2) +"o" = (/turf/template_noop,/area/survivalpod/superpose/DemonPoolV2) +"p" = (/obj/structure/constructshell/cult,/turf/simulated/floor/cult,/area/survivalpod/superpose/DemonPoolV2) +"q" = (/obj/structure/cult/pylon,/turf/simulated/floor/wood/alt{color = "red"},/area/survivalpod/superpose/DemonPoolV2) +"r" = (/obj/structure/grille/broken/cult,/turf/simulated/floor/gorefloor,/area/survivalpod/superpose/DemonPoolV2) +"t" = (/obj/structure/bed/chair/comfy/black{dir = 8},/turf/simulated/floor/wood/alt{color = "red"},/area/survivalpod/superpose/DemonPoolV2) +"v" = (/obj/effect/map_effect/interval/sound_emitter/punching,/obj/effect/map_effect/interval/effect_emitter/smoke/fire,/turf/simulated/floor/lava,/area/survivalpod/superpose/DemonPoolV2) +"w" = (/turf/simulated/wall/solidrock,/area/survivalpod/superpose/DemonPoolV2) +"x" = (/obj/structure/bed/double/padded,/obj/item/weapon/bedsheet/browndouble,/turf/simulated/floor/carpet/gaycarpet,/area/survivalpod/superpose/DemonPoolV2) +"y" = (/obj/structure/girder/cult,/turf/simulated/floor/gorefloor,/area/survivalpod/superpose/DemonPoolV2) +"z" = (/obj/structure/girder/cult,/turf/simulated/floor/gorefloor2,/area/survivalpod/superpose/DemonPoolV2) +"A" = (/obj/effect/map_effect/interval/effect_emitter/smoke/fire,/turf/simulated/floor/lava,/area/survivalpod/superpose/DemonPoolV2) +"B" = (/obj/structure/grille/cult,/turf/simulated/floor/cult,/area/survivalpod/superpose/DemonPoolV2) +"C" = (/obj/machinery/crystal/lava,/turf/simulated/floor/lava,/area/survivalpod/superpose/DemonPoolV2) +"D" = (/obj/structure/table/hardwoodtable,/obj/item/weapon/flame/candle/candelabra/everburn{pixel_y = 9},/turf/simulated/floor/wood/alt{color = "red"},/area/survivalpod/superpose/DemonPoolV2) +"E" = (/turf/simulated/wall/cult,/area/survivalpod/superpose/DemonPoolV2) +"F" = (/obj/structure/bed/chair/comfy/black{dir = 4},/turf/simulated/floor/wood/alt{color = "red"},/area/survivalpod/superpose/DemonPoolV2) +"G" = (/obj/structure/closet/crate,/obj/fiftyspawner/plasteel,/obj/fiftyspawner/plasteel,/obj/fiftyspawner/phoronrglass,/obj/fiftyspawner/phoronrglass,/obj/item/stack/material/lead{amount = 50},/obj/item/stack/material/lead{amount = 50},/obj/fiftyspawner/gold,/obj/fiftyspawner/phoron,/turf/simulated/floor/gorefloor2,/area/survivalpod/superpose/DemonPoolV2) +"I" = (/turf/simulated/goreeyes,/area/survivalpod/superpose/DemonPoolV2) +"J" = (/turf/simulated/floor/gorefloor2,/area/survivalpod/superpose/DemonPoolV2) +"K" = (/obj/item/clothing/shoes/cult,/obj/item/clothing/suit/cultrobes/alt,/obj/item/clothing/head/helmet/space/cult,/obj/item/clothing/shoes/cult,/obj/item/clothing/suit/cultrobes/alt,/obj/item/clothing/head/helmet/space/cult,/obj/item/weapon/storage/backpack/cultpack,/obj/item/weapon/storage/backpack/cultpack,/obj/structure/closet/cabinet,/turf/simulated/floor/wood/alt{color = "red"},/area/survivalpod/superpose/DemonPoolV2) +"M" = (/obj/structure/grille/broken/cult,/turf/simulated/floor/gorefloor2,/area/survivalpod/superpose/DemonPoolV2) +"N" = (/obj/structure/bed/double/padded,/obj/item/weapon/bedsheet/purpledouble,/turf/simulated/floor/carpet/gaycarpet,/area/survivalpod/superpose/DemonPoolV2) +"O" = (/obj/item/weapon/storage/backpack/messenger,/obj/item/weapon/reagent_containers/food/drinks/cans/waterbottle,/obj/item/weapon/reagent_containers/food/drinks/cans/waterbottle,/obj/item/weapon/material/knife/tacknife/survival,/obj/item/weapon/reagent_containers/food/snacks/sosjerky,/obj/item/weapon/cell/device/hyper,/obj/item/weapon/reagent_containers/hypospray/autoinjector/trauma,/obj/item/weapon/reagent_containers/hypospray/autoinjector/oxy,/obj/item/weapon/flame/lighter/random,/obj/item/weapon/storage/box/survival/space,/obj/item/device/radio,/obj/item/clothing/accessory/storage/black_drop_pouches,/obj/item/weapon/reagent_containers/pill/dylovene,/obj/item/weapon/reagent_containers/pill/dylovene,/obj/item/device/flashlight/maglight,/obj/item/device/flashlight/flare,/obj/item/device/flashlight/flare,/obj/random/soap,/obj/item/weapon/gun/energy/locked/frontier/holdout/unlocked,/obj/item/device/fbp_backup_cell,/obj/item/device/pda,/obj/item/weapon/storage/mre/menu11,/obj/item/weapon/storage/mre/menu11,/obj/item/device/starcaster_news,/obj/effect/floor_decal/spline/fancy/wood{dir = 4},/obj/item/device/suit_cooling_unit/emergency,/obj/item/device/gps,/obj/structure/closet{name = "Survival closet"},/turf/simulated/floor/cult,/area/survivalpod/superpose/DemonPoolV2) +"P" = (/turf/simulated/floor/carpet/gaycarpet,/area/survivalpod/superpose/DemonPoolV2) +"Q" = (/turf/simulated/floor/flesh/colour{color = red},/area/survivalpod/superpose/DemonPoolV2) +"R" = (/obj/effect/decal/remains/deer,/turf/simulated/floor/gorefloor2,/area/survivalpod/superpose/DemonPoolV2) +"S" = (/obj/structure/simple_door/cult,/turf/simulated/floor/gorefloor2,/area/survivalpod/superpose/DemonPoolV2) +"T" = (/obj/random/pottedplant,/obj/structure/window/reinforced/survival_pod{dir = 1; opacity = 1},/obj/structure/curtain/black,/turf/simulated/floor/cult,/area/survivalpod/superpose/DemonPoolV2) +"U" = (/obj/structure/grille/cult,/turf/simulated/floor/lava,/area/survivalpod/superpose/DemonPoolV2) +"V" = (/obj/effect/gibspawner/human,/turf/simulated/floor/gorefloor2,/area/survivalpod/superpose/DemonPoolV2) +"W" = (/turf/simulated/floor/wood/alt{color = "red"},/area/survivalpod/superpose/DemonPoolV2) +"X" = (/obj/structure/closet/cabinet,/obj/random/curseditem,/obj/random/curseditem,/obj/item/weapon/melee/cursedblade,/obj/item/weapon/melee/cultblade,/obj/item/weapon/beartrap/hunting,/obj/item/weapon/beartrap/hunting,/obj/item/stack/material/phoron{amount = 25},/obj/item/stack/material/phoron{amount = 25},/obj/item/device/soulstone,/obj/item/device/soulstone,/obj/item/weapon/storage/belt/soulstone/full,/turf/simulated/floor/wood/alt{color = "red"},/area/survivalpod/superpose/DemonPoolV2) +"Y" = (/turf/simulated/floor/lava,/area/survivalpod/superpose/DemonPoolV2) +"Z" = (/obj/effect/rune,/obj/item/weapon/cat_box/black,/turf/simulated/floor/cult,/area/survivalpod/superpose/DemonPoolV2) + +(1,1,1) = {" +owwwoowowowwwwwwwoowoowowwwowwwoowwwwooowoo +wwwawwawawaaaaaaawwawwEwaaawaaawwaaaawwwawo +owaaaaaaaaaaYYJJaaaaaaaaaEaaaaaaaUUaYaaaaaw +wwaaJJJJJaaaYJJnJJJaaaaInJJJJJJccccUYYYCEaw +wwaaJJYYJJJaJJJJJJJJaaJJJJpcpcpcpcpcykyYAaw +wwaaJYYYYJJIJJcccJJJVaJcchhhhhhhhhhhhZkYaaw +owwaYYvlYJJJyQQQQcRJJIccQcpJpJpcpcpcykyYawo +owwaYYYYYJJcQQccQQcJJJcQcJJJmJJJcccUYYYCaaw +wwwaJYYYVJMcQcJJyQcJJJcccJVIaIIIUUUUYYYYaaw +owwaJJJJJRcQQcJVJQQcJccQJJJJJJJIIaIaaYYYawo +owwaJJJJJJcQccJJJcQcccQQcccccccccJJGaaYYaaw +oowaaaaIJcQQcJJIJcQzcQcJQQQccQQcQJJJJYYYYaw +oowaaaaJJcQczJJrJcQQQccJcccccJcJQQcJJJAYaaw +owaaaaJJJQQcJJJIJccQQcEEEBEEeEBEEQcQJJYYawo +wwaaaJJJzQccJJmaJJcQccEOhhEhhKDKEEJQcJJJawo +wwaaJJJccQccJJaaJJcQccEhhhEhhWWWiEcczJJJawo +wwaJJJJETeTEJaaaJJyQQcEEhhehkfqWbBcQccJJawo +owaJJJJEhhhEEEaaJJJQQccEhhEhhWWWiEJQQcRJawo +owaJEEEEWWWPNEaaJJJcQQcEEBEEBEEBEEJQQcJaaaw +owaJEdgEDWWPxEaaJJRJcQQQcJccccJJcJcQQcJaaaw +owwaEhheWWWWWEaaJJJJVJcyQQQQQQQycQQQccJJaaw +owwaEhhEXFjjtEaaaaaIJJJJcJQQccQQQQcJJJJJaaw +oowaEEEEEEEEEEaaaaaaaJJJJJEccJccccJJJJJaawo +oowwaaaaaaaaaaaaaaaawJJJJaaJEJJJMEJJJIaaawo +ooowaaaaaaaaaaaaawwwwSSwaaaaaaaaaaaaaaaaawo +oooowwwwwwwwwwwwwwwwooowwwwaaawwwaawwwwwawo +ooooowwoooowwwwwwowwoooowwwwwwwowwwwoooowoo +oooooooooooowwooooowooooowooooooooooooooooo +"} diff --git a/modular_chomp/maps/submaps/shelters/HillOutpost-15x11.dmm b/modular_chomp/maps/submaps/shelters/HillOutpost-15x11.dmm new file mode 100644 index 0000000000..3078965b45 --- /dev/null +++ b/modular_chomp/maps/submaps/shelters/HillOutpost-15x11.dmm @@ -0,0 +1,51 @@ +"a" = (/turf/simulated/floor/outdoors/rocks,/area/survivalpod/superpose/HillOutpost) +"b" = (/obj/structure/cliff/automatic{dir = 2},/obj/structure/railing/grey,/turf/simulated/floor/outdoors/dirt,/area/survivalpod/superpose/HillOutpost) +"c" = (/turf/simulated/floor/outdoors/dirt,/area/survivalpod/superpose/HillOutpost) +"d" = (/obj/structure/cliff/automatic{dir = 5},/obj/structure/railing/grey{dir = 1},/obj/structure/railing/grey{dir = 4},/turf/simulated/floor/outdoors/dirt,/area/survivalpod/superpose/HillOutpost) +"g" = (/turf/template_noop,/area/survivalpod/superpose/HillOutpost) +"h" = (/obj/structure/bonfire/sifwood,/turf/simulated/floor/outdoors/rocks,/area/survivalpod/superpose/HillOutpost) +"j" = (/obj/structure/cliff/automatic{dir = 4},/turf/simulated/floor/outdoors/dirt,/area/survivalpod/superpose/HillOutpost) +"k" = (/obj/structure/bed/chair{dir = 1},/turf/simulated/floor/outdoors/rocks,/area/survivalpod/superpose/HillOutpost) +"l" = (/obj/structure/cliff/automatic{dir = 2},/turf/simulated/floor/outdoors/dirt,/area/survivalpod/superpose/HillOutpost) +"m" = (/obj/structure/bed/chair{dir = 4},/turf/simulated/floor/outdoors/rocks,/area/survivalpod/superpose/HillOutpost) +"o" = (/obj/structure/ledge/ledge_stairs,/obj/structure/railing/grey{dir = 8},/turf/simulated/floor/outdoors/rocks,/area/survivalpod/superpose/HillOutpost) +"p" = (/obj/structure/cliff/automatic/corner,/turf/simulated/floor/outdoors/dirt,/area/survivalpod/superpose/HillOutpost) +"q" = (/obj/structure/railing/grey{dir = 4},/obj/structure/cliff/automatic{dir = 6},/turf/simulated/floor/outdoors/dirt,/area/survivalpod/superpose/HillOutpost) +"r" = (/obj/structure/cliff/automatic{dir = 8},/obj/structure/railing/grey{dir = 8},/turf/simulated/floor/outdoors/dirt,/area/survivalpod/superpose/HillOutpost) +"t" = (/obj/structure/railing/grey{dir = 8},/obj/machinery/autolathe,/turf/simulated/floor/outdoors/rocks,/area/survivalpod/superpose/HillOutpost) +"u" = (/obj/structure/railing/grey,/obj/structure/closet/secure_closet/guncabinet,/obj/item/weapon/gun/projectile/SVD,/obj/item/ammo_magazine/m762svd,/obj/item/ammo_magazine/m762svd,/turf/simulated/floor/outdoors/rocks,/area/survivalpod/superpose/HillOutpost) +"x" = (/obj/structure/cliff/automatic/corner{dir = 10},/turf/simulated/floor/outdoors/dirt,/area/survivalpod/superpose/HillOutpost) +"y" = (/obj/structure/cliff/automatic/ramp{dir = 9},/obj/structure/railing/grey{dir = 8},/turf/simulated/floor/outdoors/dirt,/area/survivalpod/superpose/HillOutpost) +"z" = (/obj/machinery/power/apc/alarms_hidden{dir = 1; pixel_y = 20},/turf/simulated/floor/outdoors/rocks,/area/survivalpod/superpose/HillOutpost) +"A" = (/obj/structure/railing/grey{dir = 8},/obj/structure/cliff/automatic{dir = 8},/turf/simulated/floor/outdoors/dirt,/area/survivalpod/superpose/HillOutpost) +"D" = (/obj/structure/table/sifwooden_reinforced,/obj/item/device/binoculars,/obj/item/device/bluespaceradio/southerncross_prelinked,/turf/simulated/floor/outdoors/rocks,/area/survivalpod/superpose/HillOutpost) +"E" = (/obj/structure/railing/grey{dir = 8},/turf/simulated/floor/outdoors/dirt,/area/survivalpod/superpose/HillOutpost) +"G" = (/obj/structure/railing/grey{dir = 1},/obj/item/device/gps/computer,/turf/simulated/floor/outdoors/rocks,/area/survivalpod/superpose/HillOutpost) +"J" = (/obj/structure/bed/chair{dir = 8},/turf/simulated/floor/outdoors/rocks,/area/survivalpod/superpose/HillOutpost) +"K" = (/turf/simulated/wall/wood,/area/survivalpod/superpose/HillOutpost) +"L" = (/obj/structure/cliff/automatic/corner{dir = 6},/turf/simulated/floor/outdoors/dirt,/area/survivalpod/superpose/HillOutpost) +"M" = (/obj/structure/cliff/automatic,/obj/structure/railing/grey{dir = 1},/turf/simulated/floor/outdoors/dirt,/area/survivalpod/superpose/HillOutpost) +"N" = (/obj/structure/cliff/automatic/corner{dir = 9},/obj/structure/railing/grey{dir = 8},/turf/simulated/floor/outdoors/dirt,/area/survivalpod/superpose/HillOutpost) +"O" = (/obj/structure/bed/chair,/turf/simulated/floor/outdoors/rocks,/area/survivalpod/superpose/HillOutpost) +"P" = (/obj/structure/railing/grey,/obj/structure/cliff/automatic{dir = 2},/turf/simulated/floor/outdoors/dirt,/area/survivalpod/superpose/HillOutpost) +"Q" = (/obj/structure/cliff/automatic/corner{dir = 9},/turf/simulated/floor/outdoors/dirt,/area/survivalpod/superpose/HillOutpost) +"R" = (/obj/structure/cliff/automatic,/turf/simulated/floor/outdoors/dirt,/area/survivalpod/superpose/HillOutpost) +"S" = (/obj/structure/railing/grey{dir = 8},/obj/structure/table/sifwooden_reinforced,/obj/fiftyspawner/steel,/obj/fiftyspawner/glass,/turf/simulated/floor/outdoors/rocks,/area/survivalpod/superpose/HillOutpost) +"U" = (/obj/machinery/smartfridge/survival_pod,/obj/item/weapon/storage/mre/random,/obj/item/weapon/storage/mre/random,/obj/item/weapon/storage/mre/random,/obj/item/weapon/storage/mre/random,/obj/item/weapon/storage/mre/random,/obj/item/weapon/storage/mre/random,/obj/item/weapon/storage/mre/menu9,/obj/item/weapon/storage/mre/menu9,/obj/item/weapon/storage/mre/menu10,/obj/item/weapon/storage/mre/menu10,/obj/item/weapon/storage/mre/menu11,/obj/item/weapon/storage/mre/menu11,/obj/item/device/fbp_backup_cell,/obj/item/device/fbp_backup_cell,/obj/item/device/fbp_backup_cell,/obj/item/device/fbp_backup_cell,/obj/item/device/fbp_backup_cell,/obj/item/weapon/storage/pill_bottle/antitox,/obj/item/weapon/storage/box/survival/space,/obj/item/device/healthanalyzer,/obj/item/weapon/storage/pill_bottle/dice_nerd,/obj/machinery/light{dir = 1},/obj/item/weapon/storage/firstaid/regular,/obj/item/weapon/extinguisher/mini,/obj/item/weapon/extinguisher/mini,/obj/item/weapon/storage/box/survival/space,/obj/item/weapon/storage/box/survival/space,/obj/item/device/radio,/obj/item/device/radio,/obj/item/device/radio,/obj/item/device/starcaster_news,/obj/item/device/starcaster_news,/obj/item/device/threadneedle,/obj/item/device/flashlight,/obj/item/device/flashlight,/obj/item/weapon/storage/toolbox/emergency,/obj/item/weapon/storage/pill_bottle/spaceacillin,/obj/random/soap,/obj/item/weapon/material/knife/machete/hatchet,/obj/item/weapon/storage/box/flare,/turf/simulated/shuttle/floor/voidcraft/dark,/area/survivalpod/superpose/HillOutpost) +"W" = (/obj/structure/railing/grey{dir = 1},/obj/structure/cliff/automatic,/turf/simulated/floor/outdoors/dirt,/area/survivalpod/superpose/HillOutpost) +"X" = (/obj/structure/cliff/automatic{dir = 4},/obj/structure/railing/grey{dir = 4},/turf/simulated/floor/outdoors/dirt,/area/survivalpod/superpose/HillOutpost) +"Y" = (/obj/structure/railing/grey,/obj/structure/railing/grey{dir = 8},/obj/structure/cliff/automatic{dir = 10},/turf/simulated/floor/outdoors/dirt,/area/survivalpod/superpose/HillOutpost) + +(1,1,1) = {" +gcccLPPPxccccgg +cLllqDkaYPbbbxg +cjKGKaaaaaaaarg +cjSazaaaaaOaaNg +cjtaaaaaamhJaEc +cjKuKUaaaaJaaoy +gpRRRWWMdaaaaoA +gcccccccXaaaaoA +ggggccccXaaaaaA +gggggcccpMMMMWQ +ggggggccccccggg +"} diff --git a/modular_chomp/maps/submaps/shelters/LargeAlienShip-57x25.dmm b/modular_chomp/maps/submaps/shelters/LargeAlienShip-57x25.dmm index 1c0bb8e7d7..e144c34644 100644 --- a/modular_chomp/maps/submaps/shelters/LargeAlienShip-57x25.dmm +++ b/modular_chomp/maps/submaps/shelters/LargeAlienShip-57x25.dmm @@ -81,7 +81,7 @@ "oh" = (/obj/structure/prop/alien/pod/open,/obj/random/maintenance/cargo,/obj/random/maintenance/cargo,/obj/random/maintenance/cargo,/obj/random/maintenance/cargo,/obj/random/maintenance/cargo,/obj/random/maintenance/cargo,/turf/simulated/floor,/area/survivalpod/superpose/LargeAlienShip) "oi" = (/obj/effect/floor_decal/industrial/outline/yellow,/obj/machinery/power/smes/buildable{icon = 'icons/obj/alien_smes.dmi'; icon_state = "unit"; input_level = 950000; name = "Alien Royal Capacitor"; output_level = 950000},/obj/structure/cable/cyan,/turf/simulated/floor,/area/survivalpod/superpose/LargeAlienShip) "op" = (/obj/structure/window/reinforced/survival_pod{dir = 10},/turf/simulated/floor/tiled/freezer,/area/survivalpod/superpose/LargeAlienShip) -"oI" = (/obj/effect/floor_decal/techfloor,/obj/machinery/vending/deluxe_dinner{req_access = null; req_log_access = null},/turf/simulated/floor/wood/sif,/area/survivalpod/superpose/LargeAlienShip) +"oI" = (/obj/effect/floor_decal/techfloor,/obj/machinery/vending/fooddessert,/turf/simulated/floor/wood/sif,/area/survivalpod/superpose/LargeAlienShip) "oM" = (/obj/effect/floor_decal/techfloor,/obj/machinery/atmospherics/pipe/manifold/hidden,/turf/simulated/floor,/area/survivalpod/superpose/LargeAlienShip) "oR" = (/obj/structure/table/darkglass,/obj/random/maintenance/security,/obj/random/maintenance/security,/turf/simulated/shuttle/floor/alienplating,/area/survivalpod/superpose/LargeAlienShip) "ph" = (/obj/machinery/power/generator{anchored = 1; dir = 4},/obj/effect/floor_decal/industrial/outline/yellow,/turf/simulated/floor,/area/survivalpod/superpose/LargeAlienShip) @@ -139,7 +139,7 @@ "AO" = (/obj/structure/grille/cult{name = "Alien grille"},/obj/structure/window/phoronreinforced/full,/obj/structure/window/phoronreinforced{dir = 4},/obj/structure/window/phoronreinforced,/obj/structure/window/phoronreinforced{dir = 1},/obj/machinery/door/blast/regular{dir = 4; id = "ReactorBlastAlien"; layer = 3.3; name = "Reactor Blast Door"},/obj/structure/fans/hardlight,/turf/simulated/shuttle/floor/voidcraft,/area/survivalpod/superpose/LargeAlienShip) "AP" = (/obj/machinery/vending/medical{dir = 4; emagged = 1; pixel_x = 5; req_access = list(777)},/turf/simulated/shuttle/floor/white,/area/survivalpod/superpose/LargeAlienShip) "AS" = (/obj/effect/floor_decal/techfloor{dir = 9},/turf/simulated/shuttle/floor/alienplating,/area/survivalpod/superpose/LargeAlienShip) -"Bd" = (/obj/machinery/vending/deluxe_boozeomat{req_access = null; req_log_access = null},/turf/simulated/floor/tiled/techfloor,/area/survivalpod/superpose/LargeAlienShip) +"Bd" = (/obj/machinery/vending/hotfood,/turf/simulated/floor/tiled/techfloor,/area/survivalpod/superpose/LargeAlienShip) "Bf" = (/obj/effect/floor_decal/techfloor{dir = 4},/turf/simulated/floor/tiled/techmaint,/area/survivalpod/superpose/LargeAlienShip) "Bh" = (/obj/structure/prop/alien/pod/open,/obj/effect/floor_decal/industrial/warning{dir = 4},/obj/random/maintenance/cargo,/obj/random/maintenance/cargo,/obj/random/maintenance/cargo,/obj/random/maintenance/cargo,/turf/simulated/floor,/area/survivalpod/superpose/LargeAlienShip) "BE" = (/obj/structure/prop/alien/pod/hybrid,/obj/structure/window/reinforced/survival_pod{dir = 8},/turf/simulated/floor/bluegrid{name = "Server Base"; nitrogen = 500; oxygen = 0; temperature = 80},/area/survivalpod/superpose/LargeAlienShip) @@ -214,7 +214,7 @@ "Tx" = (/obj/effect/floor_decal/techfloor{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4},/obj/machinery/meter,/turf/simulated/floor,/area/survivalpod/superpose/LargeAlienShip) "TK" = (/turf/simulated/floor/carpet/gaycarpet,/area/survivalpod/superpose/LargeAlienShip) "TL" = (/obj/effect/floor_decal/techfloor,/turf/simulated/shuttle/floor/alien,/area/survivalpod/superpose/LargeAlienShip) -"Um" = (/turf/simulated/shuttle/floor/white,/area/template_noop) +"Um" = (/obj/effect/fusion_em_field,/turf/simulated/floor/reinforced/nitrogen{nitrogen = 82.1472},/area/survivalpod/superpose/LargeAlienShip) "Un" = (/obj/structure/closet/alien,/obj/item/clothing/suit/space/void/autolok,/obj/item/clothing/suit/space/void/autolok,/obj/item/weapon/tank/emergency/oxygen/double,/obj/item/weapon/tank/emergency/oxygen/double,/obj/item/weapon/storage/toolbox/emergency,/obj/effect/floor_decal/techfloor,/turf/simulated/floor/tiled/techmaint,/area/survivalpod/superpose/LargeAlienShip) "Uu" = (/obj/machinery/atmospherics/unary/engine/biggest{dir = 4},/turf/template_noop,/area/template_noop) "UI" = (/turf/simulated/floor/wood/sif,/area/survivalpod/superpose/LargeAlienShip) @@ -261,14 +261,14 @@ CObiWTGQzIVRNPNPVRNPNPNPNPVRFUgWbmbmbmbmbmbmbmbmbmbmbmbmGQGQgWGQGQGQgWGQGQGQgWGQ UubiWTGQzINPVkNPNPNPNPNPVkNPFUGQCSCSCSCSCSCSCSTLTLTLTLSYGQDFqQBEGQUIUIeBGQUIUIeBGQUIUIeBGQbmbmGQbmXvNYGQfmdxPTGQSS COGQGQGQzINPNPlpYwGdAOlpNPNPFUjgkVyIyIyIyIcXNPNPNPNPNPFUGQfAyvJDGQqCKcAjGQqCfckSGQqCXvvgGQbmbmGQmGbmbmGQKSjrNmPiGQ CObiWTGQZQNPNPdZbcPLbcdbNPVRrLfiBfEpVSexQHQiNPSSSSSSNPrLGQatdSatGQzuKciwGQyifcrIGQyiXvNYGQCSCSfiCSCSCSgWCSCSZQtdfi -CObiWTGQNPNPNPLhPLgtPLkGNPNPNPPRBfiQbvXAdCQiNPxCbwxCNPNPGQGQGQGQGQGQGQGQGQGQGQGQGQGQGQGQGQNPNPPRNPNPDXGQjmNPNPVPPR +CObiWTGQNPNPNPLhUmgtUmkGNPNPNPPRBfiQbvXAdCQiNPxCbwxCNPNPGQGQGQGQGQGQGQGQGQGQGQGQGQGQGQGQGQNPNPPRNPNPDXGQjmNPNPVPPR UubiWTGQaJVRNPpqbcPLbcaGNPNPASnxBfyYzczcuTQiNPSSSSSSNPASGQXCABALGQJUkqIyGQzuTKWQGQxTKciwGQjrjrnxasasasgWjrjraJtdnx COGQGQGQzINPNPlpYwdsAOlpMfNPFUjgKBMdMdMdMdiMNPNPNPNPNPFUGQjhyPmvGQGCeTtxGQvQTKEeGQvQKcAjGQbmbmGQVtWTWTGQpCCSJBnvGQ CObiWTGQzINPVkNPNPNPNPNPVkNPFUGQjrjrjrjrjrjrjrFmFmFmFmbpGQIOFmIOGQyMlbtfGQUIUIeBGQUIUIeBGQbmbmGQboWTboGQcByassGQSS CObiWTGQzIVRNPNPNPNPVRNPNPVRFUgWbmbmbmbmbmbmbmbmbmbmbmbmGQGQgWGQGQMdMdMdGQGQgWGQGQGQgWGQGQbmbmGQboseboGQGQwDGQSSCO UubiWTGQSSjrjrjrjrjrjrjrjrjrSSGQbmbmGQGQIrbHTriyGQGQqQbmbmbmbmbmbmbmbmbmbmbmbmbmbmbmbmbmbmbmqQGQboWTboGQSSCOCOCOCO COGQGQGQGQpiGQvVjWjWjWDJGQCYGQGQbmbmGQSpyIyITiyIUnGQSSHXbmbmbmbmbmbmbmbmbmbmbmbmbmbmbmbmbmHXSSGQGQGQGQSSCOCOCOCOCO -COCOCOSSGQKohVuQuQuQuQuQhVKohVjgbmbmgWdededeUmUmUmDnGQGQgWwDGQGQGQGQgWGQGQGQgWGQGQGQSdGQGQGQGQSSCOCOCOCOCOCOCOCOCO +COCOCOSSGQKohVuQuQuQuQuQhVKohVjgbmbmgWdedededededeDnGQGQgWwDGQGQGQGQgWGQGQGQgWGQGQGQSdGQGQGQGQSSCOCOCOCOCOCOCOCOCO COCOCOWTGQWTWTuUXcXcXcfKWTWTWTgWbmqQGQDAdedededeAPGQSSCOCOCOGQkOkOXkVkYAGQqYVkmTGQnjPBLaFZGQSSCOCOCOCOCOCOCOCOCOCO COCOCOWTGQnCrxlJKTlJKTfrzHJtVFGQHXSSGQSSWJpuaHZpGQSSCOCOCOGQGQdBdBTxdBgcGQPFFmjZGQPBPBGHGQGQCOCOCOCOCOCOCOCOCOCOCO COUuCOWTGQuIPyqeaophdzoiwrJtVFGQGQSSCOGQGQwDmyGQSSCOCOCOCOWTGQcLcLWTcLcLGQhRqQXgGQQeopVwGQSSCOCOCOCOCOCOCOCOCOCOCO diff --git a/modular_chomp/maps/submaps/shelters/PirateShip-13x30.dmm b/modular_chomp/maps/submaps/shelters/PirateShip-13x30.dmm new file mode 100644 index 0000000000..088c147e61 --- /dev/null +++ b/modular_chomp/maps/submaps/shelters/PirateShip-13x30.dmm @@ -0,0 +1,108 @@ +"ao" = (/turf/simulated/shuttle/wall/dark/hard_corner,/area/survivalpod/superpose/PirateShip) +"aH" = (/obj/effect/floor_decal/industrial/danger/corner{dir = 1},/turf/simulated/floor/tiled,/area/survivalpod/superpose/PirateShip) +"bh" = (/obj/structure/salvageable/console_broken_os{dir = 8},/obj/machinery/light{dir = 4},/turf/simulated/floor/tiled,/area/survivalpod/superpose/PirateShip) +"bZ" = (/obj/structure/sign/flag/pirate,/turf/simulated/shuttle/wall/dark/hard_corner,/area/survivalpod/superpose/PirateShip) +"cc" = (/obj/machinery/light{dir = 8; layer = 3},/turf/simulated/shuttle/plating/skipjack,/area/survivalpod/superpose/PirateShip) +"cf" = (/turf/template_noop,/area/template_noop) +"cB" = (/obj/machinery/power/apc/alarms_hidden{pixel_y = -28},/turf/simulated/floor/wood,/area/survivalpod/superpose/PirateShip) +"dc" = (/obj/effect/floor_decal/steeldecal/steel_decals_central6{dir = 4},/turf/simulated/floor/tiled,/area/survivalpod/superpose/PirateShip) +"dr" = (/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/manifold/visible{dir = 4},/obj/machinery/door/airlock/glass_external/public,/turf/simulated/floor/tiled/dark,/area/survivalpod/superpose/PirateShip) +"eb" = (/obj/machinery/disperser/middle{dir = 4},/turf/simulated/shuttle/wall/dark,/area/survivalpod/superpose/PirateShip) +"fd" = (/obj/structure/bed,/obj/item/weapon/bedsheet/pirate,/turf/simulated/floor/wood,/area/survivalpod/superpose/PirateShip) +"fh" = (/obj/machinery/power/generator,/turf/simulated/shuttle/plating/skipjack,/area/survivalpod/superpose/PirateShip) +"fQ" = (/obj/machinery/light{dir = 8; layer = 3},/turf/simulated/floor/tiled,/area/survivalpod/superpose/PirateShip) +"gg" = (/obj/structure/railing/grey,/turf/simulated/floor/tiled/dark,/area/survivalpod/superpose/PirateShip) +"gR" = (/obj/machinery/disperser/front{dir = 4},/turf/template_noop,/area/template_noop) +"ha" = (/obj/machinery/atmospherics/unary/vent_pump/high_volume{dir = 4},/turf/simulated/floor/tiled/dark,/area/survivalpod/superpose/PirateShip) +"hM" = (/obj/machinery/disperser/middle{dir = 8},/turf/simulated/shuttle/wall/dark,/area/survivalpod/superpose/PirateShip) +"iP" = (/obj/structure/shuttle/engine/propulsion{dir = 1},/turf/simulated/shuttle/plating,/area/survivalpod/superpose/PirateShip) +"iY" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock,/turf/simulated/floor/wood,/area/survivalpod/superpose/PirateShip) +"js" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock,/turf/simulated/floor/tiled/steel_grid,/area/survivalpod/superpose/PirateShip) +"jW" = (/obj/structure/table/woodentable,/obj/item/clothing/under/pirate,/obj/item/clothing/head/bandana,/obj/item/clothing/glasses/eyepatch,/obj/item/clothing/shoes/boots/duty,/turf/simulated/floor/tiled,/area/survivalpod/superpose/PirateShip) +"kJ" = (/obj/structure/window/reinforced{dir = 4},/obj/structure/grille,/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced/full,/obj/machinery/door/firedoor,/turf/simulated/shuttle/plating,/area/survivalpod/superpose/PirateShip) +"kV" = (/obj/machinery/disperser/back{dir = 4},/obj/structure/ship_munition/disperser_charge/explosive,/obj/effect/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled,/area/survivalpod/superpose/PirateShip) +"lU" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass_external/public,/turf/simulated/shuttle/plating,/area/survivalpod/superpose/PirateShip) +"mv" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass_external/public,/turf/simulated/floor/tiled/dark,/area/survivalpod/superpose/PirateShip) +"mR" = (/obj/structure/table/woodentable,/obj/item/weapon/paper_bin,/obj/item/weapon/pen,/turf/simulated/floor/wood,/area/survivalpod/superpose/PirateShip) +"nb" = (/obj/structure/salvageable/console_broken_os{dir = 8},/turf/simulated/floor/tiled,/area/survivalpod/superpose/PirateShip) +"op" = (/obj/structure/ship_munition/disperser_charge/explosive,/obj/effect/floor_decal/industrial/hatch/yellow,/turf/simulated/floor/tiled,/area/survivalpod/superpose/PirateShip) +"oC" = (/obj/structure/sign/flag/pirate{pixel_y = 29},/turf/simulated/floor/tiled/dark,/area/survivalpod/superpose/PirateShip) +"pz" = (/obj/item/weapon/storage/backpack/messenger,/obj/item/weapon/reagent_containers/food/drinks/cans/waterbottle,/obj/item/weapon/reagent_containers/food/drinks/cans/waterbottle,/obj/item/weapon/material/knife/tacknife/survival,/obj/item/weapon/reagent_containers/food/snacks/sosjerky,/obj/item/weapon/cell/device/hyper,/obj/item/weapon/reagent_containers/hypospray/autoinjector/trauma,/obj/item/weapon/reagent_containers/hypospray/autoinjector/oxy,/obj/item/weapon/flame/lighter/random,/obj/item/weapon/storage/box/survival/space,/obj/item/device/radio,/obj/item/clothing/accessory/storage/black_drop_pouches,/obj/item/weapon/reagent_containers/pill/dylovene,/obj/item/weapon/reagent_containers/pill/dylovene,/obj/item/device/flashlight/maglight,/obj/item/device/flashlight/flare,/obj/item/device/flashlight/flare,/obj/random/soap,/obj/item/weapon/gun/energy/locked/frontier/holdout/unlocked,/obj/item/device/fbp_backup_cell,/obj/item/device/pda,/obj/item/weapon/storage/mre/menu11,/obj/item/weapon/storage/mre/menu11,/obj/item/device/starcaster_news,/obj/effect/floor_decal/spline/fancy/wood{dir = 4},/obj/item/device/suit_cooling_unit/emergency,/obj/item/device/gps,/obj/structure/closet{name = "Survival closet"},/obj/machinery/light{dir = 4},/turf/simulated/floor/wood,/area/survivalpod/superpose/PirateShip) +"rJ" = (/obj/structure/table/woodentable,/obj/random/maintenance/engineering,/obj/random/maintenance/engineering,/turf/simulated/floor/wood,/area/survivalpod/superpose/PirateShip) +"sh" = (/obj/machinery/atmospherics/pipe/simple/hidden,/turf/simulated/shuttle/wall/dark,/area/survivalpod/superpose/PirateShip) +"tC" = (/obj/machinery/disperser/back{dir = 4},/obj/effect/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled,/area/survivalpod/superpose/PirateShip) +"vj" = (/obj/structure/salvageable/console_broken_os{dir = 4},/turf/simulated/floor/tiled,/area/survivalpod/superpose/PirateShip) +"vF" = (/obj/structure/bed/chair/bay/chair/padded/red{dir = 8},/turf/simulated/floor/wood,/area/survivalpod/superpose/PirateShip) +"wc" = (/obj/structure/salvageable/console_broken_os{dir = 4},/obj/machinery/light{dir = 8; layer = 3},/turf/simulated/floor/tiled,/area/survivalpod/superpose/PirateShip) +"wx" = (/obj/effect/floor_decal/industrial/danger,/turf/simulated/floor/tiled,/area/survivalpod/superpose/PirateShip) +"zm" = (/obj/effect/floor_decal/industrial/danger/corner,/turf/simulated/floor/tiled,/area/survivalpod/superpose/PirateShip) +"zL" = (/turf/simulated/floor/tiled,/area/survivalpod/superpose/PirateShip) +"zZ" = (/obj/structure/table/woodentable,/obj/item/clothing/head/helmet/space/pirate,/obj/item/clothing/suit/pirate,/obj/item/clothing/shoes/boots/duty,/obj/item/clothing/glasses/eyepatch,/obj/machinery/light{dir = 8},/turf/simulated/floor/wood,/area/survivalpod/superpose/PirateShip) +"Ap" = (/obj/effect/floor_decal/steeldecal/monofloor{dir = 1},/turf/simulated/floor/tiled,/area/survivalpod/superpose/PirateShip) +"CZ" = (/obj/machinery/disperser/back{dir = 8},/obj/structure/ship_munition/disperser_charge/mining,/obj/effect/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled,/area/survivalpod/superpose/PirateShip) +"Dt" = (/obj/structure/table/woodentable,/obj/machinery/light{dir = 8; layer = 3},/obj/random/maintenance,/obj/random/maintenance/cargo,/obj/random/maintenance/engineering,/turf/simulated/floor/tiled,/area/survivalpod/superpose/PirateShip) +"DR" = (/obj/machinery/atmospherics/portables_connector,/obj/machinery/portable_atmospherics/canister/empty/nitrogen,/obj/effect/floor_decal/industrial/outline/yellow,/turf/simulated/shuttle/plating/skipjack,/area/survivalpod/superpose/PirateShip) +"Ev" = (/obj/structure/sign/flag/pirate{pixel_y = 29},/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/hidden{dir = 10},/obj/machinery/door/airlock/glass_external/public,/turf/simulated/floor/tiled/dark,/area/survivalpod/superpose/PirateShip) +"Ey" = (/obj/structure/shuttle/engine/heater{dir = 1},/turf/simulated/shuttle/plating,/area/survivalpod/superpose/PirateShip) +"Fg" = (/obj/effect/floor_decal/industrial/danger{dir = 10},/turf/simulated/floor/tiled,/area/survivalpod/superpose/PirateShip) +"Gx" = (/obj/machinery/disperser/back{dir = 8},/obj/effect/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled,/area/survivalpod/superpose/PirateShip) +"GR" = (/obj/structure/ship_munition/disperser_charge/mining,/obj/effect/floor_decal/industrial/hatch/yellow,/turf/simulated/floor/tiled,/area/survivalpod/superpose/PirateShip) +"GY" = (/obj/machinery/light{dir = 4},/turf/simulated/shuttle/plating/skipjack,/area/survivalpod/superpose/PirateShip) +"Iu" = (/obj/effect/floor_decal/steeldecal/monofloor,/turf/simulated/floor/tiled,/area/survivalpod/superpose/PirateShip) +"JA" = (/obj/structure/railing/grey,/obj/structure/railing/grey{dir = 8},/turf/simulated/floor/tiled/dark,/area/survivalpod/superpose/PirateShip) +"Kc" = (/obj/structure/sign/flag/pirate,/turf/simulated/shuttle/wall/dark,/area/survivalpod/superpose/PirateShip) +"Ki" = (/obj/structure/closet/crate/wooden,/obj/item/weapon/reagent_containers/food/drinks/bottle/rum,/obj/item/weapon/reagent_containers/food/drinks/bottle/rum,/obj/item/weapon/reagent_containers/food/drinks/bottle/rum,/obj/item/weapon/reagent_containers/food/drinks/bottle/rum,/obj/item/weapon/reagent_containers/food/drinks/bottle/rum,/turf/simulated/floor/wood,/area/survivalpod/superpose/PirateShip) +"Kk" = (/turf/simulated/shuttle/plating/skipjack,/area/survivalpod/superpose/PirateShip) +"KK" = (/obj/structure/closet/secure_closet/guncabinet,/obj/item/weapon/gun/projectile/shotgun/pump/rifle/scoped,/obj/item/weapon/gun/projectile/shotgun/pump/rifle,/obj/item/weapon/storage/box/syndie_kit{max_storage_space = 20; name = "box of 7.62mm clips"; starts_with = list(/obj/item/ammo_magazine/clip/c762=10)},/obj/item/weapon/storage/box/syndie_kit{max_storage_space = 20; name = "box of 7.62mm clips"; starts_with = list(/obj/item/ammo_magazine/clip/c762=10)},/turf/simulated/floor/wood,/area/survivalpod/superpose/PirateShip) +"Mn" = (/obj/machinery/atmospherics/portables_connector{dir = 4},/obj/machinery/atmospherics/binary/circulator{anchored = 1; dir = 8},/turf/simulated/shuttle/plating/skipjack,/area/survivalpod/superpose/PirateShip) +"Mr" = (/turf/simulated/floor/tiled/dark,/area/survivalpod/superpose/PirateShip) +"Mv" = (/obj/machinery/atmospherics/portables_connector{dir = 8},/obj/machinery/portable_atmospherics/canister/empty,/obj/effect/floor_decal/industrial/outline/yellow,/turf/simulated/shuttle/plating/skipjack,/area/survivalpod/superpose/PirateShip) +"MA" = (/obj/machinery/portable_atmospherics/canister/air/airlock,/obj/machinery/atmospherics/portables_connector{dir = 1},/turf/simulated/floor/tiled,/area/survivalpod/superpose/PirateShip) +"NK" = (/obj/machinery/light{dir = 4},/turf/simulated/floor/wood,/area/survivalpod/superpose/PirateShip) +"NN" = (/turf/simulated/shuttle/wall/dark,/area/survivalpod/superpose/PirateShip) +"PQ" = (/obj/structure/fans,/turf/simulated/floor/wood,/area/survivalpod/superpose/PirateShip) +"PS" = (/obj/structure/bed/double/padded,/obj/item/weapon/bedsheet/piratedouble,/turf/simulated/floor/wood,/area/survivalpod/superpose/PirateShip) +"Qd" = (/obj/item/device/gps/computer,/turf/simulated/shuttle/wall/dark,/area/survivalpod/superpose/PirateShip) +"Qw" = (/obj/machinery/light{dir = 1},/turf/simulated/floor/tiled/dark,/area/survivalpod/superpose/PirateShip) +"Rn" = (/obj/machinery/atmospherics/portables_connector{dir = 1},/obj/machinery/atmospherics/binary/circulator{anchored = 1; dir = 4},/turf/simulated/shuttle/plating/skipjack,/area/survivalpod/superpose/PirateShip) +"SO" = (/obj/machinery/light{dir = 8},/turf/simulated/floor/wood,/area/survivalpod/superpose/PirateShip) +"Tl" = (/obj/structure/table/woodentable,/obj/machinery/light{dir = 4},/obj/random/maintenance,/obj/random/maintenance,/obj/random/maintenance/engineering,/turf/simulated/floor/tiled,/area/survivalpod/superpose/PirateShip) +"To" = (/turf/simulated/floor/wood,/area/survivalpod/superpose/PirateShip) +"Ve" = (/obj/machinery/disperser/front{dir = 8},/turf/template_noop,/area/template_noop) +"Xl" = (/obj/effect/floor_decal/industrial/danger{dir = 6},/turf/simulated/floor/tiled,/area/survivalpod/superpose/PirateShip) +"Xy" = (/obj/effect/floor_decal/stairs/dark_stairs,/turf/simulated/floor,/area/survivalpod/superpose/PirateShip) +"Yi" = (/obj/machinery/light{dir = 4},/turf/simulated/floor/tiled,/area/survivalpod/superpose/PirateShip) +"YI" = (/obj/structure/undies_wardrobe,/turf/simulated/floor/wood,/area/survivalpod/superpose/PirateShip) + +(1,1,1) = {" +cfcfcfcfiPcfcfcfiPcfcfcfcf +cfcfcfiPEyNNNNNNEyiPcfcfcf +cfcfaoEyNNNNPQQdNNEyaocfcf +cfcfNNNNbZKKToTobZNNNNcfcf +cfcfNNzZvFToToToTopzNNcfcf +cfcfNNrJmRcBToToToPSNNcfcf +aoiPNNNNNNaoiYaoNNNNNNiPao +NNEyKcjWfdNNToNNjWfdKcEyNN +NNNNNNSOToiYToiYToNKNNNNNN +cfcfNNYIKiNNToNNKiYINNcfcf +cfcfaoNNNNaojsaoNNNNaocfcf +cfcfmvhaEvQwMrQwoCMrlUcfcf +cfcfmvhadrMrMrMrMrMrlUcfcf +cfcfaoNNshXyXyXyJAggaocfcf +cfVehMCZMAzLzLzLzLtCebgRcf +cfcfNNwczLzLdczLzLbhNNcfcf +cfcfkJzLzLzLzLzLzLzLkJcfcf +cfcfkJzLApTlNNDtApzLkJcfcf +cfcfkJzLIuopopopIuzLkJcfcf +cfcfNNfQzLGRGRGRzLYiNNcfcf +cfVehMGxzLopopopzLkVebgRcf +cfcfNNvjzmwxNNwxaHnbNNcfcf +cfcfNNNNXlKkDRKkFgNNNNcfcf +cfcfcfkJKkKkRnKkKkkJcfcfcf +cfcfcfNNaoccfhGYaoNNcfcfcf +cfcfcfcfkJKkMnMvkJcfcfcfcf +cfcfcfcfNNNNNNNNNNcfcfcfcf +cfcfcfcfcfNNNNNNcfcfcfcfcf +cfcfcfcfcfcfNNcfcfcfcfcfcf +cfcfcfcfcfcfNNcfcfcfcfcfcf +"} diff --git a/modular_chomp/maps/submaps/shelters/SurvivalHomeV2-9x9.dmm b/modular_chomp/maps/submaps/shelters/SurvivalHomeV2-9x9.dmm new file mode 100644 index 0000000000..6b9ca8c2a5 --- /dev/null +++ b/modular_chomp/maps/submaps/shelters/SurvivalHomeV2-9x9.dmm @@ -0,0 +1,50 @@ +"a" = (/obj/structure/fans,/turf/simulated/shuttle/floor/voidcraft/dark,/area/survivalpod/superpose/SurvivalHomeV2) +"b" = (/obj/machinery/door/window/survival_pod{dir = 8},/turf/simulated/shuttle/plating/skipjack,/area/survivalpod/superpose/SurvivalHomeV2) +"c" = (/obj/machinery/light{dir = 4},/turf/simulated/shuttle/plating/skipjack,/area/survivalpod/superpose/SurvivalHomeV2) +"d" = (/obj/machinery/vending/wallmed1{dir = 1; name = "Emergency NanoMed"; pixel_y = -25},/turf/simulated/shuttle/plating/skipjack,/area/survivalpod/superpose/SurvivalHomeV2) +"f" = (/obj/structure/sign/mining/survival,/turf/simulated/shuttle/wall/voidcraft/survival/hard_corner,/area/survivalpod/superpose/SurvivalHomeV2) +"h" = (/turf/simulated/shuttle/wall/voidcraft/survival/hard_corner,/area/survivalpod/superpose/SurvivalHomeV2) +"i" = (/obj/machinery/door/window/survival_pod{dir = 8},/obj/machinery/newscaster{pixel_y = -28},/turf/simulated/shuttle/plating/skipjack,/area/survivalpod/superpose/SurvivalHomeV2) +"j" = (/obj/structure/table/darkglass,/obj/machinery/chemical_dispenser/bar_alc/full,/turf/simulated/shuttle/floor/voidcraft/dark,/area/survivalpod/superpose/SurvivalHomeV2) +"k" = (/obj/structure/closet/walllocker_double/survival/west,/turf/simulated/shuttle/plating/skipjack,/area/survivalpod/superpose/SurvivalHomeV2) +"l" = (/obj/machinery/recharger/wallcharger{pixel_x = 3; pixel_y = -28},/obj/machinery/recharger/wallcharger{pixel_x = 3; pixel_y = -38},/turf/simulated/shuttle/floor/voidcraft/dark,/area/survivalpod/superpose/SurvivalHomeV2) +"m" = (/obj/machinery/smartfridge/survival_pod,/obj/item/weapon/storage/mre/random,/obj/item/weapon/storage/mre/random,/obj/item/weapon/storage/mre/random,/obj/item/weapon/storage/mre/random,/obj/item/weapon/storage/mre/random,/obj/item/weapon/storage/mre/random,/obj/item/weapon/storage/mre/menu9,/obj/item/weapon/storage/mre/menu9,/obj/item/weapon/storage/mre/menu10,/obj/item/weapon/storage/mre/menu10,/obj/item/weapon/storage/mre/menu11,/obj/item/weapon/storage/mre/menu11,/obj/item/device/fbp_backup_cell,/obj/item/device/fbp_backup_cell,/obj/item/device/fbp_backup_cell,/obj/item/device/fbp_backup_cell,/obj/item/device/fbp_backup_cell,/obj/item/weapon/storage/pill_bottle/antitox,/obj/item/weapon/storage/box/survival/space,/obj/item/device/healthanalyzer,/obj/item/weapon/storage/pill_bottle/dice_nerd,/obj/machinery/light{dir = 1},/obj/item/weapon/storage/firstaid/regular,/obj/item/weapon/extinguisher/mini,/obj/item/weapon/extinguisher/mini,/obj/item/weapon/storage/box/survival/space,/obj/item/weapon/storage/box/survival/space,/obj/item/device/radio,/obj/item/device/radio,/obj/item/device/radio,/obj/item/device/starcaster_news,/obj/item/device/starcaster_news,/obj/item/device/threadneedle,/obj/item/device/flashlight,/obj/item/device/flashlight,/obj/item/weapon/storage/toolbox/emergency,/obj/item/weapon/storage/pill_bottle/spaceacillin,/obj/random/soap,/obj/item/weapon/material/knife/machete/hatchet,/obj/item/weapon/storage/box/flare,/turf/simulated/shuttle/floor/voidcraft/dark,/area/survivalpod/superpose/SurvivalHomeV2) +"n" = (/obj/machinery/door/airlock/voidcraft/survival_pod{id_tag = null},/turf/simulated/shuttle/plating/skipjack,/area/survivalpod/superpose/SurvivalHomeV2) +"o" = (/obj/structure/table/darkglass,/turf/simulated/shuttle/floor/voidcraft/dark,/area/survivalpod/superpose/SurvivalHomeV2) +"p" = (/obj/structure/table/darkglass,/obj/item/weapon/storage/box/glasses/meta/metapint,/turf/simulated/shuttle/floor/voidcraft/dark,/area/survivalpod/superpose/SurvivalHomeV2) +"q" = (/turf/simulated/shuttle/floor/voidcraft/dark,/area/survivalpod/superpose/SurvivalHomeV2) +"r" = (/obj/machinery/light{dir = 8},/obj/structure/bed/chair/backed_red{dir = 1},/obj/machinery/button/remote/airlock{dir = 1; id = "splock"; pixel_y = -24; specialfunctions = 4},/obj/machinery/light_switch{pixel_x = 8; pixel_y = -22},/turf/simulated/shuttle/floor/voidcraft/dark,/area/survivalpod/superpose/SurvivalHomeV2) +"s" = (/obj/structure/window/reinforced/survival_pod{dir = 8},/obj/structure/table/rack/shelf,/obj/random/maintenance,/obj/random/maintenance/engineering,/turf/simulated/shuttle/floor/voidcraft/dark,/area/survivalpod/superpose/SurvivalHomeV2) +"t" = (/obj/structure/window/reinforced/survival_pod{dir = 8},/obj/structure/table/rack/shelf,/obj/item/weapon/storage/box/glasses/meta/metapint,/turf/simulated/shuttle/floor/voidcraft/dark,/area/survivalpod/superpose/SurvivalHomeV2) +"u" = (/obj/structure/sign/mining/survival{dir = 8},/turf/simulated/shuttle/wall/voidcraft/survival/hard_corner,/area/survivalpod/superpose/SurvivalHomeV2) +"v" = (/obj/machinery/door/airlock/voidcraft/survival_pod{id_tag = "splock"},/turf/simulated/shuttle/plating/skipjack,/area/survivalpod/superpose/SurvivalHomeV2) +"w" = (/obj/machinery/vending/fitness,/turf/simulated/shuttle/floor/voidcraft/dark,/area/survivalpod/superpose/SurvivalHomeV2) +"z" = (/obj/item/device/gps/computer,/turf/simulated/shuttle/floor/voidcraft/dark,/area/survivalpod/superpose/SurvivalHomeV2) +"A" = (/obj/structure/table/rack/shelf,/obj/item/weapon/SWF_uplink,/turf/simulated/shuttle/floor/voidcraft/dark,/area/survivalpod/superpose/SurvivalHomeV2) +"B" = (/obj/structure/window/reinforced/survival_pod{dir = 4},/turf/simulated/shuttle/floor/voidcraft/dark,/area/survivalpod/superpose/SurvivalHomeV2) +"C" = (/obj/structure/table/darkglass,/obj/machinery/chemical_dispenser/bar_soft/full,/turf/simulated/shuttle/floor/voidcraft/dark,/area/survivalpod/superpose/SurvivalHomeV2) +"H" = (/obj/structure/bed/chair/backed_red,/turf/simulated/shuttle/floor/voidcraft/dark,/area/survivalpod/superpose/SurvivalHomeV2) +"I" = (/obj/machinery/door/window/survival_pod,/obj/machinery/light{layer = 3},/turf/simulated/shuttle/floor/voidcraft/dark,/area/survivalpod/superpose/SurvivalHomeV2) +"J" = (/turf/simulated/shuttle/plating/skipjack,/area/survivalpod/superpose/SurvivalHomeV2) +"L" = (/obj/machinery/light{dir = 1},/turf/simulated/shuttle/floor/voidcraft/dark,/area/survivalpod/superpose/SurvivalHomeV2) +"N" = (/obj/structure/table/rack/shelf,/obj/machinery/light{layer = 3},/obj/random/maintenance/engineering,/turf/simulated/shuttle/floor/voidcraft/dark,/area/survivalpod/superpose/SurvivalHomeV2) +"O" = (/obj/structure/sign/mining/survival{dir = 4},/turf/simulated/shuttle/wall/voidcraft/survival/hard_corner,/area/survivalpod/superpose/SurvivalHomeV2) +"Q" = (/obj/structure/table/survival_pod,/obj/machinery/light{dir = 8},/turf/simulated/shuttle/floor/voidcraft/dark,/area/survivalpod/superpose/SurvivalHomeV2) +"R" = (/obj/structure/sign/mining/survival{dir = 1},/turf/simulated/shuttle/wall/voidcraft/survival/hard_corner,/area/survivalpod/superpose/SurvivalHomeV2) +"T" = (/obj/structure/window/reinforced/survival_pod{dir = 8},/obj/structure/window/reinforced/survival_pod{dir = 4},/obj/structure/window/reinforced/survival_pod{dir = 1},/obj/structure/window/reinforced/survival_pod,/obj/structure/grille,/obj/structure/curtain/black,/turf/simulated/floor/plating,/area/survivalpod/superpose/SurvivalHomeV2) +"V" = (/obj/structure/table/survival_pod,/obj/machinery/power/apc/alarms_hidden{pixel_y = -20},/obj/item/clothing/glasses/welding,/obj/item/weapon/storage/toolbox/mechanical,/turf/simulated/shuttle/floor/voidcraft/dark,/area/survivalpod/superpose/SurvivalHomeV2) +"W" = (/obj/structure/table/rack/shelf,/obj/random/maintenance/clean,/turf/simulated/shuttle/floor/voidcraft/dark,/area/survivalpod/superpose/SurvivalHomeV2) +"X" = (/obj/machinery/smartfridge/survival_pod,/turf/simulated/shuttle/floor/voidcraft/dark,/area/survivalpod/superpose/SurvivalHomeV2) +"Y" = (/obj/structure/window/reinforced/survival_pod{dir = 8},/obj/structure/table/survival_pod,/obj/item/weapon/cat_box,/turf/simulated/shuttle/floor/voidcraft/dark,/area/survivalpod/superpose/SurvivalHomeV2) + +(1,1,1) = {" +hRhRhRhRh +uazBwYXmO +hQqBJidJT +uVlIchhnO +hhhhktAJT +uHLpJbJcO +ToJJJsJWT +urJCjsJNO +hfvfhfTfh +"} diff --git a/modular_chomp/maps/submaps/shelters/SurvivalMechFab-9x9.dmm b/modular_chomp/maps/submaps/shelters/SurvivalMechFab-9x9.dmm new file mode 100644 index 0000000000..4b26f94f3a --- /dev/null +++ b/modular_chomp/maps/submaps/shelters/SurvivalMechFab-9x9.dmm @@ -0,0 +1,54 @@ +"a" = (/obj/machinery/mecha_part_fabricator,/obj/machinery/light{dir = 1},/turf/simulated/shuttle/floor/voidcraft,/area/survivalpod/superpose/SurvivalMechFab) +"b" = (/obj/machinery/r_n_d/circuit_imprinter,/turf/simulated/shuttle/floor/voidcraft,/area/survivalpod/superpose/SurvivalMechFab) +"c" = (/obj/machinery/power/apc/alarms_hidden{dir = 4; pixel_x = 24},/turf/simulated/shuttle/floor/voidcraft,/area/survivalpod/superpose/SurvivalMechFab) +"d" = (/obj/structure/bed/chair/bay/chair/padded/purple{dir = 8},/obj/machinery/recharger/wallcharger{pixel_x = 3; pixel_y = -28},/obj/machinery/recharger/wallcharger{pixel_x = 3; pixel_y = -38},/turf/simulated/shuttle/floor/voidcraft,/area/survivalpod/superpose/SurvivalMechFab) +"e" = (/obj/machinery/vending/wallmed1{dir = 1; name = "Emergency NanoMed"; pixel_y = -25},/turf/simulated/shuttle/floor/voidcraft,/area/survivalpod/superpose/SurvivalMechFab) +"f" = (/obj/structure/window/reinforced/survival_pod{dir = 8},/obj/machinery/atmospherics/unary/vent_pump{external_pressure_bound = 0; external_pressure_bound_default = 0; icon_state = "map_vent_in"; initialize_directions = 8; internal_pressure_bound = 4000; internal_pressure_bound_default = 4000; pressure_checks = 2; pressure_checks_default = 2; pump_direction = 0; use_power = 1},/obj/machinery/light{dir = 1},/turf/simulated/shuttle/floor/voidcraft,/area/survivalpod/superpose/SurvivalMechFab) +"g" = (/turf/simulated/shuttle/wall/voidcraft/survival/hard_corner,/area/survivalpod/superpose/SurvivalMechFab) +"h" = (/obj/structure/table/rack/shelf,/obj/fiftyspawner/steel,/obj/fiftyspawner/steel,/obj/fiftyspawner/glass,/obj/fiftyspawner/glass,/obj/structure/window/reinforced/survival_pod{dir = 1},/turf/simulated/shuttle/floor/voidcraft,/area/survivalpod/superpose/SurvivalMechFab) +"i" = (/obj/machinery/mech_recharger,/obj/mecha/working/ripley/mining/old,/turf/simulated/shuttle/floor/voidcraft,/area/survivalpod/superpose/SurvivalMechFab) +"j" = (/obj/structure/window/reinforced/survival_pod{dir = 8},/obj/machinery/atmospherics/pipe/manifold/hidden{dir = 8},/obj/machinery/door/window/survival_pod{dir = 2},/turf/simulated/shuttle/floor/voidcraft,/area/survivalpod/superpose/SurvivalMechFab) +"k" = (/obj/machinery/door/window/survival_pod{dir = 1},/turf/simulated/shuttle/floor/voidcraft,/area/survivalpod/superpose/SurvivalMechFab) +"l" = (/obj/machinery/newscaster{pixel_y = -28},/obj/structure/filingcabinet,/obj/machinery/light{dir = 4; icon_state = "tube1"},/turf/simulated/shuttle/floor/voidcraft,/area/survivalpod/superpose/SurvivalMechFab) +"m" = (/obj/structure/closet/walllocker_double/survival/west,/obj/machinery/light{dir = 8},/turf/simulated/shuttle/floor/voidcraft,/area/survivalpod/superpose/SurvivalMechFab) +"n" = (/obj/structure/table/rack/shelf,/obj/item/stack/cable_coil,/obj/item/stack/cable_coil,/obj/structure/window/reinforced/survival_pod{dir = 1},/turf/simulated/shuttle/floor/voidcraft,/area/survivalpod/superpose/SurvivalMechFab) +"o" = (/obj/machinery/computer/rdconsole/core{dir = 1},/turf/simulated/shuttle/floor/voidcraft,/area/survivalpod/superpose/SurvivalMechFab) +"r" = (/obj/machinery/atmospherics/unary/freezer{dir = 8; icon_state = "freezer_1"; power_setting = 20; set_temperature = 73; use_power = 1},/obj/machinery/light{dir = 4; icon_state = "tube1"},/turf/simulated/shuttle/floor/voidcraft,/area/survivalpod/superpose/SurvivalMechFab) +"s" = (/obj/machinery/smartfridge/survival_pod,/obj/item/weapon/storage/mre/random,/obj/item/weapon/storage/mre/random,/obj/item/weapon/storage/mre/random,/obj/item/weapon/storage/mre/random,/obj/item/weapon/storage/mre/random,/obj/item/weapon/storage/mre/random,/obj/item/weapon/storage/mre/menu9,/obj/item/weapon/storage/mre/menu9,/obj/item/weapon/storage/mre/menu10,/obj/item/weapon/storage/mre/menu10,/obj/item/weapon/storage/mre/menu11,/obj/item/weapon/storage/mre/menu11,/obj/item/device/fbp_backup_cell,/obj/item/device/fbp_backup_cell,/obj/item/device/fbp_backup_cell,/obj/item/device/fbp_backup_cell,/obj/item/device/fbp_backup_cell,/obj/item/weapon/storage/pill_bottle/antitox,/obj/item/weapon/storage/box/survival/space,/obj/item/device/healthanalyzer,/obj/item/weapon/storage/pill_bottle/dice_nerd,/obj/machinery/light{dir = 1},/obj/item/weapon/storage/firstaid/regular,/obj/item/weapon/extinguisher/mini,/obj/item/weapon/extinguisher/mini,/obj/item/weapon/storage/box/survival/space,/obj/item/weapon/storage/box/survival/space,/obj/item/device/radio,/obj/item/device/radio,/obj/item/device/radio,/obj/item/device/starcaster_news,/obj/item/device/starcaster_news,/obj/item/device/threadneedle,/obj/item/device/flashlight,/obj/item/device/flashlight,/obj/item/weapon/storage/toolbox/emergency,/obj/item/weapon/storage/pill_bottle/spaceacillin,/obj/random/soap,/obj/item/weapon/material/knife/machete/hatchet,/obj/item/weapon/storage/box/flare,/turf/simulated/shuttle/floor/voidcraft/dark,/area/survivalpod/superpose/SurvivalMechFab) +"t" = (/obj/structure/window/reinforced/survival_pod{dir = 1},/obj/structure/reagent_dispensers/fueltank/high,/turf/simulated/shuttle/floor/voidcraft,/area/survivalpod/superpose/SurvivalMechFab) +"u" = (/obj/structure/window/reinforced/survival_pod{dir = 8},/obj/structure/window/reinforced/survival_pod{dir = 4},/obj/structure/window/reinforced/survival_pod{dir = 1},/obj/structure/window/reinforced/survival_pod,/obj/structure/grille,/obj/structure/curtain/black,/turf/simulated/floor/plating,/area/survivalpod/superpose/SurvivalMechFab) +"w" = (/obj/machinery/r_n_d/server/core,/turf/simulated/shuttle/floor/voidcraft,/area/survivalpod/superpose/SurvivalMechFab) +"y" = (/obj/machinery/atmospherics/pipe/manifold/hidden,/obj/machinery/meter,/turf/simulated/shuttle/floor/voidcraft,/area/survivalpod/superpose/SurvivalMechFab) +"A" = (/obj/machinery/portable_atmospherics/canister/nitrogen,/obj/machinery/atmospherics/portables_connector,/turf/simulated/shuttle/floor/voidcraft,/area/survivalpod/superpose/SurvivalMechFab) +"B" = (/obj/structure/sign/mining/survival{dir = 8},/turf/simulated/shuttle/wall/voidcraft/survival/hard_corner,/area/survivalpod/superpose/SurvivalMechFab) +"C" = (/obj/structure/table/reinforced,/obj/item/weapon/paper_bin,/obj/item/weapon/pen,/turf/simulated/shuttle/floor/voidcraft,/area/survivalpod/superpose/SurvivalMechFab) +"F" = (/obj/structure/sign/mining/survival{dir = 1},/turf/simulated/shuttle/wall/voidcraft/survival/hard_corner,/area/survivalpod/superpose/SurvivalMechFab) +"G" = (/turf/simulated/shuttle/floor/voidcraft,/area/survivalpod/superpose/SurvivalMechFab) +"H" = (/obj/structure/sign/mining/survival,/turf/simulated/shuttle/wall/voidcraft/survival/hard_corner,/area/survivalpod/superpose/SurvivalMechFab) +"I" = (/obj/machinery/atmospherics/pipe/simple/hidden,/turf/simulated/shuttle/floor/voidcraft,/area/survivalpod/superpose/SurvivalMechFab) +"J" = (/obj/item/device/gps/computer,/obj/structure/window/reinforced/survival_pod{dir = 1},/turf/simulated/shuttle/floor/voidcraft,/area/survivalpod/superpose/SurvivalMechFab) +"K" = (/obj/structure/table/reinforced,/obj/structure/reagent_dispensers/acid{density = 0; pixel_x = -30},/obj/item/weapon/storage/toolbox/mechanical,/obj/item/weapon/storage/toolbox/electrical,/obj/item/clothing/glasses/welding,/obj/item/device/robotanalyzer,/obj/machinery/light{dir = 8},/turf/simulated/shuttle/floor/voidcraft,/area/survivalpod/superpose/SurvivalMechFab) +"M" = (/obj/machinery/optable,/turf/simulated/shuttle/floor/voidcraft,/area/survivalpod/superpose/SurvivalMechFab) +"N" = (/obj/structure/table/rack/shelf,/obj/item/weapon/gun/energy/ionrifle/pistol,/obj/item/weapon/gun/energy/ionrifle,/obj/structure/window/reinforced/survival_pod{dir = 1},/turf/simulated/shuttle/floor/voidcraft,/area/survivalpod/superpose/SurvivalMechFab) +"O" = (/obj/machinery/light,/turf/simulated/shuttle/floor/voidcraft,/area/survivalpod/superpose/SurvivalMechFab) +"P" = (/obj/structure/fans,/obj/structure/window/reinforced/survival_pod{dir = 8},/obj/structure/window/reinforced/survival_pod{dir = 1},/turf/simulated/shuttle/floor/voidcraft,/area/survivalpod/superpose/SurvivalMechFab) +"Q" = (/obj/machinery/door/airlock/voidcraft/survival_pod{id_tag = "splock"},/turf/simulated/shuttle/floor/voidcraft,/area/survivalpod/superpose/SurvivalMechFab) +"R" = (/obj/machinery/mecha_part_fabricator/pros,/turf/simulated/shuttle/floor/voidcraft,/area/survivalpod/superpose/SurvivalMechFab) +"T" = (/obj/structure/table/reinforced,/turf/simulated/shuttle/floor/voidcraft,/area/survivalpod/superpose/SurvivalMechFab) +"U" = (/obj/machinery/autolathe,/turf/simulated/shuttle/floor/voidcraft,/area/survivalpod/superpose/SurvivalMechFab) +"W" = (/obj/machinery/atmospherics/pipe/simple/hidden{dir = 5},/turf/simulated/shuttle/floor/voidcraft,/area/survivalpod/superpose/SurvivalMechFab) +"X" = (/obj/structure/sign/mining/survival{dir = 4},/turf/simulated/shuttle/wall/voidcraft/survival/hard_corner,/area/survivalpod/superpose/SurvivalMechFab) +"Y" = (/obj/structure/window/reinforced/survival_pod,/obj/machinery/atmospherics/unary/vent_pump{dir = 8; icon_state = "map_vent_out"; use_power = 1},/turf/simulated/shuttle/floor/voidcraft,/area/survivalpod/superpose/SurvivalMechFab) +"Z" = (/obj/effect/floor_decal/industrial/hatch/yellow,/turf/simulated/shuttle/floor/voidcraft,/area/survivalpod/superpose/SurvivalMechFab) + +(1,1,1) = {" +gFggFggFg +BUaRiAfwX +uGZZGIjYu +gKMboWyrg +BNhntkPJX +gmGGGGGGu +uGGGGCGcg +BsGeOTdlX +gHQgHuggg +"} diff --git a/modular_chomp/maps/submaps/shelters/SurvivalMethLab-9x10.dmm b/modular_chomp/maps/submaps/shelters/SurvivalMethLab-9x10.dmm new file mode 100644 index 0000000000..94b4d253ec --- /dev/null +++ b/modular_chomp/maps/submaps/shelters/SurvivalMethLab-9x10.dmm @@ -0,0 +1,53 @@ +"a" = (/obj/structure/sign/mining/survival,/turf/simulated/shuttle/wall/voidcraft/survival/hard_corner,/area/survivalpod/superpose/SurvivalMethLab) +"b" = (/obj/machinery/light{dir = 1},/obj/effect/floor_decal/rust,/turf/simulated/shuttle/floor/voidcraft,/area/survivalpod/superpose/SurvivalMethLab) +"d" = (/obj/structure/window/reinforced/survival_pod{dir = 4; opacity = 1},/obj/structure/window/reinforced/survival_pod{opacity = 1},/obj/machinery/door/window/survival_pod{dir = 1},/turf/simulated/shuttle/plating/skipjack,/area/survivalpod/superpose/SurvivalMethLab) +"f" = (/obj/structure/bed/chair/sofa/brown,/obj/machinery/light{dir = 1},/turf/simulated/shuttle/floor/voidcraft,/area/survivalpod/superpose/SurvivalMethLab) +"g" = (/obj/machinery/recharger/wallcharger{pixel_x = -27; pixel_y = -10},/obj/machinery/recharger/wallcharger{pixel_x = -27; pixel_y = 3},/obj/effect/floor_decal/rust,/turf/simulated/shuttle/floor/voidcraft,/area/survivalpod/superpose/SurvivalMethLab) +"h" = (/obj/structure/table/woodentable,/obj/effect/floor_decal/rust,/obj/random/maintenance/engineering,/turf/simulated/shuttle/floor/voidcraft,/area/survivalpod/superpose/SurvivalMethLab) +"i" = (/obj/machinery/button/remote/airlock{dir = 1; id = "stolenlock"; pixel_y = -24; specialfunctions = 4},/obj/machinery/light_switch{pixel_x = 8; pixel_y = -22},/turf/simulated/shuttle/floor/voidcraft,/area/survivalpod/superpose/SurvivalMethLab) +"k" = (/obj/structure/table/reinforced,/obj/machinery/reagentgrinder,/obj/machinery/light,/turf/simulated/shuttle/floor/voidcraft,/area/survivalpod/superpose/SurvivalMethLab) +"l" = (/obj/structure/bed/chair/sofa/left/brown{dir = 8},/obj/effect/floor_decal/rust,/turf/simulated/shuttle/floor/voidcraft,/area/survivalpod/superpose/SurvivalMethLab) +"m" = (/obj/item/device/gps/computer,/turf/simulated/shuttle/floor/voidcraft,/area/survivalpod/superpose/SurvivalMethLab) +"n" = (/obj/machinery/smartfridge/survival_pod,/obj/item/weapon/storage/mre/random,/obj/item/weapon/storage/mre/random,/obj/item/weapon/storage/mre/random,/obj/item/weapon/storage/mre/random,/obj/item/weapon/storage/mre/random,/obj/item/weapon/storage/mre/random,/obj/item/weapon/storage/mre/menu9,/obj/item/weapon/storage/mre/menu9,/obj/item/weapon/storage/mre/menu10,/obj/item/weapon/storage/mre/menu10,/obj/item/weapon/storage/mre/menu11,/obj/item/weapon/storage/mre/menu11,/obj/item/device/fbp_backup_cell,/obj/item/device/fbp_backup_cell,/obj/item/device/fbp_backup_cell,/obj/item/device/fbp_backup_cell,/obj/item/device/fbp_backup_cell,/obj/item/weapon/storage/pill_bottle/antitox,/obj/item/weapon/storage/box/survival/space,/obj/item/device/healthanalyzer,/obj/item/weapon/storage/pill_bottle/dice_nerd,/obj/machinery/light{dir = 1},/obj/item/weapon/storage/firstaid/regular,/obj/item/weapon/extinguisher/mini,/obj/item/weapon/extinguisher/mini,/obj/item/weapon/storage/box/survival/space,/obj/item/weapon/storage/box/survival/space,/obj/item/device/radio,/obj/item/device/radio,/obj/item/device/radio,/obj/item/device/starcaster_news,/obj/item/device/starcaster_news,/obj/item/device/threadneedle,/obj/item/device/flashlight,/obj/item/device/flashlight,/obj/item/weapon/storage/toolbox/emergency,/obj/item/weapon/storage/pill_bottle/spaceacillin,/obj/random/soap,/obj/item/weapon/material/knife/machete/hatchet,/obj/item/weapon/storage/box/flare,/turf/simulated/shuttle/floor/voidcraft/dark,/area/survivalpod/superpose/SurvivalMethLab) +"o" = (/obj/structure/window/reinforced/survival_pod{dir = 8},/obj/structure/window/reinforced/survival_pod{dir = 4},/obj/structure/window/reinforced/survival_pod{dir = 1},/obj/structure/window/reinforced/survival_pod,/obj/structure/grille,/obj/structure/curtain/black,/turf/simulated/floor/plating,/area/survivalpod/superpose/SurvivalMethLab) +"q" = (/obj/structure/bed/chair/sofa/right/brown,/obj/effect/floor_decal/rust,/turf/simulated/shuttle/floor/voidcraft,/area/survivalpod/superpose/SurvivalMethLab) +"r" = (/obj/machinery/light{dir = 1},/turf/simulated/shuttle/floor/voidcraft,/area/survivalpod/superpose/SurvivalMethLab) +"s" = (/obj/structure/table/reinforced,/obj/item/weapon/reagent_containers/glass/beaker/large,/turf/simulated/shuttle/floor/voidcraft,/area/survivalpod/superpose/SurvivalMethLab) +"t" = (/obj/structure/table/survival_pod,/obj/machinery/power/apc/alarms_hidden{pixel_y = -20},/obj/machinery/light{dir = 8},/obj/item/weapon/storage/toolbox/mechanical,/obj/item/clothing/glasses/welding,/obj/effect/floor_decal/rust,/turf/simulated/shuttle/floor/voidcraft,/area/survivalpod/superpose/SurvivalMethLab) +"u" = (/obj/structure/sign/mining/survival{dir = 1},/turf/simulated/shuttle/wall/voidcraft/survival/hard_corner,/area/survivalpod/superpose/SurvivalMethLab) +"w" = (/turf/simulated/shuttle/floor/voidcraft,/area/survivalpod/superpose/SurvivalMethLab) +"y" = (/obj/structure/table/woodentable,/obj/random/maintenance/cargo,/turf/simulated/shuttle/floor/voidcraft,/area/survivalpod/superpose/SurvivalMethLab) +"z" = (/obj/structure/table/survival_pod,/obj/random/maintenance/cargo,/turf/simulated/shuttle/floor/voidcraft,/area/survivalpod/superpose/SurvivalMethLab) +"B" = (/obj/structure/sign/mining/survival{dir = 4},/turf/simulated/shuttle/wall/voidcraft/survival/hard_corner,/area/survivalpod/superpose/SurvivalMethLab) +"C" = (/obj/structure/window/reinforced/survival_pod{dir = 8},/obj/structure/window/reinforced/survival_pod{opacity = 1},/obj/machinery/door/window/survival_pod{dir = 1},/obj/machinery/disposal,/obj/structure/disposalpipe/trunk{dir = 4},/turf/simulated/shuttle/floor/voidcraft,/area/survivalpod/superpose/SurvivalMethLab) +"D" = (/obj/structure/table/reinforced,/obj/machinery/chemical_dispenser/biochemistry/full,/obj/machinery/light{dir = 1},/obj/effect/floor_decal/rust,/turf/simulated/shuttle/floor/voidcraft,/area/survivalpod/superpose/SurvivalMethLab) +"E" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/sign/mining/survival{dir = 4},/turf/simulated/shuttle/wall/voidcraft/survival/hard_corner,/area/survivalpod/superpose/SurvivalMethLab) +"F" = (/obj/structure/window/reinforced/survival_pod{dir = 8},/obj/structure/window/reinforced/survival_pod{dir = 1},/obj/machinery/door/window/survival_pod{dir = 2},/turf/simulated/shuttle/plating/skipjack,/area/survivalpod/superpose/SurvivalMethLab) +"H" = (/obj/structure/table/reinforced,/obj/machinery/chemical_dispenser/full,/obj/effect/floor_decal/rust,/turf/simulated/shuttle/floor/voidcraft,/area/survivalpod/superpose/SurvivalMethLab) +"I" = (/obj/machinery/vending/wallmed1{dir = 1; name = "Emergency NanoMed"; pixel_y = -25},/obj/effect/floor_decal/rust,/turf/simulated/shuttle/floor/voidcraft,/area/survivalpod/superpose/SurvivalMethLab) +"J" = (/obj/machinery/smartfridge/chemistry,/turf/simulated/shuttle/floor/voidcraft,/area/survivalpod/superpose/SurvivalMethLab) +"L" = (/obj/effect/floor_decal/rust,/turf/simulated/shuttle/floor/voidcraft,/area/survivalpod/superpose/SurvivalMethLab) +"M" = (/obj/structure/window/reinforced/survival_pod{dir = 4; opacity = 1},/obj/structure/window/reinforced/survival_pod{dir = 1},/obj/machinery/door/window/survival_pod{dir = 2},/obj/machinery/disposal,/obj/structure/disposalpipe/trunk{dir = 8},/turf/simulated/shuttle/plating/skipjack,/area/survivalpod/superpose/SurvivalMethLab) +"N" = (/obj/structure/window/reinforced/survival_pod{dir = 8},/obj/structure/window/reinforced/survival_pod{dir = 4},/obj/structure/window/reinforced/survival_pod{dir = 1},/obj/structure/window/reinforced/survival_pod,/obj/structure/grille,/obj/structure/curtain/black,/obj/structure/barricade/planks,/turf/simulated/floor/plating,/area/survivalpod/superpose/SurvivalMethLab) +"O" = (/obj/structure/table/survival_pod,/obj/structure/closet/walllocker_double/survival/west,/obj/effect/floor_decal/rust,/obj/random/maintenance/engineering,/obj/random/maintenance/engineering,/turf/simulated/shuttle/floor/voidcraft,/area/survivalpod/superpose/SurvivalMethLab) +"Q" = (/turf/simulated/shuttle/wall/voidcraft/survival/hard_corner,/area/survivalpod/superpose/SurvivalMethLab) +"R" = (/obj/machinery/door/airlock/voidcraft/survival_pod{id_tag = "stolenlock"},/obj/structure/barricade/planks,/turf/simulated/shuttle/floor/voidcraft,/area/survivalpod/superpose/SurvivalMethLab) +"S" = (/obj/structure/bed/chair/sofa/corner/brown,/obj/effect/floor_decal/rust,/turf/simulated/shuttle/floor/voidcraft,/area/survivalpod/superpose/SurvivalMethLab) +"T" = (/obj/machinery/newscaster{pixel_y = -28},/obj/effect/floor_decal/rust,/turf/simulated/shuttle/floor/voidcraft,/area/survivalpod/superpose/SurvivalMethLab) +"U" = (/turf/template_noop,/area/template_noop) +"V" = (/obj/machinery/door/airlock/voidcraft/survival_pod{id_tag = "splock"},/obj/structure/barricade/planks,/obj/effect/floor_decal/rust,/turf/simulated/shuttle/floor/voidcraft,/area/survivalpod/superpose/SurvivalMethLab) +"W" = (/obj/structure/fans,/turf/simulated/shuttle/floor/voidcraft,/area/survivalpod/superpose/SurvivalMethLab) +"X" = (/obj/structure/sign/mining/survival{dir = 8},/turf/simulated/shuttle/wall/voidcraft/survival/hard_corner,/area/survivalpod/superpose/SurvivalMethLab) +"Z" = (/obj/machinery/chem_master,/turf/simulated/shuttle/floor/voidcraft,/area/survivalpod/superpose/SurvivalMethLab) + +(1,1,1) = {" +QuNuQuNuQU +XnrDHZJFEM +NzLLLwLLoU +XOIsLkTCEd +QQQQVQQQQU +XWmQgqfSBU +NLLbwyhlNU +XtLiLwLwBU +QaNaRaNaQU +"} diff --git a/modular_chomp/maps/submaps/shelters/SurvivalScience2-9x9.dmm b/modular_chomp/maps/submaps/shelters/SurvivalScience2-9x9.dmm new file mode 100644 index 0000000000..a8a4a0608c --- /dev/null +++ b/modular_chomp/maps/submaps/shelters/SurvivalScience2-9x9.dmm @@ -0,0 +1,56 @@ +"a" = (/turf/simulated/shuttle/wall/voidcraft/survival/hard_corner,/area/survivalpod/superpose/SurvivalScienceV2) +"b" = (/obj/machinery/mecha_part_fabricator{req_access = null},/obj/effect/floor_decal/industrial/outline/yellow,/turf/simulated/shuttle/floor/voidcraft/dark,/area/survivalpod/superpose/SurvivalScienceV2) +"c" = (/obj/structure/window/reinforced/survival_pod{opacity = 1},/obj/machinery/smartfridge/survival_pod{icon = 'icons/obj/vending.dmi'; icon_base = "smartfridge"; icon_contents = "boxes"; icon_state = "smartfridge"; name = "Advanced storage"; pixel_y = -1},/obj/item/weapon/stock_parts/micro_laser,/obj/item/weapon/stock_parts/micro_laser,/obj/item/weapon/stock_parts/matter_bin,/obj/item/weapon/stock_parts/matter_bin,/obj/item/weapon/stock_parts/console_screen,/obj/item/weapon/stock_parts/console_screen,/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/item/clothing/gloves/sterile/latex,/obj/item/clothing/gloves/sterile/latex,/obj/item/weapon/storage/belt/utility,/obj/item/weapon/storage/belt/utility,/obj/item/weapon/cell/high{charge = 100; maxcharge = 15000},/obj/item/weapon/cell/high{charge = 100; maxcharge = 15000},/obj/item/stack/material/copper{amount = 25},/obj/item/stack/material/steel{amount = 50},/obj/item/stack/material/glass{amount = 50; pixel_x = 3; pixel_y = 3},/obj/item/clothing/mask/gas,/obj/item/clothing/mask/gas,/obj/item/weapon/disk/design_disk,/obj/item/weapon/disk/design_disk,/obj/item/weapon/disk/tech_disk,/obj/item/weapon/disk/tech_disk,/turf/simulated/shuttle/floor/voidcraft/light,/area/survivalpod/superpose/SurvivalScienceV2) +"e" = (/obj/machinery/atmospherics/unary/freezer{dir = 4; icon_state = "freezer_1"; power_setting = 20; set_temperature = 73; use_power = 1},/obj/structure/window/reinforced/survival_pod{dir = 8},/obj/structure/window/reinforced/survival_pod{dir = 1},/turf/simulated/shuttle/plating/skipjack,/area/survivalpod/superpose/SurvivalScienceV2) +"f" = (/obj/item/device/gps/computer,/obj/structure/window/reinforced/survival_pod{dir = 4},/turf/simulated/shuttle/floor/voidcraft/dark,/area/survivalpod/superpose/SurvivalScienceV2) +"g" = (/obj/structure/window/reinforced/survival_pod{dir = 10},/turf/simulated/shuttle/plating/skipjack,/area/survivalpod/superpose/SurvivalScienceV2) +"h" = (/obj/structure/window/reinforced/survival_pod{dir = 1},/obj/machinery/r_n_d/server/core,/obj/machinery/light{dir = 4},/turf/simulated/floor/bluegrid{name = "Server Base"; nitrogen = 500; oxygen = 0; temperature = 80},/area/survivalpod/superpose/SurvivalScienceV2) +"i" = (/obj/effect/floor_decal/industrial/hatch/yellow,/turf/simulated/shuttle/plating/skipjack,/area/survivalpod/superpose/SurvivalScienceV2) +"j" = (/obj/machinery/r_n_d/circuit_imprinter,/obj/item/weapon/reagent_containers/glass/beaker{pixel_x = 9; pixel_y = 8},/obj/structure/window/reinforced/survival_pod{opacity = 1},/obj/structure/window/reinforced/survival_pod{dir = 4},/obj/effect/floor_decal/industrial/outline/yellow,/turf/simulated/shuttle/floor/voidcraft/dark,/area/survivalpod/superpose/SurvivalScienceV2) +"k" = (/obj/structure/window/reinforced/survival_pod{opacity = 1},/obj/structure/table/reinforced,/obj/item/weapon/paper_bin{pixel_x = -3; pixel_y = 7},/obj/item/weapon/clipboard,/obj/item/weapon/folder/white,/obj/item/weapon/pen,/obj/item/weapon/reagent_containers/dropper{pixel_y = -4},/obj/machinery/light{dir = 8},/turf/simulated/shuttle/floor/voidcraft/light,/area/survivalpod/superpose/SurvivalScienceV2) +"m" = (/obj/machinery/computer/rdconsole/core{dir = 4; req_access = null},/obj/effect/floor_decal/industrial/outline/yellow,/obj/machinery/light{dir = 8},/turf/simulated/shuttle/floor/voidcraft/dark,/area/survivalpod/superpose/SurvivalScienceV2) +"n" = (/obj/structure/sign/mining/survival{dir = 8},/turf/simulated/shuttle/wall/voidcraft/survival/hard_corner,/area/survivalpod/superpose/SurvivalScienceV2) +"o" = (/obj/machinery/r_n_d/protolathe,/obj/effect/floor_decal/industrial/outline/yellow,/turf/simulated/shuttle/floor/voidcraft/dark,/area/survivalpod/superpose/SurvivalScienceV2) +"p" = (/obj/machinery/atmospherics/pipe/manifold/hidden,/obj/machinery/power/apc/alarms_hidden{pixel_y = -20},/turf/simulated/shuttle/plating/skipjack,/area/survivalpod/superpose/SurvivalScienceV2) +"q" = (/obj/structure/sign/mining/survival{dir = 1},/turf/simulated/shuttle/wall/voidcraft/survival/hard_corner,/area/survivalpod/superpose/SurvivalScienceV2) +"s" = (/obj/structure/sink/kitchen{dir = 8; pixel_x = -10},/obj/machinery/light{dir = 8},/turf/simulated/shuttle/floor/voidcraft/dark,/area/survivalpod/superpose/SurvivalScienceV2) +"t" = (/obj/machinery/door/window/survival_pod,/turf/simulated/shuttle/plating/skipjack,/area/survivalpod/superpose/SurvivalScienceV2) +"u" = (/obj/structure/window/reinforced/survival_pod{dir = 4},/turf/simulated/shuttle/plating/skipjack,/area/survivalpod/superpose/SurvivalScienceV2) +"v" = (/obj/machinery/smartfridge/survival_pod{icon = 'icons/obj/vending.dmi'; icon_base = "smartfridge"; icon_contents = "boxes"; icon_state = "smartfridge"; name = "Advanced storage"; pixel_y = -1},/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/item/weapon/storage/toolbox/electrical{pixel_x = 1; pixel_y = 6},/obj/item/weapon/storage/toolbox/electrical{pixel_x = 1; pixel_y = 6},/obj/item/weapon/storage/belt/utility,/obj/item/weapon/storage/belt/utility,/obj/item/device/multitool{pixel_x = 3},/obj/item/device/multitool{pixel_x = 3},/obj/item/weapon/tool/crowbar,/obj/item/weapon/tool/crowbar,/obj/item/weapon/tool/crowbar,/obj/item/device/mmi,/obj/item/device/mmi,/obj/item/device/mmi,/obj/item/clothing/head/welding{pixel_x = -3; pixel_y = 5},/obj/item/clothing/head/welding{pixel_x = -3; pixel_y = 5},/obj/item/clothing/head/welding/demon,/obj/item/clothing/glasses/welding,/obj/item/clothing/glasses/welding,/obj/item/stack/cable_coil,/obj/item/stack/cable_coil,/obj/item/stack/cable_coil,/obj/item/device/healthanalyzer,/obj/item/device/healthanalyzer,/obj/item/device/flash/synthetic,/obj/item/device/flash/synthetic,/obj/item/device/flash/synthetic,/obj/item/weapon/storage/firstaid/regular{empty = 1; name = "First-Aid (empty)"},/obj/item/weapon/storage/firstaid/regular{empty = 1; name = "First-Aid (empty)"},/obj/item/weapon/cell/high{charge = 100; maxcharge = 15000; pixel_x = 5; pixel_y = -5},/obj/item/weapon/cell/high{charge = 100; maxcharge = 15000; pixel_x = 5; pixel_y = -5},/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/stack/material/copper{amount = 25},/obj/item/stack/material/plastic{max_amount = 25},/obj/item/stack/material/plastic{max_amount = 25},/obj/item/stack/material/plasteel{amount = 10},/obj/item/stack/material/plasteel{amount = 10},/obj/item/stack/material/glass{amount = 50; pixel_x = -2; pixel_y = 2},/obj/item/stack/material/glass{amount = 50; pixel_x = -2; pixel_y = 2},/obj/item/stack/material/glass{amount = 50; pixel_x = -2; pixel_y = 2},/obj/item/stack/material/glass{amount = 50; pixel_x = -2; pixel_y = 2},/obj/item/stack/material/steel{amount = 50},/obj/item/stack/material/steel{amount = 50},/obj/item/stack/material/steel{amount = 50},/obj/item/stack/material/steel{amount = 50},/obj/item/device/flash,/obj/item/device/flash,/obj/effect/floor_decal/industrial/outline/yellow,/obj/item/clothing/mask/gas,/obj/item/clothing/mask/gas,/obj/item/weapon/implanter,/obj/item/weapon/implanter,/obj/item/weapon/implanter,/obj/item/weapon/storage/backpack/dufflebag/sci,/obj/machinery/light{dir = 1},/turf/simulated/shuttle/floor/voidcraft/light,/area/survivalpod/superpose/SurvivalScienceV2) +"w" = (/obj/machinery/r_n_d/destructive_analyzer,/obj/structure/window/reinforced/survival_pod{dir = 4},/obj/effect/floor_decal/industrial/outline/yellow,/turf/simulated/shuttle/floor/voidcraft/dark,/area/survivalpod/superpose/SurvivalScienceV2) +"x" = (/obj/structure/window/reinforced/survival_pod{dir = 8},/turf/simulated/shuttle/plating/skipjack,/area/survivalpod/superpose/SurvivalScienceV2) +"y" = (/obj/structure/table/reinforced,/obj/item/modular_computer/laptop/preset/custom_loadout/advanced,/obj/machinery/recharger/wallcharger{pixel_y = 22},/obj/machinery/recharger/wallcharger{pixel_x = 8; pixel_y = 32},/obj/machinery/light{dir = 1},/turf/simulated/shuttle/floor/voidcraft/dark,/area/survivalpod/superpose/SurvivalScienceV2) +"z" = (/obj/machinery/recharge_station,/obj/effect/floor_decal/industrial/outline/yellow,/obj/machinery/light{dir = 4},/turf/simulated/shuttle/floor/voidcraft/dark,/area/survivalpod/superpose/SurvivalScienceV2) +"A" = (/obj/machinery/mech_recharger,/obj/mecha/medical/odysseus/old,/obj/effect/floor_decal/industrial/warning/full,/turf/simulated/shuttle/floor/voidcraft/dark,/area/survivalpod/superpose/SurvivalScienceV2) +"B" = (/obj/machinery/mecha_part_fabricator/pros{req_access = null},/obj/effect/floor_decal/industrial/outline/yellow,/turf/simulated/shuttle/floor/voidcraft/dark,/area/survivalpod/superpose/SurvivalScienceV2) +"D" = (/obj/structure/window/reinforced/survival_pod{dir = 8},/obj/structure/window/reinforced/survival_pod{dir = 1},/obj/machinery/atmospherics/unary/vent_pump{dir = 8; external_pressure_bound = 0; external_pressure_bound_default = 0; icon_state = "map_vent_in"; initialize_directions = 8; internal_pressure_bound = 4000; internal_pressure_bound_default = 4000; pressure_checks = 2; pressure_checks_default = 2; pump_direction = 0; use_power = 1},/turf/simulated/floor/bluegrid{name = "Server Base"; nitrogen = 500; oxygen = 0; temperature = 80},/area/survivalpod/superpose/SurvivalScienceV2) +"E" = (/obj/structure/sign/mining/survival,/turf/simulated/shuttle/wall/voidcraft/survival/hard_corner,/area/survivalpod/superpose/SurvivalScienceV2) +"F" = (/obj/machinery/mech_recharger,/obj/effect/floor_decal/industrial/warning/full,/obj/structure/closet/walllocker_double/survival/west,/obj/machinery/light{dir = 8},/turf/simulated/shuttle/floor/voidcraft/dark,/area/survivalpod/superpose/SurvivalScienceV2) +"G" = (/turf/simulated/shuttle/plating/skipjack,/area/survivalpod/superpose/SurvivalScienceV2) +"I" = (/obj/structure/table/reinforced,/turf/simulated/shuttle/floor/voidcraft/dark,/area/survivalpod/superpose/SurvivalScienceV2) +"J" = (/obj/machinery/autolathe,/turf/simulated/shuttle/floor/voidcraft/dark,/area/survivalpod/superpose/SurvivalScienceV2) +"K" = (/obj/machinery/atmospherics/portables_connector{dir = 4},/obj/structure/window/reinforced/survival_pod{dir = 8},/obj/machinery/portable_atmospherics/canister/nitrogen,/obj/machinery/light,/turf/simulated/shuttle/plating/skipjack,/area/survivalpod/superpose/SurvivalScienceV2) +"L" = (/obj/structure/sign/mining/survival{dir = 4},/turf/simulated/shuttle/wall/voidcraft/survival/hard_corner,/area/survivalpod/superpose/SurvivalScienceV2) +"M" = (/obj/machinery/r_n_d/server/robotics,/turf/simulated/floor/bluegrid{name = "Server Base"; nitrogen = 500; oxygen = 0; temperature = 80},/area/survivalpod/superpose/SurvivalScienceV2) +"N" = (/obj/structure/window/reinforced/survival_pod{opacity = 1},/obj/machinery/computer/rdservercontrol{dir = 4},/turf/simulated/shuttle/floor/voidcraft/dark,/area/survivalpod/superpose/SurvivalScienceV2) +"O" = (/obj/structure/closet/secure_closet/guncabinet/phase{req_one_access = null},/obj/item/clothing/accessory/holster/waist,/obj/item/clothing/accessory/holster/waist,/obj/item/clothing/accessory/permit/gun/planetside,/obj/item/clothing/accessory/permit/gun/planetside,/obj/item/weapon/gun/energy/locked/frontier/holdout,/obj/item/weapon/gun/energy/locked/frontier/holdout,/turf/simulated/shuttle/floor/voidcraft/dark,/area/survivalpod/superpose/SurvivalScienceV2) +"Q" = (/obj/machinery/door/airlock/voidcraft/survival_pod,/turf/simulated/shuttle/plating/skipjack,/area/survivalpod/superpose/SurvivalScienceV2) +"R" = (/obj/structure/reagent_dispensers/acid{pixel_x = 30},/obj/effect/floor_decal/industrial/hatch/yellow,/turf/simulated/shuttle/floor/voidcraft/dark,/area/survivalpod/superpose/SurvivalScienceV2) +"S" = (/obj/structure/window/reinforced/survival_pod{dir = 8},/obj/machinery/atmospherics/unary/vent_pump{dir = 8; icon_state = "map_vent_out"; use_power = 1},/obj/machinery/light,/turf/simulated/floor/bluegrid{name = "Server Base"; nitrogen = 500; oxygen = 0; temperature = 80},/area/survivalpod/superpose/SurvivalScienceV2) +"U" = (/obj/machinery/door/window/survival_pod{dir = 2},/turf/simulated/shuttle/plating/skipjack,/area/survivalpod/superpose/SurvivalScienceV2) +"V" = (/obj/structure/fans,/turf/simulated/shuttle/floor/voidcraft/dark,/area/survivalpod/superpose/SurvivalScienceV2) +"X" = (/obj/machinery/atmospherics/pipe/manifold/hidden{dir = 1},/obj/machinery/meter,/obj/machinery/door/window/survival_pod{dir = 1},/turf/simulated/shuttle/plating/skipjack,/area/survivalpod/superpose/SurvivalScienceV2) +"Y" = (/obj/structure/reagent_dispensers/fueltank/high,/obj/machinery/light{dir = 1},/turf/simulated/shuttle/floor/voidcraft/dark,/area/survivalpod/superpose/SurvivalScienceV2) +"Z" = (/obj/machinery/newscaster{layer = 3.3; pixel_y = -27},/turf/simulated/shuttle/plating/skipjack,/area/survivalpod/superpose/SurvivalScienceV2) + +(1,1,1) = {" +aqaqaqaqa +nIywYBvbL +amGtGiGRa +noGusGGzL +akcjNUgJa +nVfGGGxOL +aFGGeXDha +nAGZKpSML +aEQEaEaEa +"} diff --git a/modular_chomp/maps/submaps/shelters/SurvivalSecurity2-9x9.dmm b/modular_chomp/maps/submaps/shelters/SurvivalSecurity2-9x9.dmm new file mode 100644 index 0000000000..7d1e4ebfa5 --- /dev/null +++ b/modular_chomp/maps/submaps/shelters/SurvivalSecurity2-9x9.dmm @@ -0,0 +1,55 @@ +"a" = (/obj/effect/floor_decal/industrial/warning/corner{dir = 4},/turf/simulated/shuttle/floor/voidcraft/light,/area/survivalpod/superpose/SurvivalSecurityV2) +"b" = (/obj/effect/floor_decal/industrial/warning/corner{dir = 8},/obj/machinery/newscaster{pixel_x = -30},/turf/simulated/shuttle/floor/voidcraft,/area/survivalpod/superpose/SurvivalSecurityV2) +"c" = (/obj/machinery/light{dir = 8},/turf/simulated/shuttle/floor/voidcraft/light,/area/survivalpod/superpose/SurvivalSecurityV2) +"d" = (/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/shuttle/floor/voidcraft,/area/survivalpod/superpose/SurvivalSecurityV2) +"f" = (/obj/machinery/button/remote/blast_door{id = "SP-Cell"; name = "Cell Door"; pixel_x = 6; pixel_y = -33; req_one_access = list(2,4)},/obj/machinery/button/flasher{id = "SP-Cell flash"; name = "Cell Flash"; pixel_x = 7; pixel_y = -24; req_access = list(2,4)},/obj/effect/floor_decal/industrial/warning/corner{dir = 1},/turf/simulated/shuttle/floor/voidcraft,/area/survivalpod/superpose/SurvivalSecurityV2) +"g" = (/obj/machinery/light{dir = 4},/turf/simulated/shuttle/floor/voidcraft/light,/area/survivalpod/superpose/SurvivalSecurityV2) +"i" = (/obj/machinery/vending/emergencyfood/filled,/turf/simulated/shuttle/floor/voidcraft/light,/area/survivalpod/superpose/SurvivalSecurityV2) +"j" = (/turf/simulated/shuttle/floor/voidcraft/light,/area/survivalpod/superpose/SurvivalSecurityV2) +"k" = (/obj/machinery/light{dir = 4},/turf/simulated/shuttle/plating/skipjack,/area/survivalpod/superpose/SurvivalSecurityV2) +"l" = (/obj/machinery/vending/security{pixel_x = 3; pixel_y = -1; req_access = null; dir = 1},/turf/simulated/shuttle/plating/skipjack,/area/survivalpod/superpose/SurvivalSecurityV2) +"m" = (/obj/machinery/light{layer = 3},/obj/structure/bed/padded,/obj/machinery/flasher{id = "SP-Cell flash"; pixel_y = -26},/turf/simulated/shuttle/floor/voidcraft/light,/area/survivalpod/superpose/SurvivalSecurityV2) +"n" = (/obj/structure/fans,/obj/structure/window/reinforced/survival_pod{dir = 1},/obj/structure/window/reinforced/survival_pod{dir = 8},/turf/simulated/shuttle/plating/skipjack,/area/survivalpod/superpose/SurvivalSecurityV2) +"o" = (/obj/machinery/light{dir = 8},/obj/structure/bed/chair,/turf/simulated/shuttle/floor/voidcraft/light,/area/survivalpod/superpose/SurvivalSecurityV2) +"p" = (/obj/structure/table/steel,/obj/item/device/starcaster_news{pixel_x = -6; pixel_y = 10},/obj/item/toy/eight_ball{pixel_x = 5; pixel_y = 4},/obj/machinery/light{dir = 1},/turf/simulated/shuttle/floor/voidcraft/light,/area/survivalpod/superpose/SurvivalSecurityV2) +"s" = (/obj/structure/closet/secure_closet/brig{id = "Cell"; name = "Cell Locker"},/turf/simulated/shuttle/floor/voidcraft/light,/area/survivalpod/superpose/SurvivalSecurityV2) +"t" = (/obj/machinery/smartfridge/survival_pod,/obj/item/weapon/storage/mre/random,/obj/item/weapon/storage/mre/random,/obj/item/weapon/storage/mre/random,/obj/item/weapon/storage/mre/random,/obj/item/weapon/storage/mre/random,/obj/item/weapon/storage/mre/random,/obj/item/weapon/storage/mre/menu9,/obj/item/weapon/storage/mre/menu9,/obj/item/weapon/storage/mre/menu10,/obj/item/weapon/storage/mre/menu10,/obj/item/weapon/storage/mre/menu11,/obj/item/weapon/storage/mre/menu11,/obj/item/device/fbp_backup_cell,/obj/item/device/fbp_backup_cell,/obj/item/device/fbp_backup_cell,/obj/item/device/fbp_backup_cell,/obj/item/device/fbp_backup_cell,/obj/item/weapon/storage/pill_bottle/antitox,/obj/item/weapon/storage/box/survival/space,/obj/item/device/healthanalyzer,/obj/item/weapon/storage/pill_bottle/dice_nerd,/obj/item/weapon/storage/firstaid/regular,/obj/item/weapon/extinguisher/mini,/obj/item/weapon/extinguisher/mini,/obj/item/weapon/storage/box/survival/space,/obj/item/weapon/storage/box/survival/space,/obj/item/device/radio,/obj/item/device/radio,/obj/item/device/radio,/obj/item/device/starcaster_news,/obj/item/device/starcaster_news,/obj/item/device/threadneedle,/obj/item/device/flashlight,/obj/item/device/flashlight,/obj/item/weapon/storage/toolbox/emergency,/obj/item/weapon/storage/pill_bottle/spaceacillin,/obj/random/soap,/obj/item/weapon/material/knife/machete/hatchet,/obj/item/weapon/storage/box/flare,/obj/machinery/light{layer = 3},/obj/structure/window/reinforced/survival_pod{dir = 8},/turf/simulated/shuttle/plating/skipjack,/area/survivalpod/superpose/SurvivalSecurityV2) +"u" = (/obj/structure/sign/mining,/turf/simulated/shuttle/wall/voidcraft/survival,/area/survivalpod/superpose/SurvivalSecurityV2) +"v" = (/obj/item/device/gps/computer,/obj/structure/window/reinforced/survival_pod{dir = 1},/turf/simulated/shuttle/plating/skipjack,/area/survivalpod/superpose/SurvivalSecurityV2) +"w" = (/obj/machinery/door/window/survival_pod{dir = 8},/turf/simulated/shuttle/plating/skipjack,/area/survivalpod/superpose/SurvivalSecurityV2) +"y" = (/obj/effect/floor_decal/industrial/outline/yellow,/obj/machinery/flasher{id = "SP-Cell flash"; name = "Floor mounted flash"},/turf/simulated/shuttle/floor/voidcraft/light,/area/survivalpod/superpose/SurvivalSecurityV2) +"z" = (/obj/structure/sign/mining/survival,/turf/simulated/shuttle/wall/voidcraft/survival,/area/survivalpod/superpose/SurvivalSecurityV2) +"A" = (/obj/structure/closet/walllocker_double/survival/south,/turf/simulated/shuttle/floor/voidcraft,/area/survivalpod/superpose/SurvivalSecurityV2) +"B" = (/obj/machinery/washing_machine{pixel_x = 8; pixel_y = 15},/obj/item/weapon/storage/laundry_basket{pixel_x = -1; pixel_y = -7},/turf/simulated/shuttle/floor/voidcraft/light,/area/survivalpod/superpose/SurvivalSecurityV2) +"C" = (/obj/machinery/light{dir = 1},/obj/effect/floor_decal/industrial/warning/cee,/turf/simulated/shuttle/floor/voidcraft/light,/area/survivalpod/superpose/SurvivalSecurityV2) +"D" = (/obj/structure/closet/crate/bin{pixel_x = 6; pixel_y = 13},/obj/structure/reagent_dispensers/water_cooler/full{pixel_x = -10; pixel_y = 12},/obj/machinery/newscaster{pixel_y = 30},/turf/simulated/shuttle/floor/voidcraft/light,/area/survivalpod/superpose/SurvivalSecurityV2) +"F" = (/obj/machinery/button/remote/blast_door{dir = 8; id = "SP-Cell2"; name = "Cell Door"; pixel_x = -25; pixel_y = 8; req_one_access = list(2,4)},/obj/machinery/button/flasher{id = "SP-Cell flash"; name = "Cell Flash"; pixel_x = 7; pixel_y = 26; req_access = list(2,4)},/turf/simulated/shuttle/floor/voidcraft,/area/survivalpod/superpose/SurvivalSecurityV2) +"G" = (/obj/structure/sign/mining/survival{dir = 4},/turf/simulated/shuttle/wall/voidcraft/survival,/area/survivalpod/superpose/SurvivalSecurityV2) +"H" = (/obj/effect/floor_decal/industrial/warning{dir = 8},/turf/simulated/shuttle/floor/voidcraft,/area/survivalpod/superpose/SurvivalSecurityV2) +"I" = (/obj/effect/floor_decal/industrial/warning{dir = 1},/turf/simulated/shuttle/floor/voidcraft/light,/area/survivalpod/superpose/SurvivalSecurityV2) +"J" = (/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/shuttle/floor/voidcraft,/area/survivalpod/superpose/SurvivalSecurityV2) +"K" = (/turf/simulated/shuttle/wall/voidcraft/survival,/area/survivalpod/superpose/SurvivalSecurityV2) +"L" = (/obj/item/weapon/newspaper,/obj/item/device/tape,/obj/item/device/taperecorder{pixel_x = -4; pixel_y = 2},/obj/structure/table/standard,/obj/item/weapon/paper_bin,/obj/item/weapon/pen,/turf/simulated/shuttle/floor/voidcraft/light,/area/survivalpod/superpose/SurvivalSecurityV2) +"N" = (/obj/machinery/door/blast/regular{dir = 2; id = "SP-Cell2"; name = "Cell Door"},/turf/simulated/shuttle/floor/voidcraft/light,/area/survivalpod/superpose/SurvivalSecurityV2) +"O" = (/obj/structure/sign/mining/survival{dir = 1},/turf/simulated/shuttle/wall/voidcraft/survival,/area/survivalpod/superpose/SurvivalSecurityV2) +"P" = (/turf/simulated/shuttle/floor/voidcraft,/area/survivalpod/superpose/SurvivalSecurityV2) +"Q" = (/obj/structure/bed/pod,/obj/item/weapon/bedsheet/green,/obj/effect/floor_decal/industrial/warning{dir = 8},/turf/simulated/shuttle/floor/voidcraft/light,/area/survivalpod/superpose/SurvivalSecurityV2) +"S" = (/obj/machinery/power/apc/alarms_hidden{dir = 1; pixel_y = 20},/obj/structure/cable/green{d2 = 8; icon_state = "0-8"},/turf/simulated/shuttle/floor/voidcraft,/area/survivalpod/superpose/SurvivalSecurityV2) +"T" = (/obj/effect/floor_decal/industrial/warning{dir = 8},/turf/simulated/shuttle/floor/voidcraft/light,/area/survivalpod/superpose/SurvivalSecurityV2) +"U" = (/obj/machinery/door/blast/regular{dir = 4; id = "SP-Cell"; name = "Cell Door"},/turf/simulated/shuttle/floor/voidcraft/light,/area/survivalpod/superpose/SurvivalSecurityV2) +"V" = (/obj/structure/grille,/obj/structure/window/reinforced/polarized{dir = 1; id = "SP-Sec"},/obj/structure/window/reinforced/polarized{dir = 4; id = "SP-Sec"},/obj/structure/window/reinforced/polarized{dir = 8; id = "SP-Sec"},/obj/structure/window/reinforced/polarized{id = "SP-Sec"},/obj/structure/cable/green{d2 = 2; icon_state = "0-2"},/turf/simulated/floor/plating,/area/survivalpod/superpose/SurvivalSecurityV2) +"W" = (/obj/structure/bed/pod,/obj/item/weapon/bedsheet/red,/turf/simulated/shuttle/floor/voidcraft/light,/area/survivalpod/superpose/SurvivalSecurityV2) +"X" = (/obj/structure/sign/mining/survival{dir = 8},/turf/simulated/shuttle/wall/voidcraft/survival,/area/survivalpod/superpose/SurvivalSecurityV2) +"Z" = (/obj/structure/fans/tiny,/obj/effect/floor_decal/industrial/danger/full,/obj/machinery/door/airlock/voidcraft/vertical,/turf/simulated/floor/tiled/techmaint,/area/survivalpod/superpose/SurvivalSecurityV2) + +(1,1,1) = {" +KKOKKKuKK +KiCQDWpBK +XoyTjjygG +KLjKKVVKK +KKNKFJdSZ +KaIKbPnvK +XcjUHPwkG +KsmKfAtlK +KKuKKKzKK +"} diff --git a/modular_chomp/maps/submaps/shelters/TradingShip-40x22.dmm b/modular_chomp/maps/submaps/shelters/TradingShip-40x22.dmm index 58b004eb45..e24173854e 100644 --- a/modular_chomp/maps/submaps/shelters/TradingShip-40x22.dmm +++ b/modular_chomp/maps/submaps/shelters/TradingShip-40x22.dmm @@ -102,7 +102,7 @@ "xM" = (/obj/machinery/light/small{dir = 4},/turf/simulated/shuttle/floor/black,/area/survivalpod/superpose/TradingShip) "xZ" = (/obj/structure/filingcabinet/filingcabinet,/turf/simulated/shuttle/floor/black,/area/survivalpod/superpose/TradingShip) "yw" = (/obj/structure/bed/padded,/obj/item/weapon/bedsheet/rd,/turf/simulated/shuttle/floor/black,/area/survivalpod/superpose/TradingShip) -"yx" = (/obj/structure/table/steel_reinforced,/obj/item/weapon/rig/internalaffairs,/obj/item/clothing/head/helmet/space/void/wizard,/obj/item/clothing/suit/space/void/wizard,/obj/item/device/survivalcapsule/luxury,/obj/item/device/survivalcapsule/luxurybar,/obj/item/device/survivalcapsule/military,/obj/item/device/survivalcapsule/tabiranth,/obj/item/device/survivalcapsule,/obj/item/device/survivalcapsule,/obj/item/device/survivalcapsule,/obj/item/device/survivalcapsule/luxury,/obj/item/device/survivalcapsule/luxury,/turf/simulated/shuttle/floor/black,/area/survivalpod/superpose/TradingShip) +"yx" = (/obj/structure/table/steel_reinforced,/obj/item/weapon/rig/internalaffairs,/obj/item/clothing/head/helmet/space/void/wizard,/obj/item/clothing/suit/space/void/wizard,/obj/item/device/survivalcapsule/luxury,/obj/item/device/survivalcapsule/luxurybar,/obj/item/device/survivalcapsule/tabiranth,/obj/item/device/survivalcapsule,/obj/item/device/survivalcapsule,/obj/item/device/survivalcapsule,/obj/item/device/survivalcapsule/luxury,/obj/item/device/survivalcapsule/luxury,/obj/item/device/survivalcapsule/superpose,/turf/simulated/shuttle/floor/black,/area/survivalpod/superpose/TradingShip) "yN" = (/obj/machinery/photocopier,/turf/simulated/floor/carpet,/area/survivalpod/superpose/TradingShip) "yS" = (/obj/structure/closet/crate,/obj/item/stack/material/plastic{amount = 50},/obj/item/stack/material/plastic{amount = 50},/obj/item/stack/material/plastic{amount = 50},/obj/item/stack/material/plastic{amount = 50},/obj/item/stack/material/steel{amount = 50},/obj/item/stack/material/steel{amount = 50},/obj/item/stack/material/steel{amount = 50},/obj/item/stack/material/steel{amount = 50},/obj/item/stack/material/glass{amount = 50},/obj/item/stack/material/glass{amount = 50},/obj/item/stack/material/glass{amount = 50},/obj/item/stack/material/glass{amount = 50},/obj/item/stack/rods{amount = 50},/obj/item/stack/rods{amount = 50},/obj/item/stack/rods{amount = 50},/obj/item/stack/rods{amount = 50},/obj/item/stack/cable_coil{pixel_x = 3; pixel_y = 3},/obj/item/stack/cable_coil{pixel_x = 3; pixel_y = 3},/obj/item/stack/cable_coil/green,/obj/item/stack/cable_coil/blue,/obj/item/weapon/storage/briefcase/inflatable,/obj/item/weapon/storage/briefcase/inflatable,/obj/item/weapon/storage/briefcase/inflatable,/obj/item/weapon/storage/briefcase/inflatable,/turf/simulated/shuttle/floor/black,/area/survivalpod/superpose/TradingShip) "zh" = (/obj/machinery/light{dir = 1},/turf/simulated/shuttle/floor/black,/area/survivalpod/superpose/TradingShip) @@ -126,7 +126,7 @@ "Gk" = (/obj/structure/table/standard,/obj/machinery/chemical_dispenser/bar_alc/full,/turf/simulated/shuttle/floor/black,/area/survivalpod/superpose/TradingShip) "GN" = (/obj/machinery/light/small{dir = 4},/obj/machinery/airlock_sensor{dir = 8; id_tag = null; pixel_x = 27},/obj/machinery/atmospherics/unary/vent_pump/high_volume{dir = 1; id_tag = null},/turf/simulated/shuttle/floor/black,/area/survivalpod/superpose/TradingShip) "GS" = (/obj/effect/floor_decal/industrial/warning{dir = 6},/obj/mecha/working/ripley/firefighter,/turf/simulated/shuttle/floor/black,/area/survivalpod/superpose/TradingShip) -"GU" = (/obj/machinery/light{dir = 4},/obj/machinery/vending/deluxe_boozeomat{req_access = null; req_log_access = null},/turf/simulated/shuttle/floor/black,/area/survivalpod/superpose/TradingShip) +"GU" = (/obj/machinery/light{dir = 4},/obj/machinery/vending/foodstuffing,/turf/simulated/shuttle/floor/black,/area/survivalpod/superpose/TradingShip) "Hh" = (/obj/structure/table/steel_reinforced,/obj/random/action_figure,/obj/random/action_figure,/obj/random/action_figure,/obj/random/action_figure,/obj/random/action_figure,/obj/random/action_figure,/obj/random/curseditem,/obj/random/curseditem,/obj/random/curseditem,/turf/simulated/shuttle/floor/black,/area/survivalpod/superpose/TradingShip) "Hp" = (/obj/structure/table/standard,/obj/item/weapon/storage/box/donkpockets,/turf/simulated/floor/carpet,/area/survivalpod/superpose/TradingShip) "HB" = (/obj/machinery/atmospherics/pipe/simple/visible,/obj/structure/closet/crate/solar,/obj/machinery/light{dir = 8},/turf/simulated/shuttle/floor/black,/area/survivalpod/superpose/TradingShip) @@ -135,7 +135,7 @@ "Ii" = (/obj/machinery/computer/arcade/battle,/turf/simulated/shuttle/floor/black,/area/survivalpod/superpose/TradingShip) "IL" = (/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced{dir = 1},/obj/structure/grille,/obj/structure/window/reinforced{dir = 4},/turf/simulated/shuttle/plating,/area/survivalpod/superpose/TradingShip) "Jg" = (/obj/structure/window/reinforced,/obj/machinery/door/blast/shutters{density = 0; icon_state = "shutter0"; id = "tradestarshutters"; name = "Blast Shutters"; opacity = 0},/obj/structure/grille,/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced/full,/turf/simulated/shuttle/plating,/area/survivalpod/superpose/TradingShip) -"JF" = (/obj/machinery/vending/deluxe_dinner{req_access = null; req_log_access = null},/turf/simulated/shuttle/floor/black,/area/survivalpod/superpose/TradingShip) +"JF" = (/obj/machinery/vending/foodasian,/turf/simulated/shuttle/floor/black,/area/survivalpod/superpose/TradingShip) "JI" = (/obj/structure/window/reinforced{dir = 1},/obj/machinery/door/blast/shutters{density = 0; dir = 2; icon_state = "shutter0"; id = "tradeportshutters"; name = "Blast Shutters"; opacity = 0},/obj/structure/grille,/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced,/obj/structure/window/reinforced/full,/turf/simulated/shuttle/plating,/area/survivalpod/superpose/TradingShip) "JN" = (/obj/machinery/body_scanconsole,/turf/simulated/shuttle/floor/black,/area/survivalpod/superpose/TradingShip) "Km" = (/obj/effect/floor_decal/industrial/warning{dir = 1},/obj/structure/largecrate/animal/cow,/turf/simulated/shuttle/floor/black,/area/survivalpod/superpose/TradingShip) @@ -143,6 +143,7 @@ "Kv" = (/obj/structure/table/steel_reinforced,/obj/item/weapon/lipstick/black,/obj/item/weapon/lipstick/jade,/obj/item/weapon/lipstick/purple,/obj/item/weapon/lipstick,/obj/item/weapon/lipstick/random,/turf/simulated/shuttle/floor/black,/area/survivalpod/superpose/TradingShip) "Lp" = (/obj/structure/window/reinforced{dir = 1},/obj/structure/table/steel_reinforced,/turf/simulated/shuttle/floor/black,/area/survivalpod/superpose/TradingShip) "Lt" = (/obj/structure/table/steel_reinforced,/obj/item/clothing/under/cheongsam,/obj/item/clothing/under/hosformalmale,/obj/item/clothing/under/hosformalfem,/obj/item/clothing/under/harness,/obj/item/clothing/under/gladiator,/obj/item/clothing/under/ert,/obj/item/clothing/under/schoolgirl,/obj/item/clothing/under/redcoat,/obj/item/clothing/under/sexymime,/obj/item/clothing/under/sexyclown,/obj/item/clothing/under/soviet,/obj/item/clothing/under/space,/obj/item/clothing/under/swimsuit/stripper/mankini,/obj/item/clothing/under/suit_jacket/female,/obj/item/clothing/under/rank/psych/turtleneck,/obj/item/clothing/under/syndicate/combat,/obj/item/clothing/under/syndicate/combat,/obj/item/clothing/under/syndicate/tacticool,/obj/item/clothing/under/syndicate/tacticool,/obj/item/clothing/under/dress/sailordress,/obj/item/clothing/under/dress/redeveninggown,/obj/item/clothing/under/dress/dress_saloon,/obj/item/clothing/under/dress/blacktango,/obj/item/clothing/under/dress/blacktango/alt,/obj/item/clothing/under/dress/dress_orange,/obj/item/clothing/under/dress/maid/janitor,/turf/simulated/shuttle/floor/black,/area/survivalpod/superpose/TradingShip) +"LX" = (/obj/machinery/vending/foodfish,/turf/simulated/shuttle/floor/black,/area/survivalpod/superpose/TradingShip) "Mc" = (/turf/template_noop,/area/template_noop) "Mk" = (/obj/effect/floor_decal/industrial/warning,/obj/structure/closet/crate/internals,/turf/simulated/shuttle/floor/black,/area/survivalpod/superpose/TradingShip) "MO" = (/obj/structure/bed/padded,/obj/item/weapon/bedsheet/captain,/turf/simulated/shuttle/floor/black,/area/survivalpod/superpose/TradingShip) @@ -207,7 +208,7 @@ McMcMcMcMcMcMcMcMTMTMTMTMTMTARSpSpaaMTnDkDgJcVxdQQNECVCVSpVPSpDTcMSpSpMTMTMTMcMc McMcMcMcMcMcMcMcMcMcMcMcMTMTMTXHrfMTSEoiwTmYqTdZtQNECVSpARSEMTMTSEmJthMTMTMcMcMc McMcMcMTrqTUMTMTMTMTMTMTMTMTUwSpSpSpSpzhSpSpSpSpMTMTTKrfSEMTSVcaMTMTMTMTMcMcMcMc McMcMTMTIiPWMTuRMTtumFseSEMTnWSpCVCVCVCVCVCVCVCVCVSpCVSphxgACVCVfeMTBeAuMcMcMcMc -McMcXikxCVPbMTprSEMTfJMTETMTfGCVCVqVKmZDeSshSINqCVCVCVCVrxtNCVCVSpMTBeXOMcMcMcMc +McMcXikxCVPbMTprSEMTfJMTETMTfGCVCVqVKmZDeSshSINqCVCVCVCVrxtNCVCVLXMTBeXOMcMcMcMc McMcZXmdZsCVtxSpSpSpSpXySprfSpCVCVaPqzMkuAdPtXGSCVCVCVCVFLCVCVCVJFMTBedsMcMcMcMc McMcMTMTRyhmMTvCUynTuLYcSpeESpSpCVCVCVCVCVCVCVCVCVSpCVSpWLSpzNCVGUMTBeaAMcMcMcMc McMcMcMTqoWGMTMTMTMTMTMTMTSEvLSpSpSpSpDTSpSpSpSpMTMTTKrfSEMTjHlWMTMTMTMTMcMcMcMc diff --git a/modular_chomp/sound/voice/android_scream.ogg b/modular_chomp/sound/voice/android_scream.ogg new file mode 100644 index 0000000000..d3f179a84a Binary files /dev/null and b/modular_chomp/sound/voice/android_scream.ogg differ diff --git a/modular_chomp/sound/voice/borg_deathsound.ogg b/modular_chomp/sound/voice/borg_deathsound.ogg new file mode 100644 index 0000000000..bb11022abe Binary files /dev/null and b/modular_chomp/sound/voice/borg_deathsound.ogg differ diff --git a/modular_chomp/sound/voice/scream_silicon.ogg b/modular_chomp/sound/voice/scream_silicon.ogg index 0b3f47370a..a58c72b8ab 100644 Binary files a/modular_chomp/sound/voice/scream_silicon.ogg and b/modular_chomp/sound/voice/scream_silicon.ogg differ diff --git a/sound/effects/alarms/ambient_alarm_alt.ogg b/sound/effects/alarms/ambient_alarm_alt.ogg new file mode 100644 index 0000000000..482c67c9dc Binary files /dev/null and b/sound/effects/alarms/ambient_alarm_alt.ogg differ diff --git a/sound/effects/alarms/causality_alarm.ogg b/sound/effects/alarms/causality_alarm.ogg new file mode 100644 index 0000000000..081a9e221d Binary files /dev/null and b/sound/effects/alarms/causality_alarm.ogg differ diff --git a/sound/effects/alarms/crit_alarm.ogg b/sound/effects/alarms/crit_alarm.ogg new file mode 100644 index 0000000000..1ba4e8e865 Binary files /dev/null and b/sound/effects/alarms/crit_alarm.ogg differ diff --git a/sound/effects/alarms/decon_alarm.ogg b/sound/effects/alarms/decon_alarm.ogg new file mode 100644 index 0000000000..5431cfced7 Binary files /dev/null and b/sound/effects/alarms/decon_alarm.ogg differ diff --git a/sound/effects/alarms/engineering_alarm.ogg b/sound/effects/alarms/engineering_alarm.ogg new file mode 100644 index 0000000000..20d1084b5b Binary files /dev/null and b/sound/effects/alarms/engineering_alarm.ogg differ diff --git a/sound/effects/alarms/fire_alarm/Fire_alarm_mid.ogg b/sound/effects/alarms/fire_alarm/Fire_alarm_mid.ogg new file mode 100644 index 0000000000..f5dd95a9ab Binary files /dev/null and b/sound/effects/alarms/fire_alarm/Fire_alarm_mid.ogg differ diff --git a/sound/effects/alarms/sec_alarm.ogg b/sound/effects/alarms/sec_alarm.ogg new file mode 100644 index 0000000000..7ea784af46 Binary files /dev/null and b/sound/effects/alarms/sec_alarm.ogg differ diff --git a/sound/effects/alarms/threat_level_extreme.ogg b/sound/effects/alarms/threat_level_extreme.ogg new file mode 100644 index 0000000000..d8844a6aa3 Binary files /dev/null and b/sound/effects/alarms/threat_level_extreme.ogg differ diff --git a/sound/effects/alarms/threat_level_high.ogg b/sound/effects/alarms/threat_level_high.ogg new file mode 100644 index 0000000000..7a37a40fe9 Binary files /dev/null and b/sound/effects/alarms/threat_level_high.ogg differ diff --git a/tgui/packages/tgui/interfaces/CharacterDirectory.js b/tgui/packages/tgui/interfaces/CharacterDirectory.js index 8e37c78b37..0749816aa7 100644 --- a/tgui/packages/tgui/interfaces/CharacterDirectory.js +++ b/tgui/packages/tgui/interfaces/CharacterDirectory.js @@ -38,7 +38,7 @@ export const CharacterDirectory = (props, context) => { {(overlay && ) || (
@@ -52,7 +52,6 @@ export const CharacterDirectory = (props, context) => { /> }> -
Search:" output += "
Ckey: Admin ckey: