diff --git a/aurorastation.dme b/aurorastation.dme index 5cb123a4c43..bcc19fb61ae 100644 --- a/aurorastation.dme +++ b/aurorastation.dme @@ -1924,6 +1924,7 @@ #include "code\modules\clothing\ears\antennae.dm" #include "code\modules\clothing\ears\bandanna.dm" #include "code\modules\clothing\ears\earmuffs.dm" +#include "code\modules\clothing\ears\earphones.dm" #include "code\modules\clothing\ears\earrings.dm" #include "code\modules\clothing\ears\xeno\bulwark.dm" #include "code\modules\clothing\ears\xeno\skrell.dm" diff --git a/code/datums/sound_player.dm b/code/datums/sound_player.dm index ca564d4f5e6..52487a87b40 100644 --- a/code/datums/sound_player.dm +++ b/code/datums/sound_player.dm @@ -36,6 +36,17 @@ GLOBAL_DATUM_INIT(sound_player, /singleton/sound_player, new) return PlaySoundDatum(source, sound_id, S, range, prefer_mute, sound_type) +/singleton/sound_player/proc/PlayNonloopingSound(atom/source, sound_id, sound, volume, range, falloff = 1, echo, frequency, prefer_mute, sound_type = ASFX_AMBIENCE) + var/sound/S = istype(sound, /sound) ? sound : new(sound) + S.environment = 0 // Ensures a 3D effect even if x/y offset happens to be 0 the first time it's played + S.volume = volume + S.falloff = falloff + S.echo = echo + S.frequency = frequency + S.repeat = FALSE + + return PlaySoundDatum(source, sound_id, S, range, prefer_mute, sound_type) + /singleton/sound_player/proc/PrivStopSound(datum/sound_token/sound_token) var/channel = sound_token.sound.channel var/sound_id = sound_token.sound_id diff --git a/code/game/machinery/jukebox.dm b/code/game/machinery/jukebox.dm index 7cd4dcece6a..6455fd2b2d5 100644 --- a/code/game/machinery/jukebox.dm +++ b/code/game/machinery/jukebox.dm @@ -36,7 +36,6 @@ new/datum/track("Thunderdome", 'sound/music/THUNDERDOME.ogg') ) - /obj/machinery/media/jukebox/Destroy() StopPlaying() return ..() diff --git a/code/modules/client/preference_setup/loadout/items/ears.dm b/code/modules/client/preference_setup/loadout/items/ears.dm index 89938c77605..f7383388022 100644 --- a/code/modules/client/preference_setup/loadout/items/ears.dm +++ b/code/modules/client/preference_setup/loadout/items/ears.dm @@ -14,20 +14,6 @@ path = /obj/item/clothing/accessory/ear_warmers flags = GEAR_HAS_NAME_SELECTION | GEAR_HAS_DESC_SELECTION | GEAR_HAS_COLOR_SELECTION -/datum/gear/ears/double/headphones - display_name = "headphone selection" - description = "A selection of headphones." - path = /obj/item/clothing/ears/earmuffs/earphones/headphones - flags = GEAR_HAS_COLOR_SELECTION - -/datum/gear/ears/double/headphones/New() - ..() - var/list/headphones = list() - headphones["headphones"] = /obj/item/clothing/ears/earmuffs/earphones/headphones - headphones["earphones"] = /obj/item/clothing/ears/earmuffs/earphones - headphones["earbuds"] = /obj/item/clothing/ears/earmuffs/earphones/earbuds - gear_tweaks += new /datum/gear_tweak/path(headphones) - /datum/gear/ears/earrings display_name = "earring selection" description = "A selection of eye-catching earrings." diff --git a/code/modules/client/preference_setup/loadout/items/utility.dm b/code/modules/client/preference_setup/loadout/items/utility.dm index 61aec2c0499..b5d870dcc9e 100644 --- a/code/modules/client/preference_setup/loadout/items/utility.dm +++ b/code/modules/client/preference_setup/loadout/items/utility.dm @@ -179,3 +179,34 @@ /datum/gear/utility/buddy_tag/New() ..() gear_tweaks += new /datum/gear_tweak/buddy_tag_config() + +/datum/gear/utility/earphones + display_name = "earphones selection" + flags = GEAR_HAS_NAME_SELECTION | GEAR_HAS_DESC_SELECTION | GEAR_HAS_COLOR_SELECTION + path = /obj/item/clothing/ears/earphones + cost = 1 + +/datum/gear/utility/earphones/New() + ..() + var/list/earphones = list() + earphones["headphones"] = /obj/item/clothing/ears/earphones/headphones + earphones["earphones"] = /obj/item/clothing/ears/earphones + earphones["earbuds"] = /obj/item/clothing/ears/earphones/earbuds + gear_tweaks += new /datum/gear_tweak/path(earphones) + +/datum/gear/utility/earphones_music_cartridge + display_name = "earphones music cartridge selection" + flags = GEAR_HAS_NAME_SELECTION | GEAR_HAS_DESC_SELECTION + path = /obj/item/music_cartridge/audioconsole + cost = 1 + +/datum/gear/utility/earphones_music_cartridge/New() + ..() + var/list/music_cartridges = list() + music_cartridges["Konyang Vibes 2463"] = /obj/item/music_cartridge/konyang_retrowave + music_cartridges["Top of the Charts 66 (Venusian Hits)"] = /obj/item/music_cartridge/venus_funkydisco + music_cartridges["SCC Welcome Package"] = /obj/item/music_cartridge/audioconsole + music_cartridges["Spacer Classics Vol. 1"] = /obj/item/music_cartridge/ + music_cartridges["Indulgence EP (X-Rock)"] = /obj/item/music_cartridge/xanu_rock + music_cartridges["Electro-Swing of Adhomai"] = /obj/item/music_cartridge/adhomai_swing + gear_tweaks += new /datum/gear_tweak/path(music_cartridges) diff --git a/code/modules/clothing/ears/earmuffs.dm b/code/modules/clothing/ears/earmuffs.dm index 1da33c4229c..3845ac7f888 100644 --- a/code/modules/clothing/ears/earmuffs.dm +++ b/code/modules/clothing/ears/earmuffs.dm @@ -7,58 +7,6 @@ item_flags = ITEM_FLAG_SOUND_PROTECTION slot_flags = SLOT_EARS | SLOT_TWOEARS contained_sprite = TRUE - var/on = FALSE - -/obj/item/clothing/ears/earmuffs/earphones - name = "earphones" - desc = "A pair of wired earphones. Good luck trying to find a headphone jack." - desc_extended = "Has a tendency to snag itself on whatever furniture it can find at the most inopportune of times." - icon_state = "earphones" - item_state = "earphones" - build_from_parts = TRUE - -/obj/item/clothing/ears/earmuffs/earphones/attack_self(mob/user) - togglemusic() - -/obj/item/clothing/ears/earmuffs/earphones/verb/togglemusic() - set name = "Toggle Headphone Music" - set category = "Object" - set src in usr - if(!isliving(usr)) - return - if(use_check_and_message(usr)) - return - - playsound(src, /singleton/sound_category/button_sound, 10) - if(on) - ClearOverlays() - worn_overlay = null - to_chat(usr, SPAN_NOTICE("You turn the music off.")) - else - worn_overlay = "music" // this is rather annoying but prevents the music notes on getting colored - to_chat(usr, SPAN_NOTICE("You turn the music on.")) - on = !on - - update_icon() - update_clothing_icon() - -/obj/item/clothing/ears/earmuffs/earphones/headphones - name = "headphones" - desc = "A pair of headphones. Cushioned and sound-cancelling." - desc_extended = "Unce unce unce unce." - icon_state = "headphones" - item_state = "headphones" - -/obj/item/clothing/ears/earmuffs/earphones/headphones/update_icon() - ..() - AddOverlays(overlay_image(icon, "[icon_state]_overlay", flags=RESET_COLOR)) - -/obj/item/clothing/ears/earmuffs/earphones/earbuds - name = "earbuds" - desc = "A pair of wireless earbuds. Don't lose them." - desc_extended = "Oh god, they can't hear us! They've got earbuds on!" - icon_state = "earbuds" - item_state = "earbuds" /obj/item/clothing/accessory/ear_warmers name = "ear warmers" diff --git a/code/modules/clothing/ears/earphones.dm b/code/modules/clothing/ears/earphones.dm new file mode 100644 index 00000000000..a1c9be58907 --- /dev/null +++ b/code/modules/clothing/ears/earphones.dm @@ -0,0 +1,437 @@ +/* + Earphones that use our sound_player system to play sounds from a music cartridge to their wearer. + + Current Features: + - All earphones have a cartridge slot. Cartridges can be inserted by clicking an earphone, and removed via an eject_music_cartridge() verb. + - Inserting a cartridge will load a playlist containing /datum/tracks, where track names and sound files are loaded. + - Shift+Clicking will Start/Stop a playlist, creating or deleting an active sound_player token. + - Alt+Clicking with Pause/Unpause the current track, preserving an active sound_player token. + - attack_self will eject the music cartridge. Ejecting a music cartridge also terminates the sound_player token. + - Volume controllable via verb. + + Missing features i am too weak to figure out: + - There is no auto—next song, and a user must manually use next_song() or previous_song() verbs to iterate through a playlist. + - Part and parcel with no auto-next: Tracks automatically loop due to using the PlayLoopingSound() proc. Ideally, tracks should not loop. + - There is no accomodation for user-uploaded sound files. + - There are no UI implementations of earphone controls, which could be more user friendly. +*/ + +/obj/item/clothing/ears/earphones + name = "earphones" + desc = "A pair of wireless earphones. Includes a little slot for a music cartridge." + desc_mechanics = "Shift+Click to Start/Stop a playlist. Alt+Click to Pause/Resume the current track. Click character to eject cartridge. Alternatively, use verbs." + icon = 'icons/obj/clothing/ears/earmuffs.dmi' + icon_state = "earphones" + item_state = "earphones" + slot_flags = SLOT_EARS + contained_sprite = TRUE + build_from_parts = TRUE + + /// The music cartridge loaded into the earphones. The source of which sound files to play. + var/obj/item/music_cartridge/music_cartridge + + /// The active sound_token for the sound_player. Created per track and deleted when a song is stopped. + var/datum/sound_token/soundplayer_token = null + + /// A list of /datum/tracks the earphones will iterate through to select sound files. /datum/tracks supplied by a music cartridge item. + var/list/datum/track/current_playlist = list() + + /// For iterating through current_player() to select new sounds + var/playlist_index = 1 + + /// Volume. Affected by change_volume() proc/verb so users may control the volume. + var/volume = 25 + + /// Range. No use for this yet, but maybe someone will want to make a boombox or something that has a larger range. + var/range = 0 + + /// Is a track playing? For icon updates. + var/playing = FALSE + +/obj/item/clothing/ears/earphones/Destroy() + StopPlaying() + QDEL_NULL(music_cartridge) + . = ..() + +/* + Music Cartridge Procs: +*/ + +// Cartridge Insertion +/obj/item/clothing/ears/earphones/attackby(obj/item/attacking_item, mob/user) + if(istype(attacking_item, /obj/item/music_cartridge)) + if(attacking_item == user.get_active_hand()) + if(!music_cartridge) // Making sure there is no track in there already + user.drop_from_inventory(attacking_item, src) + music_cartridge = attacking_item + read_music_cartridge(attacking_item, user) // This is where tracks will actually get loaded + to_chat(user, SPAN_NOTICE("You insert \the [attacking_item] into \the [src]")) + else + to_chat(user, SPAN_WARNING("There's already a music cartridge in there.")) + ..() + +/obj/item/clothing/ears/earphones/proc/read_music_cartridge(obj/item/music_cartridge/cartridge, mob/user) + StopPlaying() // New cartridge in, so clean up our sound token if it hasn't already been for some reason + + playlist_index = 1 // Back to the beginning + if(music_cartridge.tracks) + for(var/datum/track/track in music_cartridge.tracks) + current_playlist += track // Move all the tracks stored on the music_cartridge to our current_playlist + + to_chat(user, SPAN_NOTICE("Now listening to: [music_cartridge.name].")) + +/obj/item/clothing/ears/earphones/proc/eject_music_cartridge(mob/user) + if(!music_cartridge) + to_chat(user,SPAN_WARNING("There is no music cartridge in \the [src]!")) + return + + StopPlaying() // Stop & Clean Up + current_playlist.Cut() + user.put_in_hands(music_cartridge) + music_cartridge = null + + to_chat(user,SPAN_NOTICE("You eject the music cartridge from \the [src].")) + +/obj/item/clothing/ears/earphones/attack_self(mob/user) + eject_music_cartridge(user) + ..() + +/* + Starting and Stopping Procs +*/ + +/obj/item/clothing/ears/earphones/proc/StopPlaying() + if(!soundplayer_token) + return + + soundplayer_token.Stop() + QDEL_NULL(soundplayer_token) // A sound token is created per-song, so we'll be liberal with cleaning up old tokens. + + // Icon/Overlay stuff for the music notes + ClearOverlays() + worn_overlay = null + update_icon() + update_clothing_icon() + +/obj/item/clothing/ears/earphones/proc/StartPlaying(mob/user) + if(!music_cartridge) + to_chat(user, SPAN_WARNING("No cartridge loaded.")) + return + + // Make sure we aren't doubling up on soundtokens + if(!soundplayer_token) + if(current_playlist && (current_playlist.len > 0)) + var/sound/sound_to_play = current_playlist[playlist_index].sound + soundplayer_token = GLOB.sound_player.PlayLoopingSound(src, src, sound_to_play, volume, range, 20, prefer_mute = FALSE, sound_type = ASFX_MUSIC) + + //addtimer(CALLBACK(src, PROC_REF(next_song), user), (sound_to_play.len SECOND)) // Queue the next_song() proc when the current song ends. Clean up handled under next_song() which also calls stopplaying() to end this token + // If someone gets ^this^ to work, you can switch out PlayLoopingSound for PlayNonloopingSound + // the sound's len variable doesn't seem to actually store a length :/ + + // Chat Display + var/current_track_name = current_playlist[playlist_index].title + to_chat(user,SPAN_NOTICE("Now Playing: Track [playlist_index] — '[current_track_name]'.")) + + // Icon/Overlay stuff for the music notes + worn_overlay = "music" // this is rather annoying but prevents the music notes on getting colored + update_icon() + update_clothing_icon() + +/* + Song Iteration Procs +*/ + +/obj/item/clothing/ears/earphones/proc/next_song(mob/user) + if(use_check_and_message(user)) + return + + if(!music_cartridge || (current_playlist.len == 0)) + to_chat(user, SPAN_WARNING("No playlist loaded.")) + return + + StopPlaying() // Stop & Cleanup previous sound token + + // Sound iteration + if(playlist_index + 1 <= current_playlist.len) + playlist_index++ + else + playlist_index = 1 + + StartPlaying(user) // New sound token created here + +/obj/item/clothing/ears/earphones/proc/previous_song(mob/user) + if(use_check_and_message(usr)) + return + if(!music_cartridge || (current_playlist.len == 0)) + to_chat(user, SPAN_WARNING("No playlist loaded.")) + return + + StopPlaying() // Stop & Cleanup previous sound token + + // Sound iteration + if(playlist_index - 1 < 1) + playlist_index = 1 + else + playlist_index-- + + StartPlaying(user) // New sound token created here + +/* + Verbs: + + play_stop() + change_volume() + pause_unpause() + next_song() + previous_song() + +*/ + +/obj/item/clothing/ears/earphones/verb/play_stop() + set name = "Earphones - Play/Stop" + set category = "Object" + set src in usr + + if(use_check_and_message(usr)) + return + + if(ismob(src.loc)) + usr.visible_message(SPAN_NOTICE("[usr] clicks a button on [usr.get_pronoun("his")] [src].")) + playsound(usr, /singleton/sound_category/button_sound, 10) + + if(soundplayer_token) + StopPlaying() + else + if(!music_cartridge) + to_chat(usr, SPAN_WARNING("You need to slot a music cartridge in first!")) + return + StartPlaying(usr) + +/obj/item/clothing/ears/earphones/verb/change_volume() + set name = "Earphones - Change Volume" + set category = "Object" + set src in usr + + if(use_check_and_message(usr)) + return + + usr.visible_message(SPAN_NOTICE("[usr] swipes at [usr.get_pronoun("his")] [src].")) + + // Volume Control + var/volume_input = tgui_input_number(usr,"Change the volume (0 - 100)","Volume", volume, 100, 0) + if(volume_input == null) + return + if(volume_input > 100) + volume_input = 100 + if(volume_input < 0) + volume_input = 0 + volume = volume_input + + // If a soundtoken is already active/a song playing, we can adjust the volume mid-token. + if(!soundplayer_token) + return + else + soundplayer_token.SetVolume(volume) + +/obj/item/clothing/ears/earphones/verb/pause_unpause() + set name = "Earphones - Pause/Unpause" + set category = "Object" + set src in usr + + if(use_check_and_message(usr)) + return + + if(ismob(src.loc)) + usr.visible_message(SPAN_NOTICE("[usr] clicks a button on [usr.get_pronoun("his")] [src].")) + playsound(usr, /singleton/sound_category/button_sound, 10) + if(soundplayer_token) + if(soundplayer_token.status != SOUND_PAUSED) + soundplayer_token.Pause() + to_chat(usr, SPAN_NOTICE("Music paused.")) + + // Icon/Overlay stuff for the music notes + ClearOverlays() + worn_overlay = null + update_icon() + update_clothing_icon() + + else if (soundplayer_token.status == SOUND_PAUSED) + soundplayer_token.Unpause() + to_chat(usr, SPAN_NOTICE("Music unpaused.")) + + // Icon/Overlay stuff for the music notes + worn_overlay = "music" // this is rather annoying but prevents the music notes on getting colored + update_icon() + update_clothing_icon() + else + play_stop() //No soundtoken? They probably meant to use the other verb instead. + +/obj/item/clothing/ears/earphones/verb/next_song_verb() + set name = "Earphones - Next Song" + set category = "Object" + set src in usr + + usr.visible_message(SPAN_NOTICE("[usr] clicks a button on [usr.get_pronoun("his")] [src].")) + playsound(usr, /singleton/sound_category/button_sound, 10) + next_song(usr) + +/obj/item/clothing/ears/earphones/verb/previous_song_verb() + set name = "Earphones - Previous Song" + set category = "Object" + set src in usr + + usr.visible_message(SPAN_NOTICE("[usr] clicks a button on [usr.get_pronoun("his")] [src].")) + playsound(usr, /singleton/sound_category/button_sound, 10) + previous_song(usr) + +/obj/item/clothing/ears/earphones/verb/eject_music_cartridge_verb() + set name = "Earphones - Eject Music Cartridge" + set category = "Object" + set src in usr + + eject_music_cartridge(usr) + +/* + Click Controls: + + Shift+Click to Pause/Unpause + Alt+Click to Start/Stop + +*/ + +/obj/item/clothing/ears/earphones/AltClick(mob/user) + pause_unpause() + +/obj/item/clothing/ears/earphones/ShiftClick(mob/user) + play_stop() + +/* + Generic Earwear Procs +*/ + +/obj/item/clothing/ears/earphones/update_clothing_icon() + if (ismob(src.loc)) + var/mob/M = src.loc + M.update_inv_l_ear() + M.update_inv_r_ear() + +/* +Earphone Variants +*/ + +/obj/item/clothing/ears/earphones/headphones + name = "headphones" + desc = "A pair of headphones. Cushioned but not quite sound-cancelling. Includes a little slot for a music cartridge." + desc_extended = "Unce unce unce unce." + icon_state = "headphones" + item_state = "headphones" + + slot_flags = SLOT_EARS | SLOT_TWOEARS + +/obj/item/clothing/ears/earphones/headphones/update_icon() + ..() + AddOverlays(overlay_image(icon, "[icon_state]_overlay", flags=RESET_COLOR)) + +/obj/item/clothing/ears/earphones/earbuds + name = "earbuds" + desc = "A pair of wireless earbuds. Don't lose them. Includes a little slot for a music cartridge." + icon_state = "earbuds" + item_state = "earbuds" + +/* + Music Cartridges +*/ + +/obj/item/music_cartridge + name = "music cartridge" + desc = "A music cartridge." + icon = 'icons/obj/item/music_cartridges.dmi' + icon_state = "generic" + w_class = WEIGHT_CLASS_SMALL + + var/list/datum/track/tracks = list() + +/obj/item/music_cartridge/ss13 + name = "Spacer Classics Vol. 1" + desc = "An old music cartridge with a cheap-looking label." + + tracks = list( + new/datum/track("Title 1", 'sound/music/title1.ogg'), + new/datum/track("Title 2", 'sound/music/title2.ogg'), + new/datum/track("Title 3", 'sound/music/title3.ogg'), + new/datum/track("Traitor", 'sound/music/traitor.ogg'), + new/datum/track("Space", 'sound/music/space.ogg'), + new/datum/track("Title 3 Mk2", 'sound/music/title3mk2.ogg') + ) + +/obj/item/music_cartridge/audioconsole + name = "SCC Welcome Package" + desc = "A music cartridge with some company-selected songs. Nothing special, everyone got one of these in their welcome boxes..." + + tracks = list( + new/datum/track("Amsterdam", 'sound/music/audioconsole/Amsterdam.ogg'), + new/datum/track("Butterflies", 'sound/music/audioconsole/Butterflies.ogg'), + new/datum/track("Childhood", 'sound/music/audioconsole/Childhood.ogg'), + new/datum/track("Don't Rush", 'sound/music/audioconsole/DontRush.ogg'), + new/datum/track("Lips", 'sound/music/audioconsole/Lips.ogg'), + new/datum/track("Number 0", 'sound/music/audioconsole/Number0.ogg'), + new/datum/track("Phoron Will Make Us Rich", 'sound/music/audioconsole/PhoronWillMakeUsRich.ogg'), + new/datum/track("That Ain't Chopin", 'sound/music/audioconsole/ThatAintChopin.ogg'), + new/datum/track("The Pianist", 'sound/music/audioconsole/ThePianist.ogg'), + new/datum/track("When", 'sound/music/audioconsole/When.ogg') + ) + +/* + Regional Music Cartridges +*/ + +/obj/item/music_cartridge/konyang_retrowave + name = "Konyang Vibes 2463" + desc = "A music cartridge with a Konyang flag on the hololabel." + icon_state = "konyang" + + tracks = list( + new/datum/track("Konyang Vibes #1", 'sound/music/lobby/konyang/konyang-1.ogg'), + new/datum/track("Konyang Vibes #2", 'sound/music/lobby/konyang/konyang-2.ogg'), + new/datum/track("Konyang Vibes #3", 'sound/music/lobby/konyang/konyang-3.ogg') + ) + +/obj/item/music_cartridge/venus_funkydisco + name = "Top of the Charts 66 (Venusian Hits)" + desc = "A glitzy, pink music cartridge with more Venusian hits." + icon_state = "venus" + + tracks = list( + new/datum/track("dance させる", 'sound/music/regional/venus/dance.ogg'), + new/datum/track("love sensation", 'sound/music/regional/venus/love_sensation.ogg'), + new/datum/track("All Night", 'sound/music/regional/venus/all_night.ogg'), + new/datum/track("#billyocean", 'sound/music/regional/venus/billy_ocean.ogg'), + new/datum/track("Artificially Sweetened", 'sound/music/regional/venus/artificially_sweetened.ogg'), + new/datum/track("Real Love", 'sound/music/regional/venus/real_love.ogg'), + new/datum/track("F U N K Y G I R L <3", 'sound/music/regional/venus/funky_girl.ogg'), + new/datum/track("Break The System", 'sound/music/regional/venus/break_the_system.ogg') + ) + + +/obj/item/music_cartridge/xanu_rock + name = "Indulgence EP (X-Rock)" //feel free to reflavour as a more varied x-rock mixtape, instead of a single EP, if other x-rock tracks are added + desc = "A music cartridge with a Xanan flag on the hololabel. Some fancy, rainbow text over it reads, 'INDULGENCE'." + icon_state = "xanu" + + tracks = list( + new/datum/track("Shimmer", 'sound/music/regional/xanu/xanu_rock_3.ogg'), + new/datum/track("Rise", 'sound/music/regional/xanu/xanu_rock_1.ogg'), + new/datum/track("Indulgence", 'sound/music/regional/xanu/xanu_rock_2.ogg') + ) + +/obj/item/music_cartridge/adhomai_swing + name = "Electro-Swing of Adhomai" + desc = "A red music cartridge holding the most widely-known Adhomian electro-swing songs." + icon_state = "adhomai" + + tracks = list( + new/datum/track("Boolean Sisters", 'sound/music/phonograph/boolean_sisters.ogg'), + new/datum/track("Electro Swing", 'sound/music/phonograph/electro_swing.ogg'), + new/datum/track("Le Swing", 'sound/music/phonograph/le_swing.ogg'), + new/datum/track("Posin", 'sound/music/phonograph/posin.ogg') + ) diff --git a/html/changelogs/kermit-earphone_soundplayers.yml b/html/changelogs/kermit-earphone_soundplayers.yml new file mode 100644 index 00000000000..50eba83f1cc --- /dev/null +++ b/html/changelogs/kermit-earphone_soundplayers.yml @@ -0,0 +1,7 @@ +author: kermit + +delete-after: True + +changes: + - rscadd: "Makes earphones/headphones/earbuds play music, much like Audioconsoles!" + - rscadd: "Adds music cartridges which are used to load music into earphones." \ No newline at end of file diff --git a/icons/obj/item/music_cartridges.dmi b/icons/obj/item/music_cartridges.dmi new file mode 100644 index 00000000000..e802ab922a0 Binary files /dev/null and b/icons/obj/item/music_cartridges.dmi differ diff --git a/maps/away/away_site/abandoned_diner/abandoned_diner.dmm b/maps/away/away_site/abandoned_diner/abandoned_diner.dmm index 2e8f86d2f63..bb533b3d7f7 100644 --- a/maps/away/away_site/abandoned_diner/abandoned_diner.dmm +++ b/maps/away/away_site/abandoned_diner/abandoned_diner.dmm @@ -2482,7 +2482,7 @@ /obj/random/junk{ pixel_x = -13 }, -/obj/item/clothing/ears/earmuffs/earphones, +/obj/item/clothing/ears/earphones, /turf/simulated/floor/tiled/dark, /area/abandoned_diner/crew_quarters) "cGg" = ( @@ -4644,7 +4644,7 @@ /area/abandoned_diner/diner) "piK" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on, -/obj/item/clothing/ears/earmuffs/earphones/headphones{ +/obj/item/clothing/ears/earphones/headphones{ pixel_y = 6; pixel_x = 11 }, @@ -5845,7 +5845,7 @@ pixel_y = -4; pixel_x = 3 }, -/obj/item/clothing/ears/earmuffs/earphones, +/obj/item/clothing/ears/earphones, /turf/simulated/floor/carpet/rubber, /area/abandoned_diner/backroom) "xjB" = ( diff --git a/maps/away/away_site/pirate_base/pirate_base.dmm b/maps/away/away_site/pirate_base/pirate_base.dmm index bd31074953d..c8ca5114f30 100644 --- a/maps/away/away_site/pirate_base/pirate_base.dmm +++ b/maps/away/away_site/pirate_base/pirate_base.dmm @@ -6311,7 +6311,7 @@ pixel_x = -1; pixel_y = -5 }, -/obj/item/clothing/ears/earmuffs/earphones/headphones{ +/obj/item/clothing/ears/earphones/headphones{ pixel_y = 2; pixel_x = 3 }, diff --git a/maps/away/ships/freebooter/freebooter_ship/freebooter_ship_.dmm b/maps/away/ships/freebooter/freebooter_ship/freebooter_ship_.dmm index 2273bb80bd4..f36e5eea2b9 100644 --- a/maps/away/ships/freebooter/freebooter_ship/freebooter_ship_.dmm +++ b/maps/away/ships/freebooter/freebooter_ship/freebooter_ship_.dmm @@ -3788,7 +3788,7 @@ /area/ship/freebooter_ship/exterior) "oUu" = ( /obj/structure/table/steel, -/obj/item/clothing/ears/earmuffs/earphones/headphones{ +/obj/item/clothing/ears/earphones/headphones{ pixel_x = -4; pixel_y = 3 }, diff --git a/maps/away/ships/golden_deep/golden_deep.dmm b/maps/away/ships/golden_deep/golden_deep.dmm index fe876b8f524..dcf70c08fec 100644 --- a/maps/away/ships/golden_deep/golden_deep.dmm +++ b/maps/away/ships/golden_deep/golden_deep.dmm @@ -4506,7 +4506,7 @@ pixel_y = 6 }, /obj/random/dirt_75, -/obj/item/clothing/ears/earmuffs/earphones/headphones{ +/obj/item/clothing/ears/earphones/headphones{ pixel_y = 4; pixel_x = 9 }, diff --git a/maps/away/ships/lone_spacer/lone_spacer.dmm b/maps/away/ships/lone_spacer/lone_spacer.dmm index 585896987b5..9969d7880c9 100644 --- a/maps/away/ships/lone_spacer/lone_spacer.dmm +++ b/maps/away/ships/lone_spacer/lone_spacer.dmm @@ -575,7 +575,7 @@ /area/shuttle/lone_spacer/storage) "go" = ( /obj/structure/table/standard, -/obj/item/clothing/ears/earmuffs/earphones/headphones{ +/obj/item/clothing/ears/earphones/headphones{ pixel_y = 9; pixel_x = 7 }, diff --git a/maps/away/ships/scc/scc_scout_ship.dmm b/maps/away/ships/scc/scc_scout_ship.dmm index db5dc47602a..3a800086095 100644 --- a/maps/away/ships/scc/scc_scout_ship.dmm +++ b/maps/away/ships/scc/scc_scout_ship.dmm @@ -1813,7 +1813,7 @@ /obj/item/toy/comic/witchfinder, /obj/item/mirror, /obj/item/flame/lighter/zippo/europa, -/obj/item/clothing/ears/earmuffs/earphones/headphones, +/obj/item/clothing/ears/earphones/headphones, /obj/item/gamehelm/pink{ icon_state = "closed_pink" }, diff --git a/maps/away/ships/tramp_freighter/tramp_freighter.dmm b/maps/away/ships/tramp_freighter/tramp_freighter.dmm index 44b9959d106..eb4e709337b 100644 --- a/maps/away/ships/tramp_freighter/tramp_freighter.dmm +++ b/maps/away/ships/tramp_freighter/tramp_freighter.dmm @@ -4348,7 +4348,7 @@ pixel_y = 13; pixel_x = -6 }, -/obj/item/clothing/ears/earmuffs/earphones/headphones{ +/obj/item/clothing/ears/earphones/headphones{ pixel_y = -4; pixel_x = -7 }, diff --git a/maps/away/ships/yacht_civ/yacht_civ.dmm b/maps/away/ships/yacht_civ/yacht_civ.dmm index e179325f14c..cfb2f07695b 100644 --- a/maps/away/ships/yacht_civ/yacht_civ.dmm +++ b/maps/away/ships/yacht_civ/yacht_civ.dmm @@ -5343,7 +5343,7 @@ icon_state = "closed_pink"; pixel_x = -2 }, -/obj/item/clothing/ears/earmuffs/earphones/headphones{ +/obj/item/clothing/ears/earphones/headphones{ pixel_x = 3; pixel_y = 1 }, diff --git a/maps/sccv_horizon/sccv_horizon.dmm b/maps/sccv_horizon/sccv_horizon.dmm index 5ef78cf6bf8..13f5e9da30f 100644 --- a/maps/sccv_horizon/sccv_horizon.dmm +++ b/maps/sccv_horizon/sccv_horizon.dmm @@ -168,6 +168,18 @@ }, /turf/simulated/floor/tiled/full, /area/engineering/engine_waste) +"abl" = ( +/obj/structure/bed/stool/chair/office/light{ + dir = 8 + }, +/obj/effect/floor_decal/spline/plain/lime{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/commissary) "abn" = ( /obj/machinery/door/firedoor, /obj/structure/table/reinforced{ @@ -773,21 +785,6 @@ }, /turf/unsimulated/floor, /area/centcom/legion/hangar5) -"aeT" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/filingcabinet/chestdrawer{ - pixel_x = 10 - }, -/obj/structure/filingcabinet/filingcabinet{ - pixel_x = -5 - }, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/simulated/floor/lino/diamond, -/area/horizon/library) "aeU" = ( /obj/effect/floor_decal/spline/plain{ dir = 4 @@ -926,14 +923,6 @@ }, /turf/simulated/floor/wood, /area/bridge/minibar) -"agn" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/machinery/vending/hydronutrients/gardenvend, -/obj/effect/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/dark/full, -/area/horizon/hydroponics/garden) "agt" = ( /obj/structure/table/stone/marble, /obj/item/material/kitchen/rollingpin{ @@ -1316,12 +1305,6 @@ /obj/structure/extinguisher_cabinet/south, /turf/simulated/floor/tiled, /area/hallway/engineering) -"ajt" = ( -/obj/effect/map_effect/window_spawner/full/reinforced/polarized/firedoor{ - id = "library" - }, -/turf/simulated/floor/tiled/dark/full, -/area/horizon/commissary) "ajv" = ( /obj/effect/floor_decal/corner/dark_blue/full, /obj/structure/cable/green{ @@ -1444,6 +1427,10 @@ }, /turf/simulated/floor/tiled, /area/rnd/xenobiology/xenoflora) +"akj" = ( +/obj/structure/lattice/catwalk/indoor/grate/dark, +/turf/simulated/floor/plating, +/area/maintenance/wing/cargo_compartment) "akr" = ( /obj/machinery/door/window/eastright{ dir = 1 @@ -1610,25 +1597,14 @@ icon_state = "8,0" }, /area/shuttle/specops) -"alb" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 +"alg" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 9 }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/structure/cable/green{ - icon_state = "2-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled/full, -/area/hallway/primary/central_two) +/obj/structure/extinguisher_cabinet/west, +/obj/machinery/computer/arcade, +/turf/simulated/floor/wood, +/area/horizon/bar) "alh" = ( /obj/machinery/anti_bluespace, /obj/effect/floor_decal/industrial/warning/full, @@ -1697,6 +1673,17 @@ /obj/machinery/suit_cycler/engineering/prepared, /turf/simulated/floor/tiled/dark/full, /area/storage/eva) +"alw" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/full, +/area/hallway/primary/central_two) "alx" = ( /obj/effect/floor_decal/spline/fancy/wood{ dir = 1 @@ -1943,16 +1930,6 @@ }, /turf/simulated/floor/tiled/dark, /area/centcom/bar) -"amF" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/effect/landmark/start{ - name = "Librarian" - }, -/obj/structure/bed/stool/chair/office/light, -/turf/simulated/floor/lino/diamond, -/area/horizon/library) "amG" = ( /obj/machinery/optable, /turf/simulated/floor/tiled/white, @@ -2254,14 +2231,6 @@ }, /turf/simulated/open, /area/maintenance/wing/starboard) -"aoY" = ( -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/effect/floor_decal/spline/plain{ - dir = 1 - }, -/obj/machinery/vending/coffee, -/turf/simulated/floor/tiled/dark, -/area/hallway/primary/central_one) "apb" = ( /obj/effect/floor_decal/industrial/warning{ dir = 1 @@ -2314,13 +2283,6 @@ }, /turf/simulated/floor/tiled/dark, /area/maintenance/aux_atmospherics/deck_2/starboard/wing) -"app" = ( -/obj/effect/floor_decal/spline/fancy/wood, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/turf/simulated/floor/wood, -/area/horizon/library) "aps" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -2417,6 +2379,26 @@ /obj/random/pottedplant, /turf/simulated/floor/tiled/dark, /area/bridge/controlroom) +"apX" = ( +/obj/effect/floor_decal/spline/fancy/wood/corner{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "4-8"; + d1 = 4; + d2 = 8 + }, +/turf/simulated/floor/wood, +/area/horizon/library) "aqc" = ( /obj/effect/floor_decal/corner/purple{ dir = 6 @@ -2429,12 +2411,6 @@ }, /turf/simulated/floor/tiled/dark, /area/horizon/custodial/disposals) -"aqf" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/wing/cargo_compartment) "aqg" = ( /obj/effect/floor_decal/spline/fancy/wood{ dir = 4 @@ -3041,18 +3017,6 @@ }, /turf/simulated/floor/tiled, /area/bridge/controlroom) -"auv" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/maintenance{ - req_one_access = list(12,26,29,31,48,67) - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/full, -/area/maintenance/wing/cargo_compartment) "auF" = ( /obj/structure/window/shuttle/scc_space_ship, /obj/structure/grille, @@ -3963,16 +3927,6 @@ }, /turf/simulated/floor/tiled, /area/hangar/intrepid) -"aCd" = ( -/obj/structure/foamedmetal, -/obj/structure/shuttle_part/scc_space_ship{ - icon_state = "d2-2" - }, -/obj/effect/landmark/entry_point/fore{ - name = "fore, commissary" - }, -/turf/simulated/floor/plating, -/area/maintenance/wing/cargo_compartment) "aCf" = ( /obj/effect/map_effect/window_spawner/full/reinforced/grille/firedoor, /obj/machinery/door/blast/regular{ @@ -4921,17 +4875,6 @@ /obj/effect/floor_decal/corner_wide/dark_green/diagonal, /turf/simulated/floor/tiled/dark, /area/shuttle/skipjack) -"aJf" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/full, -/area/hallway/primary/central_two) "aJg" = ( /obj/effect/floor_decal/corner_wide/green{ dir = 10 @@ -5131,12 +5074,6 @@ /obj/machinery/power/terminal, /turf/simulated/floor/carpet/rubber, /area/tcommsat/entrance) -"aJW" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 5 - }, -/turf/simulated/floor/plating, -/area/maintenance/wing/cargo_compartment) "aKh" = ( /obj/machinery/atmospherics/pipe/manifold/hidden{ dir = 4 @@ -5555,26 +5492,6 @@ icon_state = "4,7" }, /area/shuttle/mining) -"aNQ" = ( -/obj/effect/floor_decal/spline/fancy/wood/corner{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable/green{ - icon_state = "4-8"; - d1 = 4; - d2 = 8 - }, -/turf/simulated/floor/wood, -/area/horizon/library) "aNR" = ( /obj/effect/floor_decal/industrial/warning{ dir = 1 @@ -6527,12 +6444,6 @@ /obj/machinery/light, /turf/simulated/floor/wood, /area/lawoffice/representative) -"aTp" = ( -/obj/effect/map_effect/window_spawner/full/reinforced/polarized/firedoor{ - id = "library" - }, -/turf/simulated/floor/tiled/dark/full, -/area/horizon/bar/backroom) "aTq" = ( /obj/effect/floor_decal/corner/paleblue/diagonal{ dir = 8 @@ -6756,19 +6667,6 @@ "aVg" = ( /turf/simulated/floor/plating, /area/maintenance/wing/port/deck1) -"aVi" = ( -/obj/effect/floor_decal/corner_wide/lime{ - dir = 9 - }, -/obj/machinery/light/floor{ - dir = 8 - }, -/obj/effect/floor_decal/industrial/outline/medical, -/obj/structure/closet/walllocker/medical/firstaid{ - pixel_x = -32 - }, -/turf/simulated/floor/tiled/white, -/area/medical/reception) "aVk" = ( /obj/effect/map_effect/window_spawner/full/reinforced/polarized/grille/firedoor{ id = "consularB" @@ -6988,21 +6886,6 @@ }, /turf/simulated/floor/tiled/dark, /area/shuttle/merchant) -"aWG" = ( -/obj/effect/floor_decal/corner/dark_green/full{ - dir = 8 - }, -/obj/machinery/camera/network/second_deck{ - c_tag = "Second Deck - Dinner Entrance 1"; - dir = 4 - }, -/obj/structure/engineer_maintenance/pipe{ - dir = 8 - }, -/obj/random/pottedplant, -/obj/machinery/firealarm/west, -/turf/simulated/floor/tiled, -/area/horizon/hallway/deck_two/fore) "aWI" = ( /obj/effect/floor_decal/spline/plain/corner{ dir = 4 @@ -7180,21 +7063,6 @@ }, /turf/simulated/floor/plating, /area/maintenance/wing/starboard/deck1) -"aXK" = ( -/obj/structure/cable/green{ - icon_state = "1-4" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/structure/cable/green{ - icon_state = "2-4" - }, -/obj/structure/lattice/catwalk/indoor/grate, -/turf/simulated/floor/plating, -/area/operations/lobby) "aXL" = ( /obj/structure/table/wood, /obj/item/clothing/accessory/holster/armpit, @@ -7977,6 +7845,21 @@ /obj/effect/floor_decal/industrial/hatch/red, /turf/simulated/floor/tiled/dark/full, /area/engineering/bluespace_drive) +"bcW" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/effect/floor_decal/corner/dark_green{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/horizon/hallway/deck_two/fore) "bcX" = ( /obj/structure/table/reinforced/steel, /obj/effect/floor_decal/corner/red{ @@ -8370,6 +8253,21 @@ }, /turf/simulated/floor/plating, /area/maintenance/engineering) +"bgd" = ( +/obj/effect/floor_decal/corner/dark_green/full{ + dir = 8 + }, +/obj/machinery/camera/network/second_deck{ + c_tag = "Second Deck - Dinner Entrance 1"; + dir = 4 + }, +/obj/structure/engineer_maintenance/pipe{ + dir = 8 + }, +/obj/random/pottedplant, +/obj/machinery/firealarm/west, +/turf/simulated/floor/tiled, +/area/horizon/hallway/deck_two/fore) "bgf" = ( /obj/effect/floor_decal/corner/paleblue{ dir = 5 @@ -9173,12 +9071,6 @@ }, /turf/simulated/floor/wood, /area/horizon/bar) -"bkZ" = ( -/obj/item/device/radio/intercom/west, -/obj/effect/floor_decal/industrial/outline/grey, -/obj/machinery/vending/overloaders, -/turf/simulated/floor/tiled/full, -/area/horizon/hallway/deck_two/fore) "blb" = ( /obj/structure/cable/green{ icon_state = "4-8" @@ -9645,6 +9537,12 @@ /obj/structure/closet/secure_closet/personal/patient, /turf/simulated/floor/tiled/white, /area/medical/ward/isolation) +"bok" = ( +/obj/effect/map_effect/window_spawner/full/reinforced/polarized/firedoor{ + id = "library" + }, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/library) "bon" = ( /obj/random/pottedplant, /turf/simulated/floor/holofloor/tiled, @@ -9913,6 +9811,14 @@ /obj/structure/bed/stool/chair/padded/beige, /turf/simulated/floor/carpet, /area/crew_quarters/captain) +"bqf" = ( +/obj/effect/floor_decal/industrial/outline/service, +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/lapvend, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/library) "bqi" = ( /obj/structure/cable{ icon_state = "0-2" @@ -9958,6 +9864,16 @@ }, /turf/simulated/floor/lino, /area/horizon/security/investigators_office) +"bqs" = ( +/obj/effect/floor_decal/corner/dark_green{ + dir = 6 + }, +/obj/machinery/atm{ + dir = 4; + pixel_x = 16 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/central_two) "bqw" = ( /obj/effect/floor_decal/spline/fancy/wood, /obj/structure/table/wood, @@ -10236,6 +10152,15 @@ icon_state = "2,5" }, /area/shuttle/canary) +"bsJ" = ( +/obj/effect/floor_decal/corner/dark_green/full{ + dir = 4 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/horizon/commissary) "bsK" = ( /obj/effect/floor_decal/spline/fancy/wood{ dir = 1 @@ -10630,16 +10555,6 @@ /obj/structure/lattice/catwalk/indoor, /turf/simulated/floor/plating, /area/engineering/atmos/air) -"bvS" = ( -/obj/machinery/atmospherics/unary/vent_pump/on, -/obj/machinery/alarm/east, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/structure/disposalpipe/trunk, -/obj/machinery/disposal/small/west, -/turf/simulated/floor/lino/diamond, -/area/horizon/library) "bvU" = ( /obj/effect/floor_decal/corner/dark_blue{ dir = 6 @@ -11677,6 +11592,15 @@ }, /turf/simulated/floor/tiled, /area/hallway/primary/aft) +"bDy" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/full, +/area/hallway/primary/central_two) "bDz" = ( /obj/effect/floor_decal/industrial/warning/full, /obj/machinery/porta_turret/crescent, @@ -13267,18 +13191,6 @@ }, /turf/simulated/floor/tiled/full, /area/horizon/holodeck_control) -"bOh" = ( -/obj/machinery/door/airlock/maintenance{ - dir = 4; - name = "Commissary Maintenance"; - req_one_access = list(26,29,31,48,67,35,25,28,37) - }, -/obj/machinery/door/firedoor{ - req_one_access = list(24,11,67,73); - dir = 4 - }, -/turf/simulated/floor/tiled/dark/full, -/area/horizon/commissary) "bOj" = ( /obj/structure/cable/green{ icon_state = "1-8" @@ -14520,11 +14432,6 @@ /obj/item/clothing/accessory/offworlder/bracer, /turf/simulated/floor/wood, /area/merchant_station) -"bWy" = ( -/obj/structure/lattice/catwalk, -/obj/structure/reagent_dispensers/fueltank, -/turf/simulated/open, -/area/horizon/hydroponics) "bWz" = ( /obj/machinery/atmospherics/pipe/simple/hidden/fuel, /obj/machinery/atmospherics/portables_connector/scrubber, @@ -14718,16 +14625,6 @@ }, /turf/simulated/floor/carpet, /area/lawoffice/consular_two) -"bXs" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/structure/closet/crate, -/obj/random/loot, -/obj/random/condiment, -/obj/machinery/light/small/emergency{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark/full, -/area/maintenance/wing/cargo_compartment) "bXG" = ( /obj/effect/floor_decal/corner/paleblue{ dir = 5 @@ -15041,6 +14938,15 @@ /obj/structure/lattice/catwalk/indoor/grate/dark, /turf/simulated/floor/plating, /area/engineering/atmos/propulsion) +"bZV" = ( +/obj/effect/floor_decal/corner/dark_green{ + dir = 9 + }, +/obj/effect/floor_decal/spline/plain/corner/lime{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/horizon/hallway/deck_two/fore) "bZY" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/light/small/emergency{ @@ -15085,6 +14991,21 @@ /obj/effect/map_effect/door_helper/unres, /turf/simulated/floor/tiled/full, /area/medical/psych) +"cas" = ( +/obj/structure/cable/green{ + icon_state = "1-4" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/structure/cable/green{ + icon_state = "2-4" + }, +/obj/structure/lattice/catwalk/indoor/grate, +/turf/simulated/floor/plating, +/area/operations/lobby) "cat" = ( /obj/machinery/atmospherics/pipe/manifold/visible/green{ dir = 8 @@ -15456,15 +15377,6 @@ /obj/structure/lattice/catwalk/indoor/grate/dark, /turf/simulated/floor/plating, /area/maintenance/research_port) -"cdk" = ( -/obj/structure/bed/stool/chair/sofa/red{ - dir = 4 - }, -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/carpet/red, -/area/horizon/library) "cdt" = ( /turf/simulated/floor/holofloor/reinforced, /area/horizon/holodeck/source_biesel) @@ -15480,23 +15392,6 @@ }, /turf/simulated/floor/holofloor/wood, /area/horizon/holodeck/source_sauna) -"cdC" = ( -/obj/effect/floor_decal/spline/plain/lime{ - dir = 4 - }, -/obj/structure/sink/kitchen{ - dir = 8; - name = "sink"; - pixel_x = 21 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/dark, -/area/horizon/hydroponics/garden) "cdG" = ( /obj/effect/floor_decal/corner/dark_blue{ dir = 10 @@ -15774,6 +15669,24 @@ "cfm" = ( /turf/simulated/open, /area/turbolift/research/deck_2) +"cfo" = ( +/obj/structure/table/wood, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/door/window/southleft{ + req_access = list(37) + }, +/obj/item/paper_bin{ + pixel_x = -1; + pixel_y = 4 + }, +/obj/item/pen/fountain/black{ + pixel_x = -1; + pixel_y = 6 + }, +/turf/simulated/floor/lino/diamond, +/area/horizon/library) "cfu" = ( /obj/item/modular_computer/console/preset/command{ dir = 8 @@ -15857,18 +15770,6 @@ }, /turf/simulated/floor/tiled/dark, /area/horizon/holodeck/source_biesel) -"cfO" = ( -/obj/structure/table/wood, -/obj/item/device/flashlight/lamp/green{ - pixel_x = 7; - pixel_y = 3 - }, -/obj/item/toy/desk/officetoy{ - pixel_x = -9; - pixel_y = 5 - }, -/turf/simulated/floor/carpet/red, -/area/horizon/library) "cfT" = ( /obj/effect/floor_decal/corner/green/diagonal, /obj/effect/floor_decal/spline/fancy, @@ -16517,6 +16418,14 @@ /obj/effect/floor_decal/industrial/outline/red, /turf/simulated/floor/reinforced/airless, /area/engineering/engine_room/rust) +"clA" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/vending/actor, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/unsimulated/floor/dark_monotile, +/area/antag/actor) "clE" = ( /obj/effect/floor_decal/corner/dark_blue/full{ dir = 1 @@ -16553,27 +16462,6 @@ }, /turf/simulated/floor/tiled/dark, /area/bridge/meeting_room) -"clL" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 5 - }, -/obj/structure/cable/green{ - icon_state = "2-8"; - d1 = 2; - d2 = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/wood, -/area/horizon/library) "clN" = ( /obj/structure/platform{ dir = 4 @@ -17420,6 +17308,18 @@ }, /turf/simulated/floor, /area/maintenance/security_port) +"cqS" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/effect/floor_decal/spline/plain/lime{ + dir = 9 + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/hydroponics/garden) "cqU" = ( /obj/effect/floor_decal/industrial/hatch_door/red{ dir = 1 @@ -18211,13 +18111,6 @@ pixel_y = -16 }, /area/antag/raider) -"cyE" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/machinery/alarm/south, -/turf/simulated/floor/plating, -/area/maintenance/wing/cargo_compartment) "cyK" = ( /obj/structure/reagent_dispensers/water_cooler, /obj/effect/floor_decal/corner/dark_blue/full{ @@ -19226,22 +19119,15 @@ }, /turf/space/dynamic, /area/horizon/exterior) -"cGg" = ( -/obj/structure/cable/green{ - icon_state = "4-8" +"cGp" = ( +/obj/effect/floor_decal/corner/dark_green{ + dir = 9 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ +/obj/structure/bed/stool/chair{ dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/junction{ - dir = 8; - icon_state = "pipe-j2" - }, -/turf/simulated/floor/tiled/full, -/area/hallway/primary/central_one) +/turf/simulated/floor/tiled, +/area/horizon/hallway/deck_two/fore) "cGs" = ( /obj/structure/platform/cutout{ dir = 8 @@ -20003,6 +19889,12 @@ opacity = 1 }, /area/shuttle/canary) +"cLZ" = ( +/obj/effect/floor_decal/corner/dark_green{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/horizon/commissary) "cMa" = ( /obj/effect/decal/cleanable/dirt, /obj/random/junk, @@ -20199,15 +20091,6 @@ "cNt" = ( /turf/simulated/wall, /area/maintenance/substation/research) -"cNI" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 6 - }, -/obj/structure/bed/stool/chair/padded/red{ - dir = 4 - }, -/turf/simulated/floor/wood, -/area/horizon/hallway/deck_two/fore) "cNL" = ( /obj/structure/lattice, /obj/structure/railing/mapped{ @@ -20463,15 +20346,6 @@ "cPL" = ( /turf/simulated/floor/tiled, /area/maintenance/aux_atmospherics/deck_2/starboard/wing) -"cPO" = ( -/obj/effect/floor_decal/corner/dark_green/full{ - dir = 4 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/horizon/commissary) "cPP" = ( /obj/effect/floor_decal/corner_wide/green/diagonal, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -20677,13 +20551,6 @@ }, /turf/simulated/floor/plating, /area/maintenance/engineering) -"cRr" = ( -/obj/structure/lattice/catwalk/indoor/grate/dark, -/obj/structure/cable/green{ - icon_state = "1-8" - }, -/turf/simulated/floor/plating, -/area/maintenance/wing/cargo_compartment) "cRs" = ( /obj/effect/landmark/start{ name = "wizard" @@ -20708,6 +20575,24 @@ }, /turf/simulated/floor/tiled/full, /area/bridge/cciaroom) +"cRA" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/structure/cable/green{ + icon_state = "2-4" + }, +/obj/effect/floor_decal/corner/dark_green/full{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/horizon/hallway/deck_two/fore) "cRP" = ( /obj/structure/cable/green{ icon_state = "4-8" @@ -20969,18 +20854,6 @@ }, /turf/simulated/floor, /area/horizon/maintenance/deck_three/aft/starboard) -"cTe" = ( -/obj/machinery/door/window{ - req_access = list(37); - name = "Library Desk" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/lino/diamond, -/area/horizon/library) "cTg" = ( /obj/effect/floor_decal/corner_wide/paleblue{ dir = 10 @@ -21468,12 +21341,6 @@ }, /turf/simulated/floor/tiled, /area/horizon/security/equipment) -"cWL" = ( -/obj/structure/bed/stool/chair/office/dark{ - dir = 8 - }, -/turf/simulated/floor/carpet/red, -/area/horizon/library) "cWX" = ( /obj/effect/floor_decal/corner_wide/black{ dir = 9 @@ -22065,6 +21932,14 @@ }, /turf/simulated/floor/tiled, /area/horizon/custodial) +"dbV" = ( +/obj/structure/closet, +/obj/random/loot, +/obj/machinery/light/small/emergency{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/maintenance/wing/cargo_compartment) "dbX" = ( /turf/simulated/floor/tiled/full, /area/engineering/rust_office) @@ -22236,10 +22111,6 @@ }, /turf/simulated/floor/plating, /area/bridge/controlroom) -"dda" = ( -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/wood, -/area/horizon/library) "ddb" = ( /obj/effect/floor_decal/industrial/warning, /obj/machinery/light/small/emergency{ @@ -23521,6 +23392,25 @@ density = 1 }, /area/centcom/shared_dream) +"dmy" = ( +/obj/effect/floor_decal/corner/dark_green{ + dir = 9 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/structure/disposalpipe/junction{ + dir = 8; + icon_state = "pipe-j2" + }, +/turf/simulated/floor/tiled, +/area/horizon/commissary) "dmG" = ( /turf/simulated/floor/holofloor/grass{ icon = 'icons/turf/flooring/exoplanet/moghes.dmi'; @@ -23843,14 +23733,6 @@ }, /turf/simulated/floor/marble/dark, /area/horizon/holodeck/source_tribunal) -"dpr" = ( -/obj/effect/floor_decal/corner/dark_green/full, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/obj/machinery/disposal/small/east, -/turf/simulated/floor/tiled, -/area/horizon/commissary) "dpt" = ( /obj/machinery/door/airlock/centcom{ name = "Superheavy Support Garage"; @@ -26167,6 +26049,27 @@ }, /turf/unsimulated/floor, /area/centcom/spawning) +"dGa" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 5 + }, +/obj/structure/cable/green{ + icon_state = "2-8"; + d1 = 2; + d2 = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/horizon/library) "dGg" = ( /obj/structure/disposalpipe/segment, /obj/effect/floor_decal/corner/dark_green{ @@ -27715,26 +27618,6 @@ }, /turf/simulated/floor/tiled/dark, /area/horizon/custodial/disposals) -"dSp" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/structure/cable/green{ - icon_state = "4-8"; - d1 = 4; - d2 = 8 - }, -/turf/simulated/floor/wood, -/area/horizon/library) "dSv" = ( /obj/item/device/laser_pointer/blue{ pixel_x = -12; @@ -27769,6 +27652,13 @@ }, /turf/simulated/floor/tiled, /area/maintenance/wing/port/far) +"dTn" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 4 + }, +/obj/machinery/photocopier, +/turf/simulated/floor/wood, +/area/horizon/library) "dTq" = ( /obj/effect/floor_decal/corner/dark_green{ dir = 9 @@ -29041,6 +28931,15 @@ }, /turf/simulated/open, /area/hallway/primary/central_one) +"edA" = ( +/obj/effect/floor_decal/corner/dark_green{ + dir = 9 + }, +/obj/effect/floor_decal/spline/plain/lime{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/horizon/hallway/deck_two/fore) "edE" = ( /obj/structure/table/stone/marble, /obj/item/storage/box/fancy/cigarettes/cigar{ @@ -29332,6 +29231,15 @@ }, /turf/simulated/floor/wood, /area/horizon/crew_quarters/lounge/bar) +"eeR" = ( +/obj/structure/table/rack/retail_shelf, +/obj/machinery/vending/wallpharm{ + pixel_x = 28; + pixel_y = 3 + }, +/obj/item/device/radio/intercom/south, +/turf/simulated/floor/tiled/full, +/area/horizon/commissary) "eeS" = ( /obj/effect/step_trigger/thrower/shuttle/east, /turf/template_noop, @@ -31302,14 +31210,6 @@ }, /turf/simulated/floor/carpet/rubber, /area/bridge/controlroom) -"esa" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 9 - }, -/obj/structure/extinguisher_cabinet/west, -/obj/machinery/computer/arcade, -/turf/simulated/floor/wood, -/area/horizon/bar) "esd" = ( /obj/structure/cable{ icon_state = "1-2" @@ -31400,6 +31300,30 @@ }, /turf/simulated/floor/tiled, /area/bridge) +"ets" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/obj/effect/floor_decal/corner/dark_green{ + dir = 9 + }, +/obj/effect/floor_decal/spline/plain/lime{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/horizon/hallway/deck_two/fore) +"etv" = ( +/obj/structure/disposalpipe/segment{ + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/commissary) "etw" = ( /obj/effect/floor_decal/spline/plain{ dir = 8 @@ -31592,20 +31516,6 @@ }, /turf/simulated/floor/tiled/dark, /area/horizon/hydroponics/lower) -"euv" = ( -/obj/machinery/vending/cigarette, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/hatch/operations, -/turf/simulated/floor/tiled/full, -/area/horizon/commissary) "euC" = ( /obj/structure/bed/stool/chair/sofa/left/orange{ dir = 8 @@ -31817,6 +31727,39 @@ /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled/white, /area/hallway/medical/upper) +"ewh" = ( +/obj/effect/floor_decal/spline/plain/lime{ + dir = 4 + }, +/obj/machinery/button/remote/airlock{ + dir = 4; + id = "horizon_commissary_door"; + name = "Commissary Door Bolts"; + pixel_x = 22; + specialfunctions = 4; + pixel_y = -2 + }, +/obj/machinery/button/remote/blast_door{ + dir = 4; + id = "horizon_commissary_desk"; + name = "Desk Shutters"; + pixel_x = 22; + pixel_y = 10 + }, +/obj/machinery/button/switch/holosign{ + id = "commissary"; + dir = 4; + pixel_y = 1; + pixel_x = 29 + }, +/obj/machinery/light_switch{ + dir = 4; + pixel_y = 12; + pixel_x = 29 + }, +/obj/machinery/hologram/holopad, +/turf/simulated/floor/tiled/dark, +/area/horizon/commissary) "ewj" = ( /obj/machinery/atmospherics/pipe/simple/visible/cyan{ dir = 5 @@ -31838,6 +31781,14 @@ /obj/item/clothing/glasses/meson, /turf/simulated/floor/tiled/dark/full, /area/shuttle/mercenary) +"ewB" = ( +/obj/structure/bed/stool/chair/sofa/corner/convex/red{ + dir = 4 + }, +/obj/item/device/radio/intercom/west, +/obj/structure/engineer_maintenance/pipe/wall, +/turf/simulated/floor/carpet/red, +/area/horizon/library) "ewC" = ( /obj/structure/table/rack, /obj/item/clothing/shoes/magboots, @@ -32055,32 +32006,6 @@ /obj/structure/lattice/catwalk/indoor/grate, /turf/simulated/floor/plating, /area/hallway/engineering) -"eyu" = ( -/obj/effect/floor_decal/corner/dark_green{ - dir = 9 - }, -/obj/structure/bed/stool/chair{ - dir = 4 - }, -/obj/machinery/newscaster/west, -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/horizon/hallway/deck_two/fore) -"eyF" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/obj/effect/floor_decal/corner/dark_blue{ - dir = 8 - }, -/obj/effect/floor_decal/corner/yellow{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/visible/purple, -/turf/simulated/floor/tiled/dark, -/area/engineering/engine_room/turbine) "eyG" = ( /obj/structure/sink/kitchen{ name = "water fountain"; @@ -32453,14 +32378,6 @@ /obj/machinery/light, /turf/simulated/floor/tiled/dark, /area/engineering/engine_waste) -"eBU" = ( -/obj/structure/statue/gusoku, -/obj/machinery/light/small{ - dir = 8 - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/unsimulated/floor/dark_monotile, -/area/antag/actor) "eBX" = ( /obj/effect/floor_decal/corner/black{ dir = 9 @@ -32487,6 +32404,19 @@ }, /turf/simulated/floor/wood, /area/medical/psych) +"eCd" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass{ + dir = 1 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/full, +/area/hallway/primary/central_one) "eCh" = ( /obj/structure/railing/mapped{ dir = 8 @@ -32702,23 +32632,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden, /turf/simulated/wall/r_wall, /area/horizon/security/brig) -"eDA" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable/green{ - icon_state = "4-8"; - d1 = 4; - d2 = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/wood, -/area/horizon/library) "eDD" = ( /obj/effect/map_effect/door_helper/unres, /obj/machinery/door/firedoor{ @@ -32877,22 +32790,6 @@ /obj/structure/lattice/catwalk/indoor/grate, /turf/simulated/floor/plating, /area/hangar/intrepid) -"eEp" = ( -/obj/structure/table/wood, -/obj/machinery/recharger{ - pixel_x = -3; - pixel_y = 2 - }, -/obj/item/deck/cards{ - pixel_x = 12; - pixel_y = 1 - }, -/obj/random/pottedplant_small{ - pixel_x = 7; - pixel_y = 9 - }, -/turf/simulated/floor/wood, -/area/horizon/library) "eEu" = ( /obj/machinery/light{ dir = 1 @@ -33977,6 +33874,18 @@ /obj/machinery/atmospherics/unary/vent_pump/on, /turf/simulated/floor/tiled/dark, /area/horizon/stairwell/bridge) +"eMo" = ( +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment, +/obj/machinery/door/airlock/maintenance{ + dir = 1; + req_one_access = list(12,26,29,31,48,67,35,25,28,37) + }, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/full, +/area/hallway/primary/central_two) "eMw" = ( /obj/effect/floor_decal/spline/fancy/wood{ dir = 1 @@ -34276,6 +34185,13 @@ /obj/structure/reagent_dispensers/keg/beerkeg, /turf/simulated/floor/plating, /area/maintenance/wing/starboard) +"eOF" = ( +/obj/effect/floor_decal/corner/dark_green{ + dir = 9 + }, +/obj/machinery/alarm/west, +/turf/simulated/floor/tiled, +/area/horizon/hallway/deck_two/fore) "eOG" = ( /obj/structure/cable{ icon_state = "4-8" @@ -34379,13 +34295,6 @@ icon_state = "1,0" }, /area/shuttle/legion) -"ePD" = ( -/obj/structure/table/wood, -/obj/machinery/librarycomp{ - pixel_y = 4 - }, -/turf/simulated/floor/carpet/red, -/area/horizon/library) "ePL" = ( /obj/structure/lattice/catwalk/indoor/grate/dark, /obj/structure/cable{ @@ -34413,16 +34322,6 @@ }, /turf/simulated/floor/tiled/white, /area/rnd/xenobiology/foyer) -"eQi" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/green{ - icon_state = "1-4" - }, -/turf/simulated/floor/wood, -/area/horizon/library) "eQr" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 8 @@ -35395,17 +35294,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden, /turf/simulated/floor/tiled/dark, /area/shuttle/mercenary) -"eXu" = ( -/obj/effect/floor_decal/corner/brown{ - dir = 10 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/operations/lobby) "eXE" = ( /obj/machinery/recharge_station, /obj/structure/railing/mapped{ @@ -36077,12 +35965,6 @@ }, /turf/simulated/floor/tiled, /area/operations/lobby) -"fbW" = ( -/obj/effect/map_effect/window_spawner/full/reinforced/polarized/firedoor{ - id = "library" - }, -/turf/simulated/floor/tiled/dark/full, -/area/horizon/library) "fbX" = ( /obj/structure/shuttle_part/mercenary/small{ icon_state = "7,0" @@ -37126,26 +37008,6 @@ }, /turf/simulated/floor/plating, /area/shuttle/mining) -"fjb" = ( -/obj/effect/floor_decal/corner/dark_green{ - dir = 6 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/structure/cable/green{ - icon_state = "4-8"; - d1 = 4; - d2 = 8 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_two) "fjf" = ( /obj/structure/table/reinforced/steel, /obj/machinery/button/remote/blast_door{ @@ -37163,6 +37025,29 @@ /obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/tiled/dark/full, /area/shuttle/mercenary) +"fjs" = ( +/obj/structure/table/rack/retail_shelf, +/obj/random/loot{ + pixel_x = 8; + pixel_y = 12 + }, +/obj/machinery/light/small{ + dir = 4 + }, +/obj/random/loot{ + pixel_x = -7; + pixel_y = 12 + }, +/obj/random/loot{ + pixel_x = -7; + pixel_y = -2 + }, +/obj/random/loot{ + pixel_x = 8; + pixel_y = -2 + }, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/commissary) "fju" = ( /obj/effect/floor_decal/corner_wide/grey/diagonal, /obj/machinery/vending/snack, @@ -37556,17 +37441,6 @@ /obj/random/contraband, /turf/unsimulated/floor/plating, /area/centcom/holding) -"fmh" = ( -/obj/item/storage/bag/inflatable{ - pixel_y = 9 - }, -/obj/structure/table/rack/folding_table, -/obj/random/tech_supply, -/obj/machinery/light/small/emergency{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/wing/cargo_compartment) "fmi" = ( /obj/structure/cable{ icon_state = "4-8" @@ -38072,16 +37946,6 @@ }, /turf/simulated/floor/tiled, /area/storage/primary) -"fqP" = ( -/obj/machinery/light/small/emergency{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - icon_state = "pipe-c" - }, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/turf/simulated/floor/plating, -/area/horizon/maintenance/deck_two/fore/port) "fqW" = ( /obj/structure/table/rack, /obj/item/device/radio/sec{ @@ -38521,6 +38385,12 @@ }, /turf/unsimulated/floor, /area/antag/raider) +"fui" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/turbolift/primary/deck_1) "fuj" = ( /obj/effect/floor_decal/spline/fancy/wood{ dir = 4 @@ -38562,13 +38432,6 @@ }, /turf/simulated/floor/tiled, /area/hangar/intrepid/interstitial) -"fuM" = ( -/obj/machinery/photocopier, -/obj/machinery/light/small{ - dir = 8 - }, -/turf/unsimulated/floor/marble, -/area/antag/wizard) "fuS" = ( /obj/machinery/atmospherics/portables_connector, /obj/structure/stairs_lower{ @@ -38632,6 +38495,10 @@ }, /turf/simulated/floor/tiled/white, /area/medical/reception) +"fvu" = ( +/obj/structure/bookcase/libraryspawn/religion, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/library) "fvx" = ( /obj/effect/floor_decal/corner/dark_blue/diagonal, /obj/machinery/firealarm/south{ @@ -39353,10 +39220,6 @@ /obj/structure/railing/mapped, /turf/simulated/floor/plating, /area/engineering/atmos/propulsion/starboard) -"fBC" = ( -/obj/structure/bookcase/libraryspawn/fiction, -/turf/simulated/floor/tiled/dark/full, -/area/horizon/library) "fBE" = ( /obj/effect/floor_decal/corner/dark_green{ dir = 9 @@ -40393,6 +40256,19 @@ "fJc" = ( /turf/simulated/floor/shuttle/tan, /area/centcom/bar) +"fJe" = ( +/obj/effect/floor_decal/corner_wide/lime{ + dir = 9 + }, +/obj/machinery/light/floor{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/outline/medical, +/obj/structure/closet/walllocker/medical/firstaid{ + pixel_x = -32 + }, +/turf/simulated/floor/tiled/white, +/area/medical/reception) "fJj" = ( /obj/structure/flora/grass/jungle, /obj/effect/floor_decal/spline/plain/corner{ @@ -40400,6 +40276,18 @@ }, /turf/simulated/floor/exoplanet/grass, /area/centcom/shared_dream) +"fJl" = ( +/obj/machinery/door/window{ + req_access = list(37); + name = "Library Desk" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/lino/diamond, +/area/horizon/library) "fJm" = ( /obj/machinery/light{ dir = 8 @@ -40409,18 +40297,6 @@ }, /turf/unsimulated/floor, /area/centcom/distress_prep) -"fJo" = ( -/obj/effect/floor_decal/spline/plain/lime{ - dir = 6 - }, -/obj/machinery/disposal/small/west, -/obj/machinery/power/apc/east, -/obj/structure/cable/green, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark, -/area/horizon/hydroponics/garden) "fJt" = ( /obj/machinery/photocopier, /turf/unsimulated/floor{ @@ -41014,12 +40890,6 @@ }, /turf/unsimulated/floor/plating, /area/centcom/spawning) -"fNE" = ( -/obj/effect/floor_decal/corner/dark_green{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/horizon/hallway/deck_two/fore) "fNT" = ( /obj/structure/railing/mapped{ dir = 8 @@ -41567,18 +41437,6 @@ icon_state = "white" }, /area/tdome/tdomeobserve) -"fSC" = ( -/obj/machinery/door/firedoor{ - req_one_access = list(24,11,67,73); - dir = 4 - }, -/obj/machinery/door/airlock/maintenance{ - dir = 4; - name = "Library Maintenance"; - req_access = list(37) - }, -/turf/simulated/floor/tiled/dark/full, -/area/horizon/library) "fSL" = ( /turf/simulated/floor/tiled, /area/merchant_station/warehouse) @@ -41735,6 +41593,18 @@ icon_state = "dark_preview" }, /area/centcom/holding) +"fTL" = ( +/obj/effect/floor_decal/corner/dark_green{ + dir = 5 + }, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled, +/area/horizon/hallway/deck_two/fore) "fTM" = ( /obj/effect/floor_decal/industrial/warning{ dir = 5 @@ -41967,6 +41837,35 @@ }, /turf/simulated/floor/tiled/dark, /area/shuttle/legion) +"fVb" = ( +/obj/machinery/holosign/service{ + id = "commissary" + }, +/obj/structure/cable/green{ + icon_state = "4-8"; + d1 = 4; + d2 = 8 + }, +/obj/machinery/door/firedoor{ + req_one_access = list(24,11,67,73); + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/door/airlock/glass_mining{ + dir = 4; + name = "Commissary"; + id_tag = "horizon_commissary_door" + }, +/turf/simulated/floor/tiled/full, +/area/horizon/commissary) "fVd" = ( /obj/machinery/acting/changer, /turf/unsimulated/floor/rubber_carpet, @@ -42021,12 +41920,6 @@ }, /turf/simulated/floor/plating, /area/horizon/hallway/deck_three/primary/starboard/docks) -"fVt" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 9 - }, -/turf/simulated/floor/plating, -/area/maintenance/wing/cargo_compartment) "fVy" = ( /obj/effect/floor_decal/corner/blue{ dir = 10 @@ -42296,6 +42189,12 @@ /obj/structure/extinguisher_cabinet/north, /turf/simulated/floor/tiled, /area/horizon/hallway/deck_three/primary/central) +"fWX" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 5 + }, +/turf/simulated/floor/plating, +/area/maintenance/wing/cargo_compartment) "fWY" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 1 @@ -42631,6 +42530,11 @@ }, /turf/simulated/floor/tiled/dark, /area/shuttle/mercenary) +"fZo" = ( +/obj/machinery/libraryscanner, +/obj/item/device/radio/intercom/north, +/turf/simulated/floor/lino/diamond, +/area/horizon/library) "fZp" = ( /obj/effect/floor_decal/corner/green/diagonal, /obj/item/bedsheet/medical{ @@ -42718,6 +42622,14 @@ }, /turf/simulated/floor/tiled, /area/hangar/auxiliary) +"fZG" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/effect/floor_decal/spline/plain{ + dir = 1 + }, +/obj/machinery/vending/mredispenser, +/turf/simulated/floor/tiled/dark, +/area/hallway/primary/central_one) "fZH" = ( /turf/simulated/wall/shuttle/unique/ert{ icon_state = "8,3" @@ -43427,14 +43339,6 @@ icon_state = "dark_preview" }, /area/centcom/holding) -"gfa" = ( -/obj/structure/reagent_dispensers/watertank, -/obj/machinery/alarm/north{ - req_one_access = list(24,11,55) - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/dark/full, -/area/horizon/hydroponics/garden) "gfk" = ( /obj/effect/floor_decal/corner_wide/blue{ dir = 5 @@ -43669,19 +43573,6 @@ "ghs" = ( /turf/unsimulated/wall/fakepdoor, /area/centcom/specops) -"ghu" = ( -/obj/effect/floor_decal/industrial/outline/operations, -/obj/structure/table/rack, -/obj/item/device/price_scanner, -/obj/item/device/quikpay{ - destinationact = "Operations"; - pixel_y = 3 - }, -/obj/machinery/alarm/east, -/obj/item/storage/box/plasticbag, -/obj/item/storage/toolbox/mechanical, -/turf/simulated/floor/tiled/dark/full, -/area/horizon/commissary) "ghv" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/cable/green{ @@ -44040,6 +43931,28 @@ }, /turf/simulated/floor/wood, /area/medical/psych) +"gjV" = ( +/obj/machinery/camera/network/service{ + c_tag = "Service- Hydroponics 2"; + dir = 1 + }, +/obj/structure/table/reinforced, +/obj/effect/floor_decal/corner/dark_green/diagonal, +/obj/item/paper_bin{ + pixel_x = -8; + pixel_y = 4 + }, +/obj/item/pen{ + pixel_x = -6; + pixel_y = 4 + }, +/obj/item/clothing/ears/earphones/headphones{ + pixel_x = 3; + pixel_y = 12 + }, +/obj/effect/floor_decal/spline/plain, +/turf/simulated/floor/tiled, +/area/horizon/hydroponics) "gjX" = ( /obj/effect/floor_decal/corner/teal{ dir = 9 @@ -44607,6 +44520,22 @@ }, /turf/simulated/floor/wood, /area/crew_quarters/heads/chief) +"goC" = ( +/obj/effect/floor_decal/corner/brown{ + dir = 6 + }, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/horizon/commissary) "goK" = ( /turf/simulated/floor/tiled/dark, /area/rnd/lab) @@ -44819,15 +44748,6 @@ "gpF" = ( /turf/simulated/wall/shuttle/scc_space_ship/cardinal, /area/horizon/security/brig) -"gpI" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 6 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/turf/simulated/floor/wood, -/area/horizon/library) "gpK" = ( /obj/structure/window/shuttle/scc_space_ship, /obj/structure/grille, @@ -44992,6 +44912,22 @@ /obj/item/hullbeacon/red, /turf/simulated/floor/reinforced/airless, /area/horizon/exterior) +"gqO" = ( +/obj/structure/cable/green{ + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled/full, +/area/hallway/primary/central_one) "gqR" = ( /obj/machinery/atmospherics/pipe/simple/visible/yellow{ dir = 4 @@ -45166,15 +45102,6 @@ /obj/machinery/firealarm/south, /turf/simulated/floor/tiled, /area/operations/lobby) -"grK" = ( -/obj/effect/floor_decal/corner/dark_green{ - dir = 6 - }, -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/horizon/hallway/deck_two/fore) "grM" = ( /obj/item/tape/engineering{ icon_state = "engineering_door" @@ -45328,6 +45255,14 @@ /obj/effect/floor_decal/industrial/hatch/grey, /turf/simulated/floor/tiled, /area/horizon/security/brig) +"gsX" = ( +/obj/item/storage/backpack/satchel/leather/withwallet, +/obj/structure/table/stone/marble, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/unsimulated/floor/marble, +/area/antag/wizard) "gtk" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -45928,12 +45863,6 @@ }, /turf/unsimulated/floor, /area/centcom/legion) -"gxH" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/turf/unsimulated/floor/linoleum, -/area/antag/actor) "gxJ" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -46282,15 +46211,6 @@ }, /turf/unsimulated/floor/dark_monotile, /area/antag/actor) -"gAq" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 1 - }, -/obj/machinery/camera/network/service{ - c_tag = "Service - Deck 2 - Bar Back Counter" - }, -/turf/simulated/floor/wood, -/area/horizon/bar) "gAs" = ( /obj/structure/cable/green{ icon_state = "4-8" @@ -46565,11 +46485,6 @@ }, /turf/simulated/floor/wood, /area/crew_quarters/lounge/secondary) -"gBU" = ( -/obj/machinery/libraryscanner, -/obj/item/device/radio/intercom/north, -/turf/simulated/floor/lino/diamond, -/area/horizon/library) "gBY" = ( /obj/structure/table/reinforced/wood, /obj/random/pottedplant_small{ @@ -48306,6 +48221,11 @@ /obj/item/glass_jar/gumball/medical, /turf/simulated/floor/tiled/white, /area/medical/reception) +"gNR" = ( +/obj/machinery/seed_extractor, +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/hydroponics/garden) "gNW" = ( /turf/simulated/wall/shuttle/unique/mercenary/small{ icon_state = "7,6" @@ -48568,12 +48488,6 @@ }, /turf/simulated/floor/tiled, /area/horizon/security/hallway) -"gQh" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/turbolift/primary/deck_1) "gQj" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 8 @@ -48832,6 +48746,16 @@ }, /turf/simulated/floor/exoplanet/snow, /area/centcom/shared_dream) +"gRY" = ( +/obj/structure/lattice/catwalk, +/obj/machinery/camera/network/service{ + c_tag = "Service - Hydroponics 1" + }, +/obj/structure/closet/walllocker/medical/firstaid{ + pixel_y = 32 + }, +/turf/simulated/open, +/area/horizon/hydroponics) "gSd" = ( /obj/structure/cable/green{ icon_state = "4-8" @@ -48889,6 +48813,15 @@ icon_state = "dark_preview" }, /area/centcom/specops) +"gSp" = ( +/obj/effect/floor_decal/industrial/outline/service, +/obj/machinery/camera/network/service{ + c_tag = "Service - Library"; + dir = 1 + }, +/obj/machinery/vending/battlemonsters, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/library) "gSt" = ( /obj/structure/cable{ icon_state = "4-8" @@ -49189,6 +49122,11 @@ /obj/effect/floor_decal/corner/green/diagonal, /turf/simulated/floor/tiled/white, /area/medical/ward/isolation) +"gUv" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/structure/reagent_dispensers/fueltank, +/turf/simulated/floor/tiled/dark/full, +/area/maintenance/wing/cargo_compartment) "gUw" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable/green{ @@ -49223,6 +49161,9 @@ /obj/effect/floor_decal/industrial/outline/red, /turf/simulated/floor/tiled, /area/maintenance/wing/port) +"gUM" = ( +/turf/simulated/wall, +/area/maintenance/wing/cargo_compartment) "gUO" = ( /obj/effect/floor_decal/industrial/warning{ dir = 1 @@ -50152,6 +50093,26 @@ /obj/structure/lattice/catwalk/indoor/grate/dark, /turf/simulated/floor/plating, /area/maintenance/research_port) +"hbC" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/structure/cable/green{ + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/structure/disposalpipe/sortjunction/flipped{ + name = "Library"; + sortType = "Library" + }, +/obj/structure/lattice/catwalk/indoor/grate, +/turf/simulated/floor/plating, +/area/horizon/hallway/deck_two/fore) "hbE" = ( /obj/structure/table/wood, /obj/random/pottedplant_small{ @@ -50404,17 +50365,6 @@ }, /turf/simulated/floor/wood, /area/bridge/minibar) -"hdF" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/obj/structure/trash_pile, -/obj/effect/decal/cleanable/cobweb2, -/obj/machinery/light/small/emergency{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/wing/cargo_compartment) "hdI" = ( /obj/effect/floor_decal/corner/dark_blue/full{ dir = 1 @@ -51150,21 +51100,6 @@ }, /turf/simulated/floor/tiled/white, /area/rnd/xenobiology) -"hjd" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled/full, -/area/hallway/primary/central_one) "hjm" = ( /obj/machinery/atmospherics/pipe/simple/hidden/aux{ dir = 10 @@ -51475,6 +51410,18 @@ }, /turf/unsimulated/floor, /area/centcom/evac) +"hmb" = ( +/obj/structure/table/wood/gamblingtable, +/obj/item/storage/box/donkpockets{ + pixel_x = 2; + pixel_y = 5 + }, +/obj/effect/floor_decal/spline/fancy/wood, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/unsimulated/floor/wood, +/area/antag/actor) "hmj" = ( /obj/structure/flora/grass/green, /obj/effect/decal/fake_object/light_source/invisible{ @@ -51875,6 +51822,19 @@ }, /turf/simulated/floor/plating, /area/maintenance/wing/starboard) +"hpk" = ( +/obj/machinery/power/apc/north, +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/obj/machinery/light{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/hatch/operations, +/obj/machinery/vending/snack, +/turf/simulated/floor/tiled/full, +/area/horizon/commissary) "hpo" = ( /obj/effect/floor_decal/spline/fancy/wood{ dir = 8 @@ -52089,6 +52049,12 @@ }, /turf/simulated/floor/plating, /area/engineering/atmos/propulsion/starboard) +"hqL" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/maintenance/wing/cargo_compartment) "hqP" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 @@ -52507,15 +52473,6 @@ }, /turf/simulated/floor/tiled, /area/operations/lower/machinist) -"htE" = ( -/obj/effect/floor_decal/corner/dark_green{ - dir = 9 - }, -/obj/structure/bed/stool/chair{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/horizon/hallway/deck_two/fore) "htP" = ( /obj/structure/window/reinforced/crescent{ dir = 8 @@ -52893,21 +52850,6 @@ /obj/random/pottedplant, /turf/simulated/floor/wood, /area/bridge/meeting_room) -"hws" = ( -/obj/structure/table/wood, -/obj/item/storage/box/fancy/matches{ - pixel_x = 6; - pixel_y = 11 - }, -/obj/random/pottedplant_small{ - pixel_x = -7; - pixel_y = 10 - }, -/obj/machinery/door/window/southright{ - req_access = list(37) - }, -/turf/simulated/floor/lino/diamond, -/area/horizon/library) "hww" = ( /obj/machinery/embedded_controller/radio/simple_docking_controller{ frequency = 1337; @@ -53407,6 +53349,23 @@ "hAq" = ( /turf/simulated/floor/carpet, /area/horizon/security/head_of_security) +"hAr" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "4-8"; + d1 = 4; + d2 = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/horizon/hallway/deck_two/fore) "hAx" = ( /obj/effect/floor_decal/corner/dark_blue{ dir = 6 @@ -53731,6 +53690,13 @@ }, /turf/simulated/floor/wood/walnut, /area/medical/smoking) +"hDa" = ( +/obj/structure/foamedmetal, +/obj/structure/shuttle_part/scc_space_ship{ + icon_state = "d2-1" + }, +/turf/simulated/floor/plating, +/area/maintenance/wing/cargo_compartment) "hDd" = ( /obj/machinery/atmospherics/pipe/simple/visible/black{ dir = 4 @@ -53849,6 +53815,26 @@ /obj/structure/closet/emcloset, /turf/simulated/floor/tiled/dark/full, /area/engineering/lobby) +"hEp" = ( +/obj/effect/floor_decal/corner/dark_green{ + dir = 6 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/structure/cable/green{ + icon_state = "4-8"; + d1 = 4; + d2 = 8 + }, +/turf/simulated/floor/tiled, +/area/hallway/primary/central_two) "hEx" = ( /obj/effect/decal/cleanable/dirt, /obj/item/stack/rods, @@ -53975,6 +53961,14 @@ }, /turf/simulated/floor/holofloor/tiled, /area/template_noop) +"hFs" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/coatrack{ + pixel_x = -11; + pixel_y = 19 + }, +/turf/simulated/floor/wood, +/area/horizon/library) "hFt" = ( /obj/effect/floor_decal/industrial/warning{ dir = 4 @@ -54044,13 +54038,6 @@ /obj/effect/floor_decal/industrial/warning, /turf/unsimulated/floor, /area/centcom/spawning) -"hFV" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 4 - }, -/obj/machinery/papershredder, -/turf/simulated/floor/wood, -/area/horizon/library) "hGb" = ( /obj/machinery/atmospherics/pipe/manifold/hidden{ dir = 8 @@ -54525,10 +54512,6 @@ /obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/tiled/dark, /area/rnd/xenobiology/xenoflora) -"hJm" = ( -/obj/structure/lattice/catwalk/indoor/grate/dark, -/turf/simulated/floor/plating, -/area/maintenance/wing/cargo_compartment) "hJo" = ( /obj/effect/floor_decal/industrial/outline/grey, /obj/structure/filingcabinet/filingcabinet{ @@ -54567,21 +54550,6 @@ /obj/effect/floor_decal/corner/dark_blue/full, /turf/simulated/floor/tiled/dark, /area/storage/eva) -"hJE" = ( -/obj/effect/floor_decal/corner/teal, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/structure/sign/double/map/left{ - desc = "A framed picture of a station."; - pixel_x = 16; - pixel_y = 32 - }, -/obj/machinery/light/small{ - dir = 8 - }, -/turf/unsimulated/floor/dark, -/area/antag/actor) "hJG" = ( /obj/effect/floor_decal/corner/black{ dir = 6 @@ -54752,6 +54720,17 @@ }, /turf/simulated/floor/wood, /area/bridge/meeting_room) +"hLg" = ( +/obj/effect/floor_decal/corner/brown{ + dir = 10 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/operations/lobby) "hLj" = ( /obj/structure/bed/stool/chair/office/bridge{ dir = 1 @@ -55063,16 +55042,6 @@ }, /turf/simulated/floor/tiled/dark/full, /area/crew_quarters/heads/chief) -"hNq" = ( -/obj/machinery/door/airlock/maintenance{ - req_one_access = list(12,26,29,31,48,67); - dir = 4 - }, -/obj/machinery/door/firedoor{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark/full, -/area/maintenance/wing/cargo_compartment) "hNt" = ( /obj/effect/floor_decal/corner/yellow{ dir = 10 @@ -55967,13 +55936,6 @@ /obj/machinery/smartfridge/stocked, /turf/unsimulated/floor, /area/centcom/bar) -"hUd" = ( -/obj/structure/foamedmetal, -/obj/structure/shuttle_part/scc_space_ship{ - icon_state = "d2-1" - }, -/turf/simulated/floor/plating, -/area/maintenance/wing/cargo_compartment) "hUh" = ( /obj/structure/closet/secure_closet/engineering_welding, /turf/simulated/floor/plating, @@ -56054,14 +56016,6 @@ icon_state = "white" }, /area/centcom/holding) -"hUX" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 5 - }, -/obj/machinery/bookbinder, -/obj/structure/engineer_maintenance/electric/wall, -/turf/simulated/floor/wood, -/area/horizon/library) "hVe" = ( /obj/structure/window/reinforced{ dir = 4 @@ -56284,6 +56238,27 @@ }, /turf/simulated/floor/tiled/full, /area/bridge) +"hWU" = ( +/obj/machinery/door/firedoor{ + req_one_access = list(24,11,67,73); + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/door/airlock/glass_mining{ + dir = 4; + name = "Commissary Backroom"; + req_one_access = list(26,29,31,48,67,35,25,28,37) + }, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/commissary) "hWV" = ( /obj/structure/cable{ icon_state = "1-2" @@ -57445,6 +57420,18 @@ }, /turf/simulated/floor/grass/no_edge, /area/horizon/hallway/deck_three/primary/starboard) +"igc" = ( +/obj/structure/table/wood, +/obj/item/folder/purple{ + pixel_x = -3 + }, +/obj/item/folder/red{ + pixel_x = 3; + pixel_y = 2 + }, +/obj/item/device/radio/intercom/west, +/turf/simulated/floor/carpet/red, +/area/horizon/library) "igd" = ( /obj/effect/floor_decal/corner_wide/yellow{ dir = 10 @@ -58696,18 +58683,6 @@ /obj/random/pottedplant, /turf/simulated/floor/wood, /area/crew_quarters/lounge/secondary) -"iqe" = ( -/obj/structure/bed/stool/chair/office/light{ - dir = 8 - }, -/obj/effect/floor_decal/spline/plain/lime{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/turf/simulated/floor/tiled/dark, -/area/horizon/commissary) "iqf" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/maintenance{ @@ -60668,11 +60643,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/tiled/full, /area/medical/morgue/lower) -"iEs" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/machinery/space_heater, -/turf/simulated/floor/tiled/dark/full, -/area/maintenance/wing/cargo_compartment) "iEz" = ( /obj/effect/floor_decal/industrial/hatch/yellow, /obj/machinery/atmospherics/portables_connector{ @@ -60876,6 +60846,11 @@ }, /turf/simulated/floor/plating, /area/engineering/engine_room) +"iGa" = ( +/obj/structure/lattice/catwalk, +/obj/structure/reagent_dispensers/fueltank, +/turf/simulated/open, +/area/horizon/hydroponics) "iGc" = ( /obj/machinery/autolathe{ desc = "Your typical Autolathe. It appears to have much more options than your regular one, however..."; @@ -62515,15 +62490,6 @@ }, /turf/simulated/floor/holofloor/lino, /area/horizon/holodeck/source_meetinghall) -"iRz" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/structure/flora/ausbushes/sparsegrass, -/obj/machinery/portable_atmospherics/hydroponics/soil, -/obj/structure/engineer_maintenance/pipe/wall, -/turf/simulated/floor/grass/no_edge, -/area/horizon/hydroponics/garden) "iRC" = ( /turf/simulated/floor/plating, /area/hangar/intrepid) @@ -62875,10 +62841,6 @@ }, /turf/template_noop, /area/template_noop) -"iUV" = ( -/obj/structure/bookcase/libraryspawn/nonfiction, -/turf/simulated/floor/tiled/dark/full, -/area/horizon/library) "iUY" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -63648,12 +63610,6 @@ }, /turf/simulated/floor/tiled/dark, /area/shuttle/legion) -"jaw" = ( -/obj/structure/shuttle_part/scc_space_ship{ - icon_state = "d2-1" - }, -/turf/simulated/wall, -/area/maintenance/wing/cargo_compartment) "jay" = ( /obj/effect/floor_decal/corner_wide/yellow{ dir = 10 @@ -63851,12 +63807,6 @@ icon_state = "dark_preview" }, /area/centcom/ferry) -"jbY" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/maintenance/wing/cargo_compartment) "jcd" = ( /obj/effect/floor_decal/spline/plain/black, /obj/structure/bed/stool/chair/shuttle/double{ @@ -64213,6 +64163,19 @@ }, /turf/simulated/floor/wood, /area/lawoffice/consular_two) +"jeF" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass{ + dir = 1 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/full, +/area/horizon/hallway/deck_two/fore) "jeG" = ( /obj/effect/floor_decal/corner/paleblue{ dir = 5 @@ -64346,6 +64309,14 @@ /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled, /area/horizon/hydroponics/lower) +"jfy" = ( +/obj/structure/table/rack, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/unsimulated/floor/dark_monotile, +/area/antag/actor) "jfG" = ( /turf/simulated/wall, /area/maintenance/security_port) @@ -64457,21 +64428,6 @@ }, /turf/simulated/floor/tiled, /area/horizon/hallway/deck_three/primary/starboard) -"jgM" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/effect/floor_decal/corner/dark_green{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/horizon/hallway/deck_two/fore) "jgX" = ( /obj/structure/table/reinforced/steel, /obj/item/gun/energy/blaster/carbine{ @@ -64887,6 +64843,17 @@ }, /turf/simulated/floor/tiled, /area/horizon/crew_quarters/cryo/washroom) +"jjV" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/structure/trash_pile, +/obj/effect/decal/cleanable/cobweb2, +/obj/machinery/light/small/emergency{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/wing/cargo_compartment) "jjW" = ( /obj/effect/shuttle_landmark/horizon/exterior/deck_2/starboard_fore, /turf/template_noop, @@ -65190,6 +65157,15 @@ }, /turf/simulated/floor/tiled, /area/hangar/operations) +"jmj" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 6 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/simulated/floor/wood, +/area/horizon/library) "jmk" = ( /obj/machinery/bodyscanner{ dir = 8 @@ -65949,6 +65925,22 @@ /obj/effect/floor_decal/corner/white/full, /turf/simulated/floor/holofloor/tiled/dark, /area/horizon/holodeck/source_boxingcourt) +"jso" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/structure/cable/green{ + icon_state = "1-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled/full, +/area/hallway/primary/central_two) "jsq" = ( /obj/structure/sign/nosmoking_1{ pixel_y = 32 @@ -66465,15 +66457,6 @@ }, /turf/simulated/floor, /area/maintenance/bridge) -"jvu" = ( -/obj/effect/floor_decal/corner/dark_green{ - dir = 9 - }, -/obj/effect/floor_decal/spline/plain/corner/lime{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/horizon/hallway/deck_two/fore) "jvv" = ( /obj/structure/cable/green{ icon_state = "1-4" @@ -66558,15 +66541,6 @@ }, /turf/simulated/floor/tiled/dark, /area/horizon/holodeck_control/beta) -"jvI" = ( -/obj/structure/lattice/catwalk/indoor/grate/dark, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/plating, -/area/maintenance/wing/cargo_compartment) "jvM" = ( /obj/effect/floor_decal/corner/dark_blue{ dir = 10 @@ -66837,6 +66811,15 @@ }, /turf/simulated/floor/carpet, /area/horizon/security/head_of_security) +"jys" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/item/material/shard{ + icon_state = "small" + }, +/turf/simulated/floor/plating, +/area/maintenance/wing/cargo_compartment) "jyv" = ( /obj/effect/floor_decal/corner/red{ dir = 6 @@ -67165,6 +67148,21 @@ }, /turf/simulated/floor/tiled, /area/bridge/supply) +"jAD" = ( +/obj/effect/floor_decal/corner/teal, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/structure/sign/double/map/left{ + desc = "A framed picture of a station."; + pixel_x = 16; + pixel_y = 32 + }, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/unsimulated/floor/dark, +/area/antag/actor) "jAF" = ( /obj/effect/floor_decal/corner_wide/yellow{ dir = 5 @@ -67704,42 +67702,18 @@ /obj/effect/shuttle_landmark/horizon/exterior/deck_3/aft, /turf/template_noop, /area/template_noop) -"jEM" = ( -/obj/effect/floor_decal/spline/plain/lime{ - dir = 4 - }, -/obj/machinery/button/remote/airlock{ - dir = 4; - id = "horizon_commissary_door"; - name = "Commissary Door Bolts"; - pixel_x = 22; - specialfunctions = 4; - pixel_y = -2 - }, -/obj/machinery/button/remote/blast_door{ - dir = 4; - id = "horizon_commissary_desk"; - name = "Desk Shutters"; - pixel_x = 22; - pixel_y = 10 - }, -/obj/machinery/button/switch/holosign{ - id = "commissary"; - dir = 4; - pixel_y = 1; - pixel_x = 29 - }, -/obj/machinery/light_switch{ - dir = 4; - pixel_y = 12; - pixel_x = 29 - }, -/obj/machinery/hologram/holopad, -/turf/simulated/floor/tiled/dark, -/area/horizon/commissary) "jEP" = ( /turf/simulated/wall/r_wall, /area/engineering/engine_waste) +"jES" = ( +/obj/structure/lattice/catwalk/indoor/grate/dark, +/obj/structure/cable/green{ + icon_state = "4-8"; + d1 = 4; + d2 = 8 + }, +/turf/simulated/floor/plating, +/area/maintenance/wing/cargo_compartment) "jEU" = ( /obj/machinery/atmospherics/unary/vent_pump/on, /obj/effect/floor_decal/spline/plain{ @@ -67866,6 +67840,18 @@ /obj/machinery/vending/frontiervend, /turf/simulated/floor/tiled, /area/security/checkpoint2) +"jFx" = ( +/obj/structure/cable/green{ + icon_state = "2-8" + }, +/obj/structure/disposalpipe/segment{ + icon_state = "pipe-c" + }, +/obj/effect/floor_decal/spline/plain/lime{ + dir = 5 + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/hydroponics/garden) "jFB" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -68694,6 +68680,12 @@ /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled/white, /area/horizon/kitchen) +"jMk" = ( +/obj/structure/bed/stool/chair/office/dark{ + dir = 8 + }, +/turf/simulated/floor/carpet/red, +/area/horizon/library) "jMo" = ( /obj/structure/closet/emcloset, /obj/effect/floor_decal/corner/dark_green{ @@ -68966,15 +68958,6 @@ }, /turf/unsimulated/floor, /area/centcom/distress_prep) -"jOy" = ( -/obj/structure/lattice/catwalk/indoor/grate/dark, -/obj/structure/cable/green{ - icon_state = "4-8"; - d1 = 4; - d2 = 8 - }, -/turf/simulated/floor/plating, -/area/maintenance/wing/cargo_compartment) "jOE" = ( /obj/structure/window/reinforced{ dir = 4 @@ -69136,14 +69119,6 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/tiled/full, /area/horizon/security/brig) -"jPM" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/coatrack{ - pixel_x = -11; - pixel_y = 19 - }, -/turf/simulated/floor/wood, -/area/horizon/library) "jPP" = ( /obj/structure/trash_pile, /obj/machinery/light/small/emergency{ @@ -69800,6 +69775,31 @@ /obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/tiled/dark/full, /area/engineering/atmos) +"jUU" = ( +/obj/structure/cable/green{ + icon_state = "4-8"; + d1 = 4; + d2 = 8 + }, +/obj/machinery/door/firedoor{ + req_one_access = list(24,11,67,73); + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/door/airlock/glass_service{ + dir = 8; + name = "Library" + }, +/turf/simulated/floor/tiled/full, +/area/horizon/library) "jVh" = ( /obj/effect/floor_decal/corner/dark_blue{ dir = 9 @@ -70323,6 +70323,13 @@ }, /turf/unsimulated/floor/plating, /area/shuttle/transport1) +"jYO" = ( +/obj/machinery/firealarm/west, +/obj/structure/flora/ausbushes/sparsegrass, +/obj/machinery/portable_atmospherics/hydroponics/soil, +/obj/structure/engineer_maintenance/electric/wall, +/turf/simulated/floor/grass/no_edge, +/area/horizon/hydroponics/garden) "jYV" = ( /obj/effect/floor_decal/industrial/hatch/yellow, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -72279,13 +72286,6 @@ /obj/structure/lattice/catwalk/indoor/grate/dark, /turf/simulated/floor, /area/maintenance/engineering_ladder) -"klO" = ( -/obj/structure/flora/ausbushes/fullgrass, -/obj/machinery/light/small{ - dir = 8 - }, -/turf/unsimulated/floor/grass, -/area/antag/actor) "klQ" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -72880,13 +72880,6 @@ }, /turf/simulated/floor/wood, /area/horizon/crew_quarters/lounge/bar) -"kqC" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/structure/closet/crate, -/obj/random/loot, -/obj/random/contraband, -/turf/simulated/floor/tiled/dark/full, -/area/maintenance/wing/cargo_compartment) "kqF" = ( /obj/structure/cable/green{ icon_state = "1-2" @@ -72906,19 +72899,6 @@ }, /turf/simulated/floor/tiled/dark/full, /area/engineering/atmos) -"kqH" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/structure/bed/stool/chair/padded/red{ - dir = 8 - }, -/obj/machinery/power/apc/north, -/obj/structure/cable/green{ - icon_state = "0-8" - }, -/turf/simulated/floor/lino/diamond, -/area/horizon/library) "kqO" = ( /obj/random/junk, /turf/simulated/floor/plating, @@ -73094,6 +73074,18 @@ }, /turf/simulated/floor, /area/maintenance/security_port) +"krP" = ( +/obj/machinery/door/airlock/maintenance{ + dir = 4; + name = "Commissary Maintenance"; + req_one_access = list(26,29,31,48,67,35,25,28,37) + }, +/obj/machinery/door/firedoor{ + req_one_access = list(24,11,67,73); + dir = 4 + }, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/commissary) "krQ" = ( /obj/structure/lattice/catwalk, /obj/item/hullbeacon/red, @@ -73260,6 +73252,16 @@ icon_state = "white" }, /area/tdome/tdomeobserve) +"kti" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/structure/lattice/catwalk/indoor/grate, +/turf/simulated/floor/plating, +/area/hallway/primary/central_two) "kto" = ( /obj/machinery/light{ dir = 8 @@ -73317,6 +73319,29 @@ }, /turf/simulated/floor/tiled/full, /area/hallway/primary/central_one) +"ktM" = ( +/obj/machinery/atm{ + dir = 1; + pixel_y = 28 + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/structure/engineer_maintenance/electric{ + dir = 1 + }, +/obj/structure/engineer_maintenance/pipe{ + dir = 8 + }, +/turf/simulated/floor/tiled/full, +/area/horizon/commissary) "ktR" = ( /obj/machinery/light{ dir = 4 @@ -74094,15 +74119,6 @@ }, /turf/simulated/floor/shuttle/black, /area/shuttle/hapt) -"kzq" = ( -/obj/effect/floor_decal/corner/brown/full{ - dir = 1 - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled, -/area/horizon/commissary) "kzs" = ( /turf/simulated/floor/tiled/full, /area/hallway/primary/aft) @@ -74303,6 +74319,18 @@ }, /turf/simulated/floor/tiled/white, /area/crew_quarters/heads/cmo) +"kAR" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/maintenance{ + req_one_access = list(12,26,29,31,48,67) + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/full, +/area/maintenance/wing/cargo_compartment) "kBb" = ( /turf/simulated/floor/holofloor/grass{ dir = 4; @@ -75269,9 +75297,6 @@ }, /turf/simulated/floor/tiled, /area/engineering/bluespace_drive) -"kHW" = ( -/turf/simulated/wall, -/area/maintenance/wing/cargo_compartment) "kHY" = ( /obj/structure/disposalpipe/segment, /obj/effect/floor_decal/spline/fancy/wood{ @@ -75416,15 +75441,6 @@ /obj/effect/floor_decal/spline/plain, /turf/simulated/floor/exoplanet/grass, /area/centcom/shared_dream) -"kJg" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/full, -/area/hallway/primary/central_two) "kJh" = ( /obj/effect/map_effect/window_spawner/full/reinforced/firedoor, /turf/simulated/floor/tiled/dark/full, @@ -76148,29 +76164,6 @@ /obj/machinery/atmospherics/unary/vent_pump/on, /turf/simulated/floor/tiled, /area/horizon/hallway/deck_three/primary/central) -"kPM" = ( -/obj/machinery/atm{ - dir = 1; - pixel_y = 28 - }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/structure/engineer_maintenance/electric{ - dir = 1 - }, -/obj/structure/engineer_maintenance/pipe{ - dir = 8 - }, -/turf/simulated/floor/tiled/full, -/area/horizon/commissary) "kPR" = ( /obj/effect/floor_decal/industrial/warning{ dir = 6 @@ -76428,6 +76421,13 @@ }, /turf/unsimulated/floor/monotile, /area/antag/mercenary) +"kRv" = ( +/obj/effect/floor_decal/spline/fancy/wood, +/obj/structure/bed/stool/bar/padded/red{ + dir = 1 + }, +/turf/simulated/floor/wood, +/area/horizon/library) "kRx" = ( /turf/simulated/floor/tiled/white, /area/storage/eva) @@ -76623,6 +76623,26 @@ /obj/effect/floor_decal/corner/paleblue, /turf/unsimulated/floor, /area/centcom/holding) +"kTq" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "4-8"; + d1 = 4; + d2 = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/horizon/library) "kTu" = ( /obj/structure/bed/stool/chair/office/bridge/generic{ desc = "Looks suspiciously comfortable."; @@ -76841,29 +76861,6 @@ }, /turf/simulated/floor/carpet/rubber, /area/rnd/xenobiology/xenoflora) -"kUJ" = ( -/obj/structure/table/wood, -/obj/random/pottedplant_small{ - pixel_x = -3; - pixel_y = 12 - }, -/obj/machinery/button/switch/windowtint{ - id = "library"; - pixel_x = 7; - pixel_y = -1; - dir = 1 - }, -/obj/item/material/ashtray/bronze{ - pixel_x = 6; - pixel_y = 8 - }, -/obj/machinery/light_switch{ - dir = 1; - pixel_y = -1; - pixel_x = -2 - }, -/turf/simulated/floor/carpet/red, -/area/horizon/library) "kUQ" = ( /obj/item/flag/scc/l{ pixel_y = 4 @@ -77100,6 +77097,15 @@ }, /turf/simulated/floor/tiled, /area/bridge/bridge_crew) +"kWh" = ( +/obj/effect/floor_decal/corner/dark_green{ + dir = 6 + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/horizon/hallway/deck_two/fore) "kWm" = ( /obj/effect/floor_decal/corner/white/diagonal, /obj/effect/floor_decal/spline/plain{ @@ -77598,6 +77604,20 @@ }, /turf/simulated/floor/plating, /area/shuttle/canary) +"lbj" = ( +/obj/effect/floor_decal/spline/plain/lime{ + dir = 9 + }, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/commissary) "lbm" = ( /turf/unsimulated/wall/fakeairlock{ icon = 'icons/obj/doors/Doorext.dmi'; @@ -78274,14 +78294,6 @@ }, /turf/unsimulated/floor/rubber_carpet, /area/centcom/specops) -"lfT" = ( -/obj/item/storage/backpack/satchel/leather/withwallet, -/obj/structure/table/stone/marble, -/obj/machinery/light/small{ - dir = 8 - }, -/turf/unsimulated/floor/marble, -/area/antag/wizard) "lfU" = ( /obj/structure/lattice/catwalk/indoor/grate/damaged{ color = "#4c535b" @@ -78352,6 +78364,14 @@ }, /turf/simulated/floor/tiled/dark, /area/engineering/aft_airlock) +"lgv" = ( +/obj/structure/table/rack/retail_shelf, +/obj/machinery/camera/network/service{ + c_tag = "Second Deck - Commissary Starboard"; + dir = 1 + }, +/turf/simulated/floor/tiled/full, +/area/horizon/commissary) "lgH" = ( /obj/effect/floor_decal/spline/fancy/wood{ dir = 1 @@ -78397,6 +78417,15 @@ }, /turf/simulated/floor/tiled/dark/full, /area/horizon/security/armoury) +"lgU" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 1 + }, +/obj/machinery/camera/network/service{ + c_tag = "Service - Deck 2 - Bar Back Counter" + }, +/turf/simulated/floor/wood, +/area/horizon/bar) "lgX" = ( /obj/structure/bed/stool/chair/shuttle{ dir = 4 @@ -78839,6 +78868,16 @@ /obj/structure/flora/ausbushes/brflowers, /turf/simulated/floor/exoplanet/grass/grove, /area/centcom/shared_dream) +"lkk" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + icon_state = "1-4" + }, +/turf/simulated/floor/wood, +/area/horizon/library) "lkm" = ( /obj/effect/floor_decal/industrial/warning, /obj/structure/sign/emergency/exit/ladder, @@ -78876,6 +78915,16 @@ /obj/machinery/atmospherics/pipe/simple/visible, /turf/simulated/floor/tiled/dark/full, /area/engineering/engine_room/rust) +"lkG" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/structure/closet, +/obj/machinery/light/small/emergency{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/maintenance/wing/cargo_compartment) "lkK" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -79058,6 +79107,9 @@ }, /turf/simulated/floor/plating, /area/maintenance/wing/starboard) +"lmV" = ( +/turf/simulated/floor/lino/diamond, +/area/horizon/library) "lmY" = ( /obj/structure/shuttle_part/scc_space_ship{ icon_state = "d3-5-f" @@ -79231,22 +79283,6 @@ }, /turf/simulated/floor/tiled/dark, /area/engineering/atmos) -"loE" = ( -/obj/structure/cable/green{ - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled/full, -/area/hallway/primary/central_one) "loH" = ( /mob/living/heavy_vehicle/premade/combatripley, /turf/unsimulated/floor{ @@ -79411,6 +79447,10 @@ /obj/machinery/light, /turf/simulated/floor/tiled/dark, /area/storage/eva) +"lpF" = ( +/obj/structure/bookcase/libraryspawn/nonfiction, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/library) "lpP" = ( /obj/machinery/door/blast/shutters{ density = 0; @@ -79694,19 +79734,6 @@ /obj/structure/table/reinforced/steel, /turf/unsimulated/floor, /area/centcom/control) -"lrU" = ( -/obj/machinery/power/apc/north, -/obj/structure/cable/green{ - d2 = 2; - icon_state = "0-2" - }, -/obj/machinery/light{ - dir = 8 - }, -/obj/effect/floor_decal/industrial/hatch/operations, -/obj/machinery/vending/snack, -/turf/simulated/floor/tiled/full, -/area/horizon/commissary) "lsa" = ( /turf/unsimulated/floor/wood, /area/antag/raider) @@ -80707,6 +80734,26 @@ /obj/machinery/light, /turf/simulated/floor/tiled, /area/operations/mail_room) +"lzs" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "4-8"; + d1 = 4; + d2 = 8 + }, +/turf/simulated/floor/wood, +/area/horizon/library) "lzv" = ( /obj/effect/floor_decal/spline/plain/corner{ dir = 8 @@ -82277,6 +82324,14 @@ }, /turf/simulated/floor/tiled, /area/horizon/security/hallway) +"lJU" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/structure/table/rack, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/unsimulated/floor/linoleum, +/area/antag/actor) "lJX" = ( /obj/effect/floor_decal/industrial/hatch/yellow, /obj/structure/table/steel, @@ -82590,32 +82645,6 @@ }, /turf/simulated/floor/tiled, /area/horizon/security/warden) -"lMk" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/aux{ - dir = 9 - }, -/obj/structure/cable{ - icon_state = "0-8" - }, -/obj/structure/cable/yellow, -/obj/machinery/power/smes/buildable{ - RCon_tag = "Combustion Turbine - Grid"; - cur_coils = 4; - input_level = 500000; - output_level = 500000 - }, -/turf/simulated/floor/plating, -/area/engineering/engine_room/turbine) "lMr" = ( /turf/simulated/wall/shuttle/unique/mercenary/small{ icon_state = "6,10" @@ -82765,6 +82794,14 @@ /obj/item/airbubble/syndie, /turf/simulated/floor/plating, /area/shuttle/skipjack) +"lNv" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/vending/hydronutrients/gardenvend, +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/hydroponics/garden) "lNx" = ( /obj/structure/platform, /obj/structure/closet/crate, @@ -82780,6 +82817,29 @@ }, /turf/simulated/floor/wood, /area/chapel/main) +"lNC" = ( +/obj/structure/table/reinforced/steel, +/obj/machinery/camera/network/service{ + c_tag = "Second Deck - Commissary Backroom"; + dir = 1 + }, +/obj/item/paper_bin{ + pixel_y = 5; + pixel_x = -3 + }, +/obj/item/pen/black{ + pixel_x = -3; + pixel_y = 6 + }, +/obj/random/lavalamp{ + pixel_x = 8; + pixel_y = 3 + }, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/commissary) "lNE" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -83328,6 +83388,20 @@ /obj/effect/floor_decal/industrial/outline, /turf/simulated/floor/reinforced, /area/shuttle/canary) +"lRz" = ( +/obj/machinery/vending/cigarette, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/hatch/operations, +/turf/simulated/floor/tiled/full, +/area/horizon/commissary) "lRA" = ( /obj/structure/shuttle_part/scc_space_ship{ icon_state = "d3-1-f" @@ -83558,6 +83632,12 @@ }, /turf/simulated/floor/plating, /area/horizon/custodial/disposals) +"lSY" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 9 + }, +/turf/simulated/floor/plating, +/area/maintenance/wing/cargo_compartment) "lSZ" = ( /obj/structure/cable{ icon_state = "1-2" @@ -84147,26 +84227,6 @@ }, /turf/simulated/floor/tiled/white, /area/medical/ors) -"lWM" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/structure/cable/green{ - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/obj/structure/disposalpipe/sortjunction/flipped{ - name = "Library"; - sortType = "Library" - }, -/obj/structure/lattice/catwalk/indoor/grate, -/turf/simulated/floor/plating, -/area/horizon/hallway/deck_two/fore) "lWU" = ( /obj/machinery/light/small, /obj/structure/table/rack, @@ -84573,11 +84633,31 @@ }, /turf/simulated/floor/tiled/white, /area/rnd/lab) +"mas" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, +/obj/structure/disposalpipe/junction{ + dir = 8 + }, +/turf/simulated/floor/tiled/full, +/area/hallway/primary/central_one) "mav" = ( /obj/effect/floor_decal/spline/plain/corner, /obj/structure/flora/ausbushes/sunnybush, /turf/simulated/floor/exoplanet/grass, /area/centcom/shared_dream) +"maw" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/full, +/area/hallway/primary/central_one) "maA" = ( /obj/structure/disposalpipe/sortjunction/flipped{ dir = 8; @@ -84660,16 +84740,6 @@ icon_state = "beach" }, /area/horizon/holodeck/source_moghes) -"mbi" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/obj/structure/closet, -/obj/machinery/light/small/emergency{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/maintenance/wing/cargo_compartment) "mbj" = ( /obj/structure/bed/stool/chair/office/bridge/generic{ desc = "Looks suspiciously comfortable."; @@ -84691,6 +84761,26 @@ }, /turf/unsimulated/floor/dark_monotile, /area/antag/actor) +"mbm" = ( +/obj/structure/table/rack/folding_table, +/obj/item/material/folding_table, +/obj/item/material/folding_table, +/obj/item/material/folding_table, +/obj/item/material/folding_table, +/obj/item/material/stool/chair/folding{ + pixel_y = 13 + }, +/obj/item/material/stool/chair/folding{ + pixel_y = 13 + }, +/obj/item/material/stool/chair/folding{ + pixel_y = 13 + }, +/obj/item/material/stool/chair/folding{ + pixel_y = 13 + }, +/turf/simulated/floor/plating, +/area/maintenance/wing/cargo_compartment) "mbo" = ( /obj/effect/floor_decal/corner_wide/dark_green{ dir = 10 @@ -84911,14 +85001,6 @@ }, /turf/simulated/floor/plating, /area/shuttle/canary) -"mcU" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/machinery/vending/actor, -/obj/machinery/light/small{ - dir = 8 - }, -/turf/unsimulated/floor/dark_monotile, -/area/antag/actor) "mcV" = ( /obj/effect/floor_decal/corner/dark_blue/diagonal, /turf/simulated/floor/tiled, @@ -85719,6 +85801,14 @@ }, /turf/simulated/floor/tiled/dark/full, /area/horizon/security/armoury) +"mjk" = ( +/obj/structure/statue/gusoku, +/obj/machinery/light/small{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/unsimulated/floor/dark_monotile, +/area/antag/actor) "mjo" = ( /obj/effect/floor_decal/spline/plain{ dir = 8 @@ -86814,12 +86904,6 @@ }, /turf/simulated/floor/exoplanet/grass/grove, /area/centcom/shared_dream) -"mqM" = ( -/obj/effect/map_effect/window_spawner/full/reinforced/polarized/firedoor{ - id = "library" - }, -/turf/simulated/floor/tiled/dark/full, -/area/horizon/hydroponics/garden) "mqP" = ( /obj/machinery/light, /turf/unsimulated/floor, @@ -86977,18 +87061,6 @@ }, /turf/simulated/floor/shuttle/dark_blue, /area/shuttle/escape_pod/pod4) -"msj" = ( -/obj/structure/table/wood/gamblingtable, -/obj/item/storage/box/donkpockets{ - pixel_x = 2; - pixel_y = 5 - }, -/obj/effect/floor_decal/spline/fancy/wood, -/obj/machinery/light/small{ - dir = 8 - }, -/turf/unsimulated/floor/wood, -/area/antag/actor) "msn" = ( /obj/machinery/atmospherics/pipe/simple/visible/black{ dir = 4 @@ -87487,6 +87559,10 @@ }, /turf/simulated/floor/tiled, /area/horizon/hallway/deck_three/primary/central) +"mwh" = ( +/obj/structure/bookcase/libraryspawn/fiction, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/library) "mwl" = ( /turf/simulated/floor/tiled/dark, /area/chapel/office) @@ -87558,6 +87634,19 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/tiled/white, /area/shuttle/intrepid/medical) +"mwS" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/structure/bed/stool/chair/padded/red{ + dir = 8 + }, +/obj/machinery/power/apc/north, +/obj/structure/cable/green{ + icon_state = "0-8" + }, +/turf/simulated/floor/lino/diamond, +/area/horizon/library) "mwZ" = ( /obj/effect/floor_decal/corner/dark_blue{ dir = 10 @@ -89142,6 +89231,15 @@ /obj/machinery/atmospherics/unary/engine/scc_shuttle, /turf/simulated/floor/plating, /area/shuttle/canary) +"mJH" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/horizon/hallway/deck_two/fore) "mKb" = ( /obj/structure/sign/fire{ name = "\improper DANGER: COMBUSTION CHAMBER sign"; @@ -89678,17 +89776,6 @@ }, /turf/simulated/floor/tiled/dark, /area/rnd/xenoarch_storage) -"mOg" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, -/obj/structure/disposalpipe/junction{ - dir = 8 - }, -/turf/simulated/floor/tiled/full, -/area/hallway/primary/central_one) "mOr" = ( /obj/structure/railing/mapped{ dir = 4 @@ -90071,18 +90158,6 @@ }, /turf/unsimulated/floor/plating, /area/shuttle/syndicate_elite) -"mRE" = ( -/obj/machinery/door/firedoor, -/obj/structure/disposalpipe/segment, -/obj/machinery/door/airlock/maintenance{ - dir = 1; - req_one_access = list(12,26,29,31,48,67,35,25,28,37) - }, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/full, -/area/hallway/primary/central_two) "mRF" = ( /obj/structure/cable/green{ icon_state = "0-8" @@ -90136,6 +90211,19 @@ }, /turf/simulated/floor/tiled, /area/horizon/crew_quarters/cryo/living_quarters_lift) +"mSA" = ( +/obj/effect/floor_decal/corner/dark_green{ + dir = 9 + }, +/obj/structure/bed/stool/chair{ + dir = 4 + }, +/obj/machinery/newscaster/west, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/horizon/hallway/deck_two/fore) "mSD" = ( /obj/effect/landmark/entry_point/port{ name = "port, port nacelle" @@ -90149,6 +90237,20 @@ /obj/machinery/atmospherics/pipe/manifold/hidden/red, /turf/simulated/floor/tiled, /area/engineering/atmos/storage) +"mSP" = ( +/obj/effect/floor_decal/spline/plain/lime{ + dir = 5 + }, +/obj/item/device/radio/intercom/east, +/obj/machinery/disposal/small/west, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/commissary) "mSS" = ( /obj/effect/floor_decal/industrial/outline/yellow, /obj/structure/closet/emcloset{ @@ -90292,12 +90394,6 @@ }, /turf/simulated/floor/plating, /area/maintenance/engineering) -"mUd" = ( -/obj/structure/bed/stool/bar/padded/red{ - dir = 8 - }, -/turf/simulated/floor/wood, -/area/horizon/library) "mUe" = ( /obj/structure/bed/stool/chair/office/dark, /obj/machinery/button/remote/blast_door{ @@ -90433,19 +90529,6 @@ }, /turf/simulated/floor/plating, /area/shuttle/skipjack) -"mUW" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass{ - dir = 1 - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/full, -/area/hallway/primary/central_one) "mVa" = ( /obj/effect/floor_decal/industrial/warning{ dir = 1 @@ -90585,18 +90668,6 @@ /obj/structure/bed/stool/padded/blue, /turf/simulated/floor/tiled/dark, /area/horizon/security/evidence_storage) -"mWc" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/obj/structure/disposalpipe/segment, -/obj/structure/lattice/catwalk/indoor/grate, -/turf/simulated/floor/plating, -/area/hallway/primary/central_two) "mWd" = ( /obj/structure/disposalpipe/segment, /obj/structure/railing/mapped{ @@ -90730,6 +90801,14 @@ icon_state = "dark_preview" }, /area/centcom/specops) +"mWS" = ( +/obj/structure/reagent_dispensers/watertank, +/obj/machinery/alarm/north{ + req_one_access = list(24,11,55) + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/hydroponics/garden) "mXc" = ( /obj/effect/floor_decal/corner/dark_green{ dir = 10 @@ -91188,6 +91267,17 @@ "mZL" = ( /turf/simulated/floor/tiled/dark, /area/maintenance/wing/starboard/far) +"mZX" = ( +/obj/structure/table/reinforced/steel, +/obj/machinery/door/window/westleft{ + req_one_access = list(26,29,31,48,67,35,25,28,37) + }, +/obj/machinery/door/blast/shutters{ + dir = 4; + id = "horizon_commissary_desk" + }, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/commissary) "nag" = ( /obj/effect/floor_decal/corner/brown{ dir = 9 @@ -92084,6 +92174,16 @@ }, /turf/unsimulated/floor, /area/centcom/evac) +"ngR" = ( +/obj/machinery/atmospherics/unary/vent_pump/on, +/obj/machinery/alarm/east, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/structure/disposalpipe/trunk, +/obj/machinery/disposal/small/west, +/turf/simulated/floor/lino/diamond, +/area/horizon/library) "ngS" = ( /obj/effect/floor_decal/corner/red{ dir = 1 @@ -92603,13 +92703,6 @@ }, /turf/simulated/floor/tiled/dark, /area/engineering/atmos/propulsion) -"nkM" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/maintenance{ - req_one_access = list(12,26,29,31,48,67) - }, -/turf/simulated/floor/tiled/full, -/area/maintenance/wing/cargo_compartment) "nkR" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 8 @@ -92704,6 +92797,12 @@ /obj/structure/table/rack, /turf/unsimulated/floor/plating, /area/centcom/specops) +"nlA" = ( +/obj/effect/map_effect/window_spawner/full/reinforced/polarized/firedoor{ + id = "library" + }, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/bar/backroom) "nlC" = ( /obj/machinery/computer/borgupload, /turf/unsimulated/floor{ @@ -93389,6 +93488,15 @@ name = "Service Airlock" }, /area/centcom/legion/hangar5) +"nqA" = ( +/obj/effect/floor_decal/corner/grey{ + dir = 9 + }, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/unsimulated/floor/dark, +/area/antag/actor) "nqB" = ( /obj/structure/railing/mapped{ dir = 8 @@ -93829,14 +93937,6 @@ }, /turf/simulated/floor/reinforced/n20, /area/engineering/atmos/air) -"nth" = ( -/obj/structure/closet, -/obj/random/loot, -/obj/machinery/light/small/emergency{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/maintenance/wing/cargo_compartment) "nto" = ( /obj/structure/lattice, /obj/machinery/atmospherics/pipe/simple/visible/red, @@ -94006,13 +94106,6 @@ }, /turf/unsimulated/floor/monotile, /area/antag/raider) -"nuw" = ( -/obj/effect/floor_decal/corner/dark_green{ - dir = 9 - }, -/obj/machinery/alarm/west, -/turf/simulated/floor/tiled, -/area/horizon/hallway/deck_two/fore) "nuz" = ( /obj/structure/table/standard, /obj/effect/floor_decal/corner_wide/orange{ @@ -94115,14 +94208,6 @@ }, /turf/simulated/floor/plating, /area/shuttle/intrepid/main_compartment) -"nvp" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/structure/table/rack, -/obj/machinery/light/small{ - dir = 8 - }, -/turf/unsimulated/floor/linoleum, -/area/antag/actor) "nvs" = ( /obj/effect/floor_decal/spline/fancy/wood, /obj/structure/railing/mapped{ @@ -95011,6 +95096,15 @@ }, /turf/unsimulated/floor/freezer, /area/antag/mercenary) +"nCf" = ( +/obj/structure/table/wood, +/obj/item/toy/desk/newtoncradle{ + pixel_x = 3; + pixel_y = 10 + }, +/obj/machinery/power/outlet, +/turf/simulated/floor/carpet/red, +/area/horizon/library) "nCi" = ( /obj/machinery/atmospherics/pipe/simple/visible/black{ dir = 9 @@ -95525,16 +95619,6 @@ /obj/structure/flora/ausbushes/sunnybush, /turf/simulated/floor/grass/no_edge, /area/crew_quarters/lounge) -"nGl" = ( -/obj/structure/bed/stool/chair/office/light{ - dir = 8 - }, -/obj/effect/floor_decal/spline/plain/lime{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/dark, -/area/horizon/commissary) "nGn" = ( /obj/structure/table/standard, /obj/item/stack/material/glass/full{ @@ -96142,6 +96226,16 @@ }, /turf/simulated/floor/plating, /area/maintenance/research_port) +"nKV" = ( +/obj/structure/bed/stool/chair/office/light{ + dir = 8 + }, +/obj/effect/floor_decal/spline/plain/lime{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/dark, +/area/horizon/commissary) "nLc" = ( /obj/effect/floor_decal/industrial/warning{ dir = 1 @@ -96176,15 +96270,6 @@ }, /turf/unsimulated/floor, /area/centcom/legion) -"nLv" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/structure/cable/green{ - d2 = 2; - icon_state = "0-2" - }, -/obj/machinery/power/apc/north, -/turf/simulated/floor/tiled/dark/full, -/area/maintenance/wing/cargo_compartment) "nLA" = ( /obj/machinery/meter, /obj/machinery/atmospherics/pipe/manifold/hidden, @@ -96324,35 +96409,6 @@ }, /turf/simulated/floor/tiled/full, /area/hallway/primary/aft) -"nML" = ( -/obj/machinery/holosign/service{ - id = "commissary" - }, -/obj/structure/cable/green{ - icon_state = "4-8"; - d1 = 4; - d2 = 8 - }, -/obj/machinery/door/firedoor{ - req_one_access = list(24,11,67,73); - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/door/airlock/glass_mining{ - dir = 4; - name = "Commissary"; - id_tag = "horizon_commissary_door" - }, -/turf/simulated/floor/tiled/full, -/area/horizon/commissary) "nMN" = ( /obj/structure/sign/directions/security{ dir = 4 @@ -96411,31 +96467,30 @@ }, /turf/simulated/floor/tiled/dark, /area/horizon/longbow) -"nNi" = ( -/obj/effect/floor_decal/corner/dark_green{ - dir = 9 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/structure/disposalpipe/junction{ - dir = 8; - icon_state = "pipe-j2" - }, -/turf/simulated/floor/tiled, -/area/horizon/commissary) "nNm" = ( /obj/effect/landmark/entry_point/fore{ name = "fore, kitchen freezer" }, /turf/template_noop, /area/template_noop) +"nNq" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/structure/cable/green{ + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled/full, +/area/hallway/primary/central_one) "nNC" = ( /obj/effect/floor_decal/industrial/warning{ dir = 1 @@ -97076,6 +97131,13 @@ /obj/structure/sign/directions/cryo, /turf/unsimulated/wall/darkshuttlewall, /area/centcom/ferry) +"nSh" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 4 + }, +/obj/machinery/papershredder, +/turf/simulated/floor/wood, +/area/horizon/library) "nSi" = ( /obj/machinery/atmospherics/pipe/simple/visible/red{ dir = 4 @@ -97148,6 +97210,32 @@ }, /turf/simulated/floor/tiled, /area/hallway/primary/central_one) +"nSz" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/aux{ + dir = 9 + }, +/obj/structure/cable{ + icon_state = "0-8" + }, +/obj/structure/cable/yellow, +/obj/machinery/power/smes/buildable{ + RCon_tag = "Combustion Turbine - Grid"; + cur_coils = 4; + input_level = 500000; + output_level = 500000 + }, +/turf/simulated/floor/plating, +/area/engineering/engine_room/turbine) "nSA" = ( /obj/structure/table/reinforced/wood, /obj/item/paper_scanner, @@ -97463,18 +97551,6 @@ /obj/item/ship_ammunition/grauwolf_probe, /turf/simulated/floor/tiled/dark, /area/horizon/grauwolf) -"nUI" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/effect/floor_decal/spline/plain/lime{ - dir = 9 - }, -/turf/simulated/floor/tiled/dark, -/area/horizon/hydroponics/garden) "nUN" = ( /obj/random/pottedplant, /obj/effect/floor_decal/spline/fancy/wood/full, @@ -97748,28 +97824,6 @@ /obj/effect/floor_decal/industrial/outline/yellow, /turf/unsimulated/floor, /area/antag/mercenary) -"nWS" = ( -/obj/machinery/camera/network/service{ - c_tag = "Service- Hydroponics 2"; - dir = 1 - }, -/obj/structure/table/reinforced, -/obj/effect/floor_decal/corner/dark_green/diagonal, -/obj/item/paper_bin{ - pixel_x = -8; - pixel_y = 4 - }, -/obj/item/pen{ - pixel_x = -6; - pixel_y = 4 - }, -/obj/item/clothing/ears/earmuffs/earphones/headphones{ - pixel_x = 3; - pixel_y = 12 - }, -/obj/effect/floor_decal/spline/plain, -/turf/simulated/floor/tiled, -/area/horizon/hydroponics) "nWZ" = ( /obj/effect/floor_decal/industrial/warning/corner{ dir = 8 @@ -98097,6 +98151,13 @@ }, /turf/simulated/floor/exoplanet/barren/raskara, /area/centcom/shared_dream) +"oal" = ( +/obj/effect/floor_decal/spline/fancy/wood, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/wood, +/area/horizon/library) "oam" = ( /obj/structure/grille/diagonal{ dir = 8 @@ -98139,6 +98200,13 @@ }, /turf/simulated/floor/tiled, /area/hallway/primary/central_one) +"oaI" = ( +/obj/structure/lattice/catwalk/indoor/grate/dark, +/obj/structure/cable/green{ + icon_state = "1-8" + }, +/turf/simulated/floor/plating, +/area/maintenance/wing/cargo_compartment) "oaK" = ( /obj/effect/floor_decal/corner/paleblue/diagonal, /obj/structure/table/standard, @@ -99772,6 +99840,20 @@ "omn" = ( /turf/simulated/wall, /area/horizon/cafeteria) +"omt" = ( +/obj/machinery/vending/cola, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/hatch/operations, +/turf/simulated/floor/tiled/full, +/area/horizon/commissary) "omu" = ( /obj/effect/floor_decal/corner/yellow{ dir = 4 @@ -100092,12 +100174,6 @@ }, /turf/simulated/wall, /area/maintenance/wing/port/far) -"ooS" = ( -/obj/structure/shuttle_part/scc_space_ship{ - icon_state = "d2-2" - }, -/turf/simulated/wall, -/area/maintenance/wing/cargo_compartment) "ooT" = ( /obj/structure/bed/stool/chair/office/dark{ dir = 4 @@ -100403,6 +100479,18 @@ /obj/effect/floor_decal/spline/fancy/wood, /turf/unsimulated/floor/carpet, /area/centcom/bar) +"osj" = ( +/obj/machinery/door/firedoor{ + req_one_access = list(24,11,67,73); + dir = 4 + }, +/obj/machinery/door/airlock/maintenance{ + dir = 4; + name = "Library Maintenance"; + req_access = list(37) + }, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/library) "osk" = ( /obj/structure/cable/green{ icon_state = "1-2" @@ -100854,6 +100942,13 @@ }, /turf/simulated/floor/tiled/white, /area/horizon/security/forensic_laboratory) +"ovy" = ( +/obj/structure/flora/ausbushes/fullgrass, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/unsimulated/floor/grass, +/area/antag/actor) "ovA" = ( /obj/structure/window/reinforced{ dir = 8 @@ -101119,6 +101214,14 @@ }, /turf/simulated/floor/tiled/dark/full, /area/engineering/atmos) +"oxo" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/structure/closet/crate, +/obj/random/loot, +/obj/random/contraband, +/obj/machinery/alarm/north, +/turf/simulated/floor/tiled/dark/full, +/area/maintenance/wing/cargo_compartment) "oxq" = ( /obj/structure/bed/stool/chair/shuttle, /obj/structure/window/reinforced{ @@ -101425,14 +101528,6 @@ /obj/effect/map_effect/window_spawner/full/reinforced/indestructible, /turf/unsimulated/floor/plating, /area/centcom/legion/hangar5) -"ozR" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/structure/table/rack, -/turf/unsimulated/floor/linoleum, -/area/antag/actor) "ozV" = ( /obj/effect/floor_decal/corner/white{ dir = 5 @@ -102880,6 +102975,23 @@ }, /turf/simulated/floor/shuttle/black, /area/shuttle/hapt) +"oLh" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "4-8"; + d1 = 4; + d2 = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/horizon/library) "oLi" = ( /obj/effect/landmark/entry_point/fore{ name = "fore, cargo shuttle" @@ -103051,23 +103163,6 @@ }, /turf/simulated/floor/plating, /area/maintenance/wing/starboard) -"oMu" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable/green{ - icon_state = "4-8"; - d1 = 4; - d2 = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/horizon/hallway/deck_two/fore) "oMK" = ( /obj/effect/decal/fake_object{ desc = "Ding."; @@ -103092,6 +103187,19 @@ }, /turf/simulated/floor/tiled/dark/full, /area/shuttle/hapt) +"oMY" = ( +/obj/effect/floor_decal/industrial/outline/operations, +/obj/structure/table/rack, +/obj/item/device/price_scanner, +/obj/item/device/quikpay{ + destinationact = "Operations"; + pixel_y = 3 + }, +/obj/machinery/alarm/east, +/obj/item/storage/box/plasticbag, +/obj/item/storage/toolbox/mechanical, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/commissary) "oMZ" = ( /obj/effect/floor_decal/industrial/outline/service, /obj/structure/closet/crate/hydroponics/herbalism, @@ -103830,18 +103938,6 @@ }, /turf/simulated/floor/plating, /area/shuttle/mining) -"oSE" = ( -/obj/effect/floor_decal/corner/brown/full{ - dir = 8 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/unary/vent_pump/on, -/turf/simulated/floor/tiled, -/area/horizon/commissary) "oSI" = ( /obj/structure/table/standard, /obj/machinery/vending/wallmed1{ @@ -104303,13 +104399,6 @@ }, /turf/unsimulated/floor/wood, /area/antag/burglar) -"oWl" = ( -/obj/structure/lattice/catwalk/indoor/grate/dark, -/obj/structure/cable/green{ - icon_state = "1-4" - }, -/turf/simulated/floor/plating, -/area/maintenance/wing/cargo_compartment) "oWu" = ( /obj/effect/floor_decal/industrial/warning{ dir = 1 @@ -106750,14 +106839,6 @@ }, /turf/simulated/floor/tiled/full, /area/horizon/security/investigations_hallway) -"pnT" = ( -/obj/structure/table/rack/retail_shelf, -/obj/machinery/camera/network/service{ - c_tag = "Second Deck - Commissary Starboard"; - dir = 1 - }, -/turf/simulated/floor/tiled/full, -/area/horizon/commissary) "pnU" = ( /obj/structure/window/shuttle/scc_space_ship, /obj/machinery/door/firedoor, @@ -107080,6 +107161,15 @@ /obj/machinery/power/outlet, /turf/simulated/floor/tiled/dark, /area/horizon/kitchen) +"pqJ" = ( +/obj/effect/floor_decal/corner/dark_green/full{ + dir = 1 + }, +/obj/structure/engineer_maintenance/electric{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/horizon/hallway/deck_two/fore) "pqK" = ( /obj/structure/flora/ausbushes/fullgrass, /obj/effect/floor_decal/spline/plain, @@ -107231,6 +107321,13 @@ }, /turf/simulated/floor/plating, /area/hangar/intrepid) +"psd" = ( +/obj/structure/lattice/catwalk/indoor/grate/dark, +/obj/structure/cable/green{ + icon_state = "1-4" + }, +/turf/simulated/floor/plating, +/area/maintenance/wing/cargo_compartment) "pse" = ( /obj/structure/cable/green{ icon_state = "4-8" @@ -107494,6 +107591,29 @@ }, /turf/simulated/floor/tiled/dark, /area/engineering/smes) +"pty" = ( +/obj/structure/table/wood, +/obj/random/pottedplant_small{ + pixel_x = -3; + pixel_y = 12 + }, +/obj/machinery/button/switch/windowtint{ + id = "library"; + pixel_x = 7; + pixel_y = -1; + dir = 1 + }, +/obj/item/material/ashtray/bronze{ + pixel_x = 6; + pixel_y = 8 + }, +/obj/machinery/light_switch{ + dir = 1; + pixel_y = -1; + pixel_x = -2 + }, +/turf/simulated/floor/carpet/red, +/area/horizon/library) "ptz" = ( /obj/structure/table/holotable, /obj/item/clothing/head/helmet/thunderdome, @@ -107761,23 +107881,6 @@ /obj/structure/railing/mapped, /turf/simulated/floor/carpet/rubber, /area/engineering/engine_room/rust) -"pvi" = ( -/obj/structure/table/wood, -/obj/item/storage/pill_bottle/dice/tajara{ - pixel_x = 5; - pixel_y = 12 - }, -/obj/item/storage/pill_bottle/dice/gaming{ - pixel_x = 1; - pixel_y = 8 - }, -/obj/machinery/power/outlet, -/obj/item/storage/pill_bottle/dice{ - pixel_x = 7; - pixel_y = 1 - }, -/turf/simulated/floor/wood, -/area/horizon/library) "pvn" = ( /obj/structure/lattice/catwalk/indoor, /turf/simulated/floor/plating, @@ -108923,6 +109026,18 @@ }, /turf/simulated/floor/plating, /area/maintenance/wing/starboard) +"pDC" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/effect/floor_decal/spline/plain/lime{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/hydroponics/garden) "pDD" = ( /obj/structure/cable/green{ icon_state = "1-2" @@ -109239,6 +109354,15 @@ /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/tiled, /area/bridge/controlroom) +"pFc" = ( +/obj/effect/floor_decal/corner/brown/full{ + dir = 1 + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled, +/area/horizon/commissary) "pFp" = ( /obj/effect/floor_decal/industrial/warning{ dir = 9 @@ -109485,6 +109609,17 @@ }, /turf/simulated/floor/carpet, /area/horizon/security/investigators_office) +"pHm" = ( +/obj/structure/table/reinforced/steel, +/obj/machinery/door/window/westright{ + req_one_access = list(26,29,31,48,67,35,25,28,37) + }, +/obj/machinery/door/blast/shutters{ + dir = 4; + id = "horizon_commissary_desk" + }, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/commissary) "pHq" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -109886,15 +110021,6 @@ }, /turf/simulated/floor/tiled/dark/full, /area/horizon/custodial/disposals) -"pLo" = ( -/obj/effect/floor_decal/corner/dark_green/full{ - dir = 1 - }, -/obj/structure/engineer_maintenance/electric{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/horizon/hallway/deck_two/fore) "pLq" = ( /obj/structure/shuttle_part/scc/scout{ icon_state = "3,11" @@ -110360,24 +110486,6 @@ icon_state = "2,9" }, /area/shuttle/syndicate_elite) -"pOI" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/structure/cable/green{ - icon_state = "2-4" - }, -/obj/effect/floor_decal/corner/dark_green/full{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/horizon/hallway/deck_two/fore) "pOJ" = ( /obj/effect/floor_decal/spline/fancy/wood{ dir = 1 @@ -110733,15 +110841,6 @@ }, /turf/unsimulated/floor, /area/centcom/holding) -"pRg" = ( -/obj/structure/table/wood, -/obj/item/toy/desk/newtoncradle{ - pixel_x = 3; - pixel_y = 10 - }, -/obj/machinery/power/outlet, -/turf/simulated/floor/carpet/red, -/area/horizon/library) "pRi" = ( /obj/structure/cable/green{ icon_state = "2-4" @@ -111079,24 +111178,6 @@ /obj/structure/lattice/catwalk/indoor, /turf/space/dynamic, /area/horizon/exterior) -"pTJ" = ( -/obj/structure/table/wood, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/door/window/southleft{ - req_access = list(37) - }, -/obj/item/paper_bin{ - pixel_x = -1; - pixel_y = 4 - }, -/obj/item/pen/fountain/black{ - pixel_x = -1; - pixel_y = 6 - }, -/turf/simulated/floor/lino/diamond, -/area/horizon/library) "pTP" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 1 @@ -111190,6 +111271,13 @@ }, /turf/unsimulated/floor, /area/centcom/spawning) +"pUo" = ( +/obj/machinery/photocopier, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/unsimulated/floor/marble, +/area/antag/wizard) "pUq" = ( /obj/structure/closet/secure_closet/custodial, /turf/unsimulated/floor{ @@ -111386,6 +111474,22 @@ }, /turf/simulated/floor/tiled, /area/operations/lobby) +"pVH" = ( +/obj/structure/table/wood, +/obj/machinery/recharger{ + pixel_x = -3; + pixel_y = 2 + }, +/obj/item/deck/cards{ + pixel_x = 12; + pixel_y = 1 + }, +/obj/random/pottedplant_small{ + pixel_x = 7; + pixel_y = 9 + }, +/turf/simulated/floor/wood, +/area/horizon/library) "pVI" = ( /obj/effect/floor_decal/corner_wide/green{ dir = 6 @@ -111695,10 +111799,6 @@ }, /turf/simulated/floor/tiled, /area/hangar/auxiliary) -"pYz" = ( -/obj/structure/foamedmetal, -/turf/simulated/floor/plating, -/area/maintenance/wing/cargo_compartment) "pYB" = ( /obj/structure/lattice, /turf/space/dynamic, @@ -111845,6 +111945,15 @@ }, /turf/simulated/floor/tiled, /area/horizon/security/equipment) +"pZD" = ( +/obj/structure/lattice/catwalk/indoor/grate/dark, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/maintenance/wing/cargo_compartment) "pZG" = ( /obj/effect/floor_decal/corner/dark_blue{ dir = 5 @@ -112653,16 +112762,6 @@ /obj/structure/closet, /turf/simulated/floor/tiled, /area/maintenance/aux_atmospherics/deck_2/starboard/wing) -"qfg" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/random/junk, -/obj/machinery/light/small/emergency{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/maintenance/wing/cargo_compartment) "qfl" = ( /obj/effect/floor_decal/corner_wide/lime/diagonal, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -113036,20 +113135,6 @@ }, /turf/simulated/floor/tiled, /area/horizon/security/investigations_hallway) -"qhY" = ( -/obj/machinery/vending/cola, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/hatch/operations, -/turf/simulated/floor/tiled/full, -/area/horizon/commissary) "qhZ" = ( /obj/machinery/power/breakerbox/activated{ RCon_tag = "Engineering Lower Deck Substation" @@ -113529,6 +113614,26 @@ /obj/machinery/light/floor, /turf/simulated/floor/tiled, /area/bridge) +"qmk" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/floor_decal/corner/dark_green{ + dir = 6 + }, +/obj/structure/cable/green{ + icon_state = "4-8"; + d1 = 4; + d2 = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/horizon/hallway/deck_two/fore) "qmm" = ( /obj/item/device/flashlight/flare, /obj/item/device/flashlight/flare, @@ -113825,15 +113930,6 @@ /obj/machinery/porta_turret/legion, /turf/unsimulated/floor, /area/centcom/legion/hangar5) -"qoC" = ( -/obj/effect/floor_decal/spline/plain/lime{ - dir = 6 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/horizon/commissary) "qoD" = ( /obj/effect/floor_decal/industrial/warning{ dir = 1 @@ -114153,6 +114249,14 @@ /obj/effect/floor_decal/spline/plain, /turf/simulated/floor/carpet/rubber, /area/engineering/engine_monitoring/rust) +"qrf" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/lattice/catwalk/indoor/grate/dark, +/obj/machinery/light/small/emergency{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_two/fore/port) "qrg" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 @@ -114219,14 +114323,6 @@ /obj/structure/lattice/catwalk/indoor/grate, /turf/simulated/floor/plating, /area/horizon/security/hallway) -"qrF" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/lattice/catwalk/indoor/grate/dark, -/obj/machinery/light/small/emergency{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/horizon/maintenance/deck_two/fore/port) "qrG" = ( /obj/machinery/power/terminal{ dir = 8 @@ -114236,22 +114332,6 @@ }, /turf/simulated/floor/tiled/dark/full, /area/storage/shields) -"qrM" = ( -/obj/effect/floor_decal/corner/brown{ - dir = 6 - }, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/horizon/commissary) "qrO" = ( /obj/item/reagent_containers/food/drinks/waterbottle{ pixel_x = -6; @@ -114636,6 +114716,18 @@ /obj/structure/lattice/catwalk/indoor/grate/dark, /turf/simulated/floor/plating, /area/maintenance/operations) +"qvn" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/obj/structure/lattice/catwalk/indoor/grate, +/turf/simulated/floor/plating, +/area/hallway/primary/central_two) "qvo" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 9 @@ -114785,6 +114877,13 @@ }, /turf/simulated/open, /area/hallway/primary/central_one) +"qwD" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/maintenance{ + req_one_access = list(12,26,29,31,48,67) + }, +/turf/simulated/floor/tiled/full, +/area/maintenance/wing/cargo_compartment) "qwK" = ( /obj/machinery/door/airlock/multi_tile/glass{ name = "Hangar" @@ -115251,6 +115350,13 @@ /obj/machinery/telecomms/server/presets/medical, /turf/simulated/floor/bluegrid, /area/tcommsat/chamber) +"qzA" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/machinery/alarm/south, +/turf/simulated/floor/plating, +/area/maintenance/wing/cargo_compartment) "qzI" = ( /obj/random/tool, /obj/random/tool, @@ -115424,12 +115530,6 @@ /obj/structure/table/reinforced/steel, /turf/simulated/floor/carpet/rubber, /area/bridge/controlroom) -"qAT" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/simulated/floor/lino/diamond, -/area/horizon/library) "qAU" = ( /turf/simulated/wall/shuttle/scc_space_ship/cardinal, /area/engineering/engine_room/rust) @@ -117351,17 +117451,6 @@ }, /turf/unsimulated/floor/freezer, /area/antag/mercenary) -"qOl" = ( -/obj/structure/table/reinforced/steel, -/obj/machinery/door/window/westleft{ - req_one_access = list(26,29,31,48,67,35,25,28,37) - }, -/obj/machinery/door/blast/shutters{ - dir = 4; - id = "horizon_commissary_desk" - }, -/turf/simulated/floor/tiled/dark/full, -/area/horizon/commissary) "qOn" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ dir = 8 @@ -118001,9 +118090,6 @@ /obj/structure/engineer_maintenance/pipe/wall, /turf/simulated/floor/tiled/dark, /area/horizon/holodeck_control/beta) -"qST" = ( -/turf/simulated/floor/lino/diamond, -/area/horizon/library) "qSW" = ( /obj/structure/cable{ icon_state = "0-8" @@ -118018,6 +118104,14 @@ }, /turf/simulated/floor/plating, /area/maintenance/substation/research) +"qSZ" = ( +/obj/effect/floor_decal/corner/dark_green/full, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/obj/machinery/disposal/small/east, +/turf/simulated/floor/tiled, +/area/horizon/commissary) "qTa" = ( /obj/structure/bed/stool/padded, /turf/unsimulated/floor, @@ -119038,15 +119132,6 @@ /obj/structure/lattice/catwalk/indoor/grate/dark, /turf/simulated/floor/plating, /area/maintenance/hangar/starboard) -"qZA" = ( -/obj/effect/floor_decal/industrial/outline/service, -/obj/machinery/camera/network/service{ - c_tag = "Service - Library"; - dir = 1 - }, -/obj/machinery/vending/battlemonsters, -/turf/simulated/floor/tiled/dark/full, -/area/horizon/library) "qZC" = ( /turf/simulated/wall, /area/operations/lobby) @@ -119642,6 +119727,21 @@ "rdi" = ( /turf/simulated/floor/carpet, /area/crew_quarters/captain) +"rdk" = ( +/obj/structure/table/wood, +/obj/item/storage/box/fancy/matches{ + pixel_x = 6; + pixel_y = 11 + }, +/obj/random/pottedplant_small{ + pixel_x = -7; + pixel_y = 10 + }, +/obj/machinery/door/window/southright{ + req_access = list(37) + }, +/turf/simulated/floor/lino/diamond, +/area/horizon/library) "rdo" = ( /obj/structure/table/stone/marble, /obj/machinery/door/firedoor, @@ -120012,15 +120112,6 @@ }, /turf/simulated/floor/grass/no_edge, /area/rnd/xenobiology/xenoflora) -"rge" = ( -/obj/structure/table/rack/retail_shelf, -/obj/machinery/vending/wallpharm{ - pixel_x = 28; - pixel_y = 3 - }, -/obj/item/device/radio/intercom/south, -/turf/simulated/floor/tiled/full, -/area/horizon/commissary) "rgf" = ( /obj/structure/dispenser/oxygen, /obj/effect/floor_decal/corner/red{ @@ -120028,15 +120119,6 @@ }, /turf/unsimulated/floor, /area/antag/mercenary) -"rgg" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/full, -/area/hallway/primary/central_one) "rgm" = ( /obj/structure/cable/green{ icon_state = "4-8" @@ -120218,6 +120300,12 @@ }, /turf/simulated/floor/plating, /area/maintenance/research_port) +"rhK" = ( +/obj/item/device/radio/intercom/west, +/obj/effect/floor_decal/industrial/outline/grey, +/obj/machinery/vending/overloaders, +/turf/simulated/floor/tiled/full, +/area/horizon/hallway/deck_two/fore) "rhL" = ( /obj/effect/floor_decal/spline/plain, /obj/structure/flora/tree/grove, @@ -120640,6 +120728,16 @@ /obj/effect/floor_decal/industrial/outline/yellow, /turf/unsimulated/floor, /area/centcom/legion/hangar5) +"rlk" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/random/junk, +/obj/machinery/light/small/emergency{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/maintenance/wing/cargo_compartment) "rlq" = ( /obj/machinery/camera/network/engineering{ c_tag = "Engineering - Deck 2 - Aft Auxiliary Atmospherics"; @@ -120984,15 +121082,6 @@ "roc" = ( /turf/simulated/wall/shuttle/hapt, /area/shuttle/hapt) -"rod" = ( -/obj/machinery/vending/zora, -/obj/machinery/alarm/south, -/obj/machinery/light{ - dir = 8 - }, -/obj/effect/floor_decal/industrial/hatch/operations, -/turf/simulated/floor/tiled/full, -/area/horizon/commissary) "rof" = ( /obj/effect/floor_decal/corner/yellow/full, /obj/effect/floor_decal/corner/yellow{ @@ -121541,24 +121630,6 @@ }, /turf/simulated/floor/plating, /area/shuttle/quark/cargo_hold) -"rsj" = ( -/obj/item/device/destTagger, -/obj/structure/table/rack, -/obj/effect/floor_decal/industrial/outline/operations, -/obj/item/storage/box/fancy/candle_box, -/obj/item/stack/packageWrap, -/obj/item/paper_scanner, -/obj/machinery/light/small{ - dir = 4 - }, -/obj/item/device/toner{ - pixel_y = 5 - }, -/obj/item/device/toner{ - pixel_y = -1 - }, -/turf/simulated/floor/lino/diamond, -/area/horizon/library) "rsk" = ( /obj/structure/cable{ icon_state = "2-8" @@ -122837,6 +122908,12 @@ /obj/machinery/alarm/west, /turf/simulated/floor/tiled/dark, /area/rnd/xenobiology/dissection) +"rCe" = ( +/obj/structure/shuttle_part/scc_space_ship{ + icon_state = "d2-1" + }, +/turf/simulated/wall, +/area/maintenance/wing/cargo_compartment) "rCl" = ( /obj/machinery/atmospherics/unary/vent_pump/siphon/on/atmos{ dir = 1; @@ -123219,12 +123296,6 @@ icon_state = "dark_preview" }, /area/centcom/holding) -"rFv" = ( -/obj/effect/floor_decal/corner/brown{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/horizon/commissary) "rFM" = ( /obj/effect/floor_decal/industrial/warning{ dir = 5 @@ -123682,6 +123753,22 @@ }, /turf/simulated/floor/tiled/dark/full, /area/bridge/aibunker) +"rJB" = ( +/obj/structure/bookcase/libraryspawn/reference, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/library) +"rJE" = ( +/obj/structure/table/wood, +/obj/item/device/flashlight/lamp/green{ + pixel_x = 7; + pixel_y = 3 + }, +/obj/item/toy/desk/officetoy{ + pixel_x = -9; + pixel_y = 5 + }, +/turf/simulated/floor/carpet/red, +/area/horizon/library) "rJG" = ( /obj/effect/floor_decal/industrial/warning/full, /obj/effect/decal/cleanable/dirt, @@ -123913,14 +124000,6 @@ /obj/structure/lattice/catwalk/indoor/grate, /turf/simulated/floor/plating, /area/hangar/intrepid) -"rLv" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 1 - }, -/obj/structure/disposalpipe/trunk, -/obj/machinery/disposal/small/south, -/turf/simulated/floor/wood, -/area/horizon/library) "rLF" = ( /turf/simulated/wall/shuttle/unique/mercenary/small{ icon_state = "6,9" @@ -123949,17 +124028,6 @@ /obj/machinery/hologram/holopad, /turf/simulated/floor/carpet/purple, /area/crew_quarters/heads/hor) -"rMk" = ( -/obj/structure/table/reinforced/steel, -/obj/machinery/door/window/westright{ - req_one_access = list(26,29,31,48,67,35,25,28,37) - }, -/obj/machinery/door/blast/shutters{ - dir = 4; - id = "horizon_commissary_desk" - }, -/turf/simulated/floor/tiled/dark/full, -/area/horizon/commissary) "rMm" = ( /obj/structure/cable/green{ icon_state = "1-2" @@ -123990,10 +124058,6 @@ /obj/effect/floor_decal/corner/dark_blue, /turf/simulated/floor/tiled, /area/bridge) -"rMu" = ( -/obj/structure/table/rack/retail_shelf, -/turf/simulated/floor/tiled/full, -/area/horizon/commissary) "rMz" = ( /obj/effect/decal/cleanable/dirt, /obj/item/ore, @@ -124016,6 +124080,18 @@ }, /turf/simulated/floor/carpet/rubber, /area/engineering/engine_monitoring/rust) +"rMC" = ( +/obj/effect/floor_decal/corner/brown/full{ + dir = 8 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/unary/vent_pump/on, +/turf/simulated/floor/tiled, +/area/horizon/commissary) "rME" = ( /obj/effect/floor_decal/corner/grey{ dir = 10 @@ -124208,6 +124284,12 @@ "rNO" = ( /turf/simulated/wall/shuttle/scc_space_ship/cardinal, /area/horizon/security/forensic_laboratory) +"rNQ" = ( +/obj/effect/floor_decal/corner/brown{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/horizon/commissary) "rNR" = ( /obj/structure/cable/green{ icon_state = "4-8" @@ -124439,13 +124521,6 @@ /obj/effect/step_trigger/thrower/shuttle/northeast, /turf/space/transit/east, /area/template_noop) -"rQk" = ( -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 1 - }, -/obj/random/junk, -/turf/simulated/floor/plating, -/area/maintenance/wing/cargo_compartment) "rQo" = ( /obj/structure/railing/mapped{ dir = 4 @@ -124731,6 +124806,13 @@ /obj/random/junk, /turf/simulated/floor/plating, /area/maintenance/wing/starboard) +"rSq" = ( +/obj/effect/floor_decal/corner/dark_green/diagonal, +/obj/effect/floor_decal/spline/plain/lime{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/horizon/hallway/deck_two/fore) "rSr" = ( /obj/machinery/firealarm/east, /obj/effect/floor_decal/corner/dark_green{ @@ -124745,6 +124827,16 @@ /obj/structure/platform_stairs/south_north_solo, /turf/simulated/floor/plating, /area/maintenance/research_port) +"rSA" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/structure/closet/crate, +/obj/random/loot, +/obj/random/condiment, +/obj/machinery/light/small/emergency{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark/full, +/area/maintenance/wing/cargo_compartment) "rSC" = ( /obj/effect/floor_decal/corner/paleblue{ dir = 10 @@ -125045,12 +125137,6 @@ }, /turf/simulated/floor/grass/no_edge, /area/rnd/hallway/secondary) -"rUC" = ( -/obj/effect/floor_decal/corner/dark_green{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/horizon/commissary) "rUN" = ( /obj/effect/floor_decal/spline/fancy/wood{ dir = 1 @@ -125338,6 +125424,17 @@ /obj/machinery/power/apc/east, /turf/simulated/floor/tiled, /area/bridge) +"rWW" = ( +/obj/item/storage/bag/inflatable{ + pixel_y = 9 + }, +/obj/structure/table/rack/folding_table, +/obj/random/tech_supply, +/obj/machinery/light/small/emergency{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/wing/cargo_compartment) "rWY" = ( /obj/effect/floor_decal/industrial/warning/corner{ dir = 4 @@ -125653,12 +125750,6 @@ }, /turf/simulated/floor, /area/turret_protected/ai_upload_foyer) -"rZR" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/maintenance/wing/cargo_compartment) "rZT" = ( /obj/effect/floor_decal/corner/green/diagonal, /obj/structure/table/standard, @@ -125772,26 +125863,6 @@ /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/tiled, /area/security/checkpoint2) -"saN" = ( -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/structure/cable/green{ - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/obj/structure/disposalpipe/sortjunction/flipped{ - sortType = "Commissary"; - name = "Commissary" - }, -/obj/structure/lattice/catwalk/indoor/grate, -/turf/simulated/floor/plating, -/area/hallway/primary/central_two) "saR" = ( /obj/machinery/light{ dir = 1 @@ -125958,6 +126029,16 @@ }, /turf/simulated/floor/tiled/dark, /area/engineering/break_room) +"sbR" = ( +/obj/machinery/light/small/emergency{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + icon_state = "pipe-c" + }, +/obj/structure/lattice/catwalk/indoor/grate/dark, +/turf/simulated/floor/plating, +/area/horizon/maintenance/deck_two/fore/port) "sbV" = ( /obj/structure/cable/green{ icon_state = "4-8" @@ -126410,20 +126491,6 @@ }, /turf/simulated/floor/wood, /area/operations/qm) -"sew" = ( -/obj/effect/floor_decal/spline/plain/lime{ - dir = 5 - }, -/obj/item/device/radio/intercom/east, -/obj/machinery/disposal/small/west, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/horizon/commissary) "seO" = ( /obj/structure/cable{ icon_state = "1-8" @@ -126593,6 +126660,14 @@ }, /turf/simulated/floor/tiled/dark/full, /area/engineering/engine_room/rust) +"sgc" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/effect/floor_decal/spline/plain{ + dir = 1 + }, +/obj/machinery/vending/coffee, +/turf/simulated/floor/tiled/dark, +/area/hallway/primary/central_one) "sgj" = ( /obj/effect/decal/rolling_fog, /obj/structure/railing/mapped{ @@ -126644,6 +126719,23 @@ }, /turf/simulated/floor/wood, /area/horizon/cafeteria) +"sgt" = ( +/obj/structure/table/wood, +/obj/item/storage/pill_bottle/dice/tajara{ + pixel_x = 5; + pixel_y = 12 + }, +/obj/item/storage/pill_bottle/dice/gaming{ + pixel_x = 1; + pixel_y = 8 + }, +/obj/machinery/power/outlet, +/obj/item/storage/pill_bottle/dice{ + pixel_x = 7; + pixel_y = 1 + }, +/turf/simulated/floor/wood, +/area/horizon/library) "sgy" = ( /obj/effect/floor_decal/spline/fancy/wood/corner{ dir = 8 @@ -127026,6 +127118,16 @@ }, /turf/simulated/floor/tiled/dark, /area/centcom/bar) +"sjx" = ( +/obj/machinery/door/airlock/maintenance{ + req_one_access = list(12,26,29,31,48,67); + dir = 4 + }, +/obj/machinery/door/firedoor{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark/full, +/area/maintenance/wing/cargo_compartment) "sjy" = ( /obj/item/hullbeacon/red, /obj/effect/floor_decal/industrial/warning{ @@ -127385,6 +127487,12 @@ }, /turf/simulated/floor/tiled/dark, /area/engineering/atmos) +"slm" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/maintenance/wing/cargo_compartment) "slt" = ( /obj/structure/table/reinforced/steel, /obj/item/storage/secure/briefcase, @@ -128661,6 +128769,12 @@ }, /turf/simulated/floor/tiled, /area/hallway/primary/central_two) +"swA" = ( +/obj/structure/bed/stool/bar/padded/red{ + dir = 8 + }, +/turf/simulated/floor/wood, +/area/horizon/library) "swC" = ( /obj/structure/table/reinforced/wood, /obj/machinery/chemical_dispenser/bar_soft{ @@ -128743,6 +128857,14 @@ }, /turf/simulated/floor/carpet, /area/lawoffice/representative) +"sxf" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/structure/table/rack, +/turf/unsimulated/floor/linoleum, +/area/antag/actor) "sxj" = ( /obj/structure/table/reinforced/steel, /obj/effect/floor_decal/corner/paleblue/diagonal{ @@ -128975,18 +129097,6 @@ }, /turf/simulated/floor/tiled, /area/horizon/security/office) -"szn" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/effect/floor_decal/spline/plain/lime{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark, -/area/horizon/hydroponics/garden) "szr" = ( /obj/structure/table/standard, /obj/item/flame/lighter/zippo, @@ -129400,6 +129510,26 @@ }, /turf/simulated/floor/tiled/white, /area/rnd/xenoarch_atrium) +"sCC" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/structure/cable/green{ + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/structure/disposalpipe/sortjunction/flipped{ + sortType = "Commissary"; + name = "Commissary" + }, +/obj/structure/lattice/catwalk/indoor/grate, +/turf/simulated/floor/plating, +/area/hallway/primary/central_two) "sCE" = ( /obj/effect/floor_decal/industrial/outline/grey, /obj/structure/closet/crate{ @@ -129792,6 +129922,14 @@ /obj/machinery/power/apc/critical/south, /turf/simulated/floor/tiled, /area/horizon/stairwell/central) +"sFp" = ( +/obj/item/crowbar, +/obj/structure/table/rack, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/unsimulated/floor/marble, +/area/antag/wizard) "sFq" = ( /obj/machinery/light/floor{ dir = 1 @@ -129970,6 +130108,12 @@ }, /turf/simulated/floor/tiled/white, /area/shuttle/hapt) +"sGI" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/structure/closet/crate, +/obj/random/loot, +/turf/simulated/floor/tiled/dark/full, +/area/maintenance/wing/cargo_compartment) "sGJ" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 1 @@ -131138,16 +131282,24 @@ }, /turf/simulated/floor/carpet/magenta, /area/horizon/holodeck/source_cafe) -"sPD" = ( -/obj/effect/floor_decal/corner/dark_green{ - dir = 6 +"sPC" = ( +/obj/item/device/destTagger, +/obj/structure/table/rack, +/obj/effect/floor_decal/industrial/outline/operations, +/obj/item/storage/box/fancy/candle_box, +/obj/item/stack/packageWrap, +/obj/item/paper_scanner, +/obj/machinery/light/small{ + dir = 4 }, -/obj/machinery/atm{ - dir = 4; - pixel_x = 16 +/obj/item/device/toner{ + pixel_y = 5 }, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_two) +/obj/item/device/toner{ + pixel_y = -1 + }, +/turf/simulated/floor/lino/diamond, +/area/horizon/library) "sPI" = ( /obj/effect/floor_decal/corner/red/full{ dir = 1 @@ -131267,6 +131419,21 @@ }, /turf/simulated/floor/tiled/dark, /area/horizon/holodeck/source_pool) +"sQy" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/filingcabinet/chestdrawer{ + pixel_x = 10 + }, +/obj/structure/filingcabinet/filingcabinet{ + pixel_x = -5 + }, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/simulated/floor/lino/diamond, +/area/horizon/library) "sQG" = ( /obj/effect/floor_decal/corner/black/diagonal, /obj/effect/floor_decal/corner/black/diagonal{ @@ -131762,18 +131929,6 @@ }, /turf/unsimulated/floor/plating, /area/centcom/legion/hangar5) -"sUN" = ( -/obj/structure/table/wood, -/obj/item/folder/purple{ - pixel_x = -3 - }, -/obj/item/folder/red{ - pixel_x = 3; - pixel_y = 2 - }, -/obj/item/device/radio/intercom/west, -/turf/simulated/floor/carpet/red, -/area/horizon/library) "sUS" = ( /obj/effect/floor_decal/industrial/warning{ dir = 4 @@ -132365,6 +132520,15 @@ }, /turf/simulated/floor/wood, /area/bridge/meeting_room) +"sZB" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 6 + }, +/obj/structure/bed/stool/chair/padded/red{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/horizon/hallway/deck_two/fore) "sZI" = ( /obj/effect/floor_decal/corner/green/diagonal, /obj/structure/cable/green{ @@ -132527,6 +132691,15 @@ "tbA" = ( /turf/simulated/floor/carpet/rubber, /area/rnd/lab) +"tbH" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/obj/machinery/power/apc/north, +/turf/simulated/floor/tiled/dark/full, +/area/maintenance/wing/cargo_compartment) "tbK" = ( /obj/structure/table/stone/marble, /obj/machinery/chemical_dispenser/coffeemaster/full, @@ -132603,6 +132776,10 @@ }, /turf/simulated/floor/plating, /area/maintenance/wing/starboard) +"tcn" = ( +/obj/structure/table/rack/retail_shelf, +/turf/simulated/floor/tiled/full, +/area/horizon/commissary) "tcw" = ( /obj/machinery/door/airlock{ dir = 4; @@ -132623,6 +132800,15 @@ /obj/structure/platform/ledge, /turf/simulated/open, /area/horizon/hallway/deck_three/primary/central) +"tcE" = ( +/obj/structure/bed/stool/chair/sofa/red{ + dir = 4 + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/carpet/red, +/area/horizon/library) "tcO" = ( /obj/structure/lattice/catwalk/indoor, /turf/unsimulated/floor/plating, @@ -132728,6 +132914,22 @@ }, /turf/simulated/floor/tiled/dark/full, /area/engineering/bluespace_drive) +"tdo" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/disposalpipe/junction{ + dir = 8; + icon_state = "pipe-j2" + }, +/turf/simulated/floor/tiled/full, +/area/hallway/primary/central_one) "tdq" = ( /obj/structure/cable/yellow{ icon_state = "1-2" @@ -134064,15 +134266,6 @@ icon_state = "dark_preview" }, /area/centcom/control) -"toh" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/obj/item/material/shard{ - icon_state = "small" - }, -/turf/simulated/floor/plating, -/area/maintenance/wing/cargo_compartment) "tol" = ( /obj/effect/map_effect/window_spawner/full/reinforced/polarized/grille/firedoor{ id = "hra" @@ -134328,18 +134521,6 @@ /obj/structure/lattice/catwalk/indoor/grate/dark, /turf/simulated/floor/plating, /area/maintenance/engineering) -"tpU" = ( -/obj/effect/floor_decal/corner/dark_green{ - dir = 5 - }, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/horizon/hallway/deck_two/fore) "tpW" = ( /obj/structure/closet/emcloset, /obj/effect/floor_decal/corner/dark_green{ @@ -134505,11 +134686,6 @@ /obj/structure/platform_stairs/full/east_west_cap, /turf/simulated/floor/plating, /area/maintenance/engineering) -"tqU" = ( -/obj/machinery/seed_extractor, -/obj/effect/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/dark/full, -/area/horizon/hydroponics/garden) "trc" = ( /obj/effect/floor_decal/industrial/hatch/red, /obj/effect/floor_decal/industrial/warning{ @@ -134609,6 +134785,25 @@ }, /turf/simulated/floor, /area/bridge/meeting_room) +"trP" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/structure/cable/green{ + icon_state = "2-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled/full, +/area/hallway/primary/central_two) "trQ" = ( /obj/machinery/light/small{ dir = 8 @@ -135674,19 +135869,6 @@ }, /turf/simulated/floor/wood, /area/crew_quarters/heads/hop/xo) -"tyW" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass{ - dir = 1 - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/full, -/area/horizon/hallway/deck_two/fore) "tyX" = ( /obj/structure/bed/stool, /turf/simulated/floor/plating, @@ -135838,6 +136020,10 @@ /obj/random/junk, /turf/simulated/floor/plating, /area/maintenance/wing/port/far) +"tzG" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/wood, +/area/horizon/library) "tzI" = ( /obj/structure/railing/mapped{ dir = 8 @@ -135865,16 +136051,6 @@ density = 1 }, /area/antag/ninja) -"tzZ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/structure/lattice/catwalk/indoor/grate, -/turf/simulated/floor/plating, -/area/hallway/primary/central_two) "tAd" = ( /obj/effect/floor_decal/spline/fancy{ dir = 10 @@ -136269,6 +136445,13 @@ }, /turf/simulated/floor/tiled/dark, /area/shuttle/legion) +"tDp" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/structure/closet/crate, +/obj/random/loot, +/obj/random/contraband, +/turf/simulated/floor/tiled/dark/full, +/area/maintenance/wing/cargo_compartment) "tDq" = ( /obj/structure/flora/tree/jungle/small/patience, /turf/simulated/floor/grass/no_edge, @@ -137319,14 +137502,6 @@ /obj/structure/closet/emcloset, /turf/simulated/floor/tiled/dark, /area/horizon/hallway/deck_three/primary/central) -"tLc" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/structure/closet/crate, -/obj/random/loot, -/obj/random/contraband, -/obj/machinery/alarm/north, -/turf/simulated/floor/tiled/dark/full, -/area/maintenance/wing/cargo_compartment) "tLq" = ( /obj/effect/floor_decal/corner_wide/purple/full{ dir = 4 @@ -138023,16 +138198,6 @@ /obj/effect/map_effect/window_spawner/full/reinforced/firedoor, /turf/simulated/floor/tiled/dark/full, /area/engineering/lobby) -"tQa" = ( -/obj/structure/lattice/catwalk, -/obj/machinery/camera/network/service{ - c_tag = "Service - Hydroponics 1" - }, -/obj/structure/closet/walllocker/medical/firstaid{ - pixel_y = 32 - }, -/turf/simulated/open, -/area/horizon/hydroponics) "tQl" = ( /turf/simulated/wall/shuttle/unique/tcfl{ icon_state = "1,5" @@ -138062,14 +138227,6 @@ }, /turf/simulated/floor/tiled, /area/horizon/hallway/deck_three/primary/central) -"tQG" = ( -/obj/effect/floor_decal/industrial/outline/service, -/obj/machinery/light{ - dir = 4 - }, -/obj/machinery/lapvend, -/turf/simulated/floor/tiled/dark/full, -/area/horizon/library) "tQM" = ( /obj/structure/tank_wall/nitrous_oxide{ density = 0; @@ -138291,6 +138448,16 @@ /obj/structure/lattice/catwalk/indoor/grate, /turf/simulated/floor, /area/bridge) +"tSc" = ( +/obj/structure/foamedmetal, +/obj/structure/shuttle_part/scc_space_ship{ + icon_state = "d2-2" + }, +/obj/effect/landmark/entry_point/fore{ + name = "fore, commissary" + }, +/turf/simulated/floor/plating, +/area/maintenance/wing/cargo_compartment) "tSe" = ( /obj/effect/floor_decal/industrial/warning/corner{ dir = 8 @@ -138505,9 +138672,6 @@ /obj/machinery/atmospherics/pipe/manifold/visible/red, /turf/simulated/floor/tiled/dark, /area/engineering/engine_room/turbine) -"tTI" = ( -/turf/simulated/floor/tiled/dark/full, -/area/maintenance/wing/cargo_compartment) "tTJ" = ( /obj/effect/floor_decal/industrial/warning, /obj/effect/decal/cleanable/dirt, @@ -138775,6 +138939,13 @@ }, /turf/simulated/floor/tiled/dark/full, /area/shuttle/intrepid/starboard_compartment) +"tVi" = ( +/obj/item/modular_computer/console/preset/civilian, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/unsimulated/floor/marble, +/area/antag/wizard) "tVj" = ( /obj/machinery/light, /obj/machinery/door/window/brigdoor/westright{ @@ -139634,12 +139805,6 @@ }, /turf/simulated/floor/carpet/rubber, /area/server) -"ucm" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/structure/closet/crate, -/obj/random/loot, -/turf/simulated/floor/tiled/dark/full, -/area/maintenance/wing/cargo_compartment) "ucp" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable/green{ @@ -140686,6 +140851,26 @@ }, /turf/simulated/floor/plating, /area/engineering/engine_room) +"ujH" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/structure/cable/green{ + icon_state = "4-8"; + d1 = 4; + d2 = 8 + }, +/turf/simulated/floor/wood, +/area/horizon/library) "ujK" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 4 @@ -140719,6 +140904,12 @@ }, /turf/unsimulated/floor, /area/antag/jockey) +"uke" = ( +/obj/effect/map_effect/window_spawner/full/reinforced/polarized/firedoor{ + id = "library" + }, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/hydroponics/garden) "ukf" = ( /obj/structure/window/shuttle/scc_space_ship, /obj/structure/grille, @@ -141647,6 +141838,15 @@ }, /turf/simulated/floor/tiled, /area/hallway/primary/central_one) +"upJ" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/structure/flora/ausbushes/sparsegrass, +/obj/machinery/portable_atmospherics/hydroponics/soil, +/obj/structure/engineer_maintenance/pipe/wall, +/turf/simulated/floor/grass/no_edge, +/area/horizon/hydroponics/garden) "upT" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 @@ -141669,14 +141869,6 @@ /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled, /area/horizon/security/investigations_hallway) -"uqi" = ( -/obj/structure/table/rack, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/machinery/light/small{ - dir = 8 - }, -/turf/unsimulated/floor/dark_monotile, -/area/antag/actor) "uql" = ( /obj/machinery/light{ dir = 4 @@ -141984,6 +142176,12 @@ /obj/structure/window/shuttle/scc_space_ship, /turf/simulated/floor/plating, /area/horizon/security/brig) +"usz" = ( +/obj/effect/floor_decal/corner/dark_green{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/horizon/hallway/deck_two/fore) "usA" = ( /obj/machinery/light/small{ dir = 8 @@ -142229,6 +142427,19 @@ }, /turf/simulated/floor/plating, /area/maintenance/wing/starboard) +"uuB" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/obj/effect/floor_decal/corner/dark_blue{ + dir = 8 + }, +/obj/effect/floor_decal/corner/yellow{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/visible/purple, +/turf/simulated/floor/tiled/dark, +/area/engineering/engine_room/turbine) "uuD" = ( /obj/structure/disposalpipe/segment{ dir = 4; @@ -143136,18 +143347,6 @@ }, /turf/unsimulated/floor, /area/centcom/legion/hangar5) -"uAP" = ( -/obj/structure/disposalpipe/segment{ - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/turf/simulated/floor/tiled/dark/full, -/area/horizon/commissary) "uAQ" = ( /obj/machinery/light/small{ dir = 8 @@ -144159,6 +144358,15 @@ "uIC" = ( /turf/unsimulated/floor/rubber_carpet, /area/centcom/control) +"uID" = ( +/obj/effect/floor_decal/spline/plain/lime{ + dir = 6 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/commissary) "uIE" = ( /obj/structure/table/rack, /obj/item/circuitboard/telecomms/processor, @@ -144680,26 +144888,6 @@ /obj/machinery/power/outlet, /turf/simulated/floor/tiled/dark/full, /area/shuttle/intrepid/buffet) -"uLY" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable/green{ - icon_state = "4-8"; - d1 = 4; - d2 = 8 - }, -/turf/simulated/floor/wood, -/area/horizon/library) "uMi" = ( /obj/effect/floor_decal/spline/plain{ dir = 4 @@ -144811,18 +144999,6 @@ /obj/structure/lattice/catwalk/indoor/grate/dark, /turf/simulated/floor, /area/maintenance/engineering_ladder) -"uNr" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/obj/effect/floor_decal/corner/dark_green{ - dir = 9 - }, -/obj/effect/floor_decal/spline/plain/lime{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/horizon/hallway/deck_two/fore) "uNu" = ( /obj/machinery/hologram/holopad, /obj/structure/disposalpipe/segment, @@ -144904,6 +145080,15 @@ }, /turf/unsimulated/floor/wood, /area/centcom/bar) +"uOe" = ( +/obj/machinery/vending/zora, +/obj/machinery/alarm/south, +/obj/machinery/light{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/hatch/operations, +/turf/simulated/floor/tiled/full, +/area/horizon/commissary) "uOh" = ( /obj/structure/table/standard, /obj/effect/floor_decal/corner/mauve{ @@ -144921,6 +145106,20 @@ /obj/structure/table/wood, /turf/simulated/floor/holofloor/lino, /area/horizon/holodeck/source_theatre) +"uOl" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 4 + }, +/obj/structure/table/wood, +/obj/random/pottedplant_small{ + pixel_x = -4; + pixel_y = 6 + }, +/turf/simulated/floor/wood, +/area/horizon/hallway/deck_two/fore) "uOq" = ( /obj/structure/table/standard, /obj/effect/floor_decal/corner_wide/paleblue{ @@ -145249,11 +145448,6 @@ /obj/effect/map_effect/window_spawner/full/reinforced/indestructible, /turf/unsimulated/floor/plating, /area/centcom/specops) -"uRh" = ( -/obj/machinery/seed_storage/garden, -/obj/effect/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/dark/full, -/area/horizon/hydroponics/garden) "uRq" = ( /obj/structure/flora/ausbushes/fullgrass, /obj/structure/flora/ausbushes/ppflowers, @@ -146442,6 +146636,12 @@ }, /turf/simulated/floor/tiled/dark, /area/shuttle/merchant) +"uZE" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/floor/lino/diamond, +/area/horizon/library) "uZF" = ( /obj/effect/floor_decal/industrial/warning{ dir = 4 @@ -147108,14 +147308,6 @@ }, /turf/simulated/floor/tiled/white, /area/rnd/test_range) -"veq" = ( -/obj/machinery/smartfridge/secure, -/obj/machinery/door/blast/shutters{ - dir = 4; - id = "horizon_commissary_desk" - }, -/turf/simulated/floor/tiled/dark/full, -/area/horizon/commissary) "ver" = ( /obj/structure/cable/green{ icon_state = "1-4" @@ -147234,26 +147426,6 @@ }, /turf/simulated/floor/tiled/full, /area/maintenance/substation/engineering) -"veZ" = ( -/obj/structure/table/rack/folding_table, -/obj/item/material/folding_table, -/obj/item/material/folding_table, -/obj/item/material/folding_table, -/obj/item/material/folding_table, -/obj/item/material/stool/chair/folding{ - pixel_y = 13 - }, -/obj/item/material/stool/chair/folding{ - pixel_y = 13 - }, -/obj/item/material/stool/chair/folding{ - pixel_y = 13 - }, -/obj/item/material/stool/chair/folding{ - pixel_y = 13 - }, -/turf/simulated/floor/plating, -/area/maintenance/wing/cargo_compartment) "vfa" = ( /obj/structure/railing/mapped{ dir = 8 @@ -147420,20 +147592,6 @@ icon_state = "white" }, /area/centcom/legion) -"vgq" = ( -/obj/effect/floor_decal/spline/plain/lime{ - dir = 9 - }, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/turf/simulated/floor/tiled/dark, -/area/horizon/commissary) "vgr" = ( /turf/simulated/wall/shuttle/scc_space_ship/cardinal, /area/bridge/aibunker) @@ -147543,15 +147701,6 @@ /obj/item/device/radio/intercom/north, /turf/simulated/floor/tiled, /area/security/checkpoint2) -"vhd" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/horizon/hallway/deck_two/fore) "vhf" = ( /obj/machinery/light{ dir = 8 @@ -147584,22 +147733,6 @@ }, /turf/simulated/floor/tiled/white, /area/medical/reception) -"vhG" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/structure/cable/green{ - icon_state = "1-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled/full, -/area/hallway/primary/central_two) "vhJ" = ( /obj/effect/floor_decal/spline/fancy/wood{ dir = 1 @@ -147990,6 +148123,23 @@ name = "mossy grass" }, /area/horizon/holodeck/source_konyang) +"vkf" = ( +/obj/effect/floor_decal/spline/plain/lime{ + dir = 4 + }, +/obj/structure/sink/kitchen{ + dir = 8; + name = "sink"; + pixel_x = 21 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/dark, +/area/horizon/hydroponics/garden) "vkq" = ( /turf/simulated/wall/shuttle/unique/ert{ icon_state = "0,2" @@ -148201,13 +148351,6 @@ /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled, /area/horizon/security/investigations_hallway) -"vmK" = ( -/obj/item/modular_computer/console/preset/civilian, -/obj/machinery/light/small{ - dir = 8 - }, -/turf/unsimulated/floor/marble, -/area/antag/wizard) "vmM" = ( /obj/effect/floor_decal/corner/red{ dir = 5 @@ -148639,20 +148782,6 @@ }, /turf/simulated/floor/tiled, /area/horizon/crew_quarters/cryo/living_quarters_lift) -"vpn" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 4 - }, -/obj/structure/table/wood, -/obj/random/pottedplant_small{ - pixel_x = -4; - pixel_y = 6 - }, -/turf/simulated/floor/wood, -/area/horizon/hallway/deck_two/fore) "vpq" = ( /obj/machinery/light{ dir = 4 @@ -148957,24 +149086,6 @@ /obj/item/hullbeacon/red, /turf/simulated/floor/reinforced/airless, /area/engineering/engine_room/rust) -"vrw" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/structure/disposalpipe/junction{ - dir = 8 - }, -/obj/structure/cable/green{ - icon_state = "4-8"; - d1 = 4; - d2 = 8 - }, -/obj/machinery/hologram/holopad, -/turf/simulated/floor/wood, -/area/horizon/library) "vrH" = ( /obj/structure/curtain/open/shower/security, /obj/effect/floor_decal/spline/fancy/wood{ @@ -149407,6 +149518,24 @@ }, /turf/simulated/floor/reinforced/phoron, /area/engineering/atmos) +"vuF" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/structure/disposalpipe/junction{ + dir = 8 + }, +/obj/structure/cable/green{ + icon_state = "4-8"; + d1 = 4; + d2 = 8 + }, +/obj/machinery/hologram/holopad, +/turf/simulated/floor/wood, +/area/horizon/library) "vuJ" = ( /obj/structure/ship_weapon_dummy, /turf/simulated/wall/shuttle/unique/scc/scout{ @@ -149449,29 +149578,6 @@ }, /turf/unsimulated/floor/plating, /area/shuttle/transport1) -"vvu" = ( -/obj/structure/table/rack/retail_shelf, -/obj/random/loot{ - pixel_x = 8; - pixel_y = 12 - }, -/obj/machinery/light/small{ - dir = 4 - }, -/obj/random/loot{ - pixel_x = -7; - pixel_y = 12 - }, -/obj/random/loot{ - pixel_x = -7; - pixel_y = -2 - }, -/obj/random/loot{ - pixel_x = 8; - pixel_y = -2 - }, -/turf/simulated/floor/tiled/dark/full, -/area/horizon/commissary) "vvv" = ( /obj/effect/floor_decal/corner/dark_blue{ dir = 9 @@ -149487,24 +149593,6 @@ /obj/item/device/radio/intercom/west, /turf/simulated/floor/wood, /area/chapel/main) -"vvy" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/structure/cable/green{ - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled/full, -/area/hallway/primary/central_one) "vvG" = ( /obj/machinery/porta_turret/cannon, /obj/effect/floor_decal/industrial/warning/full, @@ -150019,29 +150107,6 @@ }, /turf/simulated/floor/tiled/white, /area/rnd/conference) -"vzs" = ( -/obj/structure/table/reinforced/steel, -/obj/machinery/camera/network/service{ - c_tag = "Second Deck - Commissary Backroom"; - dir = 1 - }, -/obj/item/paper_bin{ - pixel_y = 5; - pixel_x = -3 - }, -/obj/item/pen/black{ - pixel_x = -3; - pixel_y = 6 - }, -/obj/random/lavalamp{ - pixel_x = 8; - pixel_y = 3 - }, -/obj/machinery/light/small{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark/full, -/area/horizon/commissary) "vzu" = ( /obj/effect/floor_decal/spline/fancy/wood{ dir = 10 @@ -150442,6 +150507,12 @@ /obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/tiled, /area/security/checkpoint2) +"vCe" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/wing/cargo_compartment) "vCj" = ( /obj/machinery/alarm/east, /obj/effect/floor_decal/spline/plain{ @@ -150599,6 +150670,18 @@ /obj/effect/decal/fake_object/light_source/invisible, /turf/simulated/floor, /area/tdome/tdome2) +"vDi" = ( +/obj/effect/floor_decal/spline/plain/lime{ + dir = 6 + }, +/obj/machinery/disposal/small/west, +/obj/machinery/power/apc/east, +/obj/structure/cable/green, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/horizon/hydroponics/garden) "vDj" = ( /obj/machinery/light{ dir = 4 @@ -151029,13 +151112,6 @@ /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/tiled/full, /area/operations/storage) -"vFP" = ( -/obj/effect/floor_decal/spline/fancy/wood, -/obj/structure/bed/stool/bar/padded/red{ - dir = 1 - }, -/turf/simulated/floor/wood, -/area/horizon/library) "vFQ" = ( /obj/machinery/shower{ pixel_y = 20 @@ -151751,18 +151827,6 @@ /obj/machinery/newscaster/west, /turf/simulated/floor/wood, /area/chapel/office) -"vNj" = ( -/obj/effect/floor_decal/corner/dark_green{ - dir = 10 - }, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/hallway/primary/central_two) "vNk" = ( /obj/effect/floor_decal/corner/green/diagonal, /obj/structure/engineer_maintenance/pipe/wall, @@ -151855,18 +151919,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/dark, /area/turret_protected/ai_upload_foyer) -"vOy" = ( -/obj/structure/cable/green{ - icon_state = "2-8" - }, -/obj/structure/disposalpipe/segment{ - icon_state = "pipe-c" - }, -/obj/effect/floor_decal/spline/plain/lime{ - dir = 5 - }, -/turf/simulated/floor/tiled/dark, -/area/horizon/hydroponics/garden) "vOE" = ( /obj/effect/floor_decal/corner/red/diagonal, /obj/effect/floor_decal/spline/plain, @@ -151997,10 +152049,6 @@ /obj/structure/grille, /turf/space/dynamic, /area/template_noop) -"vPz" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/wood, -/area/horizon/library) "vPA" = ( /obj/effect/floor_decal/corner/dark_green{ dir = 6 @@ -152014,30 +152062,6 @@ /obj/structure/ship_weapon_dummy, /turf/template_noop, /area/horizon/grauwolf) -"vPJ" = ( -/obj/structure/table/wood, -/obj/machinery/power/outlet, -/obj/item/paper_bin{ - pixel_x = 5; - pixel_y = 12 - }, -/obj/item/pen{ - pixel_x = 5; - pixel_y = 13 - }, -/obj/item/paper/crumpled{ - pixel_x = -8; - pixel_y = 7 - }, -/obj/item/toy/desk/fan{ - pixel_x = -1; - pixel_y = -6 - }, -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/carpet/red, -/area/horizon/library) "vPK" = ( /obj/structure/disposalpipe/segment{ dir = 4; @@ -152156,15 +152180,6 @@ }, /turf/simulated/floor/tiled, /area/operations/lobby) -"vQE" = ( -/obj/effect/floor_decal/corner/dark_green{ - dir = 9 - }, -/obj/effect/floor_decal/spline/plain/lime{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/horizon/hallway/deck_two/fore) "vQG" = ( /obj/structure/toilet{ dir = 4; @@ -152493,14 +152508,6 @@ /obj/structure/window/shuttle/scc_space_ship, /turf/simulated/floor/plating, /area/horizon/maintenance/deck_three/aft/starboard) -"vTj" = ( -/obj/structure/bed/stool/chair/sofa/corner/convex/red{ - dir = 4 - }, -/obj/item/device/radio/intercom/west, -/obj/structure/engineer_maintenance/pipe/wall, -/turf/simulated/floor/carpet/red, -/area/horizon/library) "vTk" = ( /obj/effect/floor_decal/industrial/hatch/yellow, /obj/machinery/door/firedoor, @@ -152730,6 +152737,13 @@ }, /turf/simulated/floor/plating, /area/shuttle/transport1) +"vUr" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 10 + }, +/obj/structure/trash_pile, +/turf/simulated/floor/plating, +/area/maintenance/wing/cargo_compartment) "vUt" = ( /obj/effect/floor_decal/industrial/warning{ dir = 10 @@ -153577,6 +153591,13 @@ }, /turf/simulated/floor/tiled/dark, /area/hangar/auxiliary) +"waG" = ( +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 1 + }, +/obj/random/junk, +/turf/simulated/floor/plating, +/area/maintenance/wing/cargo_compartment) "waH" = ( /obj/effect/floor_decal/corner/white/diagonal, /obj/machinery/door/airlock{ @@ -153645,6 +153666,13 @@ /obj/effect/floor_decal/industrial/outline/custodial, /turf/simulated/floor/tiled, /area/horizon/custodial) +"wbi" = ( +/obj/structure/table/wood, +/obj/machinery/librarycomp{ + pixel_y = 4 + }, +/turf/simulated/floor/carpet/red, +/area/horizon/library) "wbo" = ( /obj/random/junk, /obj/effect/floor_decal/industrial/outline/grey, @@ -153913,14 +153941,12 @@ }, /turf/simulated/floor/tiled/white, /area/medical/gen_treatment) -"wdB" = ( -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/effect/floor_decal/spline/plain{ - dir = 1 +"wdH" = ( +/obj/structure/shuttle_part/scc_space_ship{ + icon_state = "d2-2" }, -/obj/machinery/vending/mredispenser, -/turf/simulated/floor/tiled/dark, -/area/hallway/primary/central_one) +/turf/simulated/wall, +/area/maintenance/wing/cargo_compartment) "wdM" = ( /obj/structure/cable/green{ icon_state = "4-8" @@ -157171,13 +157197,6 @@ }, /turf/unsimulated/floor/plating, /area/centcom/legion/hangar5) -"wBa" = ( -/obj/effect/floor_decal/corner/dark_green/diagonal, -/obj/effect/floor_decal/spline/plain/lime{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/horizon/hallway/deck_two/fore) "wBd" = ( /obj/effect/floor_decal/corner/dark_green{ dir = 5 @@ -157523,13 +157542,6 @@ }, /turf/unsimulated/floor, /area/centcom/bar) -"wDC" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 4 - }, -/obj/machinery/photocopier, -/turf/simulated/floor/wood, -/area/horizon/library) "wDF" = ( /obj/machinery/recharge_station, /obj/effect/floor_decal/industrial/hatch/yellow, @@ -158167,6 +158179,30 @@ }, /turf/simulated/floor/tiled, /area/rnd/hallway/secondary) +"wHv" = ( +/obj/structure/table/wood, +/obj/machinery/power/outlet, +/obj/item/paper_bin{ + pixel_x = 5; + pixel_y = 12 + }, +/obj/item/pen{ + pixel_x = 5; + pixel_y = 13 + }, +/obj/item/paper/crumpled{ + pixel_x = -8; + pixel_y = 7 + }, +/obj/item/toy/desk/fan{ + pixel_x = -1; + pixel_y = -6 + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/carpet/red, +/area/horizon/library) "wHy" = ( /obj/effect/floor_decal/corner/dark_blue{ dir = 9 @@ -158425,26 +158461,6 @@ "wJB" = ( /turf/simulated/open, /area/horizon/security/investigations_hallway) -"wJF" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/floor_decal/corner/dark_green{ - dir = 6 - }, -/obj/structure/cable/green{ - icon_state = "4-8"; - d1 = 4; - d2 = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/horizon/hallway/deck_two/fore) "wJJ" = ( /obj/effect/map_effect/marker/airlock/docking{ landmark_tag = "nav_horizon_dock_deck_3_starboard_2"; @@ -158560,10 +158576,6 @@ }, /turf/simulated/floor/tiled/dark/full, /area/engineering/engine_room) -"wKI" = ( -/obj/structure/bookcase/libraryspawn/religion, -/turf/simulated/floor/tiled/dark/full, -/area/horizon/library) "wKO" = ( /obj/machinery/camera/network/engineering{ c_tag = "Engineering - Supermatter Reactor Monitoring"; @@ -158690,6 +158702,14 @@ }, /turf/simulated/floor/shuttle/dark_blue, /area/shuttle/transport1) +"wLJ" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 1 + }, +/obj/structure/disposalpipe/trunk, +/obj/machinery/disposal/small/south, +/turf/simulated/floor/wood, +/area/horizon/library) "wLL" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -158976,6 +158996,9 @@ }, /turf/simulated/floor/marble, /area/horizon/holodeck/source_trinary) +"wNE" = ( +/turf/simulated/floor/tiled/dark/full, +/area/maintenance/wing/cargo_compartment) "wNG" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 6 @@ -159169,11 +159192,6 @@ }, /turf/simulated/floor/tiled/dark, /area/horizon/holodeck_control/beta) -"wOx" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/structure/reagent_dispensers/fueltank, -/turf/simulated/floor/tiled/dark/full, -/area/maintenance/wing/cargo_compartment) "wOB" = ( /obj/machinery/porta_turret, /obj/effect/floor_decal/industrial/warning/full, @@ -159269,6 +159287,12 @@ }, /turf/simulated/floor/carpet/rubber, /area/hallway/primary/central_one) +"wPf" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/turf/unsimulated/floor/linoleum, +/area/antag/actor) "wPo" = ( /obj/structure/dispenser/oxygen, /obj/effect/floor_decal/industrial/outline/yellow, @@ -160557,6 +160581,10 @@ }, /turf/simulated/floor/grass/no_edge, /area/centcom/holding) +"wYm" = ( +/obj/structure/foamedmetal, +/turf/simulated/floor/plating, +/area/maintenance/wing/cargo_compartment) "wYp" = ( /obj/structure/sign/fire{ desc = "A caution sign which reads 'STARBOARD PROPULSION'."; @@ -161010,13 +161038,6 @@ }, /turf/simulated/floor/tiled/dark, /area/horizon/bar) -"xbx" = ( -/obj/machinery/firealarm/west, -/obj/structure/flora/ausbushes/sparsegrass, -/obj/machinery/portable_atmospherics/hydroponics/soil, -/obj/structure/engineer_maintenance/electric/wall, -/turf/simulated/floor/grass/no_edge, -/area/horizon/hydroponics/garden) "xbz" = ( /obj/structure/table/wood, /obj/item/material/ashtray/bronze{ @@ -161121,6 +161142,11 @@ /obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/tiled/dark, /area/rnd/xenobiology/xenoflora) +"xbU" = ( +/obj/machinery/seed_storage/garden, +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/hydroponics/garden) "xbX" = ( /obj/structure/table/rack, /obj/item/clothing/under/color/green, @@ -161828,6 +161854,11 @@ /obj/machinery/atmospherics/pipe/manifold/hidden/supply, /turf/simulated/floor/tiled, /area/medical/morgue/lower) +"xgF" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/space_heater, +/turf/simulated/floor/tiled/dark/full, +/area/maintenance/wing/cargo_compartment) "xgG" = ( /obj/effect/floor_decal/corner/brown{ dir = 10 @@ -162006,13 +162037,6 @@ }, /turf/simulated/floor/tiled/dark, /area/bridge/aibunker) -"xig" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 10 - }, -/obj/structure/trash_pile, -/turf/simulated/floor/plating, -/area/maintenance/wing/cargo_compartment) "xij" = ( /obj/machinery/power/smes/buildable/horizon_shuttle{ RCon_tag = "Spark" @@ -162394,15 +162418,6 @@ }, /turf/simulated/floor/wood, /area/horizon/crew_quarters/lounge/bar) -"xkF" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 5 - }, -/obj/structure/bed/stool/chair/padded/red{ - dir = 4 - }, -/turf/simulated/floor/wood, -/area/horizon/hallway/deck_two/fore) "xkG" = ( /obj/effect/floor_decal/industrial/hatch/yellow, /obj/effect/floor_decal/industrial/warning{ @@ -162566,27 +162581,6 @@ }, /turf/simulated/floor/exoplanet/barren/raskara, /area/centcom/shared_dream) -"xlx" = ( -/obj/machinery/door/firedoor{ - req_one_access = list(24,11,67,73); - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/door/airlock/glass_mining{ - dir = 4; - name = "Commissary Backroom"; - req_one_access = list(26,29,31,48,67,35,25,28,37) - }, -/turf/simulated/floor/tiled/dark/full, -/area/horizon/commissary) "xlA" = ( /obj/effect/floor_decal/spline/plain{ dir = 8 @@ -162910,6 +162904,10 @@ }, /turf/simulated/floor/wood, /area/crew_quarters/heads/hor) +"xoa" = ( +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/wood, +/area/horizon/library) "xof" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 1 @@ -163031,6 +163029,14 @@ }, /turf/simulated/floor/reinforced/airless, /area/template_noop) +"xpr" = ( +/obj/machinery/smartfridge/secure, +/obj/machinery/door/blast/shutters{ + dir = 4; + id = "horizon_commissary_desk" + }, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/commissary) "xpv" = ( /obj/effect/floor_decal/corner/dark_green/full, /obj/structure/railing/mapped, @@ -163557,6 +163563,14 @@ /obj/effect/floor_decal/industrial/outline/yellow, /turf/unsimulated/floor, /area/antag/mercenary) +"xtj" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 5 + }, +/obj/machinery/bookbinder, +/obj/structure/engineer_maintenance/electric/wall, +/turf/simulated/floor/wood, +/area/horizon/library) "xtl" = ( /obj/effect/floor_decal/corner/dark_green{ dir = 10 @@ -163769,15 +163783,6 @@ /obj/effect/decal/fake_object/light_source/invisible, /turf/simulated/floor/holofloor/tiled/dark, /area/tdome/tdome2) -"xux" = ( -/obj/effect/floor_decal/corner/grey{ - dir = 9 - }, -/obj/machinery/light/small{ - dir = 8 - }, -/turf/unsimulated/floor/dark, -/area/antag/actor) "xuC" = ( /obj/machinery/mineral/stacking_machine{ id = "horizon_stacking_1"; @@ -164604,6 +164609,18 @@ /obj/effect/floor_decal/industrial/outline/red, /turf/simulated/floor/holofloor/carpet/rubber, /area/horizon/holodeck/source_basketball) +"xAB" = ( +/obj/effect/floor_decal/corner/dark_green{ + dir = 10 + }, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled, +/area/hallway/primary/central_two) "xAF" = ( /obj/effect/floor_decal/industrial/warning{ dir = 8 @@ -165073,6 +165090,12 @@ /obj/structure/bed/stool/chair/sofa/left/brown, /turf/simulated/floor/wood, /area/medical/psych) +"xEb" = ( +/obj/effect/map_effect/window_spawner/full/reinforced/polarized/firedoor{ + id = "library" + }, +/turf/simulated/floor/tiled/dark/full, +/area/horizon/commissary) "xEh" = ( /obj/structure/shuttle/engine/heater{ dir = 1 @@ -165339,6 +165362,15 @@ }, /turf/simulated/floor/tiled/dark, /area/engineering/atmos/propulsion/starboard) +"xGT" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 5 + }, +/obj/structure/bed/stool/chair/padded/red{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/horizon/hallway/deck_two/fore) "xGU" = ( /obj/effect/floor_decal/corner/lime{ dir = 5 @@ -167014,14 +167046,6 @@ /obj/structure/bed/stool/chair/office/dark, /turf/simulated/floor/tiled/white, /area/rnd/telesci) -"xRM" = ( -/obj/item/crowbar, -/obj/structure/table/rack, -/obj/machinery/light/small{ - dir = 8 - }, -/turf/unsimulated/floor/marble, -/area/antag/wizard) "xRN" = ( /obj/machinery/door/blast/regular{ id = "iso_b_purge"; @@ -167611,25 +167635,15 @@ "xWA" = ( /turf/simulated/floor/tiled, /area/horizon/hallway/deck_two/fore) -"xWB" = ( -/obj/effect/floor_decal/spline/fancy/wood{ +"xWD" = ( +/obj/structure/window/reinforced{ dir = 8 }, -/obj/structure/disposalpipe/segment{ - dir = 4 +/obj/effect/landmark/start{ + name = "Librarian" }, -/obj/structure/cable/green{ - icon_state = "4-8"; - d1 = 4; - d2 = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/wood, +/obj/structure/bed/stool/chair/office/light, +/turf/simulated/floor/lino/diamond, /area/horizon/library) "xWF" = ( /obj/effect/floor_decal/corner_wide/lime/diagonal, @@ -168073,21 +168087,6 @@ }, /turf/simulated/floor/shuttle/dark_blue, /area/shuttle/escape_pod/pod4) -"xZF" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/structure/disposalpipe/junction, -/obj/structure/lattice/catwalk/indoor/grate, -/turf/simulated/floor/plating, -/area/horizon/hallway/deck_two/fore) "xZI" = ( /obj/machinery/door/airlock/command{ dir = 4; @@ -168143,6 +168142,21 @@ /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, /turf/simulated/floor/plating, /area/maintenance/wing/starboard) +"xZR" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled/full, +/area/hallway/primary/central_one) "xZS" = ( /turf/simulated/floor/tiled/dark, /area/bridge/aibunker) @@ -169145,6 +169159,21 @@ /obj/machinery/atmospherics/unary/vent_scrubber/on, /turf/simulated/floor/tiled, /area/operations/storage) +"ygm" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/structure/disposalpipe/junction, +/obj/structure/lattice/catwalk/indoor/grate, +/turf/simulated/floor/plating, +/area/horizon/hallway/deck_two/fore) "ygu" = ( /obj/structure/bed/stool/chair/padded/black, /turf/unsimulated/floor{ @@ -169653,31 +169682,6 @@ /obj/structure/lattice/catwalk/indoor, /turf/simulated/floor/plating, /area/engineering/smes/rust) -"yjx" = ( -/obj/structure/cable/green{ - icon_state = "4-8"; - d1 = 4; - d2 = 8 - }, -/obj/machinery/door/firedoor{ - req_one_access = list(24,11,67,73); - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/door/airlock/glass_service{ - dir = 8; - name = "Library" - }, -/turf/simulated/floor/tiled/full, -/area/horizon/library) "yjB" = ( /obj/effect/floor_decal/corner/white/diagonal, /obj/effect/floor_decal/spline/plain{ @@ -169965,10 +169969,6 @@ /obj/structure/shuttle/engine/propulsion/burst/left, /turf/simulated/wall/shuttle/space_ship/mercenary, /area/shuttle/burglar) -"ylt" = ( -/obj/structure/bookcase/libraryspawn/reference, -/turf/simulated/floor/tiled/dark/full, -/area/horizon/library) "ylx" = ( /obj/machinery/door/firedoor{ req_one_access = list(24,11,67,73) @@ -203862,7 +203862,7 @@ wbO oDB rHK rHK -gQh +fui rHK rHK kuh @@ -210800,7 +210800,7 @@ wqs vLR xSJ kaN -lMk +nSz lYh xSJ hya @@ -212081,7 +212081,7 @@ xSJ xSJ xSJ oYl -eyF +uuB atv hRV nzn @@ -255811,10 +255811,10 @@ bNt usX sbX mCW -kHW -kHW -kHW -jaw +gUM +gUM +gUM +rCe jjj eSV eSV @@ -256068,10 +256068,10 @@ bNt obB mNY sDO -kHW -mbi -aqf -ooS +gUM +lkG +vCe +wdH vUJ eSV eSV @@ -256325,11 +256325,11 @@ bNt wBC mNY pfA -nkM -hJm -hJm -qfg -jaw +qwD +akj +akj +rlk +rCe jjj eSV eSV @@ -256582,11 +256582,11 @@ gef eCN jij grI -kHW -xig -hJm -cyE -ooS +gUM +vUr +akj +qzA +wdH vUJ eSV eSV @@ -256839,12 +256839,12 @@ gef wrL ixE rbP -kHW -kHW -hNq -kHW -kHW -jaw +gUM +gUM +sjx +gUM +gUM +rCe jjj eSV eSV @@ -257096,12 +257096,12 @@ gef hHn cNr nZP -kHW -bXs -hJm -jbY -nth -ooS +gUM +rSA +akj +slm +dbV +wdH vUJ eSV eSV @@ -257353,13 +257353,13 @@ uOG jZU hYV vZG -kHW -tLc -hJm -aJW -aqf -kHW -hUd +gUM +oxo +akj +fWX +vCe +gUM +hDa jjj eSV eSV @@ -257610,13 +257610,13 @@ rvG hHn rCo vsJ -kHW -iEs -hJm -tTI -wOx -kHW -aCd +gUM +xgF +akj +wNE +gUv +gUM +tSc vUJ eSV eSV @@ -257867,14 +257867,14 @@ gef kRU fPX nAh -kHW -nLv -oWl -tTI -kqC -kHW -pYz -hUd +gUM +tbH +psd +wNE +tDp +gUM +wYm +hDa jjj eSV eSV @@ -258124,14 +258124,14 @@ sTH oeR ozd pfA -kHW -ucm -jOy -fVt -rZR -kHW -kHW -ooS +gUM +sGI +jES +lSY +hqL +gUM +gUM +wdH vUJ eSV eSV @@ -258379,14 +258379,14 @@ neJ pDT cfc eac -aXK -eXu -auv -jvI -cRr -jbY -veZ -kHW +cas +hLg +kAR +pZD +oaI +slm +mbm +gUM tvh wyO gag @@ -258638,12 +258638,12 @@ mFQ lvG rYl mHK -kHW -hdF -toh -rQk -fmh -kHW +gUM +jjV +jys +waG +rWW +gUM rqy iho bYo @@ -264557,7 +264557,7 @@ veE nnB bCj iKf -esa +alg hmS hmS hmS @@ -264814,7 +264814,7 @@ kpG kLO fHS iKf -gAq +lgU mKg oRt kHY @@ -265565,7 +265565,7 @@ wRN fGX rKl ngN -aVi +fJe lix jkC reV @@ -267383,7 +267383,7 @@ iLo iLo eJC eJC -aTp +nlA eJC iKf dsW @@ -267630,21 +267630,21 @@ oSe akX rrL kdm -aWG -htE -eyu +bgd +cGp +mSA wnM -nuw +eOF wlx wtG uio vhf -bkZ -wBa -xkF -vpn -cNI -pOI +rhK +rSq +xGT +uOl +sZB +cRA vbB fkq yeR @@ -267890,18 +267890,18 @@ gvi igT xWA xWA -vhd +mJH xWA wxR kYs -vQE -vQE -uNr -jvu +edA +edA +ets +bZV dXg dXg dXg -jgM +bcW ibE qBj ooh @@ -268141,13 +268141,13 @@ mwa mwa mwa lsl -alb -vNj -tyW -tpU -lWM +trP +xAB +jeF +fTL +hbC idI -xZF +ygm idI paT wAf @@ -268390,19 +268390,19 @@ auW pMR wWs xGE -loE -rgg -mUW -aJf -mWc -saN -tzZ -kJg -vhG +gqO +maw +eCd +alw +qvn +sCC +kti +bDy +jso rrL gvi igT -oMu +hAr xWA miG xWA @@ -268647,22 +268647,22 @@ sss pMR wWs ePj -hjd +xZR jna nSy hwH rbI -fjb +hEp lFh -sPD +bqs lFh nhp kdm -pLo -wJF -fNE -fNE -grK +pqJ +qmk +usz +usz +kWh gcr wtG ltT @@ -268904,20 +268904,20 @@ auW tUc lHh xGE -cGg +tdo cBm fID fID kJh -nML +fVb kJh fID fID dLA dLA -fbW -yjx -fbW +bok +jUU +bok dLA dLA bSl @@ -269164,21 +269164,21 @@ pMj tmE oiJ fID -lrU -oSE -nNi -dpr -rod +hpk +rMC +dmy +qSZ +uOe fID -vTj -cdk +ewB +tcE bLe -xWB -ePD -vPJ -sUN +kTq +wbi +wHv +igc bSl -xbx +jYO dGQ xqC eFY @@ -269418,23 +269418,23 @@ dIX dIX dIX wJA -mOg +mas xPN kJh -rMu -rFv -qhY -rUC -rMu -ajt +tcn +rNQ +omt +cLZ +tcn +xEb aZp -pRg -kUJ -eDA -cWL -cWL -cfO -mqM +nCf +pty +oLh +jMk +jMk +rJE +uke dcJ myI dyh @@ -269675,23 +269675,23 @@ nKf nKf nKf jKr -vvy +nNq gEi kJh -rMu -rFv -euv -rUC -pnT -ajt -rLv -dda -jPM -vrw -vPz -app -qZA -mqM +tcn +rNQ +lRz +cLZ +lgv +xEb +wLJ +xoa +hFs +vuF +tzG +oal +gSp +uke dcJ yeX sPj @@ -269935,21 +269935,21 @@ xGE akU gEi fID -kPM -kzq -qrM -cPO -rge +ktM +pFc +goC +bsJ +eeR fID -hUX -wDC -hFV -aNQ -eEp -vFP -fBC +xtj +dTn +nSh +apX +pVH +kRv +mwh bSl -iRz +upJ cwL jVp sMy @@ -270192,22 +270192,22 @@ vQP sZQ hpE fID -xlx -veq -rMk -qOl +hWU +xpr +pHm +mZX fID fID -aeT -amF -pTJ -uLY -pvi -vFP -iUV +sQy +xWD +cfo +lzs +sgt +kRv +lpF bSl -gfa -nUI +mWS +cqS fNl rrJ cpI @@ -270449,22 +270449,22 @@ vQP sZQ gEi kJh -uAP -vgq -nGl -iqe -vzs +etv +lbj +nKV +abl +lNC fID -gBU -qAT -hws -dSp -mUd +fZo +uZE +rdk +ujH +swA jZD -ylt +rJB bSl -tqU -szn +gNR +pDC bEb mEy nKI @@ -270473,7 +270473,7 @@ iHp bEY tOs muS -nWS +gjV cpI kuR nHw @@ -270706,22 +270706,22 @@ vQP sZQ gEi kJh -ghu -sew -jEM -qoC -vvu +oMY +mSP +ewh +uID +fjs fID -rsj -bvS -cTe -clL -eQi -gpI -wKI +sPC +ngR +fJl +dGa +lkk +jmj +fvu bSl -uRh -szn +xbU +pDC fAA wNc nKI @@ -270966,21 +270966,21 @@ fID fID fID fID -bOh +krP fID fID dLA dLA dLA dLA -kqH -qST -tQG +mwS +lmV +bqf bSl -agn -vOy -cdC -fJo +lNv +jFx +vkf +vDi nKI eMc snV @@ -271209,7 +271209,7 @@ eWb nDk cqk thB -wdB +fZG owH lPG wPd @@ -271219,7 +271219,7 @@ jYj vQP vTN wNb -mRE +eMo eVC xfq kkx @@ -271231,7 +271231,7 @@ wNq pFY dLA dLA -fSC +osj dLA bSl bSl @@ -271466,7 +271466,7 @@ rBS sFq rEg thB -aoY +sgc eNh lfC imq @@ -271485,11 +271485,11 @@ icP uIl efg efg -fqP +sbR wNq wNq wNq -qrF +qrf wNq wNq wNq @@ -272524,7 +272524,7 @@ aZM pSr dhs cpI -tQa +gRY hNk hNk hNk @@ -272782,7 +272782,7 @@ lFt lZJ cpI aOk -bWy +iGa xjw ava hNk @@ -412587,11 +412587,11 @@ eSV eSV eSV bru -vmK +tVi tlO oeQ eQO -fuM +pUo bru eSV eSV @@ -413355,7 +413355,7 @@ eSV eSV bru bru -lfT +gsX wZp qam slD @@ -413365,7 +413365,7 @@ eQO slD yjt lfy -xRM +sFp bru bru oQD @@ -417723,9 +417723,9 @@ rQG hoV tZn kqs -msj +hmb oEh -klO +ovy mIw mIw mIw @@ -419006,17 +419006,17 @@ rQG rQG mIw mIw -mcU +clA big wVz wVz wVz -xux +nqA wVz wVz wVz -xux -eBU +nqA +mjk mIw mIw mIw @@ -419262,7 +419262,7 @@ hoV rQG hoV mIw -ozR +sxf bRI iFD iFD @@ -419275,7 +419275,7 @@ iFD iFD kfP mIw -nvp +lJU dPG mIw rZg @@ -419773,8 +419773,8 @@ rQG hoV mIw mIw -uqi -uqi +jfy +jfy mIw jhx bRI @@ -420029,7 +420029,7 @@ eSV rQG hoV mIw -hJE +jAD bhj wnd faA @@ -420817,7 +420817,7 @@ bRI iFD jhR mVV -gxH +wPf oVN mIw wtS diff --git a/sound/attributions.txt b/sound/attributions.txt index 0e24fc755f5..d4a4403f1e6 100644 --- a/sound/attributions.txt +++ b/sound/attributions.txt @@ -138,6 +138,23 @@ sound/machines/steam_pipe3.ogg - "file0571_air_hiss_weak.wav" by beerbelly38. Li sound/machines/steam_pipe4.ogg - "Steam Sewer Ambient" by Geoff-Bremner-Audio. Licensed under CC0. Obtained from https://freesound.org/people/Geoff-Bremner-Audio/sounds/724892/ ATTRIBUTIONS SECTION END +ATTRIBUTIONS SECTOR START +sound/music/regional/venus/all_night.ogg - "All Night" by Rollergirl, licensed under CC BY-NC-SA 3.0. Obtained from https://rollergirl.bandcamp.com/album/rollergirl +sound/music/regional/venus/billy_ocean.ogg - "#billyocean" by Rollergirl, licensed under CC BY-NC-SA 3.0. Obtained from https://rollergirl.bandcamp.com/album/rollergirl +sound/music/regional/venus/artificially_sweetened.ogg - "Artificially Sweetened" by Stevia Sphere, licensed under CC BY 3.0. https://steviasphere.bandcamp.com/album/artificially-sweetened-single +sound/music/regional/venus/real_love.ogg - "Real Love" by Stevia Sphere, licensed under CC BY 3.0. Obtained from https://steviasphere.bandcamp.com/album/artificially-sweetened-single +sound/music/regional/venus/dance.ogg - "Danceさせる" by ウナチャンUNACHAN, licensed under CC BY 3.0. Obtained from https://unachan.bandcamp.com/track/dance +sound/music/regional/venus/love_sensation.ogg - "love sensation" by ウナチャンUNACHAN and bedroomtheft, licensed under CC BY 3.0. Obtained from https://unachan.bandcamp.com/track/love-sensation +sound/music/regional/venus/funky_girl.ogg - "F U N K Y G I R L <3" by B~mO9000, licensed under CC BY-SA 3.0. Obtained from https://bmo9000.bandcamp.com/album/v-i-n-t-a-g-e +sound/music/regional/venus/break_the_system.ogg - "Break The System" by B~mO9000, licensed under CC BY-SA 3.0. Obtained from https://bmo9000.bandcamp.com/album/wanted-in-80s (Download Only) +ATTRIBUTIONS SECTION END + +ATTRIBUTIONS SECTOR START +sound/music/regional/xanu/xanu_rock_1.ogg - "Rise" by Swara Sutra, licensed under CC BY-NC-SA 3.0. Obtained from https://swarasutra.bandcamp.com/track/rise +sound/music/regional/xanu/xanu_rock_2.ogg - "Induldge" by Swara Sutra, licensed under CC BY-NC-SA 3.0. Obtained from https://swarasutra.bandcamp.com/track/indulgence +sound/music/regional/xanu/xanu_rock_3.ogg - "Shimmer" by Swara Sutra, licensed under CC BY-NC-SA 3.0. Obtained from https://swarasutra.bandcamp.com/track/indulgence +ATTRIBUTIONS SECTION END + ATTRIBUTIONS SECTOR START sound/music/lobby/crescent_expanse/crescent_expanse_1.ogg - "Lüüü - Weedance" by Lüüü, licensed under CC BY-NC-SA 3.0. Obtained from https://myprivateunderground.bandcamp.com/track/lu-u-u-weedance sound/music/lobby/crescent_expanse/crescent_expanse_2.ogg - "Little Bradley - Sunset Drive" by Little Bradley, licensed under CC BY-NC 3.0. Obtained from https://myprivateunderground.bandcamp.com/track/little-bradley-sunset-drive @@ -146,8 +163,3 @@ sound/music/lobby/lights_edge/lights_edge_2.ogg - "Running From The Wendigo" by sound/music/lobby/dangerous_space/dangerous_space_1.ogg - "You Can't Kill The Boogeyman" by Karl Casey, licensed under CC BY 3.0. Obtained From https://karlcasey.bandcamp.com/track/you-can-t-kill-the-boogeyman sound/music/lobby/dangerous_space/dangerous_space_2.ogg - "Prison Planet" by Karl Casey, licensed under CC BY 3.0. Obtained from https://karlcasey.bandcamp.com/track/prison-planet ATTRIBUTIONS SECTION END - -ATTRIBUTIONS SECTOR START -sound/music/lobby/xanu/xanu_rock_1.ogg - "Rise" by Swara Sutra, licensed under CC BY-NC-SA 3.0. Obtained from https://swarasutra.bandcamp.com/track/rise -sound/music/lobby/xanu/xanu_rock_2.ogg - "Induldge" by Swara Sutra, licensed under CC BY-NC-SA 3.0. Obtained from https://swarasutra.bandcamp.com/track/indulgence -ATTRIBUTIONS SECTION END diff --git a/sound/music/regional/venus/all_night.ogg b/sound/music/regional/venus/all_night.ogg new file mode 100644 index 00000000000..ed71ab30dcb Binary files /dev/null and b/sound/music/regional/venus/all_night.ogg differ diff --git a/sound/music/regional/venus/artificially_sweetened.ogg b/sound/music/regional/venus/artificially_sweetened.ogg new file mode 100644 index 00000000000..326f7a46f65 Binary files /dev/null and b/sound/music/regional/venus/artificially_sweetened.ogg differ diff --git a/sound/music/regional/venus/billy_ocean.ogg b/sound/music/regional/venus/billy_ocean.ogg new file mode 100644 index 00000000000..377a9b4dbba Binary files /dev/null and b/sound/music/regional/venus/billy_ocean.ogg differ diff --git a/sound/music/regional/venus/break_the_system.ogg b/sound/music/regional/venus/break_the_system.ogg new file mode 100644 index 00000000000..16e2dbc7bc3 Binary files /dev/null and b/sound/music/regional/venus/break_the_system.ogg differ diff --git a/sound/music/regional/venus/dance.ogg b/sound/music/regional/venus/dance.ogg new file mode 100644 index 00000000000..30f865094f9 Binary files /dev/null and b/sound/music/regional/venus/dance.ogg differ diff --git a/sound/music/regional/venus/funky_girl.ogg b/sound/music/regional/venus/funky_girl.ogg new file mode 100644 index 00000000000..730b156c6ce Binary files /dev/null and b/sound/music/regional/venus/funky_girl.ogg differ diff --git a/sound/music/regional/venus/love_sensation.ogg b/sound/music/regional/venus/love_sensation.ogg new file mode 100644 index 00000000000..4eaa90669c3 Binary files /dev/null and b/sound/music/regional/venus/love_sensation.ogg differ diff --git a/sound/music/regional/venus/real_love.ogg b/sound/music/regional/venus/real_love.ogg new file mode 100644 index 00000000000..55e901e9d4b Binary files /dev/null and b/sound/music/regional/venus/real_love.ogg differ diff --git a/sound/music/regional/xanu/xanu_rock_3.ogg b/sound/music/regional/xanu/xanu_rock_3.ogg new file mode 100644 index 00000000000..d95ba707ae0 Binary files /dev/null and b/sound/music/regional/xanu/xanu_rock_3.ogg differ