From 4f32eeb43d490dab9976c51165d0928ed8cc600a Mon Sep 17 00:00:00 2001 From: MrMelbert Date: Mon, 18 Aug 2025 17:17:02 -0500 Subject: [PATCH 1/5] Adds sleeper despawners --- code/__HELPERS/mobs.dm | 16 +- code/_onclick/hud/alert.dm | 4 + code/game/machinery/announcement_system.dm | 2 + code/game/machinery/sleepers.dm | 170 +++++++++++++++++- maplestation.dme | 2 - .../icons/obj/machines/sleeper.dmi | Bin 0 -> 5366 bytes tgui/packages/tgui/interfaces/Sleeper.jsx | 54 +++--- 7 files changed, 210 insertions(+), 38 deletions(-) create mode 100644 maplestation_modules/icons/obj/machines/sleeper.dmi diff --git a/code/__HELPERS/mobs.dm b/code/__HELPERS/mobs.dm index 4080ba37bf94..85d256f815d6 100644 --- a/code/__HELPERS/mobs.dm +++ b/code/__HELPERS/mobs.dm @@ -184,21 +184,21 @@ GLOBAL_LIST_INIT(skin_tone_names, list( * * Checks that `user` does not move, change hands, get stunned, etc. for the * given `delay`. Returns `TRUE` on success or `FALSE` on failure. - * + * * @param {mob} user - The mob performing the action. - * + * * @param {number} delay - The time in deciseconds. Use the SECONDS define for readability. `1 SECONDS` is 10 deciseconds. - * + * * @param {atom} target - The target of the action. This is where the progressbar will display. - * + * * @param {flag} timed_action_flags - Flags to control the behavior of the timed action. - * + * * @param {boolean} progress - Whether to display a progress bar / cogbar. - * + * * @param {datum/callback} extra_checks - Additional checks to perform before the action is executed. - * + * * @param {string} interaction_key - The assoc key under which the do_after is capped, with max_interact_count being the cap. Interaction key will default to target if not set. - * + * * @param {number} max_interact_count - The maximum amount of interactions allowed. */ /proc/do_after(mob/user, delay, atom/target, timed_action_flags = NONE, progress = TRUE, datum/callback/extra_checks, interaction_key, max_interact_count = 1, hidden = FALSE) diff --git a/code/_onclick/hud/alert.dm b/code/_onclick/hud/alert.dm index c2f12a66e821..b7bdc2d957a6 100644 --- a/code/_onclick/hud/alert.dm +++ b/code/_onclick/hud/alert.dm @@ -113,6 +113,10 @@ /// Boolean. If TRUE, the Click() proc will attempt to Click() on the master first if there is a master. var/click_master = TRUE +/atom/movable/screen/alert/Initialize(mapload, datum/hud/hud_owner) + . = ..() + if(mouse_over_pointer == MOUSE_HAND_POINTER) + add_filter("clickglow", 2, outline_filter(color = COLOR_GOLD, size = 1)) /atom/movable/screen/alert/MouseEntered(location,control,params) . = ..() diff --git a/code/game/machinery/announcement_system.dm b/code/game/machinery/announcement_system.dm index 1700abb0af1a..861e1a321ccb 100644 --- a/code/game/machinery/announcement_system.dm +++ b/code/game/machinery/announcement_system.dm @@ -90,6 +90,8 @@ GLOBAL_LIST_EMPTY(announcement_systems) message = CompileText(newhead, user, rank) else if(message_type == "ARRIVALS_BROKEN") message = "The arrivals shuttle has been damaged. Docking for repairs..." + else if(message_type == "DESPAWN") + message = CompileText("%PERSON, %RANK, has entered cryogenic storage.", user, rank) broadcast(message, channels) diff --git a/code/game/machinery/sleepers.dm b/code/game/machinery/sleepers.dm index c6415bdd04a9..ed1b69a81d7f 100644 --- a/code/game/machinery/sleepers.dm +++ b/code/game/machinery/sleepers.dm @@ -24,6 +24,8 @@ ///Message sent when a user enters the machine. var/enter_message = span_boldnotice("You feel cool air surround you. You go numb as your senses turn inward.") + var/resist_time = 0 SECONDS + ///List of currently available chems. var/list/available_chems = list() ///Used when emagged to scramble which chem is used, eg: mutadone -> morphine @@ -62,6 +64,13 @@ update_appearance() reset_chem_buttons() +/obj/machinery/sleeper/on_set_panel_open(old_value) + . = ..() + if(panel_open) + set_machine_stat(machine_stat | MAINT) + else + set_machine_stat(machine_stat & ~MAINT) + /obj/machinery/sleeper/RefreshParts() . = ..() var/matterbin_rating @@ -82,8 +91,15 @@ return ..() /obj/machinery/sleeper/container_resist_act(mob/living/user) - visible_message(span_notice("[occupant] emerges from [src]!"), - span_notice("You climb out of [src]!")) + if(resist_time > 0) + to_chat(user, span_notice("You pull at the release lever.")) + if(!do_after(user, resist_time, src)) + return + user.visible_message( + span_notice("[occupant] emerges from [src]!"), + span_notice("You climb out of [src]!"), + visible_message_flags = ALWAYS_SHOW_SELF_MESSAGE, + ) open_machine() /obj/machinery/sleeper/Exited(atom/movable/gone, direction) @@ -367,3 +383,153 @@ log_combat(user, occupant, "sprayed [chem] into", addition = "via [src]") return TRUE return ..() + +#define IS_SPAWNING "spawning" + +/obj/machinery/sleeper/cryo + name = "cryogenic pod" + desc = "An enclosed machine designed to put subjects in a state of suspended animation for long-term storage." + icon = 'maplestation_modules/icons/obj/machines/sleeper.dmi' + icon_state = "cryopod" + base_icon_state = "cryopod" + // circuit = /obj/item/circuitboard/machine/sleeper/cryo + enter_message = span_boldnotice("You feel a cold chill as you enter the pod. \ + You feel your body go numb as you enter a state of suspended animation.") + possible_chems = null + state_open = FALSE + density = TRUE + resist_time = 0.5 SECONDS + + var/throw_alert = TRUE + +/obj/machinery/sleeper/cryo/Initialize(mapload) + . = ..() + AddElement(/datum/element/empprotection, EMP_PROTECT_ALL) + +/obj/machinery/sleeper/cryo/examine(mob/user) + . = ..() + if(isliving(occupant) && user != occupant) + var/mob/living/occupant_l = occupant + var/obj/item/card/id/their_id = occupant_l.get_idcard() + . += span_notice("Inside, you can see [occupant][their_id ? ", the [their_id.assignment]" : ""][HAS_TRAIT(occupant, TRAIT_KNOCKEDOUT) ? " - sound asleep" : ""].") + +/obj/machinery/sleeper/cryo/set_occupant(atom/movable/new_occupant) + var/mob/living/old_occupant = occupant + . = ..() + var/mob/living/new_occupant_l = new_occupant + var/skey = REF(src) + if(istype(old_occupant)) + old_occupant.remove_status_effect(/datum/status_effect/grouped/stasis, skey) + // REMOVE_TRAIT(old_occupant, TRAIT_KNOCKEDOUT, IS_SPAWNING) + // REMOVE_TRAIT(old_occupant, TRAIT_MUTE, skey) + REMOVE_TRAIT(old_occupant, TRAIT_BLOCK_HEADSET_USE, skey) + REMOVE_TRAIT(old_occupant, TRAIT_SOFTSPOKEN, skey) + UnregisterSignal(old_occupant, COMSIG_MOB_CLIENT_PRE_LIVING_MOVE) + if(throw_alert) + old_occupant.clear_alert(skey) + if(istype(new_occupant_l)) + new_occupant_l.apply_status_effect(/datum/status_effect/grouped/stasis, skey) + // ADD_TRAIT(new_occupant_l, TRAIT_MUTE, skey) + ADD_TRAIT(new_occupant_l, TRAIT_BLOCK_HEADSET_USE, skey) + ADD_TRAIT(new_occupant_l, TRAIT_SOFTSPOKEN, skey) + RegisterSignal(new_occupant_l, COMSIG_MOB_CLIENT_PRE_LIVING_MOVE, PROC_REF(early_move_check)) + if(throw_alert) + new_occupant_l.throw_alert(skey, /atom/movable/screen/alert/cryosleep) + +/obj/machinery/sleeper/cryo/proc/early_move_check(mob/living/mob_occupant, new_loc, direct) + SIGNAL_HANDLER + + if(mob_occupant.incapacitated(IGNORE_STASIS) || DOING_INTERACTION_WITH_TARGET(mob_occupant, src)) + return NONE + INVOKE_ASYNC(src, TYPE_PROC_REF(/atom, relaymove), mob_occupant, direct) + return COMSIG_MOB_CLIENT_BLOCK_PRE_LIVING_MOVE + +/obj/machinery/sleeper/cryo/close_machine(mob/user, density_to_set) + . = ..() + if(isliving(occupant)) + playsound(src, 'sound/effects/spray.ogg', 5, TRUE, frequency = 0.5) + +/obj/machinery/sleeper/cryo/close_machine(mob/user, density_to_set) + . = ..() + if(isliving(occupant)) + playsound(src, 'sound/machines/fan_stop.ogg', 50, TRUE) + +/obj/machinery/sleeper/cryo/JoinPlayerHere(mob/living/joining_mob, buckle) + if(occupant || !ishuman(joining_mob)) + return ..() + throw_alert = FALSE + if(state_open) + close_machine() + set_occupant(joining_mob) + joining_mob.forceMove(src) + ADD_TRAIT(joining_mob, TRAIT_KNOCKEDOUT, IS_SPAWNING) + addtimer(TRAIT_CALLBACK_REMOVE(joining_mob, TRAIT_KNOCKEDOUT, IS_SPAWNING), rand(8, 15) * 1 SECONDS) + throw_alert = TRUE + +/obj/machinery/sleeper/cryo/default_deconstruction_crowbar(obj/item/crowbar, ignore_panel = 0, custom_deconstruct = FALSE) + return FALSE + +/obj/machinery/sleeper/cryo/default_deconstruction_screwdriver(mob/living/user, icon_state, base_icon_state, obj/item/screwdriver) + return FALSE + +/obj/machinery/sleeper/cryo/default_change_direction_wrench(mob/living/user, obj/item/wrench) + return FALSE + +/obj/machinery/sleeper/cryo/proc/saveable_item(obj/item/save_me) + if(save_me.resistance_flags & INDESTRUCTIBLE) + return TRUE + if(GLOB.steal_item_handler.objectives_by_path[save_me.type]) + return TRUE + return FALSE + +/obj/machinery/sleeper/cryo/proc/despawn_occupant() + if(!isliving(occupant)) + return + var/drop_loc = drop_location() + var/mob/living/mob_occupant = occupant + + set_occupant(null) + mob_occupant.ghostize(FALSE) + + for(var/obj/item/save_me in mob_occupant.get_all_contents()) + if(saveable_item(save_me)) + mob_occupant.transferItemToLoc(save_me, drop_loc, force = TRUE, silent = TRUE) + + qdel(mob_occupant) + open_machine() + + var/datum/record/associated_record = find_record(mob_occupant.real_name) + var/obj/machinery/announcement_system/announcer = pick(GLOB.announcement_systems) + if(!QDELETED(associated_record) && !QDELETED(announcer)) + announcer.announce("DESPAWN", mob_occupant.name, associated_record.rank, list()) + + deadchat_broadcast( + " has entered cryogenic storage.", + "[mob_occupant.real_name] ([associated_record?.rank || "Unknown"])", + turf_target = get_turf(src), + message_type = DEADCHAT_ARRIVALRATTLE, + ) + +#undef IS_SPAWNING + +/atom/movable/screen/alert/cryosleep + name = "Cryosleep" + desc = "Click this button to despawn your character." + mouse_over_pointer = MOUSE_HAND_POINTER + icon_state = "cold" + +/atom/movable/screen/alert/cryosleep/Click(location, control, params) + . = ..() + if(!.) + return . + var/obj/machinery/sleeper/cryo/sleeper = owner.loc + if(!istype(sleeper)) + stack_trace("[type] was clicked by [usr] without being in a sleeper.") + return FALSE + + var/are_you_sure = tgui_alert(usr, "Are you sure you want to despawn your character?", "Despawn Character", list("Yes", "No"), 5 SECONDS) + if(are_you_sure != "Yes" || QDELETED(src) || QDELETED(sleeper) || sleeper.occupant != usr) + return FALSE + + sleeper.despawn_occupant() + return TRUE diff --git a/maplestation.dme b/maplestation.dme index d61fe738b457..98934a4e46e3 100644 --- a/maplestation.dme +++ b/maplestation.dme @@ -6669,7 +6669,6 @@ #include "maplestation_modules\code\modules\vending\wardrobes.dm" #include "maplestation_modules\code\modules\wiremod\component_printer.dm" #include "maplestation_modules\code\modules\wiremod\shells.dm" -#ifdef MAPLESTATION_STORY_CONTENT #include "maplestation_modules\story_content\albert_equipment\code\albertclothing.dm" #include "maplestation_modules\story_content\albert_equipment\code\albertitem.dm" #include "maplestation_modules\story_content\alraune_miscitems\code\alrmiscitem.dm" @@ -6707,5 +6706,4 @@ #include "maplestation_modules\story_content\volkan_equipment\code\volkanpets_ai.dm" #include "maplestation_modules\story_content\volkan_equipment\datums\loadout_datum.dm" #include "maplestation_modules\story_content\wollys_items\code\wollysitems.dm" -#endif // MAPLESTATION_STORY_CONTENT // END_INCLUDE diff --git a/maplestation_modules/icons/obj/machines/sleeper.dmi b/maplestation_modules/icons/obj/machines/sleeper.dmi new file mode 100644 index 0000000000000000000000000000000000000000..27388313bf1e6b9c83a927825a3eccf696268c3d GIT binary patch literal 5366 zcmb7|c|276`@qi_j3rwtBu1%_+_8l$gKUxFRzhN^o2Bg8VjM%ElwByxsIE{l-6AEN zp#_N<$r3X5CHsuIv-2DGet-A({rz6we|~?Qb6%h4^PJ~-&N=Vrc|M6FQb)ww<)FuyDZQg2}m1hy35pJPNA%k@8z@{5?_}D%NA>$tlCU;LUE2 z1D@_CVSzWBu6_Z4h}5DK{B!d7MAe5bJI{y*uNwJ|E_&H%@cqIfPM8;^Xi!gx zIfz|*Pn(T1){ffzYg1wP=uvG>#QuoTmgIWD{G zoP^@pzF^c9R~Ji9ks1Z6VbPNSX=7>v`eqNyA93%(Pf4&a|Tl*H-}1oOHh(!c!r;ODTc1 z*q1kCHQ!40{CAEo+4J%%eeEPgk5O)c3W5|qQlPnB{t0o zF=x%U9z|}xb)`;;S(@1HkWX5@4;V|^&gKpnLD0tT=*2SSLwWbsylzv6Uyna`1aw+o zpDZHnR!4Lkia^jqSIyG*x#3eDN0w+~KBdCaUcCT}R2&OP_{81%m3@9?=c1fDm57M+ zGsCYH>-=Sxe7~(*tBE(lHK>=dg+rjzY~ox&dZUo4V?GI)@)F*wry>z{UGOaPcb7U+ z`uVvqS+G*|idj7qo$7EGH^&tYD$rS41IZpKN~3FDqe)TZ{hd-mZki@zBp{Y^!w+D} zH=elz`(`lqUcdBk8RKLJbsRo8N%l?6h+eAk+037iV0|@7mti#~eoZ_dCrosAFoh4R zNjj_g!TojP3Cj%awB;7d$7|n5Q+gsS96c=ft!*#+@GtAgkd#iQ) zIZOX9A$Xer)i0$a#Wy6~$nwU%s%>pVQGlf*GTqr$7QjLQl-tFZJKWiV(#`U;77=lh zlu}~9;qdxlfA}q5aW#a+{Nc*Ro1bRuQA2Z9<5LMk>c6SU9L0N`EU%Lw71*j630IMD z^l+)`DN=||_rYyhdv47AxKb(w%OJJ+lP{@U%ZrM^Tf!ta{XIs#>w9VQeP_=PuVMoP zjWaF##WMo;c__{%?kMw7cGHw~r|7ifDdYg*PxY5wCbeq)_7mt7ITRrE{ENa*SW${+q z+=I~}WsW-}OtK6H*eB+!kyQ|U-IsUR&A&NDc`ZeYRkeQK;0MfH7$>=BZN9{8BYuPhx_0)H4D2pF($WV(7knnX)6*CrEN9y{{XbkQgDoPKcXlJ*#?k;Vts6 zS0_UpL-BHNYU*aYO*!q4uYY-nh_W8sD4&M;D?c7rjkZD=1sw~XcEMqo?1Ml1vJ;xK zj8jLhJndT5s1?idQXlaUc_bM)eZCA61DZ$?yw{7&Ho3OLRlvLwrBTqZD-`x!P&zKk z;OOiNvkmSM?w%t!@l|n>9JsBq_&IB~^S-j?NdQCXZq|7dP?>iL&TQ0^-47&eDuCMn z8YdYj(?T9$4+yPNTn$?!WM!9tF2S|FZEttY$sNPZU`IZ|$@W?6JqYsgP#EaL_~ohI z6ymPM*AED1RrM$R&$UfFf!jI{9oyx`G^s6ZKJi4DrKWb!yRVT!fE(;KJK!yE4S##Bi^{(&3f{oCUA&4Gjn#9f(vfR% zYI>&8nn3?}pwfNs+Er&Ep7F$BPgDa&Zd@*>G8=rTn_XI6v9^)x-d#?kLywoN zHxn@fwcycIe&CTZ;NI(M+Fw!MN{J%4+RdAIX!E8@jHcZkW~5JS;dg>21@(a|z|Iu; z%pwxRd*6Qnf54f^o^G2aS@p;N(*rcetXmNOjXe17j6@vH&?Y0JAZ;L5b!y zO8%XpZ2P}5)LcstPHoxy+h=wn;4KWT4ACUlU9WD`A&svH+{zU2O@gt2u{=7QwB6zv z#;{I+3bXJ)2Tuw5@0HI%!M@RCS&_M#Do6qS*<6EQoNrPOD}YaGGIb?ffeN=(37UZU z@0TyZe;_EH`P|g5lVOhK$$L9&cNVVTAp9mH8}9 zPiB`-ya<#r{a&)r7Pr2=mnLM+J!NU${jkVcG^vVe1!MCXTAcE>x_NuB=n781cfiD1 zQ;AGniB>aDRxv*5&pL(c$BtUSj6M>2MTP)@cekf0A>5LgrQmjipS{^;H#>N|O+>PA z`8--szL>N-X6E`sutZE6<0LK+V+7z*u$}sF0YUBux@k$77+H@*J9({<)@b~N&BBNiC9v8^N&LMAB%t1VR`AiZ&)xC1)H zU+WBZO)`8ySX7@9@*o{+lrGjSB_uyH5Kp`a+$(xl3nF>&%f$&&y}ir(@uONhyov0@ zW$2Yk6P+Dda$YU=9_-vjC=V4AxxhaPk ze|ZMgwsNOij((5TN_a;hTgSlm8jrDfR^Z%4Y%qvR4{)CSpCJ=q~1ppD+vHbui@=^a3BYE}&)^Pzb z!{AJ*k@HZ|-a4REMy5>8^CfV`XEL{tYi#8zUH~u4fZJ`X0K<*EqT5U}g zuU_Fbw_``W>-h73E%uIViIY^CDTjE?Z?HXr`F^xXR(viEx~kyPKq+{a#^8jzu7Q~4 zL!&F5o*y~!Z=c0LsOX(5jOm&QUUT81{h6!NUN+2l+oM&#)8SfCeFf8sc;X5je(mor zl)AuZk$Q1ARz6sl!cJ^L;q?o{c&(!)PKLt+QrqA$M>vsRbxxV7BM3-&L2?cXUfc-! zh*)H;2;U;K z<|LGd z_D@ovYww%uehqrBbgFIsE6Rj=eq6$#pXi(`mme(*sfw*k#TER?P;2 z6&a3D=0l!?xk;)2g6%K+M(2djz7k%bbN10#@7=Zv6;e!_%SkLJy@)Ui95h;B$TI%K zzSi(Thh!~s65)WC9}m1}PTcB<4J!y?V2xg@f)j=CZ|Y}Clu&i^ksMIfg^m*g6xdZc&Q)95;19H5WmeqGwYQB$o`XnIq03n0KXA&j<8}E1fkJ%@kVjL4-Ha`S zdmn?Gghi;HK<a1h<2S@)cxJD3< z92;Swag+rFNI)c6FqVdUQMie_^-C;p>rFhpQ}USjOTyyZ1dX#Rm|t1x+!Ozpb$ zM!&wC`LvfEsf=^&syWoWofEmIY;nNMfLIGEA^e%KKM+EN{RDAgrcv8JqM{DIS-z$+ zu7To;o&J-PM)&}hxI5*JrkRd { )} -
act('door')} - /> - } - > - {chems.map((chem) => ( -
+ {chems.length > 0 && ( +
act('door')} + /> + } + > + {chems.map((chem) => ( +
+ )} ); From 2d43e3fe2ddad81a19fb8ccb56229f9738b68ab8 Mon Sep 17 00:00:00 2001 From: MrMelbert Date: Mon, 18 Aug 2025 17:47:23 -0500 Subject: [PATCH 2/5] Some maps --- _maps/map_files/KiloStation/KiloStation.dmm | 434 +++++++++--------- _maps/map_files/LimaStation/LimaStation.dmm | 49 +- _maps/map_files/PubbyStation/PubbyStation.dmm | 39 +- 3 files changed, 256 insertions(+), 266 deletions(-) diff --git a/_maps/map_files/KiloStation/KiloStation.dmm b/_maps/map_files/KiloStation/KiloStation.dmm index 19efdd3740ef..5c4f259c76ec 100644 --- a/_maps/map_files/KiloStation/KiloStation.dmm +++ b/_maps/map_files/KiloStation/KiloStation.dmm @@ -6115,14 +6115,17 @@ /turf/open/floor/iron/checker, /area/station/service/hydroponics) "aJz" = ( -/obj/effect/spawner/random/entertainment/arcade{ +/obj/machinery/sleeper/cryo{ dir = 4 }, -/obj/effect/turf_decal/siding/wood{ +/obj/effect/turf_decal/stripes/line{ dir = 4 }, -/turf/open/floor/wood/parquet, -/area/station/commons/fitness/recreation/entertainment) +/obj/effect/turf_decal/siding/dark_green{ + dir = 4 + }, +/turf/open/floor/iron/white, +/area/station/commons/lounge) "aJA" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible, @@ -11934,24 +11937,6 @@ /obj/structure/cable, /turf/open/floor/iron, /area/station/hallway/primary/starboard) -"bpo" = ( -/obj/effect/turf_decal/bot, -/obj/structure/rack, -/obj/item/storage/backpack/duffelbag/med{ - pixel_y = 5 - }, -/obj/item/reagent_containers/blood/random{ - pixel_x = 4; - pixel_y = 4 - }, -/obj/item/reagent_containers/blood/random, -/obj/effect/decal/cleanable/blood/old, -/obj/effect/decal/cleanable/cobweb/cobweb2, -/obj/effect/decal/cleanable/dirt, -/obj/structure/sign/warning/no_smoking/directional/north, -/obj/effect/spawner/random/medical/memeorgans, -/turf/open/floor/plating, -/area/station/maintenance/department/medical/central) "bpq" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/light/small/directional/north, @@ -11988,14 +11973,9 @@ /turf/open/floor/iron, /area/station/hallway/primary/starboard) "bpD" = ( -/obj/structure/girder, /obj/effect/decal/cleanable/dirt, -/obj/machinery/power/apc/auto_name/directional/south, -/obj/structure/cable, -/obj/effect/mapping_helpers/burnt_floor, -/obj/structure/grille/broken, -/turf/open/floor/plating, -/area/station/maintenance/department/medical/central) +/turf/open/floor/eighties, +/area/station/commons/locker) "bpF" = ( /obj/structure/sign/departments/cargo, /turf/closed/wall, @@ -12459,18 +12439,15 @@ /turf/open/floor/iron, /area/station/hallway/primary/central/fore) "bve" = ( -/obj/structure/table, -/obj/structure/sign/departments/medbay/alt/directional/east, -/obj/structure/sign/poster/official/help_others/directional/south, -/obj/item/storage/box/bodybags{ - pixel_y = 5 +/obj/effect/spawner/random/entertainment/arcade{ + dir = 8 }, -/obj/item/clothing/glasses/eyepatch{ - pixel_y = 4 +/obj/effect/turf_decal/siding/wood{ + dir = 8 }, -/obj/item/clothing/mask/surgical, -/turf/open/floor/plating, -/area/station/maintenance/department/medical/central) +/obj/item/radio/intercom/directional/east, +/turf/open/floor/wood/parquet, +/area/station/commons/locker) "bvi" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -15783,6 +15760,15 @@ /obj/structure/sign/warning/vacuum/external/directional/north, /turf/open/floor/plating, /area/station/construction/mining/aux_base) +"bTk" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/shutters{ + dir = 2; + id = "virologysurgery"; + name = "Virology Privacy Shutters" + }, +/turf/open/floor/plating, +/area/station/medical/virology) "bTl" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/sign/warning/vacuum/external, @@ -23405,7 +23391,7 @@ "cOn" = ( /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, -/area/station/commons/fitness/recreation/entertainment) +/area/station/commons/lounge) "cOp" = ( /obj/structure/sign/warning/docking, /turf/closed/wall/rust, @@ -23882,13 +23868,6 @@ /obj/effect/mapping_helpers/airlock/access/all/medical/surgery, /turf/open/floor/iron/dark, /area/station/medical/surgery/fore) -"cVO" = ( -/obj/structure/flora/grass/jungle/a/style_random, -/obj/structure/flora/bush/ferny/style_random, -/mob/living/carbon/human/species/monkey, -/obj/machinery/airalarm/directional/east, -/turf/open/floor/grass, -/area/station/medical/virology) "cWg" = ( /obj/effect/turf_decal/tile/neutral{ dir = 4 @@ -23924,18 +23903,17 @@ /turf/closed/wall, /area/station/commons/storage/primary) "cWQ" = ( -/obj/effect/turf_decal/siding/wood/corner{ +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ dir = 8 }, -/obj/effect/turf_decal/siding/wood{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ +/obj/effect/turf_decal/tile/green/diagonal_centre, +/obj/effect/turf_decal/tile/green/diagonal_edge, +/obj/effect/turf_decal/tile/green/diagonal_centre, +/obj/effect/turf_decal/stripes/corner{ dir = 8 }, -/turf/open/floor/wood/parquet, -/area/station/commons/fitness/recreation/entertainment) +/turf/open/floor/iron/diagonal, +/area/station/commons/lounge) "cWW" = ( /obj/machinery/disposal/bin, /obj/effect/turf_decal/bot, @@ -27081,21 +27059,25 @@ }, /obj/item/storage/medkit/o2, /obj/machinery/light/small/directional/south, +/obj/item/storage/backpack/duffelbag/med{ + pixel_y = 5 + }, /turf/open/floor/plating, /area/station/maintenance/port/greater) "eeg" = ( -/obj/structure/table, /obj/machinery/firealarm/directional/east, -/obj/effect/turf_decal/siding/wood/corner{ - dir = 1 - }, /obj/machinery/light/small/directional/south, -/obj/item/ashtray{ - pixel_y = 6; - pixel_x = 4 +/obj/machinery/sleeper/cryo{ + dir = 8 }, -/turf/open/floor/wood/parquet, -/area/station/commons/fitness/recreation/entertainment) +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/siding/dark_green{ + dir = 8 + }, +/turf/open/floor/iron/white, +/area/station/commons/lounge) "eej" = ( /obj/structure/table, /obj/effect/turf_decal/tile/neutral{ @@ -27883,7 +27865,7 @@ /area/station/service/kitchen/coldroom) "epS" = ( /turf/closed/wall, -/area/station/commons/fitness/recreation/entertainment) +/area/station/commons/lounge) "eqk" = ( /turf/closed/wall/r_wall, /area/station/command/heads_quarters/cmo) @@ -28332,16 +28314,19 @@ /turf/open/floor/iron/dark, /area/station/service/hydroponics) "eyO" = ( -/obj/effect/spawner/random/entertainment/arcade{ +/obj/machinery/status_display/ai/directional/north, +/obj/machinery/light/small/directional/north, +/obj/machinery/sleeper/cryo{ dir = 4 }, -/obj/machinery/status_display/ai/directional/north, -/obj/effect/turf_decal/siding/wood{ +/obj/effect/turf_decal/stripes/line{ dir = 4 }, -/obj/machinery/light/small/directional/north, -/turf/open/floor/wood/parquet, -/area/station/commons/fitness/recreation/entertainment) +/obj/effect/turf_decal/siding/dark_green{ + dir = 4 + }, +/turf/open/floor/iron/white, +/area/station/commons/lounge) "ezd" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -29374,15 +29359,15 @@ /turf/open/floor/grass, /area/station/service/hydroponics) "eRj" = ( -/obj/effect/turf_decal/siding/wood, -/obj/effect/turf_decal/siding/wood{ - dir = 1 - }, /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/wood/parquet, -/area/station/commons/fitness/recreation/entertainment) +/obj/effect/turf_decal/tile/green/diagonal_centre, +/obj/effect/turf_decal/tile/green/diagonal_edge, +/obj/effect/turf_decal/tile/green/diagonal_centre, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/iron/diagonal, +/area/station/commons/lounge) "eRk" = ( /obj/effect/turf_decal/bot, /obj/machinery/conveyor{ @@ -31599,6 +31584,16 @@ /obj/effect/mapping_helpers/airlock/access/all/engineering/general, /turf/open/floor/iron/dark, /area/station/engineering/supermatter/room) +"fBa" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/green/diagonal_centre, +/obj/effect/turf_decal/tile/green/diagonal_edge, +/obj/effect/turf_decal/tile/green/diagonal_centre, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/iron/diagonal, +/area/station/commons/lounge) "fBf" = ( /obj/effect/turf_decal/siding/dark_green{ dir = 4 @@ -31621,16 +31616,17 @@ /turf/open/floor/iron/dark, /area/station/medical/virology) "fBx" = ( -/obj/effect/spawner/random/entertainment/arcade{ +/obj/machinery/status_display/evac/directional/north, +/obj/machinery/light/small/directional/north, +/obj/structure/closet/secure_closet/personal, +/obj/effect/turf_decal/stripes/line{ dir = 8 }, -/obj/machinery/status_display/evac/directional/north, -/obj/effect/turf_decal/siding/wood{ +/obj/effect/turf_decal/siding/dark_green{ dir = 8 }, -/obj/machinery/light/small/directional/north, -/turf/open/floor/wood/parquet, -/area/station/commons/fitness/recreation/entertainment) +/turf/open/floor/iron/white, +/area/station/commons/lounge) "fBA" = ( /obj/machinery/chem_master, /obj/effect/turf_decal/delivery, @@ -33210,17 +33206,12 @@ }, /obj/item/storage/wallet, /obj/item/razor, +/obj/item/ashtray{ + pixel_y = 6; + pixel_x = 4 + }, /turf/open/floor/iron, /area/station/commons/locker) -"geB" = ( -/obj/machinery/door/airlock/maintenance, -/obj/structure/cable, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 8 - }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, -/turf/open/floor/iron/dark, -/area/station/maintenance/department/medical/central) "geJ" = ( /obj/effect/turf_decal/trimline/red/filled/line{ dir = 1 @@ -34005,6 +33996,9 @@ req_access = list("brig") }, /obj/machinery/computer/security/telescreen/isolation/directional/north, +/obj/machinery/sleeper/cryo{ + dir = 4 + }, /turf/open/floor/iron, /area/station/security/prison) "gtw" = ( @@ -35716,9 +35710,6 @@ /turf/open/floor/iron, /area/station/hallway/primary/central) "gVM" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, /obj/structure/cable, /turf/open/floor/iron, /area/station/hallway/primary/port) @@ -36639,6 +36630,16 @@ }, /turf/open/floor/iron, /area/station/cargo/sorting) +"hls" = ( +/obj/structure/cable, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/green/diagonal_centre, +/obj/effect/turf_decal/tile/green/diagonal_edge, +/obj/effect/turf_decal/tile/green/diagonal_centre, +/obj/machinery/holopad, +/obj/effect/turf_decal/bot, +/turf/open/floor/iron/diagonal, +/area/station/commons/lounge) "hma" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/disposalpipe/segment, @@ -38554,7 +38555,7 @@ }, /obj/effect/turf_decal/delivery, /obj/structure/sign/poster/official/no_erp/directional/south, -/obj/machinery/vending/coffee, +/obj/machinery/vending/autodrobe/all_access, /turf/open/floor/iron/dark, /area/station/commons/locker) "hUp" = ( @@ -38572,16 +38573,15 @@ /turf/closed/wall/r_wall, /area/station/maintenance/department/bridge) "hUE" = ( -/obj/effect/turf_decal/siding/wood/corner, -/obj/effect/turf_decal/siding/wood{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ dir = 4 }, -/turf/open/floor/wood/parquet, -/area/station/commons/fitness/recreation/entertainment) +/obj/effect/turf_decal/tile/green/diagonal_centre, +/obj/effect/turf_decal/tile/green/diagonal_edge, +/obj/effect/turf_decal/tile/green/diagonal_centre, +/obj/effect/turf_decal/stripes/corner, +/turf/open/floor/iron/diagonal, +/area/station/commons/lounge) "hUK" = ( /obj/item/radio{ pixel_x = 5; @@ -39056,19 +39056,6 @@ }, /turf/open/floor/iron/dark, /area/station/medical/medbay/lobby) -"icM" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Virology Maintenance" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/mapping_helpers/airlock/access/all/medical/virology, -/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{ - cycle_id = "viromonkey" - }, -/turf/open/floor/iron/dark, -/area/station/maintenance/department/medical/central) "icT" = ( /obj/effect/turf_decal/tile/yellow{ dir = 4 @@ -39624,7 +39611,6 @@ /obj/item/storage/backpack/satchel, /obj/item/clothing/suit/hooded/wintercoat, /obj/item/clothing/shoes/winterboots, -/obj/machinery/airalarm/directional/north, /obj/effect/landmark/start/hangover/closet, /turf/open/floor/iron/dark, /area/station/commons/locker) @@ -41091,6 +41077,7 @@ /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ dir = 1 }, +/obj/machinery/airalarm/directional/east, /turf/open/floor/grass, /area/station/medical/virology) "iJw" = ( @@ -44428,13 +44415,16 @@ /turf/open/floor/plating, /area/station/maintenance/starboard/aft) "jRu" = ( -/obj/machinery/door/airlock/maintenance, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 1 +/obj/machinery/door/airlock/public/glass{ + name = "Arcade" }, -/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron/dark, -/area/station/maintenance/department/medical/central) +/area/station/commons/locker) "jRw" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ dir = 8 @@ -45485,15 +45475,13 @@ /turf/open/floor/plating, /area/station/engineering/atmos/pumproom) "kkt" = ( -/obj/effect/turf_decal/stripes/corner{ +/obj/effect/turf_decal/siding/wood{ dir = 4 }, -/obj/structure/sign/warning/biohazard/directional/north, -/obj/effect/decal/cleanable/cobweb, /obj/effect/decal/cleanable/dirt, -/obj/effect/mapping_helpers/burnt_floor, -/turf/open/floor/plating, -/area/station/maintenance/department/medical/central) +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/iron/dark, +/area/station/commons/locker) "kkB" = ( /obj/structure/altar_of_gods, /obj/item/book/bible, @@ -46810,12 +46798,14 @@ /turf/open/floor/iron/dark, /area/station/medical/paramedic) "kDD" = ( -/obj/effect/decal/cleanable/blood/old, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/effect/mapping_helpers/burnt_floor, -/turf/open/floor/plating, -/area/station/maintenance/department/medical/central) +/obj/effect/spawner/random/entertainment/arcade{ + dir = 8 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/turf/open/floor/wood/parquet, +/area/station/commons/locker) "kEg" = ( /obj/structure/table, /obj/effect/turf_decal/tile/neutral{ @@ -47366,18 +47356,18 @@ /turf/open/floor/iron/dark, /area/station/commons/fitness/recreation) "kPO" = ( -/obj/structure/table, /obj/item/radio/intercom/directional/west, -/obj/effect/turf_decal/siding/wood/corner{ - dir = 4 - }, -/obj/machinery/cell_charger, -/obj/item/stock_parts/power_store/cell/high, -/obj/item/screwdriver, /obj/machinery/airalarm/directional/south, /obj/machinery/light/small/directional/south, -/turf/open/floor/wood/parquet, -/area/station/commons/fitness/recreation/entertainment) +/obj/structure/closet/secure_closet/personal, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/siding/dark_green{ + dir = 4 + }, +/turf/open/floor/iron/white, +/area/station/commons/lounge) "kPS" = ( /obj/structure/railing{ dir = 8 @@ -49372,10 +49362,12 @@ /turf/open/floor/engine/plasma, /area/station/engineering/atmos) "lwU" = ( -/obj/structure/chair/stool/directional/east, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/eighties, -/area/station/commons/fitness/recreation/entertainment) +/obj/effect/turf_decal/tile/green/diagonal_centre, +/obj/effect/turf_decal/tile/green/diagonal_edge, +/obj/effect/turf_decal/tile/green/diagonal_centre, +/turf/open/floor/iron/diagonal, +/area/station/commons/lounge) "lxe" = ( /turf/closed/wall/r_wall, /area/station/security/prison) @@ -51422,8 +51414,8 @@ /obj/effect/turf_decal/tile/neutral{ dir = 8 }, -/obj/machinery/vending/autodrobe/all_access, /obj/effect/turf_decal/delivery, +/obj/machinery/vending/coffee, /turf/open/floor/iron/dark, /area/station/commons/locker) "mlu" = ( @@ -54566,14 +54558,10 @@ /turf/open/floor/iron, /area/station/security/brig) "nmo" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/structure/grille/broken, /obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/turf/open/floor/plating, -/area/station/maintenance/department/medical/central) +/obj/machinery/newscaster/directional/north, +/turf/open/floor/eighties, +/area/station/commons/locker) "nmp" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -56949,15 +56937,15 @@ /turf/open/floor/iron, /area/station/maintenance/disposal/incinerator) "ois" = ( -/obj/machinery/door/airlock/public/glass{ - name = "Arcade" - }, /obj/machinery/door/firedoor, /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/door/airlock/public/glass{ + name = "Crew Storage" + }, /turf/open/floor/iron, -/area/station/commons/fitness/recreation/entertainment) +/area/station/commons/lounge) "oiw" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/mapping_helpers/broken_floor, @@ -59128,8 +59116,11 @@ "oUk" = ( /obj/structure/cable, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/eighties, -/area/station/commons/fitness/recreation/entertainment) +/obj/effect/turf_decal/tile/green/diagonal_centre, +/obj/effect/turf_decal/tile/green/diagonal_edge, +/obj/effect/turf_decal/tile/green/diagonal_centre, +/turf/open/floor/iron/diagonal, +/area/station/commons/lounge) "oUl" = ( /obj/effect/spawner/random/vending/snackvend, /obj/effect/turf_decal/tile/neutral{ @@ -60556,9 +60547,6 @@ /turf/open/floor/plating, /area/station/maintenance/starboard/aft) "prF" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, /obj/effect/turf_decal/tile/neutral{ dir = 1 }, @@ -61976,13 +61964,10 @@ /turf/open/floor/iron, /area/station/engineering/atmos) "pPd" = ( -/obj/effect/turf_decal/bot, -/obj/structure/bed/medical/emergency, -/obj/machinery/light/small/directional/south, -/obj/machinery/iv_drip, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/station/maintenance/department/medical/central) +/obj/structure/chair/stool/directional/east, +/turf/open/floor/eighties, +/area/station/commons/locker) "pPi" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/effect/turf_decal/tile/neutral{ @@ -62147,9 +62132,6 @@ /area/station/engineering/supermatter) "pRJ" = ( /obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, /obj/effect/turf_decal/tile/neutral{ dir = 1 }, @@ -65596,20 +65578,6 @@ /obj/effect/turf_decal/stripes/corner, /turf/open/floor/iron/white, /area/station/medical/exam_room) -"rdj" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/obj/structure/sink/kitchen/directional/south{ - desc = "A sink used for washing one's hands and face. It looks rusty and home-made"; - name = "old sink" - }, -/obj/effect/decal/cleanable/blood/old, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/department/medical/central) "rdu" = ( /obj/effect/turf_decal/stripes/line{ dir = 8 @@ -69571,8 +69539,14 @@ "siP" = ( /obj/machinery/power/apc/auto_name/directional/north, /obj/structure/cable, -/turf/open/floor/eighties, -/area/station/commons/fitness/recreation/entertainment) +/obj/effect/turf_decal/tile/green/diagonal_centre, +/obj/effect/turf_decal/tile/green/diagonal_edge, +/obj/effect/turf_decal/tile/green/diagonal_centre, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/turf/open/floor/iron/diagonal, +/area/station/commons/lounge) "sjJ" = ( /obj/effect/turf_decal/tile/neutral{ dir = 1 @@ -69633,6 +69607,8 @@ }, /obj/structure/table, /obj/machinery/newscaster/directional/north, +/obj/machinery/cell_charger, +/obj/item/stock_parts/power_store/cell/high, /turf/open/floor/iron/dark, /area/station/commons/locker) "sko" = ( @@ -71525,14 +71501,17 @@ /turf/open/floor/iron/dark, /area/station/engineering/atmos/storage/gas) "sVw" = ( -/obj/effect/spawner/random/entertainment/arcade{ +/obj/machinery/sleeper/cryo{ dir = 8 }, -/obj/effect/turf_decal/siding/wood{ +/obj/effect/turf_decal/stripes/line{ dir = 8 }, -/turf/open/floor/wood/parquet, -/area/station/commons/fitness/recreation/entertainment) +/obj/effect/turf_decal/siding/dark_green{ + dir = 8 + }, +/turf/open/floor/iron/white, +/area/station/commons/lounge) "sVE" = ( /obj/machinery/power/apc/auto_name/directional/north, /obj/structure/cable, @@ -73736,10 +73715,12 @@ /area/station/engineering/supermatter) "tJn" = ( /obj/machinery/newscaster/directional/north, -/obj/structure/chair/stool/directional/east, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/eighties, -/area/station/commons/fitness/recreation/entertainment) +/obj/effect/turf_decal/tile/green/diagonal_centre, +/obj/effect/turf_decal/tile/green/diagonal_edge, +/obj/effect/turf_decal/tile/green/diagonal_centre, +/turf/open/floor/iron/diagonal, +/area/station/commons/lounge) "tJq" = ( /obj/effect/turf_decal/tile/neutral{ dir = 4 @@ -74892,11 +74873,6 @@ /obj/effect/landmark/start/hangover, /turf/open/floor/iron, /area/station/commons/fitness/recreation) -"ubj" = ( -/obj/effect/turf_decal/sand/plating, -/mob/living/basic/bot/cleanbot/medbay, -/turf/open/floor/plating/airless, -/area/space/nearstation) "ubn" = ( /obj/effect/turf_decal/tile/neutral, /obj/effect/turf_decal/stripes/line{ @@ -81778,6 +81754,10 @@ /obj/effect/mapping_helpers/broken_floor, /turf/open/floor/plating, /area/station/maintenance/starboard) +"wzo" = ( +/obj/structure/chair/stool/directional/east, +/turf/open/floor/eighties, +/area/station/commons/locker) "wzs" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -82585,10 +82565,14 @@ /turf/open/floor/iron/dark, /area/station/hallway/secondary/service) "wMe" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/mapping_helpers/broken_floor, -/turf/open/floor/plating, -/area/station/maintenance/department/medical/central) +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron/dark, +/area/station/commons/locker) "wMg" = ( /obj/effect/landmark/start/hangover, /obj/effect/turf_decal/tile/neutral{ @@ -83269,6 +83253,8 @@ /obj/effect/turf_decal/stripes/line{ dir = 1 }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron/dark, /area/station/commons/locker) "wWj" = ( @@ -83938,10 +83924,11 @@ /turf/closed/wall, /area/station/engineering/storage/tech) "xeI" = ( -/obj/structure/chair/stool/directional/west, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/eighties, -/area/station/commons/fitness/recreation/entertainment) +/obj/effect/turf_decal/tile/green/diagonal_centre, +/obj/effect/turf_decal/tile/green/diagonal_edge, +/obj/effect/turf_decal/tile/green/diagonal_centre, +/turf/open/floor/iron/diagonal, +/area/station/commons/lounge) "xfj" = ( /obj/effect/turf_decal/siding/dark_green{ dir = 1 @@ -85925,6 +85912,7 @@ }, /obj/machinery/light/small/directional/north, /obj/effect/landmark/start/hangover/closet, +/obj/machinery/airalarm/directional/north, /turf/open/floor/iron/dark, /area/station/commons/locker) "xKO" = ( @@ -104709,8 +104697,8 @@ asg asX beX cnJ -xeI -xeI +fBa +lwU xeI hUE cOn @@ -104967,7 +104955,7 @@ cnL edM amA siP -oUk +hls oUk eRj ois @@ -105998,7 +105986,7 @@ acm oxC acm coy -epS +hBN xKT fZM sRc @@ -109850,8 +109838,8 @@ aUV aTh aTi sOO -cVO -icM +bAN +bAN nmo bpD tNZ @@ -110107,11 +110095,11 @@ bAN aTi dKg lGj -aPf -bAN -rdj +bTk +wzo pPd -tNZ +pPd +xXg imG kcq uFB @@ -110365,7 +110353,7 @@ vhx bAN teb bAN -bpo +kDD kDD bve wEY @@ -110622,9 +110610,9 @@ bpt wnU bpM boC -boC -geB -boC +tNZ +xXg +tNZ tNZ tNZ ePs @@ -114438,7 +114426,7 @@ aaa acm aaa aaa -ubj +cmU aUz aeu adH diff --git a/_maps/map_files/LimaStation/LimaStation.dmm b/_maps/map_files/LimaStation/LimaStation.dmm index 44b4fd0e9ca5..db4abb3d137a 100644 --- a/_maps/map_files/LimaStation/LimaStation.dmm +++ b/_maps/map_files/LimaStation/LimaStation.dmm @@ -132,6 +132,13 @@ /obj/structure/cable, /turf/open/floor/plating, /area/station/maintenance/port/fore) +"acU" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/sleeper/cryo{ + dir = 8 + }, +/turf/open/floor/iron, +/area/station/security/prison) "adb" = ( /obj/machinery/firealarm/directional/south, /obj/machinery/vending/tool, @@ -1018,7 +1025,7 @@ }, /obj/machinery/power/apc/auto_name/directional/south, /obj/structure/cable, -/obj/effect/spawner/random/entertainment/arcade{ +/obj/machinery/sleeper/cryo{ dir = 8 }, /turf/open/floor/iron/freezer, @@ -3565,7 +3572,7 @@ dir = 8 }, /obj/machinery/airalarm/directional/south, -/obj/effect/spawner/random/entertainment/arcade{ +/obj/machinery/sleeper/cryo{ dir = 4 }, /turf/open/floor/iron/freezer, @@ -9774,14 +9781,14 @@ /turf/open/floor/wood/large, /area/station/maintenance/old_rec) "dmO" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, /obj/effect/turf_decal/tile/neutral, /obj/machinery/camera/directional/south{ c_tag = "Prison Wing - Foyer"; network = list("ss13", "prison") }, +/obj/machinery/sleeper/cryo{ + dir = 4 + }, /turf/open/floor/iron, /area/station/security/prison) "dng" = ( @@ -16354,6 +16361,9 @@ /obj/machinery/light/directional/south, /obj/effect/turf_decal/tile/neutral, /obj/structure/noticeboard/directional/south, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, /turf/open/floor/iron, /area/station/security/prison) "fze" = ( @@ -36194,16 +36204,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/catwalk_floor/iron_dark, /area/station/maintenance/port/lower) -"lOt" = ( -/obj/effect/turf_decal/siding/wideplating{ - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/iron, -/area/station/security/prison) "lOB" = ( /obj/effect/turf_decal/tile/red{ dir = 4 @@ -37826,7 +37826,7 @@ /obj/effect/turf_decal/tile/green{ dir = 8 }, -/obj/effect/spawner/random/entertainment/arcade{ +/obj/machinery/sleeper/cryo{ dir = 4 }, /turf/open/floor/iron/freezer, @@ -52305,6 +52305,12 @@ }, /turf/open/floor/iron, /area/station/hallway/secondary/entry) +"qMm" = ( +/obj/machinery/duct, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron/checker, +/area/station/security/prison) "qMo" = ( /obj/effect/mapping_helpers/broken_floor, /obj/effect/decal/cleanable/dirt, @@ -71327,7 +71333,7 @@ }, /obj/structure/cable, /obj/machinery/newscaster/directional/east, -/obj/effect/spawner/random/entertainment/arcade{ +/obj/machinery/sleeper/cryo{ dir = 8 }, /turf/open/floor/iron/freezer, @@ -72785,6 +72791,7 @@ /obj/effect/turf_decal/tile/neutral{ dir = 4 }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, /turf/open/floor/iron, /area/station/security/prison) "xon" = ( @@ -73587,7 +73594,7 @@ }, /obj/structure/cable, /obj/machinery/firealarm/directional/east, -/obj/effect/spawner/random/entertainment/arcade{ +/obj/machinery/sleeper/cryo{ dir = 8 }, /turf/open/floor/iron/freezer, @@ -94629,7 +94636,7 @@ iIy sJB sJB qQq -dzL +acU eyn cYc wOX @@ -95396,7 +95403,7 @@ riq vLL hrv xoh -lhT +qMm aRO aRO mFV @@ -95909,7 +95916,7 @@ bID nkV jzw aJs -lOt +iQf vis dzL dzL diff --git a/_maps/map_files/PubbyStation/PubbyStation.dmm b/_maps/map_files/PubbyStation/PubbyStation.dmm index 77c4563aeabb..c60b81cdd8bc 100644 --- a/_maps/map_files/PubbyStation/PubbyStation.dmm +++ b/_maps/map_files/PubbyStation/PubbyStation.dmm @@ -8865,7 +8865,7 @@ department = "Dormitories"; name = "Dorms Requests Console" }, -/obj/structure/tank_holder/extinguisher, +/obj/machinery/vending/snack/blue, /turf/open/floor/iron/corner{ dir = 1 }, @@ -34311,17 +34311,12 @@ /turf/open/floor/iron/edge, /area/station/security/brig) "emV" = ( -/obj/machinery/door/firedoor, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ dir = 4 }, /obj/machinery/status_display/evac/directional/west, /turf/open/floor/iron, /area/station/commons/fitness/recreation) -"enI" = ( -/obj/machinery/vending/cola/red, -/turf/open/floor/iron/white/smooth_large, -/area/station/commons/fitness/recreation) "enO" = ( /obj/effect/turf_decal/stripes/corner{ dir = 4 @@ -39370,6 +39365,15 @@ /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, /turf/open/floor/iron/white/smooth_large, /area/station/medical/virology) +"ibu" = ( +/obj/effect/turf_decal/trimline/red/filled/line, +/obj/machinery/sleeper/cryo{ + dir = 8 + }, +/turf/open/floor/iron/dark/side{ + dir = 1 + }, +/area/station/security/prison) "ibw" = ( /obj/machinery/atmospherics/pipe/smart/simple/purple/visible{ dir = 4 @@ -43332,7 +43336,7 @@ /turf/open/floor/iron/smooth_half, /area/station/science/robotics/mechbay) "low" = ( -/obj/machinery/vending/snack/blue, +/obj/machinery/sleeper/cryo, /turf/open/floor/iron/white/smooth_large, /area/station/commons/fitness/recreation) "lpB" = ( @@ -43884,11 +43888,6 @@ /obj/item/wrench, /turf/open/floor/plating, /area/station/maintenance/department/science) -"lJM" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron, -/area/station/commons/fitness/recreation) "lJR" = ( /obj/effect/turf_decal/tile/yellow/half{ dir = 1 @@ -48105,10 +48104,6 @@ "oMN" = ( /turf/open/floor/iron/stairs/left, /area/station/service/abandoned_gambling_den) -"oNs" = ( -/obj/machinery/vending/cigarette, -/turf/open/floor/iron/white/smooth_large, -/area/station/commons/fitness/recreation) "oND" = ( /obj/machinery/meter, /obj/effect/decal/cleanable/dirt, @@ -56822,6 +56817,7 @@ /area/station/medical/medbay/central) "uFi" = ( /obj/item/radio/intercom/directional/east, +/obj/structure/tank_holder/extinguisher, /turf/open/floor/iron/corner{ dir = 8 }, @@ -59327,7 +59323,7 @@ /turf/open/floor/plating, /area/station/engineering/atmos) "wwE" = ( -/obj/structure/table, +/obj/machinery/vending/cola/red, /turf/open/floor/iron/edge{ dir = 4 }, @@ -60110,7 +60106,6 @@ "wRG" = ( /obj/structure/closet/lasertag/red, /obj/effect/turf_decal/tile/blue, -/obj/machinery/door/firedoor, /turf/open/floor/iron/white/corner{ dir = 4 }, @@ -84542,7 +84537,7 @@ aem nud iTv agd -agp +ibu ahp agM asA @@ -103322,10 +103317,10 @@ sFK sFK sFK aiS -enI +low fVJ lFK -lJM +lFK duC rrM pcg @@ -103579,7 +103574,7 @@ aiT aiS sFK aiS -oNs +low eHq wKP wRG From 54bf0bb510b3885fdb393983f02944284fb70f94 Mon Sep 17 00:00:00 2001 From: MrMelbert Date: Mon, 18 Aug 2025 18:27:58 -0500 Subject: [PATCH 3/5] Adds way to alt join --- _maps/map_files/KiloStation/KiloStation.dmm | 13 ++++++++- code/__DEFINES/preferences.dm | 4 +++ code/game/machinery/sleepers.dm | 29 +++++++++++++++++-- code/modules/jobs/job_types/_job.dm | 9 +++++- .../modules/mob/dead/new_player/new_player.dm | 2 +- maplestation.dme | 1 + .../code/modules/client/preferences/height.dm | 17 +++++------ .../client/preferences/spawn_location.dm | 20 +++++++++++++ .../character_preferences/_latejoin_spawn.tsx | 11 +++++++ 9 files changed, 91 insertions(+), 15 deletions(-) create mode 100644 maplestation_modules/code/modules/client/preferences/spawn_location.dm create mode 100644 tgui/packages/tgui/interfaces/PreferencesMenu/preferences/features/character_preferences/_latejoin_spawn.tsx diff --git a/_maps/map_files/KiloStation/KiloStation.dmm b/_maps/map_files/KiloStation/KiloStation.dmm index 5c4f259c76ec..32c858c0e518 100644 --- a/_maps/map_files/KiloStation/KiloStation.dmm +++ b/_maps/map_files/KiloStation/KiloStation.dmm @@ -12446,6 +12446,7 @@ dir = 8 }, /obj/item/radio/intercom/directional/east, +/obj/machinery/light/small/directional/south, /turf/open/floor/wood/parquet, /area/station/commons/locker) "bvi" = ( @@ -80759,6 +80760,16 @@ /obj/effect/landmark/event_spawn, /turf/open/floor/iron/showroomfloor, /area/station/security/lockers) +"weW" = ( +/obj/effect/spawner/random/entertainment/arcade{ + dir = 8 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/machinery/light/small/directional/north, +/turf/open/floor/wood/parquet, +/area/station/commons/locker) "weX" = ( /obj/effect/turf_decal/tile/blue{ dir = 4 @@ -110353,7 +110364,7 @@ vhx bAN teb bAN -kDD +weW kDD bve wEY diff --git a/code/__DEFINES/preferences.dm b/code/__DEFINES/preferences.dm index 69ac863865b8..e13ffc00e6cb 100644 --- a/code/__DEFINES/preferences.dm +++ b/code/__DEFINES/preferences.dm @@ -168,3 +168,7 @@ #define UPPER_LIP "Upper" #define MIDDLE_LIP "Middle" #define LOWER_LIP "Lower" + +// Latejoin Spawnpoints +#define SPAWNPOINT_CRYO "Cryogenic Storage" +#define SPAWNPOINT_ARRIVALS "Arrivals Shuttle" diff --git a/code/game/machinery/sleepers.dm b/code/game/machinery/sleepers.dm index ed1b69a81d7f..6c842761c9c5 100644 --- a/code/game/machinery/sleepers.dm +++ b/code/game/machinery/sleepers.dm @@ -81,7 +81,7 @@ available_chems.Cut() for(var/datum/stock_part/servo/servos in component_parts) - for(var/i in 1 to servos.tier) + for(var/i in 1 to min(servos.tier, length(possible_chems))) available_chems |= possible_chems[i] reset_chem_buttons() @@ -384,6 +384,8 @@ return TRUE return ..() +GLOBAL_LIST_INIT(cryo_sleepers, list()) + #define IS_SPAWNING "spawning" /obj/machinery/sleeper/cryo @@ -405,6 +407,12 @@ /obj/machinery/sleeper/cryo/Initialize(mapload) . = ..() AddElement(/datum/element/empprotection, EMP_PROTECT_ALL) + GLOB.cryo_sleepers += src + open_machine() + +/obj/machinery/sleeper/cryo/Destroy() + GLOB.cryo_sleepers -= src + return ..() /obj/machinery/sleeper/cryo/examine(mob/user) . = ..() @@ -463,7 +471,7 @@ set_occupant(joining_mob) joining_mob.forceMove(src) ADD_TRAIT(joining_mob, TRAIT_KNOCKEDOUT, IS_SPAWNING) - addtimer(TRAIT_CALLBACK_REMOVE(joining_mob, TRAIT_KNOCKEDOUT, IS_SPAWNING), rand(8, 15) * 1 SECONDS) + addtimer(TRAIT_CALLBACK_REMOVE(joining_mob, TRAIT_KNOCKEDOUT, IS_SPAWNING), rand(8, 12) * 1 SECONDS) throw_alert = TRUE /obj/machinery/sleeper/cryo/default_deconstruction_crowbar(obj/item/crowbar, ignore_panel = 0, custom_deconstruct = FALSE) @@ -475,6 +483,23 @@ /obj/machinery/sleeper/cryo/default_change_direction_wrench(mob/living/user, obj/item/wrench) return FALSE +/obj/machinery/sleeper/cryo/open_machine(drop = TRUE, density_to_set = FALSE) + density_to_set = TRUE + return ..() + +/// Checks if this can generically be used as a latejoin spawnpoint +/obj/machinery/sleeper/cryo/proc/can_latejoin(datum/job/joining) + if(!isnull(occupant)) + return FALSE + if(istype(joining, /datum/job/prisoner)) + if(!istype(get_area(src), /area/station/security/prison)) + return FALSE + else + if(!istype(get_area(src), /area/station/commons)) + return FALSE + return TRUE + +/// Checks if the passed item should avoid deletion when being despawned /obj/machinery/sleeper/cryo/proc/saveable_item(obj/item/save_me) if(save_me.resistance_flags & INDESTRUCTIBLE) return TRUE diff --git a/code/modules/jobs/job_types/_job.dm b/code/modules/jobs/job_types/_job.dm index b94ccc2f9730..2c0598b65654 100644 --- a/code/modules/jobs/job_types/_job.dm +++ b/code/modules/jobs/job_types/_job.dm @@ -516,9 +516,16 @@ log_mapping("Job [title] ([type]) couldn't find a round start spawn point.") /// Finds a valid latejoin spawn point, checking for events and special conditions. -/datum/job/proc/get_latejoin_spawn_point() +/datum/job/proc/get_latejoin_spawn_point(datum/preferences/prefs) if(length(GLOB.jobspawn_overrides[title])) //We're doing something special today. return pick(GLOB.jobspawn_overrides[title]) + if(prefs?.read_preference(/datum/preference/choiced/preferred_latejoin_spawn) == SPAWNPOINT_CRYO) + var/list/common_sleepers = list() + for(var/obj/machinery/sleeper/cryo/sleeper as anything in GLOB.cryo_sleepers) + if(sleeper.can_latejoin(src)) + common_sleepers += sleeper + if(length(common_sleepers)) + return pick(common_sleepers) if(length(SSjob.latejoin_trackers)) return pick(SSjob.latejoin_trackers) return SSjob.get_last_resort_spawn_points() diff --git a/code/modules/mob/dead/new_player/new_player.dm b/code/modules/mob/dead/new_player/new_player.dm index 582f119bb037..c501d79d67f2 100644 --- a/code/modules/mob/dead/new_player/new_player.dm +++ b/code/modules/mob/dead/new_player/new_player.dm @@ -178,7 +178,7 @@ return FALSE mind.late_joiner = TRUE - var/atom/destination = mind.assigned_role.get_latejoin_spawn_point() + var/atom/destination = mind.assigned_role.get_latejoin_spawn_point(client.prefs) if(!destination) CRASH("Failed to find a latejoin spawn point.") var/mob/living/character = create_character(destination) diff --git a/maplestation.dme b/maplestation.dme index 98934a4e46e3..3024d18a1b9f 100644 --- a/maplestation.dme +++ b/maplestation.dme @@ -6397,6 +6397,7 @@ #include "maplestation_modules\code\modules\client\preferences\ready_anominity.dm" #include "maplestation_modules\code\modules\client\preferences\runechat_color.dm" #include "maplestation_modules\code\modules\client\preferences\sound_frequency.dm" +#include "maplestation_modules\code\modules\client\preferences\spawn_location.dm" #include "maplestation_modules\code\modules\client\preferences\toggle_radio.dm" #include "maplestation_modules\code\modules\client\preferences\toggle_speech.dm" #include "maplestation_modules\code\modules\client\preferences\species\lizard.dm" diff --git a/maplestation_modules/code/modules/client/preferences/height.dm b/maplestation_modules/code/modules/client/preferences/height.dm index 6df336f29f6a..e5d77e44fb1b 100644 --- a/maplestation_modules/code/modules/client/preferences/height.dm +++ b/maplestation_modules/code/modules/client/preferences/height.dm @@ -68,11 +68,7 @@ target.update_transform(resize_amount) /datum/preference/choiced/mob_size/is_accessible(datum/preferences/preferences) - if(!..(preferences)) - return FALSE - - var/datum/job/fav_job = preferences.get_highest_priority_job() - return !istype(fav_job, /datum/job/ai) && !istype(fav_job, /datum/job/cyborg) + return ..() && !has_silicon_prioritized(preferences) /datum/preference/choiced/mob_size/create_default_value(datum/preferences/preferences) return HEIGHT_NO_CHANGE @@ -118,11 +114,7 @@ target.set_mob_height(height_actual) /datum/preference/choiced/mob_height/is_accessible(datum/preferences/preferences) - if(!..(preferences)) - return FALSE - - var/datum/job/fav_job = preferences.get_highest_priority_job() - return !istype(fav_job, /datum/job/ai) && !istype(fav_job, /datum/job/cyborg) + return ..() && !has_silicon_prioritized(preferences) /datum/preference/choiced/mob_height/create_default_value(datum/preferences/preferences) return DEFAULT_HEIGHT @@ -158,3 +150,8 @@ return return ..() + +/datum/preference/proc/has_silicon_prioritized(datum/preferences/preferences) + // If you have a silicon job, don't show the height preference + var/datum/job/fav_job = preferences.get_highest_priority_job() + return istype(fav_job, /datum/job/ai) || istype(fav_job, /datum/job/cyborg) diff --git a/maplestation_modules/code/modules/client/preferences/spawn_location.dm b/maplestation_modules/code/modules/client/preferences/spawn_location.dm new file mode 100644 index 000000000000..3b1f7c0e8b75 --- /dev/null +++ b/maplestation_modules/code/modules/client/preferences/spawn_location.dm @@ -0,0 +1,20 @@ +/datum/preference/choiced/preferred_latejoin_spawn + savefile_key = "preferred_latejoin_spawn" + savefile_identifier = PREFERENCE_CHARACTER + category = PREFERENCE_CATEGORY_SECONDARY_FEATURES + can_randomize = FALSE + +/datum/preference/choiced/preferred_latejoin_spawn/create_default_value() + return SPAWNPOINT_ARRIVALS + +/datum/preference/choiced/preferred_latejoin_spawn/init_possible_values() + return list( + SPAWNPOINT_ARRIVALS, + SPAWNPOINT_CRYO, + ) + +/datum/preference/choiced/preferred_latejoin_spawn/apply_to_human(mob/living/carbon/human/target, value) + return + +/datum/preference/choiced/preferred_latejoin_spawn/is_accessible(datum/preferences/preferences) + return ..() && !has_silicon_prioritized(preferences) diff --git a/tgui/packages/tgui/interfaces/PreferencesMenu/preferences/features/character_preferences/_latejoin_spawn.tsx b/tgui/packages/tgui/interfaces/PreferencesMenu/preferences/features/character_preferences/_latejoin_spawn.tsx new file mode 100644 index 000000000000..920662e60b04 --- /dev/null +++ b/tgui/packages/tgui/interfaces/PreferencesMenu/preferences/features/character_preferences/_latejoin_spawn.tsx @@ -0,0 +1,11 @@ +import { FeatureChoiced } from '../base'; +import { FeatureDropdownInput } from '../dropdowns'; + +export const preferred_latejoin_spawn: FeatureChoiced = { + name: 'Latejoin Preference', + description: + 'Determines the method of arrivals when joining midround. \ + This indicates preference - it does not guarantee a specific spawn point, \ + particularly for maps which may not support all options.', + component: FeatureDropdownInput, +}; From 6bb6a3bd768d7dbe35c4ad30cfc5c4bbd441ae34 Mon Sep 17 00:00:00 2001 From: MrMelbert Date: Mon, 18 Aug 2025 19:07:42 -0500 Subject: [PATCH 4/5] Fix --- maplestation.dme | 2 ++ 1 file changed, 2 insertions(+) diff --git a/maplestation.dme b/maplestation.dme index 3024d18a1b9f..ebd5f00edb2c 100644 --- a/maplestation.dme +++ b/maplestation.dme @@ -6670,6 +6670,7 @@ #include "maplestation_modules\code\modules\vending\wardrobes.dm" #include "maplestation_modules\code\modules\wiremod\component_printer.dm" #include "maplestation_modules\code\modules\wiremod\shells.dm" +#ifdef MAPLESTATION_STORY_CONTENT #include "maplestation_modules\story_content\albert_equipment\code\albertclothing.dm" #include "maplestation_modules\story_content\albert_equipment\code\albertitem.dm" #include "maplestation_modules\story_content\alraune_miscitems\code\alrmiscitem.dm" @@ -6707,4 +6708,5 @@ #include "maplestation_modules\story_content\volkan_equipment\code\volkanpets_ai.dm" #include "maplestation_modules\story_content\volkan_equipment\datums\loadout_datum.dm" #include "maplestation_modules\story_content\wollys_items\code\wollysitems.dm" +#endif // MAPLESTATION_STORY_CONTENT // END_INCLUDE From 18cd653c3394cc2eb2fbc205e7458f6a4b2ca634 Mon Sep 17 00:00:00 2001 From: MrMelbert Date: Fri, 27 Feb 2026 14:14:02 -0600 Subject: [PATCH 5/5] Updates --- .../map_files/IceBoxStation/IceBoxStation.dmm | 212 +++++-- _maps/map_files/KiloStation/KiloStation.dmm | 58 +- _maps/map_files/LimaStation/LimaStation.dmm | 28 +- _maps/map_files/MetaStation/MetaStation.dmm | 537 ++++++++++-------- .../map_files/NebulaStation/NebulaStation.dmm | 428 ++++++-------- _maps/map_files/PubbyStation/PubbyStation.dmm | 7 +- code/__DEFINES/preferences.dm | 2 +- code/game/machinery/announcement_system.dm | 2 +- code/game/machinery/sleepers.dm | 39 +- .../client/preferences/spawn_location.dm | 2 +- 10 files changed, 720 insertions(+), 595 deletions(-) diff --git a/_maps/map_files/IceBoxStation/IceBoxStation.dmm b/_maps/map_files/IceBoxStation/IceBoxStation.dmm index 691422f16979..e76a032b9603 100644 --- a/_maps/map_files/IceBoxStation/IceBoxStation.dmm +++ b/_maps/map_files/IceBoxStation/IceBoxStation.dmm @@ -1947,6 +1947,17 @@ /obj/machinery/dna_scannernew, /turf/open/floor/iron/dark, /area/station/science/genetics) +"aFw" = ( +/obj/machinery/sleeper/cryo, +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/obj/effect/turf_decal/siding/dark_green{ + dir = 10 + }, +/obj/effect/turf_decal/tile/green/fourcorners, +/turf/open/floor/iron/white, +/area/station/commons/long_term_storage) "aFx" = ( /obj/structure/rack, /obj/item/clothing/suit/hooded/wintercoat/eva{ @@ -2470,6 +2481,14 @@ /obj/effect/mapping_helpers/airlock/access/all/supply/mining_station, /turf/open/floor/iron/smooth_large, /area/station/cargo/warehouse) +"aOR" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/south, +/obj/machinery/airalarm/directional/west, +/turf/open/floor/iron/white, +/area/station/commons/long_term_storage) "aOS" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -5179,6 +5198,11 @@ dir = 4 }, /area/station/hallway/secondary/entry) +"bAx" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/obj/item/radio/intercom/directional/east, +/turf/open/floor/iron/white, +/area/station/commons/long_term_storage) "bAB" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -8578,6 +8602,12 @@ /obj/item/radio/intercom/directional/north, /turf/open/floor/iron, /area/station/hallway/primary/starboard) +"cwP" = ( +/obj/machinery/light/cold/directional/east, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/sign/warning/cold_temp/directional/east, +/turf/open/floor/catwalk_floor/iron_white, +/area/station/commons/long_term_storage) "cxd" = ( /obj/effect/landmark/start/hangover, /turf/open/floor/iron/dark/side{ @@ -11952,6 +11982,9 @@ "duh" = ( /turf/closed/wall/r_wall, /area/station/engineering/transit_tube) +"duA" = ( +/turf/closed/wall, +/area/station/commons/long_term_storage) "duE" = ( /obj/machinery/atmospherics/components/binary/tank_compressor{ dir = 4 @@ -16141,6 +16174,9 @@ /obj/structure/railing/corner{ dir = 8 }, +/obj/structure/sign/plaques/kiddie/devils_tooth{ + pixel_y = 32 + }, /turf/open/floor/plating/snowed/smoothed/icemoon, /area/icemoon/underground/explored) "eIk" = ( @@ -22608,12 +22644,6 @@ /obj/effect/landmark/start/assistant, /turf/open/floor/iron, /area/station/commons/dorms) -"gJK" = ( -/obj/effect/spawner/structure/window/hollow/reinforced/middle{ - dir = 4 - }, -/turf/open/floor/plating, -/area/station/commons/dorms/laundry) "gJM" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -24518,12 +24548,12 @@ /turf/open/floor/plating, /area/station/engineering/atmos/pumproom) "hoZ" = ( -/obj/effect/spawner/random/entertainment/arcade{ - dir = 4 - }, /obj/effect/turf_decal/tile/neutral/opposingcorners{ dir = 1 }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, /turf/open/floor/iron, /area/station/commons/dorms/laundry) "hpd" = ( @@ -25827,6 +25857,19 @@ /obj/effect/spawner/structure/window, /turf/open/floor/plating, /area/station/maintenance/starboard/fore) +"hJz" = ( +/obj/machinery/sleeper/cryo{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/siding/dark_green{ + dir = 1 + }, +/obj/effect/turf_decal/tile/green/fourcorners, +/turf/open/floor/iron/white, +/area/station/commons/long_term_storage) "hJD" = ( /obj/structure/ladder, /turf/open/floor/wood, @@ -35084,6 +35127,10 @@ /obj/item/wrench, /turf/open/floor/iron, /area/station/engineering/atmos) +"kwo" = ( +/obj/effect/spawner/structure/window, +/turf/open/floor/plating, +/area/station/commons/dorms/laundry) "kwz" = ( /obj/structure/table/wood, /obj/item/folder/blue, @@ -36215,6 +36262,9 @@ /obj/effect/turf_decal/tile/neutral/opposingcorners{ dir = 1 }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, /turf/open/floor/iron, /area/station/commons/dorms/laundry) "kMY" = ( @@ -42855,6 +42905,12 @@ /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, /area/station/engineering/atmos/hfr_room) +"mPI" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/iron/white, +/area/station/commons/long_term_storage) "mPJ" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -47037,6 +47093,13 @@ /obj/machinery/door/firedoor, /turf/open/floor/iron/dark, /area/station/security/prison/visit) +"nYl" = ( +/obj/effect/turf_decal/tile/red/anticorner/contrasted{ + dir = 1 + }, +/obj/machinery/sleeper/cryo, +/turf/open/floor/iron/dark/textured, +/area/station/security/prison) "nYn" = ( /obj/structure/closet/secure_closet/personal/cabinet, /turf/open/floor/carpet, @@ -50708,6 +50771,13 @@ /obj/structure/sign/poster/contraband/random/directional/west, /turf/open/floor/plating, /area/station/maintenance/starboard/lesser) +"oZW" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/machinery/light_switch/directional/west, +/turf/open/floor/iron/white, +/area/station/commons/long_term_storage) "pac" = ( /obj/effect/turf_decal/tile/red/half/contrasted{ dir = 8 @@ -61084,12 +61154,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron/dark, /area/station/science/ordnance) -"sbf" = ( -/obj/structure/sign/plaques/kiddie/devils_tooth{ - pixel_y = 32 - }, -/turf/open/misc/asteroid/snow/icemoon, -/area/icemoon/underground/explored) "sbi" = ( /obj/machinery/newscaster/directional/north, /obj/machinery/photocopier, @@ -61729,6 +61793,10 @@ }, /turf/open/floor/iron, /area/station/hallway/primary/fore) +"slb" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/catwalk_floor/iron_white, +/area/station/commons/long_term_storage) "slc" = ( /obj/effect/turf_decal/trimline/blue/filled/line{ dir = 10 @@ -63887,6 +63955,10 @@ /obj/item/clothing/suit/hooded/wintercoat, /turf/open/floor/iron, /area/mine/laborcamp) +"sPC" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/turf/open/floor/iron/white, +/area/station/commons/long_term_storage) "sPG" = ( /obj/effect/landmark/generic_maintenance_landmark, /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ @@ -64724,6 +64796,15 @@ }, /turf/open/floor/plating, /area/station/commons/vacant_room/office) +"teI" = ( +/obj/machinery/door/airlock/public/glass{ + name = "Long Term Crew Storage" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/iron/white, +/area/station/commons/dorms/laundry) "teK" = ( /obj/structure/fence/door{ name = "graveyard" @@ -68089,6 +68170,7 @@ /obj/effect/turf_decal/tile/red/half/contrasted{ dir = 1 }, +/obj/machinery/sleeper/cryo, /turf/open/floor/iron/dark/textured, /area/station/security/prison) "ugR" = ( @@ -70411,6 +70493,17 @@ dir = 4 }, /area/station/hallway/secondary/entry) +"uRy" = ( +/obj/machinery/sleeper/cryo, +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/obj/effect/turf_decal/siding/dark_green{ + dir = 6 + }, +/obj/effect/turf_decal/tile/green/fourcorners, +/turf/open/floor/iron/white, +/area/station/commons/long_term_storage) "uRL" = ( /obj/machinery/airalarm/directional/north, /obj/machinery/light/directional/north, @@ -72905,6 +72998,12 @@ /obj/machinery/status_display/ai/directional/east, /turf/open/floor/plating/snowed/coldroom, /area/station/service/kitchen/coldroom) +"vEq" = ( +/obj/effect/spawner/structure/window/hollow/reinforced/middle{ + dir = 1 + }, +/turf/open/floor/plating, +/area/station/commons/long_term_storage) "vEw" = ( /obj/machinery/camera/directional/west{ c_tag = "Atmospherics Access" @@ -74406,7 +74505,6 @@ }, /area/station/hallway/secondary/entry) "wds" = ( -/obj/structure/chair/stool/directional/west, /obj/machinery/light/small/directional/south, /obj/effect/turf_decal/siding/blue{ dir = 4 @@ -74862,8 +74960,8 @@ /obj/structure/sign/nanotrasen{ pixel_y = 32 }, -/turf/open/misc/asteroid/snow/icemoon, -/area/icemoon/underground/explored) +/turf/closed/wall, +/area/station/commons/dorms/laundry) "wkC" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/public/glass{ @@ -76792,6 +76890,9 @@ dir = 1 }, /obj/item/radio/intercom/directional/west, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, /turf/open/floor/iron, /area/station/commons/dorms/laundry) "wMz" = ( @@ -81202,6 +81303,11 @@ "ybQ" = ( /turf/closed/wall/r_wall, /area/station/ai_monitored/command/nuke_storage) +"ybV" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/catwalk_floor/iron_white, +/area/station/commons/long_term_storage) "yca" = ( /obj/machinery/door/airlock/maintenance{ name = "Mining Station Maintenance" @@ -164109,7 +164215,7 @@ haD lrz iLh szG -szG +gFX eId gQe gQe @@ -164367,8 +164473,8 @@ iLh iLh iwS iwS -sbf -scw +duA +duA iDt scw szG @@ -164623,12 +164729,12 @@ vad kMP wMw hoZ -iwS +teI +oZW +duA +duA iDt iDt -iDt -iDt -szG szG szG gjq @@ -164881,10 +164987,10 @@ qPs xCr wds iwS -iDt -iDt -iDt -iDt +mPI +aOR +duA +duA iDt szG gjq @@ -165137,11 +165243,11 @@ xkH oeB qxI sTh -qMo -iDt -cCb -iDt -iDt +kwo +sPC +ybV +hJz +vEq scw oif eJf @@ -165394,11 +165500,11 @@ dNl qxI qxI rVC -qMo -iDt -iDt -ijY -iDt +kwo +aFw +slb +hJz +vEq iDt scw gjq @@ -165651,11 +165757,11 @@ dNl qxI qxI coT -qMo -iDt -iDt -iDt -iDt +kwo +uRy +slb +hJz +vEq iDt iDt gjq @@ -165908,11 +166014,11 @@ oqj kTX iJL dwI -qMo -iDt -iDt -iDt -iDt +kwo +bAx +cwP +hJz +vEq ebd iDt gjq @@ -166167,10 +166273,10 @@ iuH mFY iwS iwS -gJK +iwS iwS wkB -iDt +ijY jZN gjq gjq @@ -166427,7 +166533,7 @@ knd grk qMo iDt -iDt +cCb iDt gjq gjq @@ -175356,7 +175462,7 @@ gjq gjq gjq upw -uzM +nYl iRV cvq xgL diff --git a/_maps/map_files/KiloStation/KiloStation.dmm b/_maps/map_files/KiloStation/KiloStation.dmm index 0d040236bae4..d26262bb5d0c 100644 --- a/_maps/map_files/KiloStation/KiloStation.dmm +++ b/_maps/map_files/KiloStation/KiloStation.dmm @@ -1953,7 +1953,7 @@ /obj/effect/turf_decal/tile/green/diagonal_edge, /obj/effect/turf_decal/tile/green/diagonal_centre, /turf/open/floor/iron/diagonal, -/area/station/commons/lounge) +/area/station/commons/long_term_storage) "ajW" = ( /obj/machinery/door/firedoor/heavy, /obj/machinery/door/poddoor/preopen{ @@ -23678,7 +23678,7 @@ /obj/effect/turf_decal/tile/green/diagonal_centre, /obj/effect/turf_decal/stripes/line, /turf/open/floor/iron/diagonal, -/area/station/commons/lounge) +/area/station/commons/long_term_storage) "dgT" = ( /obj/structure/table/wood, /obj/machinery/door/firedoor, @@ -24543,7 +24543,7 @@ dir = 4 }, /turf/open/floor/iron/white, -/area/station/commons/lounge) +/area/station/commons/long_term_storage) "dum" = ( /obj/effect/mapping_helpers/airlock/access/any/service/maintenance, /obj/machinery/door/airlock/maintenance, @@ -26688,7 +26688,7 @@ dir = 1 }, /turf/open/floor/iron/diagonal, -/area/station/commons/lounge) +/area/station/commons/long_term_storage) "ejw" = ( /turf/open/floor/iron, /area/station/service/hydroponics/garden/monastery) @@ -34744,7 +34744,7 @@ /obj/effect/turf_decal/tile/green/diagonal_centre, /obj/effect/turf_decal/stripes/corner, /turf/open/floor/iron/diagonal, -/area/station/commons/lounge) +/area/station/commons/long_term_storage) "gOH" = ( /obj/effect/turf_decal/tile/yellow{ dir = 4 @@ -37370,7 +37370,7 @@ dir = 1 }, /turf/open/floor/iron/diagonal, -/area/station/commons/lounge) +/area/station/commons/long_term_storage) "hIT" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/turf_decal/stripes/line{ @@ -38434,10 +38434,10 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/door/airlock/public/glass{ - name = "Crew Storage" + name = "Long Term Crew Storage" }, /turf/open/floor/iron, -/area/station/commons/lounge) +/area/station/commons/long_term_storage) "iba" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/structure/cable, @@ -43534,9 +43534,9 @@ /turf/open/floor/engine, /area/station/engineering/supermatter/room) "jKG" = ( -/obj/effect/spawner/structure/window/reinforced, +/obj/effect/spawner/structure/window, /turf/open/floor/plating, -/area/station/commons/lounge) +/area/station/commons/long_term_storage) "jLn" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/chair/office{ @@ -48908,7 +48908,7 @@ /area/station/cargo/office) "lwp" = ( /turf/closed/wall, -/area/station/commons/lounge) +/area/station/commons/long_term_storage) "lwt" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/structure/cable, @@ -52183,7 +52183,7 @@ /obj/machinery/holopad, /obj/effect/turf_decal/bot, /turf/open/floor/iron/diagonal, -/area/station/commons/lounge) +/area/station/commons/long_term_storage) "mCW" = ( /obj/structure/reagent_dispensers/fueltank, /obj/effect/turf_decal/delivery, @@ -57278,7 +57278,7 @@ /obj/effect/turf_decal/tile/green/diagonal_edge, /obj/effect/turf_decal/tile/green/diagonal_centre, /turf/open/floor/iron/diagonal, -/area/station/commons/lounge) +/area/station/commons/long_term_storage) "ooX" = ( /obj/machinery/door/airlock/external{ name = "Departure Shuttle Airlock" @@ -58093,7 +58093,7 @@ /obj/effect/turf_decal/tile/green/diagonal_edge, /obj/effect/turf_decal/tile/green/diagonal_centre, /turf/open/floor/iron/diagonal, -/area/station/commons/lounge) +/area/station/commons/long_term_storage) "oBY" = ( /obj/structure/grille/broken, /obj/effect/decal/cleanable/glass, @@ -61171,7 +61171,7 @@ dir = 8 }, /turf/open/floor/iron/white, -/area/station/commons/lounge) +/area/station/commons/long_term_storage) "pxv" = ( /obj/structure/chair/comfy/brown{ buildstackamount = 0; @@ -61399,7 +61399,7 @@ dir = 8 }, /turf/open/floor/iron/white, -/area/station/commons/lounge) +/area/station/commons/long_term_storage) "pCm" = ( /obj/effect/turf_decal/stripes/corner{ dir = 1 @@ -62641,6 +62641,10 @@ /obj/structure/sign/clock/directional/north, /turf/open/floor/carpet/green, /area/station/service/electronic_marketing_den) +"pVg" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/station/commons/long_term_storage) "pVC" = ( /obj/effect/mapping_helpers/airlock/cyclelink_helper{ dir = 4 @@ -62776,7 +62780,7 @@ /obj/effect/turf_decal/tile/green/diagonal_edge, /obj/effect/turf_decal/tile/green/diagonal_centre, /turf/open/floor/iron/diagonal, -/area/station/commons/lounge) +/area/station/commons/long_term_storage) "pXL" = ( /obj/effect/turf_decal/tile/neutral{ dir = 1 @@ -71160,7 +71164,7 @@ dir = 8 }, /turf/open/floor/iron/diagonal, -/area/station/commons/lounge) +/area/station/commons/long_term_storage) "sGk" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/ore_box, @@ -79696,7 +79700,7 @@ dir = 8 }, /turf/open/floor/iron/white, -/area/station/commons/lounge) +/area/station/commons/long_term_storage) "vuR" = ( /obj/effect/turf_decal/tile/blue, /obj/effect/turf_decal/tile/blue{ @@ -80664,7 +80668,7 @@ dir = 4 }, /turf/open/floor/iron/white, -/area/station/commons/lounge) +/area/station/commons/long_term_storage) "vKK" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -84159,7 +84163,7 @@ dir = 4 }, /turf/open/floor/iron/white, -/area/station/commons/lounge) +/area/station/commons/long_term_storage) "wVS" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ dir = 4 @@ -105086,9 +105090,9 @@ skO crP rbF amA -jKG -jKG -jKG +pVg +pVg +pVg lwp lwp jyL @@ -106628,9 +106632,9 @@ mwd eNm shj aQN -jKG -jKG -jKG +pVg +pVg +pVg lwp lwp gvU diff --git a/_maps/map_files/LimaStation/LimaStation.dmm b/_maps/map_files/LimaStation/LimaStation.dmm index 89f117da75ca..0b56f07fba7c 100644 --- a/_maps/map_files/LimaStation/LimaStation.dmm +++ b/_maps/map_files/LimaStation/LimaStation.dmm @@ -9238,7 +9238,7 @@ dir = 4 }, /turf/open/floor/iron/freezer, -/area/station/commons/lounge) +/area/station/commons/long_term_storage) "dbG" = ( /obj/machinery/airalarm/directional/west, /obj/effect/turf_decal/weather/dirt{ @@ -25554,7 +25554,7 @@ dir = 8 }, /turf/open/floor/iron/freezer, -/area/station/commons/lounge) +/area/station/commons/long_term_storage) "irT" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, /turf/open/floor/iron/sepia, @@ -27420,7 +27420,7 @@ dir = 4 }, /turf/open/floor/iron/freezer, -/area/station/commons/lounge) +/area/station/commons/long_term_storage) "iTG" = ( /obj/structure/closet/secure_closet/freezer/kitchen/maintenance, /obj/effect/decal/cleanable/cobweb, @@ -37584,7 +37584,7 @@ /area/station/ai_monitored/turret_protected/aisat/maint) "mfX" = ( /turf/closed/wall, -/area/station/commons/lounge) +/area/station/commons/long_term_storage) "mga" = ( /obj/effect/turf_decal/trimline/brown/filled/line{ dir = 1 @@ -38271,11 +38271,11 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/light/cold/directional/south, /obj/machinery/camera{ - c_tag = "Dormitory - Cryogenics"; + c_tag = "Dormitory - Long-Term Crew Storage"; dir = 5 }, /turf/open/floor/iron/freezer, -/area/station/commons/lounge) +/area/station/commons/long_term_storage) "mqn" = ( /obj/effect/turf_decal/delivery, /turf/open/floor/iron, @@ -39141,7 +39141,7 @@ dir = 8 }, /turf/open/floor/iron/freezer, -/area/station/commons/lounge) +/area/station/commons/long_term_storage) "mEa" = ( /obj/effect/decal/cleanable/dirt, /obj/item/target/syndicate, @@ -43684,7 +43684,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron/freezer, -/area/station/commons/lounge) +/area/station/commons/long_term_storage) "nWu" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -47421,7 +47421,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/door/firedoor, /turf/open/floor/iron/freezer, -/area/station/commons/lounge) +/area/station/commons/long_term_storage) "peH" = ( /obj/structure/table/reinforced, /obj/machinery/button/ignition{ @@ -52011,7 +52011,7 @@ }, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/freezer, -/area/station/commons/lounge) +/area/station/commons/long_term_storage) "qwF" = ( /obj/structure/window/spawner/directional/west, /obj/structure/flora/bush/fullgrass, @@ -63341,7 +63341,7 @@ dir = 8 }, /turf/open/floor/iron/freezer, -/area/station/commons/lounge) +/area/station/commons/long_term_storage) "tSo" = ( /obj/effect/turf_decal/tile/blue, /obj/effect/turf_decal/tile/blue{ @@ -64109,7 +64109,7 @@ }, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/freezer, -/area/station/commons/lounge) +/area/station/commons/long_term_storage) "ucO" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ dir = 8 @@ -67467,7 +67467,7 @@ dir = 8 }, /turf/open/floor/iron/freezer, -/area/station/commons/lounge) +/area/station/commons/long_term_storage) "vjH" = ( /obj/structure/cable, /turf/open/floor/iron, @@ -69511,7 +69511,7 @@ dir = 8 }, /turf/open/floor/iron/freezer, -/area/station/commons/lounge) +/area/station/commons/long_term_storage) "vWg" = ( /obj/machinery/light/directional/north, /obj/effect/turf_decal/stripes/corner{ diff --git a/_maps/map_files/MetaStation/MetaStation.dmm b/_maps/map_files/MetaStation/MetaStation.dmm index 2458c37eaa42..0388670f5d54 100644 --- a/_maps/map_files/MetaStation/MetaStation.dmm +++ b/_maps/map_files/MetaStation/MetaStation.dmm @@ -626,6 +626,12 @@ /obj/effect/turf_decal/trimline/brown/filled/warning, /turf/open/floor/iron, /area/station/cargo/sorting) +"afH" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/floor, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron, +/area/station/commons/locker) "afJ" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable, @@ -5934,6 +5940,15 @@ }, /turf/open/floor/iron/dark, /area/station/ai_monitored/turret_protected/ai) +"bnK" = ( +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 10 + }, +/obj/machinery/sleeper/cryo{ + dir = 4 + }, +/turf/open/floor/iron/white, +/area/station/security/prison) "bnM" = ( /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, @@ -7155,13 +7170,13 @@ /turf/open/floor/plating, /area/station/maintenance/port) "bGr" = ( -/obj/structure/disposalpipe/junction/flip{ +/obj/effect/turf_decal/delivery, +/obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, +/obj/machinery/atmospherics/components/unary/portables_connector/visible/layer4, +/obj/machinery/portable_atmospherics/pump, +/obj/structure/sign/warning/pods/directional/north, /turf/open/floor/iron, /area/station/commons/locker) "bGs" = ( @@ -7989,14 +8004,6 @@ /obj/machinery/skill_station, /turf/open/floor/wood, /area/station/service/library) -"bRs" = ( -/obj/machinery/portable_atmospherics/scrubber, -/obj/item/radio/intercom/directional/north, -/obj/machinery/light/small/directional/north, -/obj/effect/turf_decal/delivery, -/obj/machinery/atmospherics/components/unary/portables_connector/visible/layer2, -/turf/open/floor/iron, -/area/station/commons/locker) "bRu" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -8679,11 +8686,6 @@ }, /turf/open/floor/iron, /area/station/hallway/primary/aft) -"caB" = ( -/obj/structure/sign/poster/official/random/directional/south, -/obj/machinery/light/small/directional/south, -/turf/open/floor/iron/freezer, -/area/station/commons/toilet/restrooms) "caH" = ( /obj/effect/turf_decal/bot, /obj/machinery/vending/cigarette, @@ -11117,23 +11119,14 @@ /turf/open/floor/plating, /area/station/maintenance/department/science/xenobiology) "cDI" = ( -/obj/structure/toilet{ - pixel_y = 8 - }, /obj/machinery/light/small/directional/west, /obj/machinery/newscaster/directional/south, -/obj/effect/landmark/start/assistant, /obj/effect/landmark/start/hangover, /obj/effect/spawner/random/trash/graffiti{ pixel_x = -32; spawn_loot_chance = 50 }, -/obj/machinery/button/door/directional/west{ - id = "Toilet3"; - name = "Lock Control"; - normaldoorcontrol = 1; - specialfunctions = 4 - }, +/obj/machinery/recharge_station, /turf/open/floor/iron/freezer, /area/station/commons/toilet/restrooms) "cDJ" = ( @@ -12860,18 +12853,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden, /turf/closed/wall/r_wall, /area/station/maintenance/disposal/incinerator) -"cYR" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk, -/obj/machinery/camera/directional/north{ - c_tag = "Locker Room Starboard" - }, -/obj/structure/sign/warning/pods{ - pixel_y = 30 - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/iron, -/area/station/commons/locker) "cYS" = ( /obj/effect/turf_decal/siding/purple{ dir = 1 @@ -13782,6 +13763,16 @@ /obj/effect/spawner/random/structure/grille, /turf/open/floor/plating, /area/station/maintenance/port/fore) +"dnp" = ( +/obj/effect/turf_decal/delivery, +/obj/structure/sign/poster/official/random/directional/north, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/portables_connector/visible/layer2, +/obj/machinery/portable_atmospherics/scrubber, +/turf/open/floor/iron, +/area/station/commons/locker) "dnz" = ( /obj/effect/spawner/random/engineering/atmospherics_portable, /turf/open/floor/plating, @@ -14011,6 +14002,13 @@ /obj/machinery/light/cold/directional/north, /turf/open/floor/iron/white, /area/station/medical/virology) +"drO" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/light/floor, +/turf/open/floor/iron, +/area/station/commons/locker) "drQ" = ( /obj/effect/mapping_helpers/broken_floor, /turf/open/floor/plating, @@ -14905,6 +14903,13 @@ /obj/machinery/light/directional/south, /turf/open/floor/iron, /area/station/engineering/gravity_generator) +"dGp" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/tile/green/opposingcorners{ + dir = 1 + }, +/turf/open/floor/iron/cafeteria, +/area/station/commons/long_term_storage) "dGz" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -15343,6 +15348,15 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/wood, /area/station/service/library) +"dPl" = ( +/obj/machinery/door/airlock/public/glass{ + name = "Long Term Crew Storage" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/iron, +/area/station/commons/long_term_storage) "dPp" = ( /obj/structure/railing{ dir = 1 @@ -15487,14 +15501,6 @@ }, /turf/open/floor/engine, /area/station/science/xenobiology) -"dSo" = ( -/obj/machinery/portable_atmospherics/pump, -/obj/machinery/firealarm/directional/north, -/obj/effect/turf_decal/delivery, -/obj/machinery/atmospherics/components/unary/portables_connector/visible/layer4, -/obj/machinery/light/small/directional/north, -/turf/open/floor/iron, -/area/station/commons/locker) "dSA" = ( /obj/machinery/vending/autodrobe, /obj/effect/turf_decal/tile/neutral/fourcorners, @@ -15540,12 +15546,13 @@ /turf/open/floor/plating, /area/station/maintenance/port/fore) "dTc" = ( -/obj/machinery/door/airlock{ - id_tag = "Toilet4"; - name = "Unit 4" +/obj/machinery/sleeper/cryo, +/obj/machinery/airalarm/directional/north, +/obj/effect/turf_decal/tile/green/opposingcorners{ + dir = 1 }, -/turf/open/floor/iron/freezer, -/area/station/commons/toilet/restrooms) +/turf/open/floor/iron/cafeteria, +/area/station/commons/long_term_storage) "dTq" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/hatch{ @@ -15581,6 +15588,9 @@ "dTL" = ( /obj/structure/table, /obj/item/pai_card, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, /turf/open/floor/iron, /area/station/commons/locker) "dTY" = ( @@ -16814,6 +16824,9 @@ pixel_x = -2; pixel_y = 3 }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, /turf/open/floor/iron, /area/station/commons/locker) "erH" = ( @@ -19955,6 +19968,15 @@ /obj/machinery/light/directional/east, /turf/open/floor/iron, /area/station/security/courtroom) +"fym" = ( +/obj/machinery/sleeper/cryo{ + dir = 1 + }, +/obj/effect/turf_decal/tile/green/opposingcorners{ + dir = 1 + }, +/turf/open/floor/iron/cafeteria, +/area/station/commons/long_term_storage) "fys" = ( /obj/structure/table/glass, /obj/item/folder/blue, @@ -22311,12 +22333,8 @@ /turf/open/floor/iron, /area/station/command/gateway) "gsa" = ( -/obj/machinery/portable_atmospherics/pump, -/obj/effect/turf_decal/delivery, -/obj/machinery/atmospherics/components/unary/portables_connector/visible/layer4, -/obj/structure/sign/poster/official/random/directional/north, -/turf/open/floor/iron, -/area/station/commons/locker) +/turf/closed/wall, +/area/station/commons/long_term_storage) "gsg" = ( /obj/effect/turf_decal/stripes/line, /obj/structure/cable, @@ -22397,6 +22415,11 @@ /obj/item/wallframe/digital_clock, /turf/open/floor/iron, /area/station/commons/storage/tools) +"guh" = ( +/obj/machinery/light/floor, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron, +/area/station/commons/locker) "guu" = ( /obj/structure/table, /obj/effect/turf_decal/tile/red/opposingcorners, @@ -22798,6 +22821,12 @@ /obj/structure/sign/poster/contraband/random/directional/west, /turf/open/floor/wood, /area/station/service/theater) +"gBl" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron, +/area/station/commons/locker) "gBz" = ( /obj/structure/cable, /obj/machinery/navbeacon{ @@ -23136,7 +23165,6 @@ /obj/effect/spawner/random/clothing/costume, /obj/item/clothing/mask/balaclava, /obj/effect/turf_decal/tile/neutral, -/obj/machinery/light/directional/east, /turf/open/floor/iron, /area/station/commons/locker) "gHv" = ( @@ -25166,6 +25194,13 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/carpet, /area/station/command/heads_quarters/hop) +"hyD" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/iron, +/area/station/commons/locker) "hyH" = ( /obj/machinery/portable_atmospherics/canister, /turf/open/floor/iron/dark, @@ -26381,12 +26416,6 @@ /obj/effect/mapping_helpers/airlock/access/all/engineering/general, /turf/open/floor/plating, /area/station/maintenance/solars/starboard/fore) -"hWi" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/commons/locker) "hWp" = ( /obj/effect/turf_decal/stripes/line, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -26638,6 +26667,17 @@ /obj/structure/sign/poster/contraband/random/directional/north, /turf/open/floor/wood, /area/station/service/theater) +"ian" = ( +/obj/effect/turf_decal/delivery, +/obj/structure/disposalpipe/junction{ + dir = 4 + }, +/obj/machinery/light/small/directional/north, +/obj/machinery/atmospherics/components/unary/portables_connector/visible/layer4, +/obj/machinery/portable_atmospherics/pump, +/obj/item/radio/intercom/directional/north, +/turf/open/floor/iron, +/area/station/commons/locker) "iat" = ( /obj/structure/cable, /turf/open/floor/wood, @@ -28076,11 +28116,6 @@ }, /turf/open/space/basic, /area/space/nearstation) -"iDA" = ( -/obj/effect/landmark/event_spawn, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/iron, -/area/station/commons/locker) "iDE" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -28259,6 +28294,10 @@ }, /turf/open/floor/iron/dark, /area/station/security/office) +"iGE" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/iron, +/area/station/commons/locker) "iGH" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/white, @@ -28370,9 +28409,9 @@ /turf/open/floor/iron/white, /area/station/security/execution/transfer) "iJn" = ( -/obj/effect/landmark/event_spawn, /obj/effect/decal/cleanable/dirt, /obj/machinery/light/floor, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron, /area/station/commons/locker) "iJz" = ( @@ -29514,12 +29553,12 @@ pixel_x = -3; pixel_y = 7 }, -/obj/machinery/light/small/directional/west, /obj/structure/extinguisher_cabinet/directional/west, /obj/effect/spawner/random/bureaucracy/pen, /obj/effect/turf_decal/tile/neutral{ dir = 1 }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron, /area/station/commons/locker) "jkE" = ( @@ -30874,11 +30913,10 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, +/obj/structure/rack, +/obj/item/wrench, +/obj/item/analyzer, +/obj/effect/turf_decal/bot, /turf/open/floor/iron, /area/station/commons/locker) "jKD" = ( @@ -33424,13 +33462,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron, /area/station/security/prison/garden) -"kKj" = ( -/obj/machinery/door/airlock{ - id_tag = "Toilet3"; - name = "Unit 3" - }, -/turf/open/floor/iron/freezer, -/area/station/commons/toilet/restrooms) "kKn" = ( /turf/open/floor/carpet, /area/station/service/chapel) @@ -35288,6 +35319,11 @@ }, /turf/open/floor/iron, /area/station/commons/fitness/recreation) +"lvh" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron, +/area/station/commons/locker) "lvM" = ( /obj/effect/turf_decal/stripes/line{ dir = 4 @@ -35534,6 +35570,13 @@ "lAu" = ( /turf/open/space/basic, /area/space/nearstation) +"lAE" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/landmark/event_spawn, +/turf/open/floor/iron, +/area/station/commons/locker) "lAF" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/wood, @@ -36046,6 +36089,17 @@ /obj/item/kitchen/rollingpin, /turf/open/floor/iron/cafeteria, /area/station/service/kitchen) +"lLr" = ( +/obj/machinery/firealarm/directional/north, +/obj/effect/turf_decal/delivery, +/obj/machinery/light/small/directional/north, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/portables_connector/visible/layer2, +/obj/machinery/portable_atmospherics/scrubber, +/turf/open/floor/iron, +/area/station/commons/locker) "lLs" = ( /obj/effect/spawner/random/maintenance, /obj/structure/reagent_dispensers/fueltank, @@ -37102,6 +37156,10 @@ }, /turf/open/floor/iron/dark, /area/station/security/execution/education) +"mhn" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/iron, +/area/station/commons/locker) "mhs" = ( /obj/machinery/newscaster/directional/south, /obj/effect/turf_decal/tile/blue, @@ -39802,20 +39860,8 @@ /obj/structure/closet/wardrobe/grey, /obj/effect/landmark/start/hangover/closet, /obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/machinery/light/directional/south, /turf/open/floor/iron/dark, /area/station/commons/locker) -"ngs" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/light/floor, -/turf/open/floor/iron, -/area/station/commons/locker) "ngt" = ( /obj/effect/turf_decal/stripes/line, /obj/machinery/firealarm/directional/south, @@ -40238,12 +40284,10 @@ /turf/open/floor/engine/n2, /area/station/engineering/atmos) "nol" = ( -/obj/structure/sign/warning/pods{ - pixel_x = 30 - }, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/effect/turf_decal/tile/neutral, +/obj/structure/sign/warning/pods/directional/east, /turf/open/floor/iron, /area/station/commons/dorms) "noK" = ( @@ -43568,6 +43612,16 @@ }, /turf/open/floor/plating, /area/station/medical/treatment_center) +"oAC" = ( +/obj/machinery/atmospherics/components/binary/pump/on/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/components/binary/pump/on/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/effect/turf_decal/box, +/turf/open/floor/iron, +/area/station/commons/locker) "oAL" = ( /obj/machinery/hydroponics/soil, /obj/item/shovel/spade, @@ -44514,6 +44568,11 @@ }, /turf/open/floor/iron, /area/station/security/warden) +"oUd" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron, +/area/station/commons/locker) "oUt" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -45214,6 +45273,14 @@ /obj/machinery/holopad, /turf/open/floor/iron, /area/station/security/prison) +"pgZ" = ( +/obj/machinery/sleeper/cryo, +/obj/item/radio/intercom/directional/north, +/obj/effect/turf_decal/tile/green/opposingcorners{ + dir = 1 + }, +/turf/open/floor/iron/cafeteria, +/area/station/commons/long_term_storage) "pha" = ( /obj/effect/turf_decal/tile/bar{ dir = 1 @@ -45325,7 +45392,6 @@ /area/station/engineering/storage_shared) "pkI" = ( /obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -49036,10 +49102,11 @@ /turf/open/floor/iron/dark, /area/station/ai_monitored/turret_protected/aisat_interior) "qEc" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, /obj/structure/disposalpipe/junction{ dir = 4 }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron, /area/station/commons/locker) "qEf" = ( @@ -49343,18 +49410,6 @@ /obj/effect/turf_decal/tile/neutral/fourcorners, /turf/open/floor/iron/dark, /area/station/commons/fitness/recreation) -"qKa" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/turf/open/floor/iron, -/area/station/commons/locker) "qKb" = ( /obj/machinery/door/poddoor/shutters/preopen{ dir = 1; @@ -51611,6 +51666,10 @@ }, /turf/open/floor/engine, /area/station/engineering/supermatter/room) +"rGF" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron, +/area/station/commons/locker) "rGV" = ( /obj/effect/turf_decal/trimline/purple/filled/line{ dir = 1 @@ -51803,10 +51862,6 @@ /obj/machinery/atmospherics/pipe/smart/simple/green/visible, /turf/closed/wall/r_wall, /area/station/engineering/atmos) -"rKV" = ( -/obj/structure/extinguisher_cabinet/directional/east, -/turf/open/floor/iron/freezer, -/area/station/commons/toilet/restrooms) "rLl" = ( /obj/effect/spawner/random/structure/closet_empty/crate, /obj/effect/spawner/random/maintenance, @@ -52113,6 +52168,11 @@ /obj/item/kirbyplants/random, /turf/open/floor/iron, /area/station/engineering/main) +"rQz" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/turf/open/floor/iron, +/area/station/commons/locker) "rQP" = ( /obj/machinery/computer/bank_machine, /obj/effect/turf_decal/bot_white, @@ -53733,6 +53793,13 @@ /obj/machinery/atmospherics/pipe/bridge_pipe/purple/visible, /turf/open/floor/iron, /area/station/engineering/atmos) +"swf" = ( +/obj/structure/chair/stool/directional/east, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/iron, +/area/station/commons/locker) "sww" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -56250,6 +56317,7 @@ /obj/effect/turf_decal/tile/neutral{ dir = 1 }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron, /area/station/commons/locker) "tvy" = ( @@ -56478,7 +56546,6 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/effect/turf_decal/tile/neutral{ dir = 1 }, @@ -58268,9 +58335,14 @@ /turf/open/floor/iron, /area/station/engineering/atmos/pumproom) "ukX" = ( -/obj/structure/closet/wardrobe/green, -/obj/effect/landmark/start/hangover/closet, /obj/effect/turf_decal/tile/neutral/fourcorners, +/obj/machinery/disposal/bin, +/obj/effect/turf_decal/delivery, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/obj/machinery/light/small/directional/south, +/obj/machinery/status_display/evac/directional/south, /turf/open/floor/iron/dark, /area/station/commons/locker) "ukY" = ( @@ -58686,17 +58758,18 @@ /turf/open/floor/iron/dark, /area/station/science/ordnance/testlab) "utC" = ( -/obj/machinery/portable_atmospherics/scrubber, -/obj/machinery/status_display/evac/directional/north, -/obj/effect/turf_decal/delivery, -/obj/machinery/atmospherics/components/unary/portables_connector/visible/layer2, -/turf/open/floor/iron, -/area/station/commons/locker) +/obj/effect/spawner/structure/window, +/turf/open/floor/plating, +/area/station/commons/long_term_storage) "utK" = ( /obj/structure/table, /obj/item/razor{ pixel_y = 5 }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, /turf/open/floor/iron, /area/station/commons/locker) "uui" = ( @@ -58890,7 +58963,7 @@ /turf/open/floor/iron, /area/station/engineering/atmos) "uxz" = ( -/obj/machinery/holopad, +/obj/machinery/light/floor, /turf/open/floor/iron, /area/station/commons/locker) "uxF" = ( @@ -58967,6 +59040,12 @@ /obj/machinery/hydroponics/constructable, /turf/open/floor/iron, /area/station/service/hydroponics) +"uzg" = ( +/obj/structure/chair/stool/directional/south, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/iron, +/area/station/commons/locker) "uzt" = ( /obj/effect/turf_decal/trimline/red/filled/line{ dir = 8 @@ -59537,15 +59616,16 @@ /turf/open/floor/iron, /area/station/security/checkpoint/science) "uLh" = ( -/obj/machinery/recharge_station, -/obj/effect/landmark/start/hangover, -/obj/effect/spawner/random/trash/graffiti{ - pixel_y = -32; - spawn_loot_chance = 50 +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 }, -/obj/machinery/light/small/directional/west, -/turf/open/floor/iron/freezer, -/area/station/commons/toilet/restrooms) +/obj/structure/cable, +/obj/effect/turf_decal/tile/green/opposingcorners{ + dir = 1 + }, +/turf/open/floor/iron/cafeteria, +/area/station/commons/long_term_storage) "uLC" = ( /obj/effect/mapping_helpers/broken_floor, /obj/structure/window/reinforced/spawner/directional/east, @@ -59904,6 +59984,13 @@ /obj/effect/turf_decal/tile/yellow/fourcorners, /turf/open/floor/iron/white, /area/station/medical/pharmacy) +"uSr" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/iron, +/area/station/commons/locker) "uSG" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -60531,11 +60618,6 @@ }, /turf/open/floor/iron, /area/station/hallway/primary/fore) -"vgw" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/light/small/directional/east, -/turf/open/floor/iron, -/area/station/commons/locker) "vgz" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/structure/cable, @@ -60605,6 +60687,13 @@ }, /turf/open/floor/iron/white, /area/station/medical/virology) +"vhC" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/holopad, +/turf/open/floor/iron, +/area/station/commons/locker) "vhF" = ( /obj/structure/chair/office{ dir = 1 @@ -61462,12 +61551,6 @@ /obj/item/clothing/gloves/color/orange, /turf/open/floor/iron, /area/station/service/janitor) -"vvq" = ( -/obj/structure/chair/stool/directional/west, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/iron, -/area/station/commons/locker) "vvv" = ( /obj/structure/window/reinforced/spawner/directional/north, /turf/open/floor/plating/airless, @@ -64933,25 +65016,16 @@ /turf/open/floor/catwalk_floor/iron_dark, /area/station/cargo/bitrunning/den) "wQQ" = ( -/obj/structure/toilet{ +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ dir = 4 }, -/obj/machinery/light/small/directional/east, -/obj/machinery/newscaster/directional/east, -/obj/effect/landmark/start/assistant, -/obj/effect/landmark/start/hangover, -/obj/machinery/button/door/directional/south{ - id = "Toilet4"; - name = "Lock Control"; - normaldoorcontrol = 1; - specialfunctions = 4 - }, -/obj/effect/spawner/random/trash/graffiti{ - pixel_y = -32; - spawn_loot_chance = 50 +/obj/machinery/light/cold/directional/west, +/obj/effect/turf_decal/tile/green/opposingcorners{ + dir = 1 }, -/turf/open/floor/iron/freezer, -/area/station/commons/toilet/restrooms) +/obj/structure/sign/warning/cold_temp/directional/west, +/turf/open/floor/iron/cafeteria, +/area/station/commons/long_term_storage) "wQZ" = ( /obj/structure/sign/poster/official/random/directional/south, /obj/effect/turf_decal/tile/neutral{ @@ -65117,6 +65191,15 @@ /obj/effect/mapping_helpers/broken_floor, /turf/open/floor/plating, /area/station/maintenance/port) +"wVp" = ( +/obj/machinery/sleeper/cryo, +/obj/machinery/power/apc/auto_name/directional/north, +/obj/structure/cable, +/obj/effect/turf_decal/tile/green/opposingcorners{ + dir = 1 + }, +/turf/open/floor/iron/cafeteria, +/area/station/commons/long_term_storage) "wVz" = ( /obj/structure/cable, /obj/structure/disposalpipe/segment, @@ -65657,6 +65740,14 @@ /obj/effect/spawner/random/structure/crate, /turf/open/floor/plating, /area/station/maintenance/starboard/greater) +"xgI" = ( +/obj/structure/chair/stool/directional/west, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/effect/landmark/event_spawn, +/turf/open/floor/iron, +/area/station/commons/locker) "xgO" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/structure/disposalpipe/segment, @@ -65972,7 +66063,8 @@ /obj/structure/closet/wardrobe/white, /obj/effect/landmark/start/hangover/closet, /obj/effect/turf_decal/tile/neutral/fourcorners, -/obj/structure/extinguisher_cabinet/directional/south, +/obj/machinery/light/small/directional/south, +/obj/machinery/status_display/ai/directional/south, /turf/open/floor/iron/dark, /area/station/commons/locker) "xmT" = ( @@ -65994,7 +66086,6 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/effect/turf_decal/tile/neutral{ dir = 4 }, @@ -89412,7 +89503,7 @@ arH ixt vrL yfg -cwU +bnK fiu fiu wvy @@ -101021,10 +101112,10 @@ agq agq tyx pkI -yeN +hyD yeN pne -yeN +lIr rLI lgz dBs @@ -101278,9 +101369,9 @@ gEB wpL uJY tzh -dIw -pRW -pne +guh +oUd +lAE iJn nQe dnh @@ -101527,7 +101618,7 @@ agq mFR nMJ agq -kKj +ezS wpL gBi wpL @@ -101791,11 +101882,11 @@ ogX ncP eEk oQr -ngs +tzh sFL gog imN -hWi +dIw fic dnh dnh @@ -102049,8 +102140,8 @@ mob eEk vGb xnC -xtn -vvq +dIw +tHv mwG dIw tEQ @@ -102300,15 +102391,15 @@ agq agq hqk yij -wpL -wpL -wpL -wpL gsa -xnC -pne -yeN -yeN +gsa +gsa +gsa +gsa +dnp +rGF +dIw +vhC uxz tEQ ngq @@ -102557,15 +102648,15 @@ iTF wpL rpK xOr -ulD +gsa dTc wQQ -wpL -dSo -xnC -mwG -dIw -mGQ +fym +gsa +lLr +drO +iGE +swf pRW tEQ xmK @@ -102814,13 +102905,13 @@ iMh lks mGe oOj -caB -wpL -wpL -wpL +gsa +pgZ +dGp +fym utC jKz -pne +oAC sFL erC kyC @@ -103071,17 +103162,17 @@ uEP wpL ful ggP -rKV -ezS +gsa +wVp uLh -wpL -bRs -jKz -pne -sFL +fym +gsa +ian +gBl +uzg utK -dIw -tEQ +mhn +lvh ukX dnh aDL @@ -103328,14 +103419,14 @@ wpL wpL wpL lQv -wpL -wpL -wpL -wpL -cYR +gsa +gsa +dPl +gsa +gsa bGr -pne -iDA +iGE +pRW dTL kyC tEQ @@ -103590,11 +103681,11 @@ lWC oUt kNi iiI -qKa -pne -pRW -tHv -pRW +pkI +lIr +rQz +xgI +uSr gff lgz dnh @@ -103846,12 +103937,12 @@ edd pxh oyS sZz -pRW +dED qEc oiQ -dIw -dIw -pRW +xtn +xtn +afH tEQ dSA dnh @@ -104109,7 +104200,7 @@ ryq mAC gGX fwn -vgw +tEQ fYc dnh npm @@ -106398,7 +106489,7 @@ tdI lzP tdI tdI -tdI +ebG dnh dnh dnh diff --git a/_maps/map_files/NebulaStation/NebulaStation.dmm b/_maps/map_files/NebulaStation/NebulaStation.dmm index e64eb8e5628c..0991ac135f4b 100644 --- a/_maps/map_files/NebulaStation/NebulaStation.dmm +++ b/_maps/map_files/NebulaStation/NebulaStation.dmm @@ -3087,7 +3087,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/wood/tile, -/area/station/service/barber) +/area/station/commons/long_term_storage) "axD" = ( /obj/structure/table/reinforced, /obj/item/food/cakeslice/apple{ @@ -7658,12 +7658,17 @@ /turf/open/floor/iron/dark/textured_large, /area/station/medical/morgue) "bhQ" = ( -/obj/machinery/firealarm/directional/east, +/obj/machinery/firealarm/directional/east{ + pixel_y = 6 + }, /obj/effect/turf_decal/siding/wood{ dir = 4 }, +/obj/machinery/light_switch/directional/east{ + pixel_y = -4 + }, /turf/open/floor/wood/tile, -/area/station/service/barber) +/area/station/commons/long_term_storage) "bhZ" = ( /obj/effect/turf_decal/siding/dark/corner{ dir = 4 @@ -9897,7 +9902,6 @@ /obj/effect/turf_decal/siding/thinplating_new/dark{ dir = 6 }, -/obj/structure/chair/stool/directional/west, /obj/effect/turf_decal/trimline/red/filled/corner{ dir = 1 }, @@ -9905,6 +9909,9 @@ dir = 1 }, /obj/structure/sign/poster/contraband/energy_swords/directional/east, +/obj/effect/spawner/random/entertainment/arcade{ + dir = 1 + }, /turf/open/floor/iron/dark/textured, /area/station/security/prison) "bAk" = ( @@ -13450,8 +13457,9 @@ /obj/effect/turf_decal/siding/wood/corner{ dir = 4 }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/wood/tile, -/area/station/service/barber) +/area/station/commons/long_term_storage) "bZA" = ( /obj/effect/mapping_helpers/burnt_floor, /obj/effect/spawner/random/trash/graffiti, @@ -17134,7 +17142,6 @@ /obj/effect/turf_decal/siding/thinplating_new/dark{ dir = 5 }, -/obj/item/kirbyplants/random, /obj/effect/turf_decal/trimline/red/filled/corner{ dir = 8 }, @@ -17145,6 +17152,7 @@ network = list("prison") }, /obj/structure/sign/poster/official/foam_force_ad/directional/east, +/obj/machinery/vending/donksofttoyvendor, /turf/open/floor/iron/dark/textured, /area/station/security/prison) "cCX" = ( @@ -20668,13 +20676,6 @@ }, /turf/open/floor/iron/dark/small, /area/station/engineering/atmos/hfr_room) -"ddM" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/obj/effect/landmark/event_spawn, -/turf/open/floor/carpet/blue, -/area/station/service/barber) "ddP" = ( /obj/effect/turf_decal/siding/dark{ dir = 4 @@ -20796,6 +20797,20 @@ }, /turf/open/floor/iron, /area/station/hallway/primary/central) +"dep" = ( +/obj/machinery/sleeper/cryo{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/siding/dark_green{ + dir = 1 + }, +/obj/machinery/status_display/ai/directional/south, +/obj/effect/turf_decal/tile/green/half/contrasted, +/turf/open/floor/iron/white, +/area/station/commons/long_term_storage) "dew" = ( /obj/effect/spawner/random/structure/grille, /obj/structure/lattice, @@ -22520,12 +22535,6 @@ }, /turf/open/floor/iron/dark, /area/station/command/bridge) -"dqV" = ( -/obj/effect/turf_decal/siding/wood{ - dir = 1 - }, -/turf/open/floor/wood/tile, -/area/station/service/barber) "dra" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -22548,7 +22557,7 @@ dir = 8 }, /turf/open/floor/iron/dark/small, -/area/station/service/barber) +/area/station/commons/long_term_storage) "drf" = ( /obj/effect/turf_decal/siding/thinplating_new/dark/corner{ dir = 1 @@ -25659,7 +25668,7 @@ dir = 4 }, /turf/open/floor/wood/tile, -/area/station/service/barber) +/area/station/commons/long_term_storage) "dPW" = ( /obj/structure/broken_flooring/singular/directional/east{ color = "#73737a" @@ -26020,12 +26029,12 @@ /obj/effect/turf_decal/siding/thinplating_new/dark{ dir = 9 }, -/obj/item/kirbyplants/random, /obj/effect/turf_decal/trimline/red/filled/corner, /obj/effect/turf_decal/siding/thinplating_new/dark/corner, /obj/machinery/camera/autoname/directional/west{ network = list("prison") }, +/obj/effect/spawner/random/entertainment/arcade, /turf/open/floor/iron/dark/textured, /area/station/security/prison) "dSA" = ( @@ -27231,13 +27240,6 @@ /obj/effect/turf_decal/siding/dark/corner, /turf/open/floor/iron/dark, /area/station/cargo/miningoffice) -"eaI" = ( -/obj/effect/turf_decal/siding/wood, -/obj/structure/chair/office/light{ - dir = 1 - }, -/turf/open/floor/wood/tile, -/area/station/service/barber) "eaN" = ( /obj/effect/turf_decal/siding/thinplating_new/dark{ dir = 8 @@ -32954,7 +32956,7 @@ /obj/structure/mirror/directional/east, /obj/machinery/light/small/dim/directional/south, /turf/open/floor/carpet/red, -/area/station/service/barber) +/area/station/commons/long_term_storage) "eTo" = ( /obj/effect/turf_decal/siding/thinplating_new/dark{ dir = 1 @@ -45152,12 +45154,8 @@ /turf/open/floor/iron, /area/station/maintenance/port/central) "gJD" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/carpet/blue, -/area/station/service/barber) +/turf/open/floor/carpet/green, +/area/station/commons/long_term_storage) "gJT" = ( /obj/structure/lattice, /turf/open/space/basic, @@ -56939,24 +56937,6 @@ }, /turf/open/floor/iron/dark/small, /area/station/cargo/miningoffice) -"ivJ" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/obj/item/paper_bin{ - pixel_x = 4; - pixel_y = 4 - }, -/obj/effect/turf_decal/siding/wood{ - dir = 6 - }, -/obj/machinery/door/poddoor/shutters/preopen{ - name = "Barber Shop Shutters"; - id = "arrivalbarber" - }, -/turf/open/floor/wood/tile, -/area/station/service/barber) "ivN" = ( /obj/structure/table/reinforced/rglass, /obj/item/grenade/chem_grenade{ @@ -59335,12 +59315,14 @@ /turf/open/floor/iron/dark, /area/station/science/xenobiology) "iNb" = ( -/obj/effect/turf_decal/siding/wood/corner, -/obj/effect/turf_decal/siding/wood{ - dir = 8 +/obj/machinery/sleeper/cryo, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/siding/dark_green, +/obj/effect/turf_decal/tile/green/half/contrasted{ + dir = 1 }, -/turf/open/floor/wood/tile, -/area/station/service/barber) +/turf/open/floor/iron/white, +/area/station/commons/long_term_storage) "iNg" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/chair/plastic{ @@ -64329,8 +64311,20 @@ /turf/open/floor/engine/hull/reinforced, /area/space/nearstation) "jBk" = ( -/turf/open/floor/carpet/blue, -/area/station/service/barber) +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/obj/structure/railing/corner/end/flip{ + dir = 1 + }, +/turf/open/floor/wood/tile, +/area/station/commons/long_term_storage) "jBl" = ( /obj/effect/turf_decal/siding/thinplating_new/dark{ dir = 1 @@ -64473,8 +64467,8 @@ name = "Brig Blast Door" }, /obj/structure/cable, -/obj/structure/desk_bell/ringer/science{ - pixel_x = 6 +/obj/structure/desk_bell/ringer/security{ + pixel_x = 4 }, /turf/open/floor/iron/dark, /area/station/security/brig) @@ -67511,11 +67505,21 @@ /turf/open/floor/iron/dark, /area/station/engineering/atmos) "kaw" = ( -/obj/structure/chair/comfy, -/obj/structure/mirror/directional/south, -/obj/effect/turf_decal/siding/wood, -/turf/open/floor/wood/tile, -/area/station/service/barber) +/obj/machinery/sleeper/cryo{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/siding/dark_green{ + dir = 1 + }, +/obj/effect/turf_decal/tile/green/half/contrasted, +/obj/structure/sign/warning/cold_temp/directional/south{ + pixel_x = 16 + }, +/turf/open/floor/iron/white, +/area/station/commons/long_term_storage) "kay" = ( /obj/effect/turf_decal/siding/thinplating_new/dark, /obj/effect/turf_decal/siding/thinplating_new/dark/corner{ @@ -70828,7 +70832,7 @@ /obj/structure/flora/bush/flowers_pp/style_random, /obj/structure/flora/bush/flowers_yw/style_random, /turf/open/floor/grass, -/area/station/service/barber) +/area/station/commons/long_term_storage) "kwm" = ( /obj/structure/closet/secure_closet/personal, /obj/machinery/light/directional/west, @@ -74241,18 +74245,14 @@ /turf/open/floor/grass, /area/station/service/greenroom) "kWg" = ( -/obj/structure/chair/sofa/corp/left{ - dir = 1 - }, /obj/effect/turf_decal/siding/wood{ dir = 1 }, /obj/effect/turf_decal/siding/wood, -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/directional/south, /obj/machinery/camera/autoname/directional/south, +/obj/machinery/digital_clock/directional/south, /turf/open/floor/wood/tile, -/area/station/service/barber) +/area/station/commons/long_term_storage) "kWn" = ( /obj/effect/turf_decal/siding/wood, /obj/effect/turf_decal/siding/wood{ @@ -77415,7 +77415,7 @@ dir = 8 }, /obj/structure/cable, -/obj/machinery/vending/donksofttoyvendor, +/obj/structure/chair/stool/directional/south, /turf/open/floor/iron/dark/textured, /area/station/security/prison) "lvr" = ( @@ -79166,19 +79166,19 @@ }, /area/station/hallway/secondary/service) "lLb" = ( -/obj/structure/hedge, -/obj/structure/sign/poster/official/love_ian/directional/north, -/obj/effect/turf_decal/siding/wood, +/obj/structure/closet/secure_closet/personal, +/obj/effect/turf_decal/siding/wood/corner, /obj/effect/turf_decal/siding/wood{ - dir = 1 + dir = 8 }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/power/apc/auto_name/directional/north, +/obj/structure/cable, /obj/structure/railing{ - dir = 4 + dir = 8 }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/wood/tile, -/area/station/service/barber) +/area/station/commons/long_term_storage) "lLd" = ( /obj/effect/turf_decal/siding/wood{ dir = 5 @@ -82372,7 +82372,7 @@ }, /obj/effect/landmark/start/hangover, /turf/open/floor/iron/dark/small, -/area/station/service/barber) +/area/station/commons/long_term_storage) "mlu" = ( /turf/open/floor/engine/vacuum, /area/station/engineering/atmos) @@ -88504,10 +88504,8 @@ /obj/effect/turf_decal/trimline/red/filled/line{ dir = 4 }, -/obj/structure/table, -/obj/item/folder, -/obj/item/pen, /obj/structure/cable, +/obj/structure/chair/stool/directional/north, /turf/open/floor/iron/dark/textured, /area/station/security/prison) "nkl" = ( @@ -93369,7 +93367,7 @@ /area/station/security/warden) "nVN" = ( /turf/closed/wall, -/area/station/service/barber) +/area/station/commons/long_term_storage) "nVO" = ( /obj/structure/table/glass, /obj/item/folder/white, @@ -94922,14 +94920,8 @@ /turf/open/floor/iron/dark/small, /area/station/engineering/storage/tech) "ogO" = ( -/obj/effect/turf_decal/siding/wood/corner{ - dir = 4 - }, -/obj/effect/turf_decal/siding/wood{ - dir = 8 - }, -/turf/open/floor/wood/tile, -/area/station/service/barber) +/turf/open/floor/catwalk_floor/iron_white, +/area/station/commons/long_term_storage) "ogR" = ( /obj/effect/turf_decal/siding/thinplating_new/dark/corner, /obj/item/kirbyplants/random, @@ -97072,19 +97064,21 @@ /turf/open/floor/grass, /area/station/maintenance/port/central) "owH" = ( -/obj/structure/table/wood/fancy/blue, -/obj/item/razor{ - pixel_x = -3 +/obj/machinery/sleeper/cryo{ + dir = 1 }, -/obj/item/dyespray{ - pixel_x = 5; - pixel_y = 6 +/obj/effect/turf_decal/stripes/line{ + dir = 1 }, -/obj/effect/turf_decal/siding/wood, -/obj/machinery/light/directional/south, -/obj/item/radio/intercom/directional/south, -/turf/open/floor/wood/tile, -/area/station/service/barber) +/obj/effect/turf_decal/siding/dark_green{ + dir = 1 + }, +/obj/machinery/light/cold/directional/south{ + pixel_x = -16 + }, +/obj/effect/turf_decal/tile/green/half/contrasted, +/turf/open/floor/iron/white, +/area/station/commons/long_term_storage) "owM" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable, @@ -113414,16 +113408,16 @@ }, /area/station/service/kitchen) "qOA" = ( -/obj/structure/chair/sofa/corp{ - dir = 1 - }, /obj/machinery/newscaster/directional/south, /obj/effect/turf_decal/siding/wood{ dir = 1 }, /obj/effect/turf_decal/siding/wood, +/obj/structure/chair/sofa/corp/left{ + dir = 1 + }, /turf/open/floor/wood/tile, -/area/station/service/barber) +/area/station/commons/long_term_storage) "qOD" = ( /obj/effect/decal/cleanable/oil, /turf/open/floor/iron/smooth, @@ -115830,12 +115824,6 @@ "ril" = ( /turf/open/floor/circuit/green, /area/station/science/xenobiology) -"rim" = ( -/obj/effect/turf_decal/siding/wood, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/wood/tile, -/area/station/service/barber) "ris" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/carpet/red, @@ -119075,7 +119063,7 @@ /obj/effect/turf_decal/trimline/red/line{ dir = 8 }, -/obj/effect/spawner/random/entertainment/arcade{ +/obj/machinery/sleeper/cryo{ dir = 8 }, /turf/open/floor/iron/dark/side{ @@ -121391,17 +121379,6 @@ dir = 8 }, /area/station/hallway/primary/fore) -"rZR" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/poddoor/shutters/preopen{ - name = "Barber Shop Shutters"; - id = "arrivalbarber" - }, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/turf/open/floor/wood/tile, -/area/station/service/barber) "rZS" = ( /obj/effect/turf_decal/siding/wood, /obj/structure/chair/office, @@ -125307,8 +125284,11 @@ /obj/effect/turf_decal/siding/wood/corner{ dir = 4 }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, /turf/open/floor/wood/tile, -/area/station/service/barber) +/area/station/commons/long_term_storage) "sHt" = ( /obj/structure/rack, /obj/item/crowbar, @@ -126913,20 +126893,19 @@ /turf/open/floor/plating, /area/station/maintenance/port/fore) "sUF" = ( -/obj/structure/table/wood/fancy/blue, -/obj/item/razor{ - pixel_x = -3 +/obj/machinery/sleeper/cryo{ + dir = 1 }, -/obj/item/dyespray{ - pixel_x = 5; - pixel_y = 6 +/obj/effect/turf_decal/stripes/line{ + dir = 1 }, -/obj/machinery/status_display/ai/directional/south, -/obj/effect/turf_decal/siding/wood{ - dir = 10 +/obj/effect/turf_decal/siding/dark_green{ + dir = 1 }, -/turf/open/floor/wood/tile, -/area/station/service/barber) +/obj/machinery/status_display/evac/directional/south, +/obj/effect/turf_decal/tile/green/half/contrasted, +/turf/open/floor/iron/white, +/area/station/commons/long_term_storage) "sUI" = ( /obj/effect/turf_decal/siding/dark, /obj/effect/turf_decal/trimline/purple/filled/line, @@ -127179,22 +127158,9 @@ /turf/open/floor/plating, /area/station/maintenance/radshelter/civil) "sWO" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/obj/item/flashlight/lamp{ - pixel_y = 5 - }, -/obj/effect/turf_decal/siding/wood{ - dir = 9 - }, -/obj/machinery/door/poddoor/shutters/preopen{ - name = "Barber Shop Shutters"; - id = "arrivalbarber" - }, -/turf/open/floor/wood/tile, -/area/station/service/barber) +/obj/effect/spawner/structure/window, +/turf/open/floor/plating, +/area/station/commons/long_term_storage) "sWQ" = ( /obj/effect/decal/cleanable/vomit, /obj/effect/spawner/random/structure/closet_private, @@ -127929,18 +127895,6 @@ /obj/effect/turf_decal/trimline/blue/line, /turf/open/floor/iron/dark, /area/station/medical/morgue) -"tca" = ( -/obj/effect/turf_decal/siding/wood, -/obj/effect/turf_decal/siding/wood/corner{ - dir = 4 - }, -/obj/structure/chair/office/light{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/wood/tile, -/area/station/service/barber) "tce" = ( /obj/effect/spawner/structure/window, /obj/machinery/door/poddoor/shutters/preopen{ @@ -128661,13 +128615,6 @@ }, /turf/open/floor/iron/white, /area/station/science/lower) -"thJ" = ( -/obj/machinery/holopad, -/obj/effect/turf_decal/siding/wood{ - dir = 1 - }, -/turf/open/floor/wood/tile, -/area/station/service/barber) "thK" = ( /obj/effect/mapping_helpers/broken_floor, /obj/structure/light_construct/directional/west, @@ -134796,15 +134743,6 @@ /obj/effect/landmark/start/hangover, /turf/open/floor/catwalk_floor/iron_dark, /area/station/maintenance/central) -"uaD" = ( -/obj/effect/turf_decal/siding/wood{ - dir = 4 - }, -/obj/effect/turf_decal/siding/wood{ - dir = 8 - }, -/turf/open/floor/wood/tile, -/area/station/service/barber) "uaG" = ( /obj/effect/turf_decal/tile/purple/half/contrasted{ dir = 8 @@ -135089,9 +135027,6 @@ /area/station/engineering/atmos/storage/gas) "udF" = ( /obj/effect/turf_decal/tile/neutral, -/obj/structure/railing/corner/end{ - dir = 8 - }, /obj/effect/turf_decal/siding/wideplating_new/corner{ dir = 1 }, @@ -135112,9 +135047,6 @@ /area/station/hallway/secondary/exit/departure_lounge) "ued" = ( /obj/effect/turf_decal/tile/neutral, -/obj/structure/railing{ - dir = 1 - }, /obj/effect/turf_decal/arrows/white{ dir = 4 }, @@ -135343,10 +135275,10 @@ /obj/effect/turf_decal/siding/wood{ dir = 6 }, -/obj/machinery/light_switch/directional/east, -/obj/machinery/airalarm/directional/south, +/obj/structure/sign/calendar/directional/east, +/obj/machinery/light/small/directional/east, /turf/open/floor/wood/tile, -/area/station/service/barber) +/area/station/commons/long_term_storage) "ufX" = ( /obj/effect/turf_decal/bot, /obj/structure/closet/secure_closet/quartermaster, @@ -136839,18 +136771,6 @@ /obj/machinery/light/dim/directional/west, /turf/open/floor/wood/large, /area/station/commons/dorms) -"utF" = ( -/obj/structure/table/reinforced, -/obj/structure/desk_bell, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/obj/machinery/door/poddoor/shutters/preopen{ - name = "Barber Shop Shutters"; - id = "arrivalbarber" - }, -/turf/open/floor/wood/tile, -/area/station/service/barber) "utH" = ( /obj/effect/turf_decal/siding/wood, /obj/effect/turf_decal/siding/wood{ @@ -139652,7 +139572,7 @@ /obj/structure/flora/bush/grassy/style_random, /obj/structure/window/reinforced/spawner/directional/north, /turf/open/floor/grass, -/area/station/service/barber) +/area/station/commons/long_term_storage) "uQk" = ( /obj/effect/turf_decal/siding/thinplating_new/dark{ dir = 9 @@ -142773,7 +142693,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/wood/tile, -/area/station/service/barber) +/area/station/commons/long_term_storage) "vkN" = ( /obj/structure/flora/rock/pile/style_random, /obj/effect/decal/cleanable/dirt, @@ -147083,13 +147003,10 @@ dir = 5 }, /obj/item/newspaper, -/obj/machinery/button/door/directional/east{ - id = "arrivalbarber"; - name = "Barber Shop Shutters Control" - }, -/obj/machinery/light/small/directional/north, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/light/small/directional/east, /turf/open/floor/wood/tile, -/area/station/service/barber) +/area/station/commons/long_term_storage) "vTf" = ( /obj/structure/railing/corner{ dir = 4 @@ -147261,7 +147178,6 @@ /obj/effect/turf_decal/siding/thinplating_new/dark{ dir = 10 }, -/obj/structure/chair/stool/directional/east, /obj/effect/turf_decal/siding/thinplating_new/dark/corner{ dir = 4 }, @@ -147269,6 +147185,9 @@ dir = 4 }, /obj/structure/sign/poster/random/directional/west, +/obj/structure/table, +/obj/item/folder, +/obj/item/pen, /turf/open/floor/iron/dark/textured, /area/station/security/prison) "vUG" = ( @@ -151399,18 +151318,14 @@ /area/station/medical/lower) "wCk" = ( /obj/machinery/door/airlock/multi_tile/public/glass{ - name = "Barber Shop" + name = "Long Term Crew Storage" }, /obj/machinery/door/firedoor, -/obj/machinery/door/poddoor/shutters/preopen{ - name = "Barber Shop Shutters"; - id = "arrivalbarber" - }, /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/iron/dark/herringbone, -/area/station/service/barber) +/area/station/commons/long_term_storage) "wCn" = ( /obj/structure/railing{ dir = 10 @@ -154066,23 +153981,16 @@ /turf/closed/wall/r_wall, /area/station/security/execution/transfer) "wYk" = ( -/obj/structure/table/wood/fancy/blue, -/obj/item/razor{ - pixel_x = -3 - }, -/obj/item/dyespray{ - pixel_x = 5; - pixel_y = 6 - }, -/obj/machinery/status_display/evac/directional/south, +/obj/structure/closet/secure_closet/personal, /obj/effect/turf_decal/siding/wood{ - dir = 6 + dir = 8 }, +/obj/machinery/airalarm/directional/south, /obj/structure/railing{ - dir = 4 + dir = 8 }, /turf/open/floor/wood/tile, -/area/station/service/barber) +/area/station/commons/long_term_storage) "wYn" = ( /obj/effect/turf_decal/stripes/line{ dir = 5 @@ -154225,12 +154133,8 @@ /area/station/commons/dorms) "wZL" = ( /obj/machinery/door/firedoor, -/obj/machinery/door/poddoor/shutters/preopen{ - name = "Barber Shop Shutters"; - id = "arrivalbarber" - }, /turf/open/floor/iron/dark/herringbone, -/area/station/service/barber) +/area/station/commons/long_term_storage) "wZS" = ( /obj/effect/turf_decal/trimline/red, /obj/effect/turf_decal/trimline/red/mid_joiner, @@ -159851,9 +159755,6 @@ /obj/effect/turf_decal/siding/wideplating_new/corner{ dir = 4 }, -/obj/structure/railing/corner/end/flip{ - dir = 4 - }, /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -162265,16 +162166,15 @@ /turf/open/floor/iron/dark, /area/station/command) "yjq" = ( -/obj/effect/turf_decal/siding/wood{ - dir = 1 - }, -/obj/effect/turf_decal/siding/wood/corner, -/obj/structure/railing{ +/obj/effect/turf_decal/siding/wood/corner{ dir = 4 }, -/obj/item/kirbyplants/random, +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/structure/railing/corner/end, /turf/open/floor/wood/tile, -/area/station/service/barber) +/area/station/commons/long_term_storage) "yjt" = ( /obj/machinery/computer/crew{ dir = 8 @@ -262382,7 +262282,7 @@ cmp xQi sWO iNb -uaD +ogO ogO sUF nVN @@ -262637,10 +262537,10 @@ vQQ lMy ijB ued -utF -eaI -jBk -dqV +sWO +iNb +ogO +ogO kaw lIM lIM @@ -262894,10 +262794,10 @@ wgT czt ijB ued -rZR -rim -ddM -thJ +sWO +iNb +ogO +ogO owH lIM tqW @@ -263151,11 +263051,11 @@ vHR ijB fub udF -ivJ -tca -jBk -dqV -kaw +sWO +iNb +ogO +ogO +dep lIM nOB fni @@ -263924,7 +263824,7 @@ eYI wZL bhQ bZy -jBk +gJD qOA lIM hop diff --git a/_maps/map_files/PubbyStation/PubbyStation.dmm b/_maps/map_files/PubbyStation/PubbyStation.dmm index 964110cccf99..94de34814209 100644 --- a/_maps/map_files/PubbyStation/PubbyStation.dmm +++ b/_maps/map_files/PubbyStation/PubbyStation.dmm @@ -61729,6 +61729,11 @@ }, /turf/open/floor/iron, /area/station/maintenance/disposal) +"xFB" = ( +/obj/machinery/sleeper/cryo, +/obj/structure/sign/warning/cold_temp/directional/north, +/turf/open/floor/iron/white/smooth_large, +/area/station/commons/fitness/recreation) "xFF" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/iron/cafeteria, @@ -103694,7 +103699,7 @@ sFK sFK sFK aiS -sum +xFB fVJ lFK lFK diff --git a/code/__DEFINES/preferences.dm b/code/__DEFINES/preferences.dm index b87f2309f46e..f5f9a59a72c4 100644 --- a/code/__DEFINES/preferences.dm +++ b/code/__DEFINES/preferences.dm @@ -187,7 +187,7 @@ #define LOWER_LIP "Lower" // Latejoin Spawnpoints -#define SPAWNPOINT_CRYO "Cryogenic Storage" +#define SPAWNPOINT_CRYO "Long-Term Crew Storage" #define SPAWNPOINT_ARRIVALS "Arrivals Shuttle" // Job greyscale colors for loadout items diff --git a/code/game/machinery/announcement_system.dm b/code/game/machinery/announcement_system.dm index aeb1d1c97a94..ce2ff2a1d1ab 100644 --- a/code/game/machinery/announcement_system.dm +++ b/code/game/machinery/announcement_system.dm @@ -92,7 +92,7 @@ GLOBAL_LIST_EMPTY(announcement_systems) else if(message_type == "ARRIVALS_BROKEN") message = "The arrivals shuttle has been damaged. Docking for repairs..." else if(message_type == "DESPAWN") - message = CompileText("%PERSON, %RANK, has entered cryogenic storage.", user, rank) + message = CompileText("%PERSON, %RANK, has entered long-term crew storage.", user, rank) broadcast(message, channels) diff --git a/code/game/machinery/sleepers.dm b/code/game/machinery/sleepers.dm index 99d1189eca7c..17541054bddf 100644 --- a/code/game/machinery/sleepers.dm +++ b/code/game/machinery/sleepers.dm @@ -390,7 +390,7 @@ GLOBAL_LIST_INIT(cryo_sleepers, list()) #define IS_SPAWNING "spawning" /obj/machinery/sleeper/cryo - name = "cryogenic pod" + name = "long-term crew storage pod" desc = "An enclosed machine designed to put subjects in a state of suspended animation for long-term storage." icon = 'maplestation_modules/icons/obj/machines/sleeper.dmi' icon_state = "cryopod" @@ -420,7 +420,10 @@ GLOBAL_LIST_INIT(cryo_sleepers, list()) if(isliving(occupant) && user != occupant) var/mob/living/occupant_l = occupant var/obj/item/card/id/their_id = occupant_l.get_idcard() - . += span_notice("Inside, you can see [occupant][their_id ? ", the [their_id.assignment]" : ""][HAS_TRAIT(occupant, TRAIT_KNOCKEDOUT) ? " - sound asleep" : ""].") + . += span_notice("Inside, you can see [occupant][their_id ? ", the [their_id.assignment]" : ""][(HAS_TRAIT(occupant, TRAIT_KNOCKEDOUT) || (occupant_l.key && !occupant_l.client)) ? " - sound asleep" : ""].") + else if(isliving(user)) + . += span_info(span_slightly_smaller("You can enter the pod to be put into stasis temporarily, or to despawn your character.")) + . += span_info(span_slightly_smaller("This machine is not intended to be used medicinally. Avoid placing wounded patients inside, even in emergencies.")) /obj/machinery/sleeper/cryo/set_occupant(atom/movable/new_occupant) var/mob/living/old_occupant = occupant @@ -429,21 +432,27 @@ GLOBAL_LIST_INIT(cryo_sleepers, list()) var/skey = REF(src) if(istype(old_occupant)) old_occupant.remove_status_effect(/datum/status_effect/grouped/stasis, skey) - // REMOVE_TRAIT(old_occupant, TRAIT_KNOCKEDOUT, IS_SPAWNING) - // REMOVE_TRAIT(old_occupant, TRAIT_MUTE, skey) REMOVE_TRAIT(old_occupant, TRAIT_BLOCK_HEADSET_USE, skey) REMOVE_TRAIT(old_occupant, TRAIT_SOFTSPOKEN, skey) + REMOVE_TRAIT(old_occupant, TRAIT_RADSTORM_IMMUNE, skey) UnregisterSignal(old_occupant, COMSIG_MOB_CLIENT_PRE_LIVING_MOVE) if(throw_alert) old_occupant.clear_alert(skey) if(istype(new_occupant_l)) new_occupant_l.apply_status_effect(/datum/status_effect/grouped/stasis, skey) - // ADD_TRAIT(new_occupant_l, TRAIT_MUTE, skey) ADD_TRAIT(new_occupant_l, TRAIT_BLOCK_HEADSET_USE, skey) ADD_TRAIT(new_occupant_l, TRAIT_SOFTSPOKEN, skey) + ADD_TRAIT(new_occupant_l, TRAIT_RADSTORM_IMMUNE, skey) RegisterSignal(new_occupant_l, COMSIG_MOB_CLIENT_PRE_LIVING_MOVE, PROC_REF(early_move_check)) if(throw_alert) new_occupant_l.throw_alert(skey, /atom/movable/screen/alert/cryosleep) + // if they have a mind, we can consider despawning them, however: + // ...if the mind is active, they are being forced to be "here", so we should be on the safe side and leave them + // ...if they have a key, but no client, they're just disconnected. leave them in the pod for if they return + // ...if they have a client, they're actively in the game, definitely don't despawn them + // ...if they have an ai controller, then it's probably just an NPC, so it doesn't need to be despawned + if(new_occupant_l.mind && !new_occupant_l.mind.active && !new_occupant_l.key && !new_occupant_l.client && !new_occupant_l.ai_controller) + addtimer(CALLBACK(src, PROC_REF(auto_despawn), new_occupant_l), 5 MINUTES) /obj/machinery/sleeper/cryo/proc/early_move_check(mob/living/mob_occupant, new_loc, direct) SIGNAL_HANDLER @@ -453,6 +462,11 @@ GLOBAL_LIST_INIT(cryo_sleepers, list()) INVOKE_ASYNC(src, TYPE_PROC_REF(/atom, relaymove), mob_occupant, direct) return COMSIG_MOB_CLIENT_BLOCK_PRE_LIVING_MOVE +/obj/machinery/sleeper/cryo/proc/auto_despawn(mob/living/mob_occupant) + if(QDELETED(mob_occupant) || occupant != mob_occupant) + return + despawn_occupant() + /obj/machinery/sleeper/cryo/close_machine(mob/user, density_to_set) . = ..() if(isliving(occupant)) @@ -524,14 +538,16 @@ GLOBAL_LIST_INIT(cryo_sleepers, list()) qdel(mob_occupant) open_machine() - var/datum/record/associated_record = find_record(mob_occupant.real_name) + var/datum/record/crew/associated_record = find_record(mob_occupant.real_name) var/obj/machinery/announcement_system/announcer = pick(GLOB.announcement_systems) if(!QDELETED(associated_record) && !QDELETED(announcer)) announcer.announce("DESPAWN", mob_occupant.name, associated_record.rank, list()) + associated_record.physical_status = PHYSICAL_UNCONSCIOUS + associated_record.medical_notes += new /datum/medical_note("Record Database", "In long-term crew storage.") deadchat_broadcast( - " has entered cryogenic storage.", - "[mob_occupant.real_name] ([associated_record?.rank || "Unknown"])", + " has entered long-term crew storage storage.", + "[span_name(mob_occupant.real_name)] ([associated_record?.rank || "Unknown"])", turf_target = get_turf(src), message_type = DEADCHAT_ARRIVALRATTLE, ) @@ -539,8 +555,8 @@ GLOBAL_LIST_INIT(cryo_sleepers, list()) #undef IS_SPAWNING /atom/movable/screen/alert/cryosleep - name = "Cryosleep" - desc = "Click this button to despawn your character." + name = "Enter Crew Storage" + desc = "You are free to idle in stasis for as long as you need, but you may also click this button to despawn your character." mouse_over_pointer = MOUSE_HAND_POINTER icon_state = "cold" @@ -559,3 +575,6 @@ GLOBAL_LIST_INIT(cryo_sleepers, list()) sleeper.despawn_occupant() return TRUE + +/area/station/commons/long_term_storage + name = "Long-Term Crew Storage" diff --git a/maplestation_modules/code/modules/client/preferences/spawn_location.dm b/maplestation_modules/code/modules/client/preferences/spawn_location.dm index 3b1f7c0e8b75..e1801fac5a75 100644 --- a/maplestation_modules/code/modules/client/preferences/spawn_location.dm +++ b/maplestation_modules/code/modules/client/preferences/spawn_location.dm @@ -1,7 +1,7 @@ /datum/preference/choiced/preferred_latejoin_spawn savefile_key = "preferred_latejoin_spawn" savefile_identifier = PREFERENCE_CHARACTER - category = PREFERENCE_CATEGORY_SECONDARY_FEATURES + category = PREFERENCE_CATEGORY_NON_CONTEXTUAL can_randomize = FALSE /datum/preference/choiced/preferred_latejoin_spawn/create_default_value()