From ae62695550143435fc19b14e426d3a303c2d5500 Mon Sep 17 00:00:00 2001 From: evilew Date: Mon, 5 May 2025 15:36:22 +0200 Subject: [PATCH 01/17] transformation pref also added the pref to mootant toxin --- GainStation13/code/mechanics/fatness.dm | 4 +++ .../modules/client/preferences/preferences.dm | 2 ++ .../carbon/human/species_types/mootant.dm | 30 +++++++++++-------- code/__DEFINES/misc.dm | 1 + code/modules/client/preferences.dm | 5 ++++ code/modules/client/preferences_savefile.dm | 2 ++ 6 files changed, 31 insertions(+), 13 deletions(-) diff --git a/GainStation13/code/mechanics/fatness.dm b/GainStation13/code/mechanics/fatness.dm index d888dfd936..02a0190c15 100644 --- a/GainStation13/code/mechanics/fatness.dm +++ b/GainStation13/code/mechanics/fatness.dm @@ -135,6 +135,10 @@ GLOBAL_LIST_INIT(uncapped_resize_areas, list(/area/command/bridge, /area/mainten if(!client?.prefs?.weight_gain_atmos) return FALSE + if(TRANSFORMATION) + if(!client?.prefs?.transformation) + return FALSE + if(FATTENING_TYPE_WEIGHT_LOSS) if(HAS_TRAIT(src, TRAIT_WEIGHT_LOSS_IMMUNE)) return FALSE diff --git a/GainStation13/code/modules/client/preferences/preferences.dm b/GainStation13/code/modules/client/preferences/preferences.dm index d8ce7cf670..bb76c9cc42 100644 --- a/GainStation13/code/modules/client/preferences/preferences.dm +++ b/GainStation13/code/modules/client/preferences/preferences.dm @@ -17,6 +17,8 @@ var/weight_gain_nanites = FALSE //Weight gain from atmos gasses var/weight_gain_atmos = FALSE + ///content related to transformation + var/transformation = FALSE ///Blueberry Inflation var/blueberry_inflation = FALSE ///Extreme weight gain diff --git a/GainStation13/code/modules/mob/living/carbon/human/species_types/mootant.dm b/GainStation13/code/modules/mob/living/carbon/human/species_types/mootant.dm index 08d9241d20..47d90d81ec 100644 --- a/GainStation13/code/modules/mob/living/carbon/human/species_types/mootant.dm +++ b/GainStation13/code/modules/mob/living/carbon/human/species_types/mootant.dm @@ -115,17 +115,21 @@ /datum/reagent/mutationtoxin/mootant/on_mob_life(mob/living/carbon/human/H) ..() - if(!istype(H)) + if(H?.client?.prefs?.transformation) + to_chat(H, "You crumple in agony as your flesh wildly morphs into a new bovine form!") + H.visible_message("[H] falls to the ground and screams as [H.p_their()] their body turns more bovine!") + H.DefaultCombatKnockdown(60) + H.adjust_fatness(400, FATTENING_TYPE_CHEM) + H.dna.features["breasts_producing"] = TRUE + H.dna.features["mam_ears"] = "Mootant ALT (Tertiary)" + H.dna.features["mam_snouts"] = "Mootant ALT (Tertiary)" + H.dna.features["mam_tail"] = "Mootant" + H.reagents.add_reagent(/datum/reagent/fermi/breast_enlarger, 40) //instead of adding breasts as a mutant organ, let's just make them grow some + H.update_body() + addtimer(CALLBACK(src, PROC_REF(mutate), H), 30) return - to_chat(H, "You crumple in agony as your flesh wildly morphs into a new bovine form!") - H.visible_message("[H] falls to the ground and screams as [H.p_their()] their body turns more bovine!") - H.DefaultCombatKnockdown(60) - H.adjust_fatness(400, FATTENING_TYPE_CHEM) - H.dna.features["breasts_producing"] = TRUE - H.dna.features["mam_ears"] = "Mootant ALT (Tertiary)" - H.dna.features["mam_snouts"] = "Mootant ALT (Tertiary)" - H.dna.features["mam_tail"] = "Mootant" - H.reagents.add_reagent(/datum/reagent/fermi/breast_enlarger, 40) //instead of adding breasts as a mutant organ, let's just make them grow some - H.update_body() - addtimer(CALLBACK(src, PROC_REF(mutate), H), 30) - return + + if(!H?.client?.prefs?.transformation) + to_chat(H, span_warning("It seems like [H] resisted the effects of the mutation toxin.")) + return FALSE + diff --git a/code/__DEFINES/misc.dm b/code/__DEFINES/misc.dm index d914f07c15..4522b6cdea 100644 --- a/code/__DEFINES/misc.dm +++ b/code/__DEFINES/misc.dm @@ -597,5 +597,6 @@ GLOBAL_LIST_INIT(pda_reskins, list( #define FATTENING_TYPE_RADIATIONS "radiations" #define FATTENING_TYPE_WEIGHT_LOSS "weight_loss" #define FATTENING_TYPE_ALMIGHTY "almighty" //This ignores prefs, please only use this for smites and other admin controlled instances. +#define TRANSFORMATION "transformation" #define FATNESS_TO_WEIGHT_RATIO 0.25 diff --git a/code/modules/client/preferences.dm b/code/modules/client/preferences.dm index 9308e8ab23..46b0f9e257 100644 --- a/code/modules/client/preferences.dm +++ b/code/modules/client/preferences.dm @@ -1426,6 +1426,7 @@ GLOBAL_LIST_EMPTY(preferences_datums) dat += "Show that you want to be confronted:[trouble_seeker == TRUE ? "Enabled" : "Disabled"]
" dat += "Bot Feeding:[bot_feeding == TRUE ? "Enabled" : "Disabled"]
" dat += "Blueberry Inflation:[blueberry_inflation == TRUE ? "Enabled" : "Disabled"]
" + dat += "Hear Burping Noises: [(cit_toggles & BURPING_NOISES) ? "Allowed" : "Disallowed"]
" dat += "Hear Farting Noises: [(cit_toggles & FARTING_NOISES) ? "Allowed" : "Disallowed"]
" @@ -1455,6 +1456,8 @@ GLOBAL_LIST_EMPTY(preferences_datums) dat += "

" dat += "Object TF:[object_tf == TRUE ? "Enabled" : "Disabled"]
" dat += "

" + dat += "Transformation:[transformation == TRUE ? "Enabled" : "Disabled"]
" + dat += "

" dat += "Extreme Weight Gain (Sprite Size scales with weight):[weight_gain_extreme == TRUE ? "Enabled" : "Disabled"]
" dat += "Persistent Fat (endround/cryo weight becomes your new start weight):[weight_gain_persistent == TRUE ? "Enabled" : "Disabled"]
" dat += "Permanent Weight (hard to remove and persistent weight):[weight_gain_permanent == TRUE ? "Enabled" : "Disabled"]
" @@ -3575,6 +3578,8 @@ GLOBAL_LIST_EMPTY(preferences_datums) if("object_tf") object_tf = !object_tf + if("transformation") + transformation = !transformation if("blueberry_inflation") blueberry_inflation = !blueberry_inflation diff --git a/code/modules/client/preferences_savefile.dm b/code/modules/client/preferences_savefile.dm index 400638ebef..1b40980735 100644 --- a/code/modules/client/preferences_savefile.dm +++ b/code/modules/client/preferences_savefile.dm @@ -969,6 +969,7 @@ SAVEFILE UPDATING/VERSIONING - 'Simplified', or rather, more coder-friendly ~Car S["extreme_fatness_vulnerable"] >> extreme_fatness_vulnerable S["object_tf"] >> object_tf S["blueberry_inflation"] >> blueberry_inflation + S["transformation"] >> transformation S["feature_breasts_fluid"] >> features["breasts_fluid"] S["feature_balls_fluid"] >> features["balls_fluid"] S["alt_titles_preferences"] >> alt_titles_preferences @@ -1271,6 +1272,7 @@ SAVEFILE UPDATING/VERSIONING - 'Simplified', or rather, more coder-friendly ~Car WRITE_FILE(S["extreme_fatness_vulnerable"], extreme_fatness_vulnerable) WRITE_FILE(S["object_tf"], object_tf) WRITE_FILE(S["blueberry_inflation"], blueberry_inflation) + WRITE_FILE(S["transformation"], transformation) WRITE_FILE(S["feature_breasts_fluid"], features["breasts_fluid"]) // records From 9765ee2d5f9a040d32dfd3344ac8504c32fe13d4 Mon Sep 17 00:00:00 2001 From: evilew Date: Tue, 6 May 2025 00:32:30 +0200 Subject: [PATCH 02/17] working on cog mostly just detailing it out, expanded the library and also added a teleporter system --- _maps/map_files/BoxStation/BoxStation.dmm | 2 +- _maps/map_files/CogStation/CogStation.dmm | 2879 +++++++++++++++------ 2 files changed, 2071 insertions(+), 810 deletions(-) diff --git a/_maps/map_files/BoxStation/BoxStation.dmm b/_maps/map_files/BoxStation/BoxStation.dmm index 1e33098efc..ccff75c33b 100644 --- a/_maps/map_files/BoxStation/BoxStation.dmm +++ b/_maps/map_files/BoxStation/BoxStation.dmm @@ -7929,7 +7929,7 @@ byGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa byGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaadamJanjanjanjanjanjanjanjanjanjanMapjapkaplamJaadalzapmalzapnapoamiappamialzakTakTalzapqanOanmapqalzalzalzaUtaUtaUtalzalzalzalzalzalzlotalzatJaaaaaaaaaaaaaaaaaaaaaaaaarjaqsaqsarjapsaqsadacpFaoHapuapvapwapxapwaoHapyaoKapzapAapBapCaoKamYanbapDapEapFapGapGapGapGapGapHapIapGapGapGapGapGapJapKapLapMapNapObjsaqGbjtbjebjubjvbjwbjxbjybjzbjybjybjAbjBbjCbjDbjDbjEbiOaadaluapValuapganIanIapWapXanIapYamIamIapZaltaqaamIaqbaltaqcamIamIaqdaltamIaltaqeaqfaltamIaqgaltatJaaaaaaaaaaaaaaaaaaaaaaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyG byGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadamJanjanjanjanjaqhanjanjanjaqiaqjapjapkaqkamJaadalzamialzaqlaqmanQaqnaqoalzaoEamiaqpbjaanOaqqamiamialzqmggzPwXUaDVawCalzxZrcgXvBbalzamiakTatJaaaaaaaaaaaaaaaaaaaaaaaaarjaqsaqsarjaqtaquarjaqvaoHaqwaqxaqyapwapwaoHapyaoKaqzapBaqAaqBaqCamYanbandapEaiEaomaomaomaomaomaqEaqFaomaomaomaomaomaomaomaomaomeKJaqGaqIaqGatIayGbjFatIavMayHayHaEXayHayHaRiaJgaqGaqGaqGaqGaqGaaaaqLamIaluapgaqMaqNaqOaqPamIamIamIaltamIaltaqQamIamIaltamIaqRaqSaqTapiamIaltaqUaqValtbjGapZaltatJatJatJaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyG byGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadamJanjanjanjanjanjanjanjanjanjanMaqWapkaqXamJalzalzaqYalzalzalzamPaqZaraaraarbarcardarcarearfargarhalzcgYaXhaXhaXhaXhlwTarielTarialzamiakTatJaaaaaaaaaaaaaaaaaaaaaarjarjaqsarjarjarjarjarjcpFaoHarkarlarmapwarnaoHapyaroarparqarrarsaqCamYanbartapEaiEaomjvIxmeautarxaryasxaomatBatCatGaomatHauuayzaomeKJaqGbjHauFauFauFauGauHaqJaqKaqKaqKaqKaqKaqJapRaEYbjIaadaadaadaadaluarNaluapgarOamImnybjJaoramIaltaltarQaltaltarRaltaltaqTarSarTamIaltamIarUarUarUarUarUarUarUarUarUatJatJatJatJatJfRxatJaaaaaaaoBaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyG -byGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadamJanjanjanjanjanjanjanjanjanjanMarWapkarXamJarYarZasaasbasbasbasbasbasbascasdasealzalzalzalzamialzalztnQaXhaXhaXhuypalzalzalzalzalzamiakTatJaaaaaaaaaaaaaaaaadaadarjashasiarjasjaskaslarjcpFaoHapxasmapxasnapwaoHasoaspasqapBasrbjKaqCamYanbassapEaiEaombkXasupRYavxattatuaomavyavAavBaomavyavCbjLaomavDaqGbjMavFapRayFavHavIaqJaqKaqKaqKaqKaqKaqJapRayDbjIaaaaaaaaaaaaaluamIapYapgasMaqTmnyamIasNasOasPapiamIamIamIamIamIamIamIarSasQamIatOamIarUasSasTasUarUasVasWasXarUlHkaaaaoBaoBaoBiWgaoBaoBaoBaoBaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyG +byGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadamJanjanjanjanjanjanjanjanjanjanMarWapkarXamJarYarZasaasbasbasbasbasbasbascasdasealzalzalzalzamialzalztnQaXhaXhaXhuypalzalzalzalzalzamiakTatJaaaaaaaaaaaaaaaaadaadarjashasiarjasjaskaslarjcpFaoHapxasmapxasnapwaoHasoaspasqapBasrbjKaqCamYanbassapEaiEaombkXasupRYavxattatuaomavyavAavBaomavyavCbjLaomavDaqGbjMavFapRayFavHavIaqJaqKaqKaqKaqKaqKaqJapRayDbjIaaaaaaaaaaaaaluamIapYapgasMaqTmnybjJasNasOasPapiamIamIamIamIamIamIamIarSasQamIatOamIarUasSasTasUarUasVasWasXarUlHkaaaaoBaoBaoBiWgaoBaoBaoBaoBaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyG byGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaaaaaaaaaaaaamJanjanjanjanjanjanjanjanjanjanMarWasYasZamJamiamiataatbatcatcatcatcatcatcatdateatfaaFatgalzamiathalzalzatinJVatjalzalzfLFatkpHsalzamiakTatJaaaaaaaaaaaaaaaarjarjarjaqsaqsarjaqsaqsaqsarjcpFaoHapxatlatmatnapxaoHapyatoaoKatpatqatraoKatsanbandapEaiEaomaomaomaomaomatAauwaomavyavAavKaombjNavAavLaomasGaqGawRawTawUawUawVawWasKaqKaqKaqKaqKaqKaqJapRaEZbjIatJatJatJaadaluamIbjOapgatLamIatMrcbrcbrcbrcbatNatNatPamIamIamIbjJamIamIamIamIaltamIarUatQatRatRarUatSatTatUarUaadaaaaoBaoBaoBiWgaoBaoBaoBaoBaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyG byGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadamJanjanjanjanjanjanjanjanjanjanMatVatWatXamJatYbjPauaaubanRaucaudaueaufalzteyateaaFauhatfakTamiasfalzcRrrQDjtsjtsjtstbqauibaoaVEarjaqsarjaqraqrarjaaeaaeaaeaujaukaulaqsaqsarjarjaumarjarjcpFaoHaoHaunaoHauoaoHaoHaupauqaoKaoKaoKaoKaoKauranbausapEaiEaomaruarvaytarxauxauyaomaomawZaqFaomaomaxaaqFaomauBaqGaxcatDaxdaxdaxeaxfatEaqKaqKaqKaqKaqKatFasHaFaaqGaltaltaltaltaltamIaltapgapgapgapgapgapgapgapgapgaltauMauNaltaltaltaltaltaltaltaltamIauOarUatRatRauPauQatQauRarUatJaaaaoBaoBaoBiWgaoBaoBaoBaoBaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyG byGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabhraGRaNMatJatJatJatJauSamJamJamJamJamJamJamJamJamJamJamJauTauUamJamJauValzataauWamiauXauYamiamialzteyateauZaadauZalzamiavaalzavbavcrGXvkTvrRavdaveaveaveaviqKsavgampampaviavfavfavfavgaviavgavgavhavgavjavhavkavlavmefGefGavoefGavpavnavnavqavrefGefGefGefGavsavtavuavuavvavwaomastasvasvazyauzauAauCauEauIavzavGawSawXawYaxbaxgatIayBatDayCaxdaxeaxfatIaqKaqKaqKaqKaqKatIauKauLaqGaFTaFSaltasLaqcamIavNaltavOaosavPavQaoraltatLaoraltavRamIaltavSamIaltavTavUavVkDmkDmkDmawxavYavZawaawbawcawdarUatJatJatJatJatJatJatJaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyG diff --git a/_maps/map_files/CogStation/CogStation.dmm b/_maps/map_files/CogStation/CogStation.dmm index 5a177dfdb5..9bfd2bff66 100644 --- a/_maps/map_files/CogStation/CogStation.dmm +++ b/_maps/map_files/CogStation/CogStation.dmm @@ -12,7 +12,7 @@ /obj/machinery/atmospherics/pipe/manifold/supplymain/hidden{ dir = 4 }, -/turf/open/floor/plating, +/turf/open/floor/catwalk_floor, /area/maintenance/fore) "aac" = ( /obj/machinery/atmospherics/pipe/simple/general/visible{ @@ -145,7 +145,7 @@ name = "Port Bow Maintenance APC"; pixel_x = -25 }, -/turf/open/floor/plating, +/turf/open/floor/catwalk_floor, /area/maintenance/port/fore) "aav" = ( /obj/machinery/conveyor/auto{ @@ -192,7 +192,7 @@ name = "Kitchen Coldroom APC"; pixel_y = 23 }, -/turf/open/floor/plating, +/turf/open/floor/catwalk_floor, /area/hallway/secondary/service) "aaC" = ( /obj/structure/closet/secure_closet/lethalshots, @@ -224,7 +224,7 @@ c_tag = "Port Bow Maintenance - Fore"; network = list("ss13","rd") }, -/turf/open/floor/plating, +/turf/open/floor/catwalk_floor, /area/maintenance/port/fore) "aaF" = ( /turf/open/floor/plasteel/dark, @@ -786,7 +786,7 @@ pixel_y = -26 }, /obj/structure/cable, -/turf/open/floor/plating, +/turf/open/floor/catwalk_floor, /area/maintenance/fore) "abV" = ( /obj/structure/disposaloutlet, @@ -814,6 +814,7 @@ /obj/structure/cable{ icon_state = "4-8" }, +/obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, /area/maintenance/port/fore) "abZ" = ( @@ -950,7 +951,7 @@ /obj/structure/cable{ icon_state = "1-2" }, -/turf/open/floor/plating, +/turf/open/floor/catwalk_floor, /area/maintenance/port/fore) "aco" = ( /turf/open/floor/plating, @@ -1545,6 +1546,13 @@ /obj/machinery/light/small{ dir = 8 }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/closet/firecloset, /turf/open/floor/plasteel/dark, /area/science/observatory) "adQ" = ( @@ -1595,9 +1603,7 @@ /turf/open/floor/plasteel/stairs/right, /area/security/brig) "adX" = ( -/obj/structure/chair/comfy/black{ - dir = 1 - }, +/obj/structure/fluff/railing, /turf/open/floor/plasteel/dark, /area/science/observatory) "adZ" = ( @@ -1732,10 +1738,19 @@ dir = 4; pixel_x = -24 }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, /turf/open/floor/plasteel/dark, /area/science/observatory) "aeq" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on, +/obj/structure/fluff/railing{ + dir = 4 + }, /turf/open/floor/plasteel/dark, /area/science/observatory) "aer" = ( @@ -1784,15 +1799,24 @@ /turf/open/floor/plasteel, /area/commons/lounge) "aey" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, /obj/effect/turf_decal/tile/neutral{ dir = 8 }, /obj/effect/turf_decal/tile/neutral, -/turf/open/floor/plasteel/dark, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, /area/science/observatory) "aeA" = ( -/obj/structure/chair/comfy/black{ - dir = 4 +/obj/structure/fluff/railing{ + dir = 8 }, /turf/open/floor/plasteel/dark, /area/science/observatory) @@ -1811,7 +1835,7 @@ /obj/structure/cable{ icon_state = "0-4" }, -/turf/open/floor/plating, +/turf/open/floor/catwalk_floor, /area/maintenance/fore) "aeC" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on{ @@ -1865,7 +1889,7 @@ name = "Construction Area APC"; pixel_y = 23 }, -/turf/open/floor/plating, +/turf/open/floor/catwalk_floor, /area/construction) "aeH" = ( /obj/structure/grille, @@ -1875,6 +1899,7 @@ /obj/structure/cable{ icon_state = "4-8" }, +/obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, /area/maintenance/fore) "aeI" = ( @@ -1958,12 +1983,13 @@ /turf/open/floor/plasteel, /area/security/brig) "aeS" = ( -/obj/machinery/door/airlock/public/glass{ - name = "Holodeck Door" - }, /obj/machinery/atmospherics/pipe/simple/orange/hidden{ dir = 9 }, +/obj/machinery/door/airlock/public/glass{ + dir = 4; + name = "Holodeck Door" + }, /turf/open/floor/plasteel/dark, /area/science/observatory) "aeT" = ( @@ -2014,7 +2040,7 @@ /obj/structure/cable{ icon_state = "2-4" }, -/turf/open/floor/plating, +/turf/open/floor/catwalk_floor, /area/maintenance/fore) "aeZ" = ( /obj/effect/spawner/structure/window/reinforced, @@ -2026,12 +2052,13 @@ /turf/open/floor/plating, /area/service/kitchen) "afb" = ( -/obj/machinery/door/airlock/public/glass{ - name = "Holodeck Door" - }, /obj/machinery/atmospherics/pipe/simple/orange/hidden{ dir = 5 }, +/obj/machinery/door/airlock/public/glass{ + dir = 4; + name = "Holodeck Door" + }, /turf/open/floor/plasteel/dark, /area/science/observatory) "afc" = ( @@ -2044,14 +2071,17 @@ /obj/machinery/newscaster{ pixel_y = 32 }, +/obj/structure/trash_pile, /turf/open/floor/plating, /area/maintenance/starboard/fore) "afe" = ( -/obj/machinery/door/airlock, /obj/machinery/door/firedoor, /obj/machinery/atmospherics/pipe/simple/orange/hidden{ dir = 8 }, +/obj/machinery/door/airlock{ + dir = 4 + }, /turf/open/floor/plasteel/dark, /area/science/observatory) "aff" = ( @@ -2065,7 +2095,7 @@ icon_state = "4-8" }, /obj/machinery/atmospherics/components/binary/valve/digital/on, -/turf/open/floor/plating, +/turf/open/floor/catwalk_floor, /area/maintenance/fore) "afh" = ( /obj/structure/cable{ @@ -2087,23 +2117,35 @@ /obj/structure/cable{ icon_state = "2-8" }, -/turf/open/floor/plating, +/turf/open/floor/catwalk_floor, /area/maintenance/fore) "afj" = ( /obj/machinery/atmospherics/pipe/simple/orange/hidden{ dir = 9 }, -/turf/open/floor/plasteel/dark, +/turf/open/floor/plasteel/stairs{ + dir = 8 + }, /area/science/observatory) "afk" = ( /obj/effect/turf_decal/tile/neutral{ - dir = 4 + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 }, /obj/effect/turf_decal/tile/neutral, -/obj/machinery/light_switch{ - pixel_x = 24 +/obj/effect/turf_decal/tile/neutral{ + dir = 4 }, -/turf/open/floor/plasteel/dark, +/obj/machinery/light/small{ + dir = 4; + light_color = "#d8b1b1" + }, +/obj/item/paper/fluff{ + name = "QUANTUM PADS HAVE NAMES THAT MENTION THEIR DESTINATION" + }, +/turf/open/floor/plasteel, /area/science/observatory) "afl" = ( /obj/effect/landmark/secequipment, @@ -2172,14 +2214,20 @@ /turf/open/floor/plating, /area/maintenance/fore) "afu" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, /obj/effect/turf_decal/tile/neutral{ dir = 1 }, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel/dark, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/plasteel, /area/science/observatory) "afv" = ( /obj/structure/chair{ @@ -2195,7 +2243,7 @@ /obj/structure/cable{ icon_state = "1-8" }, -/turf/open/floor/plating, +/turf/open/floor/catwalk_floor, /area/maintenance/port/fore) "afx" = ( /obj/machinery/computer/holodeck{ @@ -2208,6 +2256,13 @@ /obj/machinery/atmospherics/components/unary/vent_scrubber/on{ dir = 1 }, +/obj/item/storage/firstaid/regular, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, /turf/open/floor/plasteel/dark, /area/science/observatory) "afz" = ( @@ -2215,6 +2270,7 @@ /turf/open/floor/plasteel/dark, /area/science/observatory) "afA" = ( +/obj/structure/trash_pile, /turf/open/floor/plating, /area/maintenance/starboard/fore) "afB" = ( @@ -2295,11 +2351,13 @@ /turf/closed/wall, /area/service/kitchen) "afL" = ( -/obj/machinery/door/airlock, /obj/machinery/door/firedoor, /obj/machinery/atmospherics/pipe/simple/cyan/hidden{ dir = 4 }, +/obj/machinery/door/airlock{ + dir = 4 + }, /turf/open/floor/plasteel/dark, /area/science/observatory) "afM" = ( @@ -2317,6 +2375,9 @@ /obj/machinery/atmospherics/components/unary/vent_pump/on{ dir = 8 }, +/obj/structure/fluff/railing{ + dir = 4 + }, /turf/open/floor/plasteel/dark, /area/science/observatory) "afO" = ( @@ -2334,7 +2395,7 @@ icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/cyan/hidden, -/turf/open/floor/plating, +/turf/open/floor/catwalk_floor, /area/maintenance/port/fore) "afR" = ( /obj/machinery/light{ @@ -2352,7 +2413,7 @@ /obj/structure/cable{ icon_state = "1-2" }, -/turf/open/floor/plating, +/turf/open/floor/catwalk_floor, /area/maintenance/starboard/fore) "afU" = ( /obj/machinery/airalarm{ @@ -2396,6 +2457,7 @@ c_tag = "Port Bow Maintenance - Aft"; dir = 1 }, +/obj/structure/trash_pile, /turf/open/floor/plating, /area/maintenance/port/fore) "afY" = ( @@ -2427,6 +2489,17 @@ /area/science/observatory) "agb" = ( /obj/structure/table, +/obj/item/paper_bin{ + pixel_x = 1; + pixel_y = 9 + }, +/obj/item/pen, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, /turf/open/floor/plasteel/dark, /area/science/observatory) "agc" = ( @@ -2464,7 +2537,7 @@ /obj/structure/cable{ icon_state = "1-2" }, -/turf/open/floor/plating, +/turf/open/floor/catwalk_floor, /area/maintenance/fore) "agh" = ( /obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ @@ -2548,6 +2621,10 @@ dir = 4; light_color = "#e8eaff" }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, /turf/open/floor/plasteel/dark, /area/science/observatory) "agu" = ( @@ -2643,6 +2720,13 @@ /obj/machinery/light/small{ dir = 8 }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/closet/emcloset, /turf/open/floor/plasteel/dark, /area/science/observatory) "agG" = ( @@ -2657,7 +2741,7 @@ /obj/structure/cable{ icon_state = "1-2" }, -/turf/open/floor/plating, +/turf/open/floor/catwalk_floor, /area/maintenance/port/fore) "agI" = ( /obj/machinery/hydroponics/constructable, @@ -2682,7 +2766,9 @@ /turf/open/floor/plating, /area/maintenance/fore) "agK" = ( -/obj/structure/chair/comfy/black, +/obj/structure/fluff/railing{ + dir = 1 + }, /turf/open/floor/plasteel/dark, /area/science/observatory) "agL" = ( @@ -2699,16 +2785,18 @@ /turf/open/floor/plasteel/dark, /area/science/observatory) "agN" = ( -/obj/machinery/door/airlock/public/glass{ - name = "Holodeck Door" - }, /obj/machinery/atmospherics/pipe/simple/cyan/hidden{ dir = 10 }, +/obj/machinery/door/airlock/public/glass{ + dir = 4; + name = "Holodeck Door" + }, /turf/open/floor/plasteel/dark, /area/science/observatory) "agO" = ( /obj/machinery/door/airlock/public/glass{ + dir = 4; name = "Holodeck Door" }, /turf/open/floor/plasteel/dark, @@ -2791,6 +2879,10 @@ /obj/machinery/newscaster{ pixel_x = 28 }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, /turf/open/floor/plasteel/dark, /area/science/observatory) "agW" = ( @@ -2822,7 +2914,7 @@ /obj/machinery/atmospherics/pipe/simple/cyan/hidden{ dir = 4 }, -/turf/open/floor/plating, +/turf/open/floor/catwalk_floor, /area/maintenance/starboard/fore) "aha" = ( /obj/structure/table, @@ -2908,7 +3000,7 @@ c_tag = "Fore Maintenance - Fore"; dir = 4 }, -/turf/open/floor/plating, +/turf/open/floor/catwalk_floor, /area/maintenance/fore) "ahk" = ( /obj/effect/turf_decal/delivery, @@ -3057,7 +3149,7 @@ name = "Fore Maintenance APC"; pixel_y = 23 }, -/turf/open/floor/plating, +/turf/open/floor/catwalk_floor, /area/maintenance/fore) "ahE" = ( /obj/structure/disposalpipe/segment, @@ -3105,7 +3197,7 @@ /obj/structure/cable{ icon_state = "0-4" }, -/turf/open/floor/plating, +/turf/open/floor/catwalk_floor, /area/maintenance/fore) "ahJ" = ( /turf/open/floor/wood, @@ -3120,7 +3212,7 @@ /obj/structure/cable{ icon_state = "4-8" }, -/turf/open/floor/plating, +/turf/open/floor/catwalk_floor, /area/maintenance/starboard/fore) "ahL" = ( /obj/effect/spawner/structure/window/reinforced, @@ -3131,6 +3223,12 @@ /obj/structure/chair{ dir = 8 }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, /turf/open/floor/plasteel/dark, /area/science/observatory) "ahN" = ( @@ -3155,9 +3253,8 @@ /area/maintenance/solars/starboard/fore) "ahQ" = ( /obj/structure/closet/lasertag/blue, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 +/obj/effect/turf_decal/stripes/line{ + dir = 8 }, /turf/open/floor/plasteel/dark, /area/science/observatory) @@ -3186,9 +3283,8 @@ /area/service/kitchen) "ahV" = ( /obj/structure/closet/lasertag/red, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 +/obj/effect/turf_decal/stripes/line{ + dir = 8 }, /turf/open/floor/plasteel/dark, /area/science/observatory) @@ -3256,6 +3352,13 @@ /obj/structure/chair{ dir = 8 }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, /turf/open/floor/plasteel/dark, /area/science/observatory) "aif" = ( @@ -3265,13 +3368,17 @@ /obj/structure/cable{ icon_state = "4-8" }, -/turf/open/floor/plating, +/turf/open/floor/catwalk_floor, /area/maintenance/starboard/fore) "aig" = ( /obj/machinery/camera{ c_tag = "Observatory Holodeck"; dir = 1 }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, /turf/open/floor/plasteel/dark, /area/science/observatory) "aih" = ( @@ -3279,6 +3386,13 @@ dir = 1; pixel_y = -22 }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, /turf/open/floor/plasteel/dark, /area/science/observatory) "aii" = ( @@ -3308,7 +3422,7 @@ /obj/machinery/atmospherics/pipe/simple/cyan/hidden{ dir = 10 }, -/turf/open/floor/plating, +/turf/open/floor/catwalk_floor, /area/maintenance/starboard/fore) "ail" = ( /obj/effect/turf_decal/tile/blue{ @@ -3434,7 +3548,7 @@ /obj/structure/cable{ icon_state = "0-4" }, -/turf/open/floor/plating, +/turf/open/floor/catwalk_floor, /area/maintenance/starboard/fore) "aiC" = ( /turf/closed/wall, @@ -3489,9 +3603,8 @@ /area/security/prison) "aiI" = ( /obj/structure/closet/boxinggloves, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 +/obj/effect/turf_decal/stripes/line{ + dir = 8 }, /turf/open/floor/plasteel/dark, /area/science/observatory) @@ -3655,7 +3768,7 @@ /obj/structure/cable{ icon_state = "1-2" }, -/turf/open/floor/plating, +/turf/open/floor/catwalk_floor, /area/maintenance/fore) "ajg" = ( /obj/structure/table, @@ -3697,7 +3810,7 @@ icon_state = "2-4" }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, +/turf/open/floor/catwalk_floor, /area/service/theater/clown) "ajl" = ( /obj/structure/cable{ @@ -3705,7 +3818,7 @@ }, /obj/machinery/atmospherics/pipe/simple/cyan/hidden, /mob/living/simple_animal/cockroach, -/turf/open/floor/plating, +/turf/open/floor/catwalk_floor, /area/maintenance/starboard/fore) "ajm" = ( /obj/effect/turf_decal/tile/yellow{ @@ -3748,7 +3861,7 @@ name = "Clown's Office APC"; pixel_x = 24 }, -/turf/open/floor/plating, +/turf/open/floor/catwalk_floor, /area/service/theater/clown) "ajr" = ( /obj/machinery/light/small{ @@ -3843,7 +3956,7 @@ desc = "A thin layer of dust coating the floor."; name = "dust" }, -/turf/open/floor/plating, +/turf/open/floor/catwalk_floor, /area/maintenance/port/fore) "ajD" = ( /obj/structure/chair/stool, @@ -3889,7 +4002,7 @@ /obj/machinery/atmospherics/pipe/simple/cyan/hidden{ dir = 4 }, -/turf/open/floor/plating, +/turf/open/floor/catwalk_floor, /area/maintenance/starboard/fore) "ajJ" = ( /obj/machinery/atmospherics/pipe/simple/cyan/hidden, @@ -3917,6 +4030,7 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, +/obj/item/kirbyplants/photosynthetic, /turf/open/floor/plasteel, /area/science/observatory) "ajM" = ( @@ -3943,7 +4057,7 @@ /obj/machinery/atmospherics/pipe/simple/orange/hidden{ dir = 6 }, -/turf/open/floor/plating, +/turf/open/floor/catwalk_floor, /area/maintenance/port/fore) "ajO" = ( /turf/closed/wall/r_wall, @@ -3953,7 +4067,7 @@ icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/cyan/hidden, -/turf/open/floor/plating, +/turf/open/floor/catwalk_floor, /area/maintenance/starboard/fore) "ajQ" = ( /obj/effect/turf_decal/stripes/line{ @@ -4009,7 +4123,7 @@ name = "Brig APC"; pixel_x = 24 }, -/turf/open/floor/plating, +/turf/open/floor/catwalk_floor, /area/maintenance/solars/port) "ajV" = ( /obj/machinery/atmospherics/pipe/simple/orange/hidden, @@ -4023,6 +4137,7 @@ dir = 4 }, /obj/machinery/atmospherics/pipe/simple/cyan/hidden, +/obj/item/kirbyplants/photosynthetic, /turf/open/floor/plasteel, /area/science/observatory) "ajX" = ( @@ -4071,7 +4186,7 @@ }, /obj/machinery/door/firedoor, /obj/machinery/atmospherics/pipe/simple/cyan/hidden, -/turf/open/floor/plating, +/turf/open/floor/catwalk_floor, /area/service/theater/mime) "akc" = ( /obj/machinery/computer/slot_machine, @@ -4321,7 +4436,7 @@ /obj/structure/sign/warning/electricshock{ pixel_x = -32 }, -/turf/open/floor/plating, +/turf/open/floor/catwalk_floor, /area/maintenance/port/fore) "akD" = ( /obj/effect/turf_decal/tile/red{ @@ -4546,7 +4661,7 @@ /obj/machinery/atmospherics/pipe/manifold/cyan/hidden{ dir = 8 }, -/turf/open/floor/plating, +/turf/open/floor/catwalk_floor, /area/maintenance/starboard/fore) "ali" = ( /turf/open/floor/plating, @@ -4793,7 +4908,7 @@ /obj/machinery/atmospherics/pipe/simple/orange/hidden{ dir = 10 }, -/turf/open/floor/plating, +/turf/open/floor/catwalk_floor, /area/maintenance/fore) "alO" = ( /obj/structure/table/wood, @@ -4807,7 +4922,7 @@ icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/cyan/hidden, -/turf/open/floor/plating, +/turf/open/floor/catwalk_floor, /area/maintenance/fore) "alQ" = ( /obj/structure/dresser, @@ -4948,6 +5063,7 @@ /obj/structure/sign/poster/contraband/grey_tide{ pixel_y = -32 }, +/obj/structure/trash_pile, /turf/open/floor/plating, /area/maintenance/port/fore) "amj" = ( @@ -4989,7 +5105,7 @@ icon_state = "2-4" }, /mob/living/simple_animal/mouse/brown, -/turf/open/floor/plating, +/turf/open/floor/catwalk_floor, /area/construction/secondary) "amo" = ( /obj/machinery/vending/cigarette, @@ -5157,9 +5273,7 @@ /obj/structure/cable{ icon_state = "4-8" }, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, +/turf/open/floor/catwalk_floor, /area/construction/secondary) "amI" = ( /obj/structure/chair/office/dark{ @@ -5251,7 +5365,7 @@ /obj/structure/cable{ icon_state = "4-8" }, -/turf/open/floor/plating, +/turf/open/floor/catwalk_floor, /area/construction/secondary) "amS" = ( /obj/structure/disposalpipe/segment, @@ -5259,7 +5373,7 @@ icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/orange/hidden, -/turf/open/floor/plating, +/turf/open/floor/catwalk_floor, /area/maintenance/port/fore) "amT" = ( /obj/structure/cable{ @@ -5269,7 +5383,7 @@ dir = 1; pixel_y = -22 }, -/turf/open/floor/plating, +/turf/open/floor/catwalk_floor, /area/construction/secondary) "amU" = ( /obj/structure/beebox, @@ -5348,7 +5462,7 @@ /obj/structure/cable{ icon_state = "4-8" }, -/turf/open/floor/plating, +/turf/open/floor/catwalk_floor, /area/construction/secondary) "and" = ( /turf/closed/wall/r_wall, @@ -5370,7 +5484,7 @@ name = "Secondary Construction Area APC"; pixel_y = 23 }, -/turf/open/floor/plating, +/turf/open/floor/catwalk_floor, /area/construction/secondary) "ang" = ( /obj/machinery/atmospherics/pipe/simple/orange/hidden, @@ -5440,7 +5554,7 @@ icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/orange/hidden, -/turf/open/floor/plating, +/turf/open/floor/catwalk_floor, /area/maintenance/fore) "anp" = ( /turf/open/floor/plasteel{ @@ -5788,7 +5902,7 @@ /obj/machinery/atmospherics/pipe/simple/cyan/hidden{ dir = 9 }, -/turf/open/floor/plating, +/turf/open/floor/catwalk_floor, /area/maintenance/starboard/fore) "aoa" = ( /obj/item/clockwork/component/geis_capacitor/fallen_armor, @@ -5920,7 +6034,7 @@ /obj/structure/cable{ icon_state = "1-2" }, -/turf/open/floor/plating, +/turf/open/floor/catwalk_floor, /area/construction/secondary) "aoq" = ( /obj/structure/cable{ @@ -6139,7 +6253,7 @@ /obj/structure/cable{ icon_state = "4-8" }, -/turf/open/floor/plating, +/turf/open/floor/catwalk_floor, /area/maintenance/starboard/fore) "aoK" = ( /turf/closed/wall/r_wall, @@ -6294,7 +6408,7 @@ }, /obj/effect/landmark/event_spawn, /obj/machinery/atmospherics/pipe/simple/orange/hidden, -/turf/open/floor/plating, +/turf/open/floor/catwalk_floor, /area/maintenance/port/fore) "aoY" = ( /obj/structure/cable{ @@ -6415,7 +6529,7 @@ /obj/structure/cable{ icon_state = "4-8" }, -/turf/open/floor/plating, +/turf/open/floor/catwalk_floor, /area/construction) "app" = ( /obj/structure/cable{ @@ -6686,7 +6800,7 @@ /obj/machinery/atmospherics/pipe/simple/orange/hidden{ dir = 5 }, -/turf/open/floor/plating, +/turf/open/floor/catwalk_floor, /area/maintenance/port/fore) "apZ" = ( /obj/machinery/door/firedoor, @@ -6724,7 +6838,7 @@ name = "Secondary Construction Area"; req_access_txt = "12" }, -/turf/open/floor/plating, +/turf/open/floor/catwalk_floor, /area/construction/secondary) "aqc" = ( /obj/structure/chair/comfy/teal, @@ -6876,7 +6990,7 @@ icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/supplymain/hidden, -/turf/open/floor/plating, +/turf/open/floor/catwalk_floor, /area/maintenance/fore) "aqv" = ( /obj/structure/sign/poster/official/no_erp{ @@ -7009,7 +7123,7 @@ req_one_access_txt = "25;26;28;35" }, /obj/machinery/atmospherics/pipe/simple/cyan/hidden, -/turf/open/floor/plating, +/turf/open/floor/catwalk_floor, /area/hallway/secondary/service) "aqO" = ( /obj/effect/turf_decal/tile/blue{ @@ -7041,7 +7155,7 @@ icon_state = "1-2" }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, +/turf/open/floor/catwalk_floor, /area/service/theater/clown) "aqS" = ( /obj/effect/turf_decal/tile/blue{ @@ -7167,7 +7281,7 @@ name = "Barbershop APC"; pixel_x = 24 }, -/turf/open/floor/plating, +/turf/open/floor/catwalk_floor, /area/maintenance/port/fore) "arc" = ( /obj/structure/closet/secure_closet/freezer/cream_pie, @@ -7427,7 +7541,7 @@ /obj/machinery/atmospherics/pipe/simple/orange/hidden{ dir = 10 }, -/turf/open/floor/plating, +/turf/open/floor/catwalk_floor, /area/maintenance/starboard/fore) "arH" = ( /obj/machinery/disposal/bin{ @@ -7841,7 +7955,7 @@ icon_state = "4-8" }, /obj/effect/landmark/event_spawn, -/turf/open/floor/plating, +/turf/open/floor/catwalk_floor, /area/maintenance/fore) "ass" = ( /obj/structure/cable{ @@ -7849,7 +7963,7 @@ }, /obj/machinery/light/small, /obj/effect/landmark/event_spawn, -/turf/open/floor/plating, +/turf/open/floor/catwalk_floor, /area/maintenance/starboard/fore) "ast" = ( /turf/open/pool, @@ -8296,7 +8410,7 @@ name = "Clown's Office"; req_access_txt = "46" }, -/turf/open/floor/plating, +/turf/open/floor/catwalk_floor, /area/service/theater/clown) "att" = ( /turf/open/floor/plating, @@ -8645,7 +8759,7 @@ /mob/living/simple_animal/mouse/brown{ name = "Chewy" }, -/turf/open/floor/plating, +/turf/open/floor/catwalk_floor, /area/hallway/secondary/service) "aum" = ( /obj/effect/turf_decal/stripes/line{ @@ -8823,7 +8937,7 @@ /obj/structure/cable{ icon_state = "1-4" }, -/turf/open/floor/plating, +/turf/open/floor/catwalk_floor, /area/maintenance/port/fore) "auI" = ( /obj/structure/closet/secure_closet/brig, @@ -8979,7 +9093,7 @@ icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/orange/hidden, -/turf/open/floor/plating, +/turf/open/floor/catwalk_floor, /area/maintenance/fore) "ava" = ( /obj/machinery/airalarm{ @@ -9028,7 +9142,7 @@ icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/orange/hidden, -/turf/open/floor/plating, +/turf/open/floor/catwalk_floor, /area/hallway/secondary/civilian) "avg" = ( /obj/machinery/door/firedoor, @@ -9510,7 +9624,7 @@ /obj/machinery/atmospherics/components/binary/valve{ dir = 4 }, -/turf/open/floor/plating, +/turf/open/floor/catwalk_floor, /area/maintenance/solars/port) "awe" = ( /obj/effect/turf_decal/tile/blue{ @@ -9575,7 +9689,7 @@ /obj/structure/cable{ icon_state = "2-8" }, -/turf/open/floor/plating, +/turf/open/floor/catwalk_floor, /area/maintenance/solars/port) "awl" = ( /obj/effect/turf_decal/tile/green, @@ -9635,7 +9749,7 @@ /obj/machinery/atmospherics/pipe/simple/general/visible{ dir = 9 }, -/turf/open/floor/plating, +/turf/open/floor/catwalk_floor, /area/maintenance/solars/port) "aws" = ( /obj/effect/turf_decal/tile/blue{ @@ -9692,6 +9806,14 @@ /obj/structure/cable{ icon_state = "2-8" }, +/obj/effect/turf_decal/loading_area{ + dir = 1; + icon_state = "steel_decals10" + }, +/obj/effect/turf_decal/loading_area{ + dir = 8; + icon_state = "steel_decals10" + }, /turf/open/floor/plasteel, /area/hallway/primary/central) "awx" = ( @@ -9816,7 +9938,7 @@ /obj/structure/cable{ icon_state = "1-2" }, -/turf/open/floor/plating, +/turf/open/floor/catwalk_floor, /area/maintenance/solars/port) "awL" = ( /obj/machinery/atmospherics/pipe/simple/cyan/hidden, @@ -9826,6 +9948,14 @@ /obj/structure/cable{ icon_state = "1-4" }, +/obj/effect/turf_decal/loading_area{ + dir = 1; + icon_state = "steel_decals10" + }, +/obj/effect/turf_decal/loading_area{ + dir = 8; + icon_state = "steel_decals10" + }, /turf/open/floor/plasteel, /area/hallway/primary/central) "awM" = ( @@ -10048,7 +10178,7 @@ /obj/structure/cable{ icon_state = "1-2" }, -/turf/open/floor/plating, +/turf/open/floor/catwalk_floor, /area/maintenance/solars/port) "axg" = ( /obj/machinery/vending/medical, @@ -11574,7 +11704,7 @@ icon_state = "1-2" }, /obj/effect/landmark/blobstart, -/turf/open/floor/plating, +/turf/open/floor/catwalk_floor, /area/maintenance/solars/port) "aAj" = ( /obj/effect/turf_decal/tile/neutral{ @@ -11715,7 +11845,7 @@ /obj/structure/cable{ icon_state = "1-2" }, -/turf/open/floor/plating, +/turf/open/floor/catwalk_floor, /area/maintenance/fore) "aAy" = ( /obj/item/kirbyplants{ @@ -11742,7 +11872,7 @@ icon_state = "2-8" }, /obj/machinery/atmospherics/pipe/simple/supplymain/hidden, -/turf/open/floor/plating, +/turf/open/floor/catwalk_floor, /area/maintenance/fore) "aAB" = ( /obj/structure/disposalpipe/segment{ @@ -11929,7 +12059,7 @@ c_tag = "Telecomms Access Maintenance"; dir = 4 }, -/turf/open/floor/plating, +/turf/open/floor/catwalk_floor, /area/maintenance/solars/port) "aAS" = ( /obj/structure/closet/secure_closet/security/sec, @@ -12377,7 +12507,7 @@ icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/manifold/orange/hidden, -/turf/open/floor/plating, +/turf/open/floor/catwalk_floor, /area/maintenance/fore) "aBM" = ( /obj/effect/turf_decal/tile/blue{ @@ -13048,10 +13178,10 @@ /turf/open/floor/wood, /area/service/barbershop) "aDd" = ( -/obj/structure/chair/office/dark, /obj/structure/disposalpipe/segment{ dir = 4 }, +/obj/structure/chair/comfy/black, /turf/open/floor/wood, /area/service/barbershop) "aDe" = ( @@ -13323,7 +13453,7 @@ /obj/machinery/atmospherics/pipe/manifold/orange/hidden{ dir = 8 }, -/turf/open/floor/plating, +/turf/open/floor/catwalk_floor, /area/maintenance/port/fore) "aDF" = ( /obj/structure/table, @@ -13539,6 +13669,9 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, +/obj/structure/mirror{ + pixel_y = -16 + }, /turf/open/floor/wood, /area/service/barbershop) "aEe" = ( @@ -13622,7 +13755,7 @@ /obj/structure/cable{ icon_state = "1-8" }, -/turf/open/floor/plating, +/turf/open/floor/catwalk_floor, /area/maintenance/solars/port) "aEn" = ( /obj/effect/turf_decal/tile/green, @@ -13657,7 +13790,7 @@ /obj/machinery/atmospherics/pipe/manifold/supplymain/hidden{ dir = 8 }, -/turf/open/floor/plating, +/turf/open/floor/catwalk_floor, /area/maintenance/solars/port) "aEq" = ( /obj/effect/turf_decal/tile/neutral{ @@ -13857,6 +13990,7 @@ "aEK" = ( /obj/structure/table, /obj/item/razor, +/obj/item/razor, /turf/open/floor/wood, /area/service/barbershop) "aEL" = ( @@ -13878,12 +14012,14 @@ "aEN" = ( /obj/structure/table, /obj/machinery/light, -/obj/item/razor, +/obj/item/dyespray, +/obj/item/dyespray, /turf/open/floor/wood, /area/service/barbershop) "aEO" = ( /obj/structure/table, /obj/item/clothing/accessory/pocketprotector/cosmetology, +/obj/item/clothing/accessory/pocketprotector/cosmetology, /turf/open/floor/wood, /area/service/barbershop) "aEP" = ( @@ -13932,7 +14068,7 @@ icon_state = "2-4" }, /obj/machinery/atmospherics/pipe/simple/orange/hidden, -/turf/open/floor/plating, +/turf/open/floor/catwalk_floor, /area/maintenance/fore) "aEV" = ( /obj/effect/spawner/structure/window/reinforced, @@ -14710,7 +14846,7 @@ name = "Bridge APC"; pixel_y = -24 }, -/turf/open/floor/plating, +/turf/open/floor/catwalk_floor, /area/maintenance/solars/port) "aGA" = ( /obj/machinery/light{ @@ -14750,13 +14886,13 @@ pixel_x = -25 }, /obj/machinery/atmospherics/pipe/simple/orange/hidden, -/turf/open/floor/plating, +/turf/open/floor/catwalk_floor, /area/maintenance/fore) "aGE" = ( /obj/structure/cable{ icon_state = "1-2" }, -/turf/open/floor/plating, +/turf/open/floor/catwalk_floor, /area/maintenance/central) "aGF" = ( /obj/structure/table, @@ -15386,6 +15522,7 @@ /obj/effect/turf_decal/tile/neutral{ dir = 1 }, +/obj/structure/chair, /turf/open/floor/plasteel, /area/hallway/primary/port/fore) "aHP" = ( @@ -15494,7 +15631,7 @@ /obj/structure/cable{ icon_state = "2-4" }, -/turf/open/floor/plating, +/turf/open/floor/catwalk_floor, /area/maintenance/central) "aIb" = ( /obj/effect/turf_decal/tile/yellow{ @@ -15520,7 +15657,7 @@ /obj/structure/cable{ icon_state = "4-8" }, -/turf/open/floor/plating, +/turf/open/floor/catwalk_floor, /area/maintenance/central) "aId" = ( /obj/structure/disposaloutlet{ @@ -15902,6 +16039,9 @@ /obj/effect/turf_decal/tile/neutral{ dir = 1 }, +/obj/structure/chair{ + dir = 1 + }, /turf/open/floor/plasteel, /area/hallway/primary/port/fore) "aIP" = ( @@ -16337,7 +16477,7 @@ icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/orange/hidden, -/turf/open/floor/plating, +/turf/open/floor/catwalk_floor, /area/maintenance/fore) "aJG" = ( /obj/structure/chair{ @@ -16477,6 +16617,9 @@ dir = 4; light_color = "#e8eaff" }, +/obj/structure/chair{ + dir = 1 + }, /turf/open/floor/plasteel, /area/hallway/primary/port/fore) "aJU" = ( @@ -16944,7 +17087,7 @@ icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/orange/hidden, -/turf/open/floor/plating, +/turf/open/floor/catwalk_floor, /area/maintenance/port/fore) "aKS" = ( /obj/machinery/atmospherics/pipe/simple/cyan/hidden{ @@ -17025,7 +17168,7 @@ /obj/structure/cable{ icon_state = "1-4" }, -/turf/open/floor/plating, +/turf/open/floor/catwalk_floor, /area/maintenance/fore) "aLc" = ( /obj/structure/disposalpipe/segment{ @@ -17101,7 +17244,7 @@ /obj/structure/cable{ icon_state = "1-2" }, -/turf/open/floor/plating, +/turf/open/floor/catwalk_floor, /area/maintenance/central) "aLj" = ( /obj/structure/disposalpipe/segment{ @@ -17703,7 +17846,7 @@ /obj/structure/cable{ icon_state = "1-2" }, -/turf/open/floor/plating, +/turf/open/floor/catwalk_floor, /area/maintenance/department/chapel) "aMu" = ( /obj/structure/cable{ @@ -18228,7 +18371,7 @@ /obj/structure/cable{ icon_state = "1-2" }, -/turf/open/floor/plating, +/turf/open/floor/catwalk_floor, /area/maintenance/department/chapel) "aNx" = ( /obj/machinery/door/firedoor, @@ -18269,9 +18412,13 @@ /turf/open/floor/plating, /area/security/office) "aNB" = ( -/obj/structure/grille, -/turf/open/floor/plating, -/area/space) +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/plasteel/white/corner{ + dir = 1 + }, +/area/hallway/primary/central) "aNC" = ( /obj/effect/turf_decal/tile/yellow{ dir = 4 @@ -18607,7 +18754,7 @@ name = "Port Bow Primary Hallway APC"; pixel_x = 24 }, -/turf/open/floor/plating, +/turf/open/floor/catwalk_floor, /area/maintenance/department/security) "aOp" = ( /obj/structure/disposalpipe/sorting/mail/flip{ @@ -18804,7 +18951,7 @@ /obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ dir = 4 }, -/turf/open/floor/plating, +/turf/open/floor/catwalk_floor, /area/maintenance/solars/port) "aOL" = ( /obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ @@ -18827,6 +18974,10 @@ /obj/structure/cable{ icon_state = "1-2" }, +/obj/effect/turf_decal/loading_area{ + dir = 1; + icon_state = "steel_decals10" + }, /turf/open/floor/plasteel, /area/hallway/primary/central) "aOO" = ( @@ -19031,6 +19182,7 @@ /obj/effect/turf_decal/tile/blue{ dir = 4 }, +/obj/structure/chair/sofa/right, /turf/open/floor/plasteel/dark/side{ dir = 1 }, @@ -19090,6 +19242,7 @@ c_tag = "Central Hall - Courtroom Access"; network = list("ss13","rd") }, +/obj/structure/chair/sofa/corp/left, /turf/open/floor/plasteel/dark/side{ dir = 1 }, @@ -20042,6 +20195,7 @@ dir = 4; pixel_x = -22 }, +/obj/structure/table/glass, /turf/open/floor/plasteel, /area/hallway/primary/port/fore) "aRC" = ( @@ -20267,7 +20421,7 @@ /obj/structure/cable{ icon_state = "1-2" }, -/turf/open/floor/plating, +/turf/open/floor/catwalk_floor, /area/maintenance/port/central) "aSd" = ( /obj/structure/cable{ @@ -20312,7 +20466,7 @@ pixel_y = -24 }, /obj/structure/cable, -/turf/open/floor/plating, +/turf/open/floor/catwalk_floor, /area/maintenance/department/security) "aSh" = ( /obj/structure/table, @@ -20801,7 +20955,7 @@ name = "EVA Maintenance APC"; pixel_x = -25 }, -/turf/open/floor/plating, +/turf/open/floor/catwalk_floor, /area/maintenance/department/eva) "aTo" = ( /obj/effect/spawner/structure/window/reinforced, @@ -21052,9 +21206,12 @@ name = "Station Intercom (Common)"; pixel_x = -26 }, -/obj/item/kirbyplants{ - icon_state = "plant-14" +/obj/machinery/quantumpad{ + name = "FROM SERVICE TO DORMS"; + map_pad_id = "cog_service"; + map_pad_link_id = "cog_dorm4" }, +/obj/effect/turf_decal/stripes/box, /turf/open/floor/plasteel, /area/hallway/secondary/civilian) "aTO" = ( @@ -21110,7 +21267,7 @@ /obj/structure/cable{ icon_state = "1-4" }, -/turf/open/floor/plating, +/turf/open/floor/catwalk_floor, /area/maintenance/port/central) "aTU" = ( /obj/machinery/holopad, @@ -21174,7 +21331,7 @@ /obj/structure/cable{ icon_state = "1-4" }, -/turf/open/floor/plating, +/turf/open/floor/catwalk_floor, /area/maintenance/port/central) "aUd" = ( /obj/structure/disposalpipe/segment, @@ -21427,7 +21584,7 @@ /obj/structure/cable{ icon_state = "1-2" }, -/turf/open/floor/plating, +/turf/open/floor/catwalk_floor, /area/maintenance/port/central) "aUJ" = ( /obj/machinery/door/firedoor, @@ -21455,6 +21612,7 @@ /obj/effect/turf_decal/tile/blue{ dir = 8 }, +/obj/item/kirbyplants/photosynthetic, /turf/open/floor/plasteel/dark/side, /area/security/courtroom) "aUM" = ( @@ -21560,7 +21718,7 @@ /obj/structure/cable{ icon_state = "1-2" }, -/turf/open/floor/plating, +/turf/open/floor/catwalk_floor, /area/maintenance/port/central) "aUZ" = ( /obj/machinery/door/firedoor, @@ -21673,7 +21831,7 @@ /obj/structure/cable{ icon_state = "2-8" }, -/turf/open/floor/plating, +/turf/open/floor/catwalk_floor, /area/maintenance/department/eva) "aVn" = ( /obj/effect/turf_decal/stripes/line, @@ -21808,9 +21966,7 @@ /obj/structure/cable{ icon_state = "4-8" }, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, +/turf/open/floor/catwalk_floor, /area/maintenance/central) "aVD" = ( /obj/machinery/vending/clothing, @@ -21939,7 +22095,7 @@ /obj/machinery/atmospherics/pipe/simple/orange/hidden{ dir = 10 }, -/turf/open/floor/plating, +/turf/open/floor/catwalk_floor, /area/maintenance/department/security) "aVR" = ( /obj/structure/window/reinforced, @@ -21985,7 +22141,7 @@ maxHealth = 45; name = "Officer Beepsky" }, -/turf/open/floor/plating, +/turf/open/floor/catwalk_floor, /area/maintenance/department/security) "aVW" = ( /obj/machinery/firealarm{ @@ -22030,7 +22186,7 @@ /obj/structure/cable{ icon_state = "1-4" }, -/turf/open/floor/plating, +/turf/open/floor/catwalk_floor, /area/maintenance/port/central) "aWc" = ( /obj/structure/disposalpipe/segment{ @@ -22039,7 +22195,7 @@ /obj/structure/cable{ icon_state = "4-8" }, -/turf/open/floor/plating, +/turf/open/floor/catwalk_floor, /area/maintenance/port/central) "aWd" = ( /obj/structure/cable{ @@ -22261,7 +22417,7 @@ dir = 8 }, /obj/machinery/atmospherics/pipe/simple/supplymain/hidden, -/turf/open/floor/plating, +/turf/open/floor/catwalk_floor, /area/maintenance/central) "aWB" = ( /turf/closed/wall/r_wall, @@ -22517,9 +22673,7 @@ /obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ dir = 9 }, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, +/turf/open/floor/catwalk_floor, /area/maintenance/central) "aXe" = ( /obj/machinery/bookbinder, @@ -22915,6 +23069,9 @@ /area/engineering/teg) "aYc" = ( /obj/effect/landmark/start/assistant, +/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{ + dir = 1 + }, /turf/open/floor/wood, /area/service/library) "aYd" = ( @@ -23024,7 +23181,7 @@ /obj/machinery/atmospherics/pipe/simple/orange/hidden{ dir = 8 }, -/turf/open/floor/plating, +/turf/open/floor/catwalk_floor, /area/maintenance/department/security) "aYr" = ( /obj/machinery/door/firedoor, @@ -23042,7 +23199,7 @@ req_access_txt = "12"; dir = 4 }, -/turf/open/floor/plating, +/turf/open/floor/catwalk_floor, /area/maintenance/department/security) "aYs" = ( /obj/structure/rack, @@ -23136,7 +23293,7 @@ name = "Detective's Office APC"; pixel_y = 23 }, -/turf/open/floor/plating, +/turf/open/floor/catwalk_floor, /area/maintenance/starboard/central) "aYD" = ( /obj/structure/disposalpipe/segment, @@ -23344,7 +23501,7 @@ /obj/structure/cable{ icon_state = "1-2" }, -/turf/open/floor/plating, +/turf/open/floor/catwalk_floor, /area/security/courtroom) "aYZ" = ( /obj/structure/cable{ @@ -23675,7 +23832,7 @@ name = "Central Primary Hallway APC"; pixel_x = -25 }, -/turf/open/floor/plating, +/turf/open/floor/catwalk_floor, /area/maintenance/port/central) "aZF" = ( /obj/structure/closet/firecloset, @@ -23796,7 +23953,7 @@ /obj/machinery/atmospherics/pipe/simple/orange/hidden{ dir = 8 }, -/turf/open/floor/plating, +/turf/open/floor/catwalk_floor, /area/maintenance/department/security) "aZP" = ( /obj/structure/table/reinforced, @@ -24089,12 +24246,10 @@ /turf/open/floor/plating, /area/service/lawoffice) "bax" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, /obj/structure/disposalpipe/segment{ dir = 4 }, +/obj/machinery/holopad, /turf/open/floor/wood, /area/service/library) "bay" = ( @@ -24151,11 +24306,11 @@ /turf/open/floor/plasteel/dark, /area/security/checkpoint/customs) "baE" = ( -/obj/structure/bookcase/random/reference, /obj/effect/turf_decal/tile/neutral, /obj/effect/turf_decal/tile/neutral{ dir = 1 }, +/obj/machinery/libraryscanner, /turf/open/floor/plasteel/dark, /area/service/library) "baF" = ( @@ -24179,11 +24334,7 @@ /turf/open/floor/plasteel/dark, /area/security/checkpoint/customs) "baH" = ( -/obj/structure/rack, -/obj/item/clothing/mask/gas, -/obj/item/tank/internals/air, -/obj/item/crowbar, -/obj/effect/spawner/lootdrop/maintenance, +/obj/structure/trash_pile, /turf/open/floor/plating, /area/maintenance/department/security) "baI" = ( @@ -24260,7 +24411,6 @@ /turf/open/floor/carpet/blue, /area/command/heads_quarters/captain) "baQ" = ( -/obj/structure/closet/emcloset, /obj/effect/turf_decal/tile/purple, /obj/effect/turf_decal/tile/purple{ dir = 4 @@ -24275,6 +24425,16 @@ dir = 4; light_color = "#c1caff" }, +/obj/effect/turf_decal/stripes/box, +/obj/machinery/quantumpad{ + map_pad_id = "station"; + map_pad_link_id = "xenoarch"; + mapped_quantum_pads = list("station","xenoarch"); + pixel_y = 7 + }, +/obj/structure/sign/warning/xeno_mining{ + pixel_x = 32 + }, /turf/open/floor/plasteel, /area/hallway/primary/aft) "baR" = ( @@ -24348,11 +24508,11 @@ /turf/open/floor/plasteel, /area/ai_monitored/turret_protected/ai) "baX" = ( -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -26 +/obj/structure/table/wood, +/obj/item/flashlight/lamp/green{ + pixel_x = 1; + pixel_y = 5 }, -/obj/structure/displaycase, /turf/open/floor/wood, /area/service/library) "baY" = ( @@ -24493,10 +24653,9 @@ /turf/open/floor/carpet, /area/security/courtroom) "bbq" = ( -/obj/effect/landmark/start/librarian, -/turf/open/floor/carpet{ - icon_state = "carpetsymbol" - }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden, +/obj/structure/disposalpipe/segment, +/turf/open/floor/wood, /area/service/library) "bbr" = ( /obj/structure/filingcabinet/employment, @@ -24626,7 +24785,10 @@ /area/engineering/teg) "bbI" = ( /obj/machinery/light, -/turf/open/floor/plasteel, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/white/corner, /area/hallway/primary/central) "bbJ" = ( /obj/machinery/atmospherics/pipe/heat_exchanging/simple{ @@ -24641,7 +24803,10 @@ dir = 1; pixel_y = -26 }, -/turf/open/floor/plasteel, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/white/corner, /area/hallway/primary/central) "bbL" = ( /obj/machinery/atmospherics/pipe/heat_exchanging/simple{ @@ -24684,7 +24849,7 @@ req_access_txt = "57"; dir = 4 }, -/turf/open/floor/plating, +/turf/open/floor/catwalk_floor, /area/security/checkpoint/customs) "bbQ" = ( /obj/structure/cable{ @@ -24700,7 +24865,7 @@ /obj/structure/cable{ icon_state = "1-2" }, -/turf/open/floor/plating, +/turf/open/floor/catwalk_floor, /area/maintenance/central) "bbR" = ( /obj/structure/closet/crate/hydroponics, @@ -24885,12 +25050,17 @@ /turf/open/floor/plasteel/dark, /area/service/chapel/office) "bcp" = ( -/obj/machinery/libraryscanner, -/obj/machinery/light, -/turf/open/floor/carpet{ - icon_state = "carpetsymbol" +/obj/machinery/atmospherics/pipe/simple/cyan/hidden, +/obj/effect/turf_decal/loading_area{ + dir = 1; + icon_state = "steel_decals10" }, -/area/service/library) +/obj/effect/turf_decal/loading_area{ + dir = 8; + icon_state = "steel_decals10" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) "bcq" = ( /obj/structure/disposalpipe/segment, /obj/effect/decal/cleanable/dirt, @@ -25189,7 +25359,7 @@ icon_state = "4-8" }, /obj/effect/landmark/event_spawn, -/turf/open/floor/plating, +/turf/open/floor/catwalk_floor, /area/maintenance/central) "bdc" = ( /turf/open/floor/engine/vacuum, @@ -25416,6 +25586,7 @@ /obj/machinery/light_switch{ pixel_y = 24 }, +/obj/structure/chair/sofa, /turf/open/floor/plasteel, /area/hallway/primary/aft) "bdD" = ( @@ -25444,6 +25615,7 @@ dir = 1; light_color = "#cee5d2" }, +/obj/item/kirbyplants/photosynthetic, /turf/open/floor/plasteel, /area/hallway/primary/aft) "bdG" = ( @@ -25790,7 +25962,7 @@ /obj/structure/cable{ icon_state = "1-8" }, -/turf/open/floor/plating, +/turf/open/floor/catwalk_floor, /area/maintenance/port/central) "bex" = ( /obj/effect/landmark/event_spawn, @@ -25857,6 +26029,10 @@ /obj/structure/chair{ dir = 4 }, +/obj/effect/turf_decal/loading_area{ + icon_state = "drain"; + name = "drain" + }, /turf/open/floor/plasteel, /area/hallway/primary/central) "beG" = ( @@ -25913,13 +26089,22 @@ /obj/structure/chair{ dir = 8 }, +/obj/effect/turf_decal/loading_area{ + icon_state = "drain"; + name = "drain" + }, /turf/open/floor/plasteel, /area/hallway/primary/central) "beN" = ( /obj/structure/table/glass, /obj/item/paper_bin, /obj/item/pen, -/turf/open/floor/plasteel, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/plasteel/white/corner{ + dir = 1 + }, /area/hallway/primary/central) "beO" = ( /obj/structure/chair{ @@ -25947,7 +26132,10 @@ dir = 8 }, /obj/effect/landmark/start/assistant, -/turf/open/floor/plasteel, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/white/corner, /area/hallway/primary/central) "beS" = ( /obj/structure/cable{ @@ -25960,7 +26148,12 @@ /obj/machinery/atmospherics/components/unary/vent_pump/on{ dir = 4 }, -/turf/open/floor/plasteel, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/plasteel/white/corner{ + dir = 1 + }, /area/hallway/primary/central) "beU" = ( /obj/effect/turf_decal/stripes/line{ @@ -26124,7 +26317,7 @@ /obj/machinery/atmospherics/pipe/simple/orange/hidden{ dir = 8 }, -/turf/open/floor/plating, +/turf/open/floor/catwalk_floor, /area/maintenance/department/security) "bfn" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/visible, @@ -26480,7 +26673,7 @@ icon_state = "2-8" }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, +/turf/open/floor/catwalk_floor, /area/maintenance/department/chapel) "bfY" = ( /obj/effect/turf_decal/bot, @@ -27235,7 +27428,7 @@ /obj/machinery/atmospherics/pipe/manifold/supplymain/hidden{ dir = 4 }, -/turf/open/floor/plating, +/turf/open/floor/catwalk_floor, /area/maintenance/department/chapel) "bhF" = ( /obj/structure/disposalpipe/segment{ @@ -27823,7 +28016,7 @@ icon_state = "4-8" }, /obj/structure/disposalpipe/segment, -/turf/open/floor/plating, +/turf/open/floor/catwalk_floor, /area/maintenance/aft) "biV" = ( /turf/closed/wall, @@ -28006,7 +28199,7 @@ /obj/machinery/atmospherics/pipe/simple/orange/hidden{ dir = 8 }, -/turf/open/floor/plating, +/turf/open/floor/catwalk_floor, /area/maintenance/department/eva) "bjq" = ( /obj/structure/cable{ @@ -28072,7 +28265,7 @@ /obj/structure/cable{ icon_state = "1-2" }, -/turf/open/floor/plating, +/turf/open/floor/catwalk_floor, /area/maintenance/starboard/central) "bjx" = ( /obj/machinery/atmospherics/pipe/manifold/scrubbers/visible{ @@ -28178,7 +28371,7 @@ /obj/machinery/atmospherics/pipe/simple/orange/hidden{ dir = 10 }, -/turf/open/floor/plating, +/turf/open/floor/catwalk_floor, /area/maintenance/department/eva) "bjI" = ( /obj/machinery/disposal/bin, @@ -28637,7 +28830,7 @@ icon_state = "1-8" }, /obj/machinery/atmospherics/pipe/manifold/orange/hidden, -/turf/open/floor/plating, +/turf/open/floor/catwalk_floor, /area/maintenance/department/security) "bkG" = ( /obj/effect/turf_decal/tile/yellow, @@ -28755,6 +28948,7 @@ c_tag = "EVA Maintenance - Aft"; dir = 1 }, +/obj/structure/trash_pile, /turf/open/floor/plating, /area/maintenance/department/eva) "bkS" = ( @@ -28785,7 +28979,7 @@ /obj/machinery/atmospherics/pipe/simple/orange/hidden{ dir = 5 }, -/turf/open/floor/plating, +/turf/open/floor/catwalk_floor, /area/maintenance/department/eva) "bkW" = ( /turf/open/floor/plasteel, @@ -29107,6 +29301,7 @@ dir = 4; light_color = "#e8eaff" }, +/obj/item/kirbyplants/photosynthetic, /turf/open/floor/plasteel, /area/hallway/primary/central) "blD" = ( @@ -29125,6 +29320,10 @@ dir = 8 }, /obj/machinery/atmospherics/pipe/simple/cyan/hidden, +/obj/effect/turf_decal/loading_area{ + dir = 8; + icon_state = "steel_decals10" + }, /turf/open/floor/plasteel, /area/hallway/primary/central) "blF" = ( @@ -29141,6 +29340,9 @@ }, /obj/item/paper_bin, /obj/item/pen, +/obj/machinery/door/window/northleft{ + dir = 2 + }, /turf/open/floor/plasteel, /area/hallway/primary/central) "blG" = ( @@ -29185,6 +29387,12 @@ /obj/item/radio/intercom{ name = "Station Intercom (Common)" }, +/obj/structure/window/reinforced/spawner/north{ + dir = 2 + }, +/obj/structure/window/reinforced/spawner/north{ + dir = 4 + }, /turf/open/floor/plasteel, /area/hallway/primary/central) "blK" = ( @@ -29493,7 +29701,7 @@ /obj/structure/cable{ icon_state = "2-8" }, -/turf/open/floor/plating, +/turf/open/floor/catwalk_floor, /area/maintenance/fore) "bmq" = ( /obj/machinery/navbeacon{ @@ -30034,7 +30242,7 @@ /obj/machinery/atmospherics/pipe/manifold/cyan/hidden{ dir = 8 }, -/turf/open/floor/plating, +/turf/open/floor/catwalk_floor, /area/maintenance/starboard/central) "bnm" = ( /obj/machinery/atmospherics/pipe/manifold/orange/hidden{ @@ -30229,7 +30437,7 @@ /obj/structure/cable{ icon_state = "1-8" }, -/turf/open/floor/plating, +/turf/open/floor/catwalk_floor, /area/maintenance/fore) "bnI" = ( /obj/structure/bed, @@ -31133,6 +31341,7 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, +/obj/item/kirbyplants/photosynthetic, /turf/open/floor/plasteel, /area/hallway/primary/aft) "bpB" = ( @@ -31783,7 +31992,7 @@ /obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ dir = 4 }, -/turf/open/floor/plating, +/turf/open/floor/catwalk_floor, /area/maintenance/department/eva) "brd" = ( /obj/machinery/portable_atmospherics/canister/oxygen, @@ -31798,9 +32007,7 @@ /obj/structure/cable{ icon_state = "1-8" }, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, +/turf/open/floor/catwalk_floor, /area/maintenance/central) "brf" = ( /obj/machinery/atmospherics/pipe/manifold/green/visible, @@ -31960,7 +32167,7 @@ name = "Aft Air Hookup APC"; pixel_x = -25 }, -/turf/open/floor/plating, +/turf/open/floor/catwalk_floor, /area/engineering/atmos/aftair) "brw" = ( /obj/structure/cable{ @@ -32134,7 +32341,7 @@ /obj/structure/cable{ icon_state = "2-8" }, -/turf/open/floor/plating, +/turf/open/floor/catwalk_floor, /area/engineering/atmos/aftair) "brO" = ( /obj/machinery/firealarm{ @@ -32286,7 +32493,7 @@ icon_state = "2-8" }, /obj/effect/landmark/event_spawn, -/turf/open/floor/plating, +/turf/open/floor/catwalk_floor, /area/maintenance/port/central) "bsc" = ( /obj/effect/turf_decal/tile/green, @@ -32883,7 +33090,7 @@ /obj/machinery/atmospherics/components/binary/valve/digital/on{ dir = 4 }, -/turf/open/floor/plating, +/turf/open/floor/catwalk_floor, /area/maintenance/department/chapel) "bts" = ( /obj/effect/decal/cleanable/dirt, @@ -32940,6 +33147,9 @@ /obj/effect/turf_decal/tile/yellow{ dir = 8 }, +/obj/structure/chair{ + dir = 8 + }, /turf/open/floor/plasteel, /area/hallway/primary/aft) "btz" = ( @@ -33066,7 +33276,7 @@ icon_state = "1-2" }, /obj/effect/landmark/event_spawn, -/turf/open/floor/plating, +/turf/open/floor/catwalk_floor, /area/maintenance/department/eva) "btS" = ( /obj/effect/turf_decal/delivery, @@ -33562,7 +33772,7 @@ name = "Construction Area"; req_access_txt = "12" }, -/turf/open/floor/plating, +/turf/open/floor/catwalk_floor, /area/construction) "bvf" = ( /obj/item/kirbyplants{ @@ -33725,11 +33935,11 @@ /turf/closed/wall/r_wall, /area/service/kitchen/coldroom) "bvx" = ( -/obj/structure/grille, /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/pipe/simple/cyan/hidden{ dir = 4 }, +/obj/structure/trash_pile, /turf/open/floor/plating, /area/maintenance/department/chapel) "bvy" = ( @@ -33872,7 +34082,7 @@ /obj/structure/cable{ icon_state = "1-2" }, -/turf/open/floor/plating, +/turf/open/floor/catwalk_floor, /area/maintenance/department/chapel) "bvQ" = ( /obj/structure/reagent_dispensers/watertank, @@ -33959,7 +34169,7 @@ dir = 8 }, /obj/machinery/atmospherics/pipe/simple/supplymain/hidden, -/turf/open/floor/plating, +/turf/open/floor/catwalk_floor, /area/maintenance/department/eva) "bwb" = ( /obj/machinery/atmospherics/components/unary/portables_connector/visible{ @@ -33976,7 +34186,7 @@ dir = 8 }, /obj/structure/cable, -/turf/open/floor/plating, +/turf/open/floor/catwalk_floor, /area/maintenance/department/chapel) "bwd" = ( /obj/structure/disposalpipe/segment{ @@ -34072,7 +34282,7 @@ icon_state = "4-8" }, /mob/living/simple_animal/cockroach, -/turf/open/floor/plating, +/turf/open/floor/catwalk_floor, /area/maintenance/starboard/central) "bwp" = ( /obj/structure/disposalpipe/segment{ @@ -34082,7 +34292,7 @@ icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/cyan/hidden, -/turf/open/floor/plating, +/turf/open/floor/catwalk_floor, /area/maintenance/starboard/central) "bwq" = ( /obj/structure/disposaloutlet, @@ -34102,6 +34312,7 @@ dir = 8 }, /obj/effect/turf_decal/delivery, +/obj/item/kirbyplants/photosynthetic, /turf/open/floor/plasteel, /area/hallway/primary/central) "bws" = ( @@ -34129,7 +34340,7 @@ }, /obj/item/trash/can, /obj/machinery/atmospherics/pipe/simple/cyan/hidden, -/turf/open/floor/plating, +/turf/open/floor/catwalk_floor, /area/maintenance/starboard/central) "bwv" = ( /obj/machinery/disposal/bin{ @@ -34315,7 +34526,7 @@ }, /obj/machinery/atmospherics/pipe/simple/cyan/hidden, /mob/living/simple_animal/hostile/retaliate/bat, -/turf/open/floor/plating, +/turf/open/floor/catwalk_floor, /area/maintenance/starboard/central) "bwN" = ( /obj/machinery/atmospherics/pipe/simple/general/visible{ @@ -34539,6 +34750,7 @@ dir = 8; pixel_x = 26 }, +/obj/item/kirbyplants/photosynthetic, /turf/open/floor/plasteel, /area/hallway/primary/central) "bxl" = ( @@ -34606,7 +34818,7 @@ icon_state = "1-4" }, /obj/machinery/atmospherics/pipe/simple/cyan/hidden, -/turf/open/floor/plating, +/turf/open/floor/catwalk_floor, /area/maintenance/starboard/central) "bxr" = ( /obj/structure/table, @@ -35110,7 +35322,7 @@ icon_state = "1-8" }, /obj/machinery/atmospherics/pipe/simple/cyan/hidden, -/turf/open/floor/plating, +/turf/open/floor/catwalk_floor, /area/maintenance/starboard/central) "byu" = ( /obj/structure/disposalpipe/segment, @@ -35389,6 +35601,7 @@ light_color = "#ffc1c1" }, /mob/living/simple_animal/cockroach, +/obj/structure/trash_pile, /turf/open/floor/plating, /area/maintenance/aft) "bzf" = ( @@ -35751,7 +35964,7 @@ name = "Central Port Maintenance APC"; pixel_x = 24 }, -/turf/open/floor/plating, +/turf/open/floor/catwalk_floor, /area/maintenance/port/central) "bzU" = ( /obj/machinery/atmospherics/pipe/simple/supply/visible{ @@ -36359,7 +36572,7 @@ /obj/structure/cable{ icon_state = "1-2" }, -/turf/open/floor/plating, +/turf/open/floor/catwalk_floor, /area/engineering/atmos/aftair) "bBf" = ( /obj/structure/cable{ @@ -36715,6 +36928,14 @@ dir = 4; pixel_x = -22 }, +/obj/effect/turf_decal/loading_area{ + dir = 1; + icon_state = "steel_decals10" + }, +/obj/effect/turf_decal/loading_area{ + dir = 8; + icon_state = "steel_decals10" + }, /turf/open/floor/plasteel, /area/hallway/primary/central) "bBX" = ( @@ -37386,7 +37607,7 @@ /obj/structure/cable{ icon_state = "4-8" }, -/turf/open/floor/plating, +/turf/open/floor/catwalk_floor, /area/hallway/secondary/service) "bDy" = ( /obj/effect/turf_decal/tile/brown{ @@ -37927,6 +38148,9 @@ "bEC" = ( /obj/structure/table/glass, /obj/item/storage/fancy/donut_box, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, /turf/open/floor/plasteel, /area/hallway/primary/central) "bED" = ( @@ -37985,7 +38209,7 @@ /obj/structure/cable{ icon_state = "1-2" }, -/turf/open/floor/plating, +/turf/open/floor/catwalk_floor, /area/maintenance/fore) "bEJ" = ( /obj/machinery/atmospherics/pipe/simple/cyan/hidden, @@ -38759,7 +38983,7 @@ /obj/structure/cable{ icon_state = "1-4" }, -/turf/open/floor/plating, +/turf/open/floor/catwalk_floor, /area/maintenance/fore) "bGj" = ( /obj/structure/disposalpipe/segment{ @@ -38771,7 +38995,7 @@ /obj/structure/cable{ icon_state = "4-8" }, -/turf/open/floor/plating, +/turf/open/floor/catwalk_floor, /area/maintenance/fore) "bGk" = ( /obj/effect/turf_decal/stripes/line{ @@ -38907,7 +39131,7 @@ /obj/structure/cable{ icon_state = "4-8" }, -/turf/open/floor/plating, +/turf/open/floor/catwalk_floor, /area/maintenance/fore) "bGA" = ( /obj/effect/turf_decal/tile/neutral, @@ -38917,6 +39141,7 @@ /obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ dir = 10 }, +/obj/item/kirbyplants/photosynthetic, /turf/open/floor/plasteel, /area/hallway/primary/central) "bGB" = ( @@ -38969,7 +39194,7 @@ /obj/structure/cable{ icon_state = "1-2" }, -/turf/open/floor/plating, +/turf/open/floor/catwalk_floor, /area/maintenance/solars/starboard/aft) "bGG" = ( /obj/machinery/atmospherics/pipe/simple/orange/hidden, @@ -39119,7 +39344,7 @@ /obj/structure/sign/poster/contraband/busty_backdoor_xeno_babes_6{ pixel_x = 32 }, -/turf/open/floor/plating, +/turf/open/floor/catwalk_floor, /area/maintenance/starboard/central) "bGY" = ( /obj/structure/disposalpipe/segment{ @@ -39439,11 +39664,11 @@ /turf/open/floor/plasteel/white, /area/medical/medbay/lobby) "bHJ" = ( -/obj/item/kirbyplants{ - icon_state = "plant-03" +/obj/effect/turf_decal/tile/blue{ + dir = 8 }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/lobby) +/turf/open/floor/plasteel/white/corner, +/area/hallway/primary/central) "bHK" = ( /obj/structure/sign/warning/biohazard, /turf/closed/wall, @@ -39454,7 +39679,7 @@ /obj/structure/cable{ icon_state = "1-2" }, -/turf/open/floor/plating, +/turf/open/floor/catwalk_floor, /area/maintenance/starboard/aft) "bHM" = ( /obj/effect/spawner/structure/window/reinforced, @@ -40149,7 +40374,7 @@ /obj/structure/cable{ icon_state = "1-2" }, -/turf/open/floor/plating, +/turf/open/floor/catwalk_floor, /area/maintenance/starboard/aft) "bJm" = ( /obj/structure/cable{ @@ -40177,7 +40402,7 @@ /obj/structure/cable{ icon_state = "1-2" }, -/turf/open/floor/plating, +/turf/open/floor/catwalk_floor, /area/maintenance/aft) "bJq" = ( /obj/effect/turf_decal/tile/green{ @@ -40706,7 +40931,10 @@ /turf/open/floor/plasteel, /area/engineering/engine_smes) "bKw" = ( -/obj/structure/window/reinforced/spawner/west, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden, /turf/open/floor/wood, /area/service/library) "bKx" = ( @@ -40857,11 +41085,11 @@ /turf/open/floor/plasteel/white, /area/science/robotics/lab) "bKR" = ( -/obj/structure/bookcase/random/religion, /obj/effect/turf_decal/tile/neutral, /obj/effect/turf_decal/tile/neutral{ dir = 1 }, +/obj/machinery/vending/wardrobe/curator_wardrobe, /turf/open/floor/plasteel/dark, /area/service/library) "bKS" = ( @@ -41011,6 +41239,7 @@ pixel_x = 26 }, /obj/machinery/atmospherics/pipe/simple/supplymain/hidden, +/obj/structure/table/glass, /turf/open/floor/plasteel, /area/hallway/primary/central) "bLh" = ( @@ -41316,7 +41545,7 @@ /obj/structure/cable{ icon_state = "1-2" }, -/turf/open/floor/plating, +/turf/open/floor/catwalk_floor, /area/maintenance/starboard/aft) "bLL" = ( /obj/effect/turf_decal/tile/blue, @@ -41422,8 +41651,8 @@ /turf/open/floor/plasteel/cafeteria, /area/medical/medbay/central) "bLX" = ( -/obj/structure/lattice, -/turf/closed/wall, +/obj/structure/bookcase/random/fiction, +/turf/open/floor/wood, /area/space) "bLY" = ( /obj/machinery/atmospherics/pipe/simple/orange/hidden, @@ -41433,7 +41662,7 @@ /obj/structure/cable{ icon_state = "1-2" }, -/turf/open/floor/plating, +/turf/open/floor/catwalk_floor, /area/maintenance/starboard/aft) "bMa" = ( /obj/effect/turf_decal/tile/blue, @@ -41593,7 +41822,7 @@ dir = 8; pixel_y = -22 }, -/turf/open/floor/plating, +/turf/open/floor/catwalk_floor, /area/maintenance/starboard/aft) "bMr" = ( /obj/machinery/vending/wardrobe/viro_wardrobe, @@ -41752,6 +41981,9 @@ light_color = "#e8eaff" }, /obj/machinery/atmospherics/pipe/simple/supplymain/hidden, +/obj/structure/chair{ + dir = 1 + }, /turf/open/floor/plasteel, /area/hallway/primary/central) "bMH" = ( @@ -42147,7 +42379,7 @@ /obj/structure/cable{ icon_state = "4-8" }, -/turf/open/floor/plating, +/turf/open/floor/catwalk_floor, /area/maintenance/starboard/aft) "bNu" = ( /obj/machinery/light{ @@ -42356,7 +42588,7 @@ /obj/structure/cable{ icon_state = "4-8" }, -/turf/open/floor/plating, +/turf/open/floor/catwalk_floor, /area/maintenance/starboard/aft) "bNW" = ( /obj/structure/chair{ @@ -42571,7 +42803,7 @@ /obj/structure/cable{ icon_state = "1-2" }, -/turf/open/floor/plating, +/turf/open/floor/catwalk_floor, /area/maintenance/aft) "bOq" = ( /obj/machinery/power/tracker, @@ -43021,7 +43253,7 @@ /obj/structure/cable{ icon_state = "4-8" }, -/turf/open/floor/plating, +/turf/open/floor/catwalk_floor, /area/maintenance/starboard/aft) "bPn" = ( /obj/structure/cable{ @@ -43030,7 +43262,7 @@ /obj/structure/cable{ icon_state = "2-8" }, -/turf/open/floor/plating, +/turf/open/floor/catwalk_floor, /area/maintenance/starboard/aft) "bPo" = ( /obj/structure/grille, @@ -43083,7 +43315,7 @@ /obj/structure/cable{ icon_state = "1-2" }, -/turf/open/floor/plating, +/turf/open/floor/catwalk_floor, /area/maintenance/aft) "bPt" = ( /obj/machinery/holopad, @@ -43270,7 +43502,7 @@ /obj/structure/cable{ icon_state = "1-2" }, -/turf/open/floor/plating, +/turf/open/floor/catwalk_floor, /area/maintenance/aft) "bPO" = ( /obj/machinery/door/firedoor, @@ -43665,7 +43897,7 @@ /obj/structure/cable{ icon_state = "4-8" }, -/turf/open/floor/plating, +/turf/open/floor/catwalk_floor, /area/maintenance/aft) "bQF" = ( /obj/structure/disposalpipe/segment, @@ -43885,7 +44117,7 @@ desc = "A thin layer of dust coating the floor."; name = "dust" }, -/turf/open/floor/plating, +/turf/open/floor/catwalk_floor, /area/maintenance/port/fore) "bRb" = ( /obj/machinery/door/window/southleft{ @@ -44024,7 +44256,7 @@ /obj/structure/cable{ icon_state = "1-8" }, -/turf/open/floor/plating, +/turf/open/floor/catwalk_floor, /area/maintenance/starboard/aft) "bRs" = ( /obj/effect/turf_decal/stripes/line{ @@ -44378,13 +44610,17 @@ /turf/open/floor/plasteel/dark, /area/science/robotics/lab) "bRZ" = ( -/obj/structure/bookcase/random/nonfiction, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ +/obj/effect/turf_decal/tile/blue{ dir = 1 }, -/turf/open/floor/plasteel/dark, -/area/service/library) +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/item/kirbyplants/photosynthetic, +/turf/open/floor/plasteel/dark/side{ + dir = 1 + }, +/area/security/courtroom) "bSa" = ( /obj/structure/closet/secure_closet/medical3, /obj/effect/turf_decal/tile/blue, @@ -45814,7 +46050,7 @@ name = "Starboard Quarter Maintenance APC"; pixel_y = 23 }, -/turf/open/floor/plating, +/turf/open/floor/catwalk_floor, /area/maintenance/starboard/aft) "bUX" = ( /obj/effect/turf_decal/stripes/line{ @@ -46117,7 +46353,7 @@ /obj/structure/cable{ icon_state = "2-8" }, -/turf/open/floor/plating, +/turf/open/floor/catwalk_floor, /area/maintenance/starboard/central) "bVA" = ( /obj/structure/disposalpipe/segment{ @@ -46222,7 +46458,7 @@ /obj/structure/cable{ icon_state = "1-2" }, -/turf/open/floor/plating, +/turf/open/floor/catwalk_floor, /area/maintenance/starboard/central) "bVL" = ( /obj/structure/chair{ @@ -46559,6 +46795,9 @@ dir = 8; pixel_x = 23 }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, /turf/open/floor/plasteel, /area/hallway/primary/central) "bWr" = ( @@ -47043,6 +47282,9 @@ /obj/structure/cable{ icon_state = "1-4" }, +/obj/structure/chair{ + dir = 8 + }, /turf/open/floor/plasteel, /area/hallway/primary/aft) "bXc" = ( @@ -47123,7 +47365,7 @@ /obj/structure/cable{ icon_state = "1-2" }, -/turf/open/floor/plating, +/turf/open/floor/catwalk_floor, /area/maintenance/aft) "bXk" = ( /obj/effect/turf_decal/stripes/end{ @@ -47241,7 +47483,7 @@ /obj/structure/cable{ icon_state = "4-8" }, -/turf/open/floor/plating, +/turf/open/floor/catwalk_floor, /area/maintenance/aft) "bXv" = ( /obj/structure/disposalpipe/segment{ @@ -47250,7 +47492,7 @@ /obj/structure/cable{ icon_state = "1-8" }, -/turf/open/floor/plating, +/turf/open/floor/catwalk_floor, /area/maintenance/aft) "bXw" = ( /obj/effect/turf_decal/stripes/line{ @@ -47332,7 +47574,7 @@ /obj/structure/cable{ icon_state = "2-4" }, -/turf/open/floor/plating, +/turf/open/floor/catwalk_floor, /area/maintenance/starboard/aft) "bXF" = ( /obj/structure/cable{ @@ -47551,7 +47793,7 @@ /obj/structure/cable{ icon_state = "1-4" }, -/turf/open/floor/plating, +/turf/open/floor/catwalk_floor, /area/maintenance/starboard/aft) "bYf" = ( /obj/structure/plasticflaps, @@ -47579,7 +47821,7 @@ /obj/structure/cable{ icon_state = "1-8" }, -/turf/open/floor/plating, +/turf/open/floor/catwalk_floor, /area/maintenance/starboard/aft) "bYi" = ( /obj/structure/sink{ @@ -47774,7 +48016,7 @@ /obj/structure/cable{ icon_state = "1-2" }, -/turf/open/floor/plating, +/turf/open/floor/catwalk_floor, /area/maintenance/aft) "bYD" = ( /obj/machinery/atmospherics/pipe/simple/cyan/hidden{ @@ -48284,8 +48526,11 @@ /turf/open/floor/engine/vacuum, /area/engineering/atmos) "bZJ" = ( -/obj/structure/window/reinforced/spawner/east, -/obj/machinery/photocopier, +/obj/machinery/door/window/northleft{ + name = "Library Desk Door"; + req_access_txt = "37"; + dir = 4 + }, /turf/open/floor/carpet, /area/service/library) "bZK" = ( @@ -48361,14 +48606,11 @@ /turf/open/floor/plasteel, /area/science/robotics/lab) "bZU" = ( -/obj/structure/table/wood, -/obj/machinery/door/window/northright{ - name = "Library Desk Window"; - req_access_txt = "37" - }, -/turf/open/floor/carpet{ - icon_state = "carpetsymbol" +/obj/structure/cable{ + icon_state = "1-4" }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden, +/turf/open/floor/wood, /area/service/library) "bZV" = ( /obj/structure/window/reinforced/spawner/east, @@ -48386,15 +48628,15 @@ /turf/closed/wall/r_wall, /area/science/mixing) "bZX" = ( -/obj/structure/table/wood, -/obj/structure/cable{ - icon_state = "1-2" +/obj/structure/chair/comfy/black{ + dir = 1 }, -/obj/machinery/computer/libraryconsole/bookmanagement, -/turf/open/floor/carpet{ - icon_state = "carpetsymbol" +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 }, -/area/service/library) +/turf/open/floor/plasteel/dark, +/area/science/observatory) "bZY" = ( /obj/machinery/atmospherics/pipe/simple/general/visible{ dir = 9 @@ -48402,10 +48644,8 @@ /turf/open/floor/plasteel/white, /area/science/mixing) "bZZ" = ( -/obj/machinery/vending/wardrobe/curator_wardrobe, -/turf/open/floor/carpet{ - icon_state = "carpetsymbol" - }, +/obj/structure/bookcase/manuals/medical, +/turf/open/floor/wood, /area/service/library) "caa" = ( /obj/machinery/atmospherics/components/unary/portables_connector/visible{ @@ -48418,12 +48658,8 @@ /turf/open/floor/plasteel/white, /area/science/mixing) "cab" = ( -/obj/structure/bookcase/random/adult{ - name = "Forbidden Knowledge" - }, -/turf/open/floor/carpet{ - icon_state = "carpetsymbol" - }, +/obj/structure/bookcase/random/adult, +/turf/open/floor/wood, /area/service/library) "cac" = ( /obj/machinery/atmospherics/components/unary/portables_connector/visible{ @@ -49242,7 +49478,7 @@ /obj/structure/cable{ icon_state = "1-2" }, -/turf/open/floor/plating, +/turf/open/floor/catwalk_floor, /area/maintenance/starboard/central) "cbS" = ( /obj/structure/closet/l3closet/scientist, @@ -49807,7 +50043,7 @@ /obj/structure/cable{ icon_state = "1-2" }, -/turf/open/floor/plating, +/turf/open/floor/catwalk_floor, /area/hallway/primary/aft) "ccW" = ( /obj/effect/turf_decal/tile/blue{ @@ -49834,17 +50070,8 @@ /turf/open/floor/plasteel, /area/science/research) "ccY" = ( -/obj/structure/cable, -/obj/effect/landmark/start/librarian, -/obj/machinery/power/apc{ - areastring = "/area/service/library"; - dir = 4; - name = "Library APC"; - pixel_x = 24 - }, -/turf/open/floor/carpet{ - icon_state = "carpetsymbol" - }, +/obj/structure/bookcase/random, +/turf/open/floor/wood, /area/service/library) "ccZ" = ( /obj/structure/closet/cardboard, @@ -50372,16 +50599,8 @@ /turf/closed/wall/r_wall, /area/medical/medbay/lobby) "cea" = ( -/obj/structure/table/wood, -/obj/structure/window/reinforced/spawner/north, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/item/paper_bin, -/obj/item/pen, -/turf/open/floor/carpet{ - icon_state = "carpetsymbol" - }, +/obj/structure/displaycase/trophy, +/turf/open/floor/wood, /area/service/library) "ceb" = ( /obj/effect/spawner/structure/window/reinforced, @@ -50441,11 +50660,9 @@ /turf/open/floor/plating, /area/engineering/storage/tech) "cei" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{ - dir = 8 +/obj/effect/turf_decal/loading_area{ + icon_state = "drain"; + name = "drain" }, /turf/open/floor/plasteel, /area/hallway/primary/central) @@ -50643,7 +50860,7 @@ icon_state = "1-2" }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, +/turf/open/floor/catwalk_floor, /area/maintenance/solars/port) "ceD" = ( /obj/docking_port/stationary{ @@ -50696,7 +50913,10 @@ dir = 1; pixel_y = -26 }, -/turf/open/floor/plasteel, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/white/corner, /area/hallway/primary/central) "ceJ" = ( /obj/machinery/power/solar_control{ @@ -50779,7 +50999,7 @@ /obj/structure/cable{ icon_state = "2-5" }, -/turf/open/floor/plating, +/turf/open/floor/catwalk_floor, /area/maintenance/starboard/central) "ceR" = ( /obj/machinery/door/poddoor{ @@ -50799,7 +51019,7 @@ name = "3maintenance loot spawner" }, /obj/structure/cable, -/turf/open/floor/plating, +/turf/open/floor/catwalk_floor, /area/maintenance/starboard/central) "ceT" = ( /obj/effect/turf_decal/delivery, @@ -51266,17 +51486,11 @@ /turf/open/floor/plasteel, /area/engineering/atmos) "cfQ" = ( -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/delivery, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 +/obj/structure/cable{ + icon_state = "1-2" }, -/obj/machinery/door/airlock/public/glass{ - name = "Library Access"; - dir = 4 - }, -/turf/open/floor/plasteel, -/area/service/library) +/turf/open/floor/catwalk_floor, +/area/maintenance/department/eva) "cfR" = ( /obj/effect/turf_decal/delivery, /obj/machinery/vending/cigarette, @@ -52135,7 +52349,7 @@ /obj/machinery/atmospherics/pipe/simple/orange/hidden{ dir = 8 }, -/turf/open/floor/plating, +/turf/open/floor/catwalk_floor, /area/maintenance/department/security) "chK" = ( /obj/effect/spawner/structure/window/reinforced, @@ -52253,9 +52467,7 @@ /turf/open/floor/engine, /area/science/storage) "chU" = ( -/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{ - dir = 1 - }, +/obj/machinery/photocopier, /turf/open/floor/wood, /area/service/library) "chV" = ( @@ -52489,7 +52701,10 @@ /obj/structure/sign/warning/vacuum{ pixel_y = -32 }, -/turf/open/floor/plasteel, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/white/corner, /area/hallway/primary/central) "cit" = ( /obj/structure/cable{ @@ -52499,7 +52714,7 @@ icon_state = "2-4" }, /obj/effect/landmark/blobstart, -/turf/open/floor/plating, +/turf/open/floor/catwalk_floor, /area/maintenance/port/fore) "ciu" = ( /obj/structure/barricade/wooden, @@ -52509,7 +52724,7 @@ /obj/structure/sign/poster/ripped{ pixel_y = 32 }, -/turf/open/floor/plating, +/turf/open/floor/catwalk_floor, /area/maintenance/port/fore) "civ" = ( /obj/structure/girder/displaced, @@ -52517,7 +52732,7 @@ /area/maintenance/port/fore) "ciw" = ( /obj/structure/cable, -/turf/open/floor/plating, +/turf/open/floor/catwalk_floor, /area/maintenance/port/fore) "cix" = ( /obj/structure/girder, @@ -52935,7 +53150,7 @@ /obj/structure/sign/poster/contraband/scum{ pixel_x = 32 }, -/turf/open/floor/plating, +/turf/open/floor/catwalk_floor, /area/maintenance/starboard/aft) "cju" = ( /obj/effect/turf_decal/stripes/line, @@ -52946,9 +53161,6 @@ /obj/structure/chair{ dir = 1 }, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 8 - }, /turf/open/floor/carpet, /area/service/library) "cjw" = ( @@ -52960,8 +53172,8 @@ icon_state = "4-8" }, /obj/effect/landmark/start/assistant, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 4 +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 8 }, /turf/open/floor/wood, /area/service/library) @@ -53111,7 +53323,7 @@ desc = "A thin layer of dust coating the floor."; name = "dust" }, -/turf/open/floor/plating, +/turf/open/floor/catwalk_floor, /area/maintenance/port/fore) "cjP" = ( /obj/effect/turf_decal/tile/purple{ @@ -53326,12 +53538,9 @@ /turf/open/floor/plasteel/white, /area/medical/medbay/central) "cke" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden, -/turf/open/floor/wood, -/area/service/library) +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/space) "ckf" = ( /obj/effect/landmark/event_spawn, /turf/open/floor/plasteel, @@ -54021,14 +54230,8 @@ /turf/closed/wall/r_wall, /area/science/xenobiology) "clu" = ( -/obj/machinery/door/window/northleft{ - name = "Library Desk Door"; - req_access_txt = "37" - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden, -/turf/open/floor/carpet{ - icon_state = "carpetsymbol" - }, +/obj/structure/chair/comfy/black, +/turf/open/floor/wood, /area/service/library) "clv" = ( /obj/effect/turf_decal/tile/blue, @@ -54038,13 +54241,11 @@ /turf/open/floor/plasteel/white, /area/medical/medbay/central) "clw" = ( -/obj/effect/landmark/start/librarian, /obj/machinery/newscaster{ pixel_x = -30 }, -/turf/open/floor/carpet{ - icon_state = "carpetsymbol" - }, +/obj/structure/bookcase/manuals/research_and_development, +/turf/open/floor/wood, /area/service/library) "clx" = ( /obj/structure/cable{ @@ -54658,12 +54859,15 @@ /obj/machinery/light_switch{ pixel_x = -24 }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 5 +/obj/machinery/light{ + dir = 8 }, -/turf/open/floor/carpet{ - icon_state = "carpetsymbol" +/obj/structure/table/wood, +/obj/item/flashlight/lamp/green{ + pixel_x = 1; + pixel_y = 5 }, +/turf/open/floor/wood, /area/service/library) "cmQ" = ( /obj/machinery/light/small{ @@ -55146,11 +55350,12 @@ /turf/open/floor/plasteel, /area/science/research) "cnN" = ( -/obj/structure/bookcase/random/fiction, /obj/effect/turf_decal/tile/neutral, /obj/effect/turf_decal/tile/neutral{ dir = 1 }, +/obj/structure/table/wood, +/obj/machinery/computer/libraryconsole/bookmanagement, /turf/open/floor/plasteel/dark, /area/service/library) "cnO" = ( @@ -55165,6 +55370,10 @@ icon_state = "plant-21"; pixel_y = 3 }, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -26 + }, /turf/open/floor/wood, /area/service/library) "cnQ" = ( @@ -55223,16 +55432,11 @@ /turf/open/floor/engine, /area/science/storage) "cnW" = ( -/obj/structure/chair/office/dark{ - dir = 1 +/obj/structure/mirror{ + pixel_y = -16 }, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 8 - }, -/turf/open/floor/carpet{ - icon_state = "carpetsymbol" - }, -/area/service/library) +/turf/open/floor/wood, +/area/service/barbershop) "cnX" = ( /obj/effect/turf_decal/stripes/line{ dir = 9 @@ -55547,11 +55751,6 @@ c_tag = "Aft Hallway - MedSci Port"; dir = 4 }, -/obj/machinery/quantumpad{ - map_pad_id = "station"; - map_pad_link_id = "xenoarch"; - mapped_quantum_pads = list("station","xenoarch") - }, /turf/open/floor/plasteel, /area/hallway/primary/aft) "coC" = ( @@ -55731,6 +55930,9 @@ /obj/machinery/camera{ c_tag = "Central Docking Bay" }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, /turf/open/floor/plasteel, /area/hallway/primary/central) "coR" = ( @@ -55738,7 +55940,10 @@ c_tag = "Ferry Docking Bay"; dir = 1 }, -/turf/open/floor/plasteel, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/white/corner, /area/hallway/primary/central) "coS" = ( /obj/effect/turf_decal/stripes/line{ @@ -56053,10 +56258,9 @@ /turf/open/floor/plasteel/dark, /area/command/heads_quarters/captain) "cpu" = ( -/obj/structure/cable{ - icon_state = "2-4" +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 4 }, -/obj/machinery/holopad, /turf/open/floor/wood, /area/service/library) "cpv" = ( @@ -56551,7 +56755,7 @@ /obj/structure/cable{ icon_state = "0-4" }, -/turf/open/floor/plating, +/turf/open/floor/catwalk_floor, /area/maintenance/starboard/central) "cqs" = ( /obj/effect/turf_decal/tile/yellow{ @@ -57851,10 +58055,13 @@ }, /area/service/lawoffice) "csH" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, /obj/effect/landmark/event_spawn, +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/manifold/orange/hidden{ + dir = 1 + }, /turf/open/floor/wood, /area/service/library) "csI" = ( @@ -59482,6 +59689,7 @@ /obj/structure/extinguisher_cabinet{ pixel_y = 32 }, +/obj/structure/chair/sofa/right, /turf/open/floor/plasteel, /area/hallway/primary/aft) "cvM" = ( @@ -59495,15 +59703,15 @@ /turf/open/floor/plasteel/white, /area/command/gateway) "cvN" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, /obj/structure/extinguisher_cabinet{ pixel_y = 32 }, +/obj/machinery/quantumpad{ + name = "FROM ENGI TO DORMS"; + map_pad_id = "cog_engie"; + map_pad_link_id = "cog_dorm2" + }, +/obj/effect/turf_decal/stripes/box, /turf/open/floor/plasteel, /area/hallway/primary/aft) "cvO" = ( @@ -59713,7 +59921,8 @@ }, /obj/machinery/door/airlock/research{ name = "Mech Bay"; - req_access_txt = "29" + req_access_txt = "29"; + dir = 8 }, /turf/open/floor/circuit, /area/science/robotics/mechbay) @@ -59966,7 +60175,8 @@ /turf/open/space/basic, /area/space) "cwE" = ( -/obj/effect/landmark/start/station_engineer, +/obj/structure/closet/crate/solarpanel_defence, +/obj/effect/turf_decal/bot, /turf/open/floor/plasteel, /area/engineering/workshop) "cwF" = ( @@ -60616,7 +60826,7 @@ /obj/machinery/atmospherics/pipe/simple/orange/hidden{ dir = 8 }, -/turf/open/floor/plating, +/turf/open/floor/catwalk_floor, /area/maintenance/starboard/aft) "cxZ" = ( /obj/effect/turf_decal/delivery, @@ -60635,7 +60845,7 @@ icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/orange/hidden, -/turf/open/floor/plating, +/turf/open/floor/catwalk_floor, /area/maintenance/starboard/aft) "cyb" = ( /obj/effect/turf_decal/tile/brown, @@ -60684,7 +60894,7 @@ /obj/machinery/atmospherics/pipe/simple/orange/hidden{ dir = 5 }, -/turf/open/floor/plating, +/turf/open/floor/catwalk_floor, /area/maintenance/starboard/aft) "cyf" = ( /obj/structure/disposalpipe/segment{ @@ -60696,7 +60906,7 @@ /obj/machinery/atmospherics/pipe/simple/orange/hidden{ dir = 8 }, -/turf/open/floor/plating, +/turf/open/floor/catwalk_floor, /area/maintenance/starboard/aft) "cyg" = ( /obj/structure/disposalpipe/segment{ @@ -60711,7 +60921,7 @@ /obj/machinery/atmospherics/pipe/simple/orange/hidden{ dir = 8 }, -/turf/open/floor/plating, +/turf/open/floor/catwalk_floor, /area/maintenance/starboard/aft) "cyh" = ( /obj/machinery/door/firedoor, @@ -60729,7 +60939,7 @@ name = "Mining Maintenance"; req_access_txt = "48" }, -/turf/open/floor/plating, +/turf/open/floor/catwalk_floor, /area/cargo/miningoffice) "cyi" = ( /obj/effect/turf_decal/tile/brown{ @@ -60796,6 +61006,9 @@ /obj/machinery/atmospherics/pipe/simple/orange/hidden{ dir = 9 }, +/obj/structure/chair{ + dir = 4 + }, /turf/open/floor/plasteel, /area/hallway/primary/aft) "cyo" = ( @@ -60808,9 +61021,11 @@ /turf/open/floor/plating, /area/hallway/primary/aft) "cyp" = ( -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel, -/area/engineering/workshop) +/obj/structure/fluff/railing/corner{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/science/observatory) "cyq" = ( /obj/machinery/light_switch{ pixel_y = 24 @@ -61079,7 +61294,7 @@ /obj/machinery/atmospherics/pipe/simple/orange/hidden{ dir = 8 }, -/turf/open/floor/plating, +/turf/open/floor/catwalk_floor, /area/maintenance/aft) "cyU" = ( /obj/machinery/camera{ @@ -61866,7 +62081,7 @@ /obj/machinery/atmospherics/pipe/manifold/cyan/hidden{ dir = 4 }, -/turf/open/floor/plating, +/turf/open/floor/catwalk_floor, /area/maintenance/aft) "cAv" = ( /obj/machinery/atmospherics/pipe/simple/orange/hidden, @@ -62888,7 +63103,7 @@ icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/cyan/hidden, -/turf/open/floor/plating, +/turf/open/floor/catwalk_floor, /area/maintenance/aft) "cCi" = ( /obj/machinery/door/firedoor, @@ -63339,7 +63554,7 @@ icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/manifold/orange/hidden, -/turf/open/floor/plating, +/turf/open/floor/catwalk_floor, /area/maintenance/department/security) "cCW" = ( /obj/structure/cable{ @@ -64364,7 +64579,7 @@ name = "Aft Maintenance APC"; pixel_x = -25 }, -/turf/open/floor/plating, +/turf/open/floor/catwalk_floor, /area/maintenance/aft) "cEF" = ( /obj/effect/turf_decal/tile/purple{ @@ -66246,7 +66461,7 @@ /obj/machinery/atmospherics/pipe/simple/cyan/hidden{ dir = 4 }, -/turf/open/floor/plating, +/turf/open/floor/catwalk_floor, /area/maintenance/aft) "cHY" = ( /obj/structure/disposalpipe/segment{ @@ -66259,7 +66474,7 @@ /obj/machinery/atmospherics/pipe/simple/cyan/hidden{ dir = 4 }, -/turf/open/floor/plating, +/turf/open/floor/catwalk_floor, /area/maintenance/aft) "cHZ" = ( /obj/structure/plasticflaps, @@ -66277,7 +66492,7 @@ /obj/machinery/atmospherics/pipe/simple/cyan/hidden{ dir = 9 }, -/turf/open/floor/plating, +/turf/open/floor/catwalk_floor, /area/maintenance/aft) "cIb" = ( /obj/structure/table, @@ -66322,7 +66537,7 @@ dir = 8 }, /obj/machinery/atmospherics/pipe/simple/cyan/hidden, -/turf/open/floor/plating, +/turf/open/floor/catwalk_floor, /area/maintenance/aft) "cIf" = ( /obj/structure/closet/crate/trashcart, @@ -66502,7 +66717,7 @@ icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/supplymain/hidden, -/turf/open/floor/plating, +/turf/open/floor/catwalk_floor, /area/maintenance/starboard/aft) "cIu" = ( /obj/structure/disposalpipe/segment, @@ -66512,7 +66727,7 @@ /obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ dir = 5 }, -/turf/open/floor/plating, +/turf/open/floor/catwalk_floor, /area/maintenance/starboard/aft) "cIv" = ( /obj/effect/turf_decal/tile/yellow{ @@ -66582,6 +66797,7 @@ /obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ dir = 4 }, +/obj/structure/chair/sofa, /turf/open/floor/plasteel, /area/hallway/primary/aft) "cIA" = ( @@ -66594,6 +66810,7 @@ /obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ dir = 10 }, +/obj/structure/chair/sofa/corp/left, /turf/open/floor/plasteel, /area/hallway/primary/aft) "cIB" = ( @@ -69172,7 +69389,7 @@ icon_state = "4-8" }, /obj/effect/landmark/event_spawn, -/turf/open/floor/plating, +/turf/open/floor/catwalk_floor, /area/maintenance/starboard/aft) "cOf" = ( /obj/structure/lattice/catwalk, @@ -69365,7 +69582,7 @@ dir = 1 }, /obj/effect/landmark/event_spawn, -/turf/open/floor/plating, +/turf/open/floor/catwalk_floor, /area/maintenance/aft) "cOE" = ( /obj/effect/turf_decal/stripes/line{ @@ -69448,7 +69665,7 @@ icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/cyan/hidden, -/turf/open/floor/plating, +/turf/open/floor/catwalk_floor, /area/service/janitor/aux) "cOO" = ( /obj/machinery/atmospherics/pipe/simple/orange/hidden, @@ -69803,7 +70020,7 @@ /obj/structure/sign/poster/contraband/lusty_xenomorph{ pixel_y = 32 }, -/turf/open/floor/plating, +/turf/open/floor/catwalk_floor, /area/maintenance/aft) "cPz" = ( /obj/structure/lattice, @@ -69960,7 +70177,7 @@ /obj/machinery/atmospherics/pipe/simple/orange/hidden{ dir = 5 }, -/turf/open/floor/plating, +/turf/open/floor/catwalk_floor, /area/maintenance/starboard/aft) "cPO" = ( /obj/structure/disposalpipe/segment, @@ -69973,7 +70190,7 @@ /obj/machinery/atmospherics/pipe/simple/orange/hidden{ dir = 10 }, -/turf/open/floor/plating, +/turf/open/floor/catwalk_floor, /area/maintenance/starboard/aft) "cPP" = ( /obj/effect/landmark/start/paramedic, @@ -69998,7 +70215,7 @@ /obj/machinery/atmospherics/pipe/simple/cyan/hidden{ dir = 6 }, -/turf/open/floor/plating, +/turf/open/floor/catwalk_floor, /area/maintenance/aft) "cPR" = ( /obj/effect/spawner/structure/window/reinforced, @@ -70955,6 +71172,30 @@ }, /turf/open/floor/plating, /area/router) +"dxB" = ( +/obj/structure/fluff/railing/corner, +/turf/open/floor/plasteel/dark, +/area/science/observatory) +"dDX" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 8 + }, +/turf/open/floor/catwalk_floor, +/area/maintenance/department/eva) +"dJF" = ( +/obj/structure/trash_pile, +/turf/open/floor/plating, +/area/maintenance/port/central) +"dKa" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/obj/effect/landmark/start/station_engineer, +/turf/open/floor/plasteel, +/area/engineering/workshop) "dSZ" = ( /obj/effect/spawner/structure/window/reinforced, /obj/machinery/atmospherics/pipe/simple/cyan/visible{ @@ -70979,6 +71220,35 @@ /obj/machinery/atmospherics/pipe/simple/cyan/hidden, /turf/open/floor/plating, /area/science/mixing) +"edZ" = ( +/obj/machinery/light, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"eqZ" = ( +/obj/structure/chair/beanbag/blue{ + dir = 8 + }, +/turf/open/floor/carpet, +/area/space) +"ewm" = ( +/turf/closed/wall/r_wall, +/area/space) +"eAS" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/plasteel/dark, +/area/science/observatory) +"eCc" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/structure/chair, +/turf/open/floor/plasteel, +/area/hallway/primary/central) "eCy" = ( /obj/machinery/atmospherics/pipe/simple/general/visible{ dir = 9 @@ -70989,6 +71259,10 @@ }, /turf/open/floor/plasteel, /area/engineering/atmos) +"eEW" = ( +/obj/effect/decal/medium_gato, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) "eIh" = ( /obj/machinery/atmospherics/pipe/simple/green/visible{ dir = 4 @@ -71004,20 +71278,82 @@ dir = 1 }, /area/engineering/atmos) +"eJp" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 6; + layer = 2.03 + }, +/obj/machinery/quantumpad{ + name = "ENGINEERING"; + map_pad_id = "cog_dorm2"; + map_pad_link_id = "cog_engie" + }, +/turf/open/floor/plasteel, +/area/science/observatory) "eJy" = ( /obj/machinery/rnd/experimentor, /turf/open/floor/engine, /area/science/explab) +"eKD" = ( +/obj/effect/decal/big_gato, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) "eKM" = ( /obj/machinery/atmospherics/pipe/manifold/supplymain/visible, /turf/open/floor/plasteel, /area/engineering/atmos) +"eNs" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/white/corner, +/area/hallway/primary/central) +"eOJ" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/hidden, +/turf/open/floor/carpet, +/area/space/nearstation) +"eRg" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/item/kirbyplants/photosynthetic, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) "eSd" = ( /obj/machinery/mass_driver/pressure_plate{ id = "security_in" }, /turf/open/floor/plating/airless, /area/router/aux) +"eTI" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ + dir = 4 + }, +/obj/structure/chair/sofa, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) "eTZ" = ( /obj/effect/turf_decal/tile/green{ dir = 4 @@ -71088,6 +71424,39 @@ }, /turf/open/floor/plasteel, /area/science/mixing) +"fvu" = ( +/obj/item/kirbyplants/photosynthetic, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"fyc" = ( +/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/wood, +/area/space/nearstation) +"gln" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/light/small{ + dir = 4; + light_color = "#d8b1b1" + }, +/obj/structure/table, +/obj/item/paper_bin{ + pixel_x = 1; + pixel_y = 9 + }, +/obj/item/pen, +/obj/machinery/light_switch{ + pixel_x = 24 + }, +/turf/open/floor/plasteel/dark, +/area/science/observatory) "guK" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/structure/lattice, @@ -71108,6 +71477,15 @@ }, /turf/open/space/basic, /area/space/nearstation) +"gSW" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/catwalk_floor, +/area/maintenance/port/fore) "gVV" = ( /obj/structure/window/reinforced{ dir = 4; @@ -71119,6 +71497,18 @@ /obj/machinery/portable_atmospherics/canister/oxygen, /turf/open/floor/engine, /area/science/storage) +"gYa" = ( +/obj/machinery/light, +/obj/structure/bookcase/random, +/turf/open/floor/wood, +/area/space/nearstation) +"gYU" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/catwalk_floor, +/area/maintenance/aft) "hcR" = ( /obj/machinery/atmospherics/pipe/simple/orange/hidden{ dir = 5 @@ -71137,6 +71527,16 @@ }, /turf/open/floor/plasteel, /area/tcommsat/computer) +"hll" = ( +/obj/machinery/light{ + dir = 1; + light_color = "#e8eaff" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) "hlo" = ( /obj/effect/landmark/blobstart, /turf/open/floor/plasteel, @@ -71145,6 +71545,12 @@ /obj/effect/landmark/blobstart, /turf/open/floor/plating, /area/engineering/storage/tech) +"hzm" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/turf/open/floor/wood, +/area/space/nearstation) "hDz" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on, /turf/open/floor/plasteel, @@ -71168,6 +71574,44 @@ /obj/machinery/atmospherics/pipe/manifold/orange/visible, /turf/open/space/basic, /area/space/nearstation) +"iiI" = ( +/obj/structure/chair/sofa/right/old{ + dir = 8 + }, +/turf/open/floor/carpet/green, +/area/space/nearstation) +"ikR" = ( +/obj/structure/chair/beanbag, +/turf/open/floor/carpet, +/area/space) +"isn" = ( +/turf/open/floor/carpet, +/area/space) +"isJ" = ( +/obj/item/kirbyplants/photosynthetic, +/turf/open/floor/plasteel/white, +/area/medical/medbay/lobby) +"itx" = ( +/obj/item/camera_film, +/obj/structure/sign/painting/library{ + pixel_y = 32 + }, +/obj/item/stack/packageWrap, +/obj/structure/table/wood, +/turf/open/floor/wood, +/area/space) +"iva" = ( +/obj/machinery/atmospherics/pipe/simple/orange/hidden, +/turf/open/floor/wood, +/area/service/library) +"iwX" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/structure/table/glass, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) "iCa" = ( /obj/effect/spawner/structure/window/reinforced, /obj/machinery/atmospherics/pipe/simple/cyan/hidden{ @@ -71175,12 +71619,44 @@ }, /turf/open/floor/plating, /area/science/mixing) +"iHR" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/open/floor/wood, +/area/space) +"iLf" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden, +/obj/structure/trash_pile, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) "iQY" = ( /obj/machinery/atmospherics/pipe/manifold/yellow/visible{ dir = 4 }, /turf/open/floor/plasteel, /area/engineering/atmos) +"jhc" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ + dir = 4 + }, +/obj/structure/chair/sofa/right, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"jhw" = ( +/obj/structure/table/wood/poker, +/turf/open/floor/carpet, +/area/space) "jiZ" = ( /obj/machinery/atmospherics/pipe/simple/cyan/visible{ dir = 5 @@ -71193,6 +71669,24 @@ }, /turf/open/floor/plasteel, /area/engineering/atmos) +"jpv" = ( +/obj/structure/trash_pile, +/turf/open/floor/plating, +/area/maintenance/fore) +"jqv" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel, +/area/science/observatory) "jyu" = ( /obj/structure/lattice, /obj/machinery/atmospherics/pipe/simple/orange/hidden{ @@ -71207,6 +71701,77 @@ }, /turf/open/space/basic, /area/space/nearstation) +"jIR" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/catwalk_floor, +/area/maintenance/aft) +"jNL" = ( +/obj/structure/chair/office/dark, +/turf/open/floor/wood, +/area/space) +"jPm" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/science/observatory) +"jPG" = ( +/obj/effect/turf_decal/delivery, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"jWm" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/structure/chair, +/turf/open/floor/plasteel, +/area/hallway/primary/port/fore) +"jXb" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/item/kirbyplants/photosynthetic, +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/plasteel/dark, +/area/science/observatory) +"kaB" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/obj/machinery/door/airlock/public/glass{ + name = "Library Access"; + dir = 4 + }, +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/service/library) +"kcj" = ( +/obj/structure/fluff/railing/corner{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/science/observatory) +"kks" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden, +/turf/open/floor/wood, +/area/service/library) "kkx" = ( /obj/effect/turf_decal/tile/neutral, /obj/effect/turf_decal/tile/neutral{ @@ -71233,6 +71798,44 @@ }, /turf/closed/wall/r_wall, /area/command/bridge) +"kBv" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/structure/table/glass, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"kHh" = ( +/obj/structure/bookcase/random/nonfiction, +/turf/open/floor/wood, +/area/space) +"kIq" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/white/corner, +/area/hallway/primary/central) +"kMD" = ( +/obj/structure/sign/painting/library{ + pixel_y = -32 + }, +/obj/structure/table/wood, +/obj/machinery/computer/libraryconsole, +/turf/open/floor/wood, +/area/space/nearstation) +"kNY" = ( +/obj/structure/sign/painting/library{ + pixel_y = -32 + }, +/obj/structure/table/wood, +/obj/item/folder/yellow, +/obj/item/pen/red, +/turf/open/floor/wood, +/area/space/nearstation) "kOG" = ( /obj/machinery/atmospherics/pipe/simple/yellow/visible{ dir = 4 @@ -71245,12 +71848,42 @@ /obj/effect/landmark/start/prisoner, /turf/open/floor/plating, /area/security/prison) +"kUm" = ( +/obj/item/kirbyplants/photosynthetic, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/science/observatory) "lcD" = ( /obj/machinery/atmospherics/components/unary/thermomachine/freezer{ dir = 1 }, /turf/open/floor/plasteel, /area/engineering/atmos) +"lhY" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ + dir = 4 + }, +/obj/structure/table, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"lGB" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/hidden, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) "lRy" = ( /obj/machinery/light{ dir = 1 @@ -71261,6 +71894,51 @@ }, /turf/open/floor/plasteel, /area/engineering/atmos) +"lXh" = ( +/obj/effect/turf_decal/loading_area{ + dir = 8; + icon_state = "drain"; + name = "drain" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"mdw" = ( +/obj/machinery/power/apc{ + areastring = "/area/service/library"; + dir = 4; + name = "Library APC"; + pixel_x = 24 + }, +/obj/machinery/light{ + dir = 4; + light_color = "#c1caff" + }, +/obj/structure/cable{ + icon_state = "0-8" + }, +/obj/structure/chair/comfy/black{ + dir = 1 + }, +/turf/open/floor/wood, +/area/service/library) +"meR" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/structure/table/glass, +/turf/open/floor/plasteel, +/area/hallway/primary/port/fore) +"mlM" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/structure/chair/sofa/corp/left, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) "mqB" = ( /obj/machinery/atmospherics/components/binary/pump{ dir = 4; @@ -71272,6 +71950,10 @@ /obj/machinery/atmospherics/pipe/manifold/cyan/visible, /turf/closed/wall/r_wall, /area/engineering/atmos) +"mwT" = ( +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel, +/area/hallway/primary/central) "mxW" = ( /obj/structure/lattice, /obj/machinery/atmospherics/pipe/simple/supplymain/visible{ @@ -71279,6 +71961,27 @@ }, /turf/open/space/basic, /area/space/nearstation) +"mye" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/quantumpad{ + name = "ARRIVALS"; + map_pad_id = "cog_dorm1"; + map_pad_link_id = "cog_arrivals" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/science/observatory) "mDW" = ( /obj/machinery/atmospherics/pipe/simple/cyan/visible{ dir = 10 @@ -71318,11 +72021,33 @@ /obj/machinery/atmospherics/pipe/simple/orange/hidden, /turf/open/floor/plasteel, /area/tcommsat/computer) +"mOU" = ( +/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{ + dir = 8 + }, +/obj/effect/turf_decal/loading_area{ + dir = 4; + icon_state = "drain"; + name = "drain" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"mPW" = ( +/obj/structure/table/wood/poker, +/obj/item/dice, +/turf/open/floor/carpet, +/area/space) "mTf" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/landmark/start/prisoner, /turf/open/floor/plasteel, /area/security/prison) +"nlZ" = ( +/obj/structure/chair/sofa/old{ + dir = 8 + }, +/turf/open/floor/carpet/green, +/area/space/nearstation) "nvn" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on{ dir = 1 @@ -71341,6 +72066,32 @@ }, /turf/open/floor/plating, /area/engineering/atmos) +"nEu" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/item/kirbyplants/photosynthetic, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"nZF" = ( +/obj/structure/sign/painting/library{ + pixel_y = -32 + }, +/obj/structure/table/wood/poker, +/turf/open/floor/carpet, +/area/space) +"ofE" = ( +/obj/machinery/atmospherics/pipe/simple/orange/hidden, +/obj/effect/decal/big_gato, +/turf/open/floor/plasteel/dark, +/area/science/observatory) +"omX" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/turf/open/floor/wood, +/area/service/library) "ony" = ( /obj/effect/spawner/structure/window/reinforced, /obj/machinery/atmospherics/pipe/manifold/brown/visible{ @@ -71355,10 +72106,30 @@ }, /turf/open/space/basic, /area/space/nearstation) +"ovF" = ( +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/structure/table/glass, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) "oCf" = ( /obj/effect/decal/medium_gato, /turf/open/floor/plasteel, /area/security/courtroom) +"oGA" = ( +/obj/structure/chair{ + dir = 8 + }, +/obj/effect/landmark/start/assistant, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/plasteel/white/corner{ + dir = 1 + }, +/area/hallway/primary/central) "oMB" = ( /obj/effect/spawner/structure/window/reinforced, /obj/machinery/atmospherics/pipe/simple/cyan/visible{ @@ -71367,15 +72138,78 @@ /obj/machinery/atmospherics/pipe/simple/supplymain/hidden, /turf/open/floor/plating, /area/engineering/atmos) +"oMJ" = ( +/obj/machinery/light, +/obj/structure/sign/painting/library{ + pixel_y = -32 + }, +/obj/structure/table/wood/poker, +/turf/open/floor/carpet, +/area/space) +"oPq" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/machinery/light, +/obj/structure/chair{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"oQn" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/structure/chair/office/dark, +/obj/effect/landmark/start/librarian, +/turf/open/floor/plasteel/dark, +/area/service/library) "pgu" = ( /obj/structure/lattice, /obj/machinery/atmospherics/pipe/simple/orange/visible, /turf/open/space/basic, /area/space/nearstation) +"pof" = ( +/obj/structure/bookcase/random/reference, +/turf/open/floor/wood, +/area/space/nearstation) +"prf" = ( +/obj/structure/window/reinforced/spawner/east, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 8 + }, +/turf/open/floor/wood, +/area/service/library) "prx" = ( /obj/machinery/atmospherics/pipe/simple/yellow/visible, /turf/open/floor/plasteel, /area/engineering/atmos) +"puX" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/hidden, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/science/observatory) +"pvy" = ( +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/catwalk_floor, +/area/maintenance/central) +"pyn" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/white/corner, +/area/hallway/primary/central) "pLV" = ( /obj/machinery/airalarm{ dir = 4; @@ -71404,6 +72238,10 @@ /obj/effect/turf_decal/delivery, /turf/open/floor/plasteel, /area/hallway/primary/port/fore) +"pTS" = ( +/obj/structure/bookcase/random, +/turf/open/floor/wood, +/area/space) "pZq" = ( /obj/structure/disposalpipe/sorting/mail/flip{ dir = 8; @@ -71411,6 +72249,17 @@ }, /turf/open/floor/plating/airless, /area/router/aux) +"pZt" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/plasteel/white/corner{ + dir = 1 + }, +/area/hallway/primary/central) "qeq" = ( /obj/structure/lattice, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ @@ -71432,6 +72281,10 @@ /obj/item/kirbyplants, /turf/open/floor/plasteel, /area/hallway/primary/central) +"qxz" = ( +/obj/structure/bookcase/random/religion, +/turf/open/floor/wood, +/area/service/library) "qHK" = ( /obj/machinery/vending/gato, /turf/open/floor/wood, @@ -71443,6 +72296,9 @@ }, /turf/open/floor/plating, /area/engineering/atmos) +"qLF" = ( +/turf/open/floor/wood, +/area/space) "qMN" = ( /obj/structure/plasticflaps, /obj/structure/fans/tiny, @@ -71452,6 +72308,27 @@ }, /turf/open/floor/plating, /area/router) +"qRs" = ( +/obj/structure/bookcase/random, +/turf/open/floor/wood, +/area/space/nearstation) +"qTJ" = ( +/obj/machinery/vending/gato, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"qUm" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 9 + }, +/obj/structure/chair/beanbag/red, +/turf/open/floor/carpet, +/area/space/nearstation) +"qVQ" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 4 + }, +/turf/open/floor/wood, +/area/space) "qWY" = ( /obj/machinery/atmospherics/pipe/simple/orange/visible, /turf/open/floor/plasteel, @@ -71460,6 +72337,64 @@ /obj/machinery/atmospherics/pipe/simple/dark/visible, /turf/open/floor/plasteel, /area/engineering/atmos) +"rie" = ( +/obj/structure/table/wood, +/obj/item/book/lorebooks/welcome_to_gato, +/turf/open/floor/carpet/green, +/area/space/nearstation) +"riu" = ( +/obj/structure/trash_pile, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"rrS" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/structure/chair{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"rso" = ( +/obj/structure/table/wood, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/structure/window/reinforced/spawner, +/obj/item/paper_bin, +/obj/item/pen, +/turf/open/floor/plasteel/dark, +/area/service/library) +"rBE" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/quantumpad{ + name = "DEPARTURES"; + map_pad_id = "cog_dorm3"; + map_pad_link_id = "cog_departures" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 5; + layer = 2.03 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/science/observatory) +"rGw" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/turf/open/floor/wood, +/area/space) "rOE" = ( /obj/structure/plasticflaps, /obj/structure/fans/tiny, @@ -71469,6 +72404,27 @@ }, /turf/open/floor/plating, /area/router) +"rQV" = ( +/obj/item/kirbyplants/photosynthetic, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/science/observatory) +"rTd" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/item/kirbyplants/photosynthetic, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/science/observatory) "rTW" = ( /obj/structure/lattice, /obj/machinery/atmospherics/pipe/simple/violet/visible{ @@ -71482,6 +72438,12 @@ }, /turf/open/floor/plasteel, /area/engineering/atmos) +"saz" = ( +/obj/structure/chair/sofa/left/old{ + dir = 8 + }, +/turf/open/floor/carpet/green, +/area/space/nearstation) "sky" = ( /obj/machinery/conveyor/auto{ dir = 4; @@ -71504,10 +72466,56 @@ }, /turf/open/floor/plating, /area/engineering/workshop) +"sAM" = ( +/obj/structure/trash_pile, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) "sHB" = ( /obj/effect/landmark/start/atmospheric_technician, /turf/open/floor/plasteel, /area/engineering/atmos) +"sHI" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel, +/area/engineering/workshop) +"sJq" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/hidden, +/obj/structure/disposalpipe/junction{ + dir = 4 + }, +/turf/open/floor/wood, +/area/service/library) +"sJC" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/catwalk_floor, +/area/maintenance/fore) +"sMZ" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/catwalk_floor, +/area/maintenance/starboard/aft) +"sNj" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 8 + }, +/turf/open/floor/wood, +/area/space) +"sNY" = ( +/obj/structure/fluff/railing/corner{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/science/observatory) "sRD" = ( /obj/machinery/atmospherics/components/unary/portables_connector/visible, /obj/machinery/portable_atmospherics/canister, @@ -71517,6 +72525,27 @@ /obj/machinery/rnd/bepis, /turf/open/floor/engine, /area/science/explab) +"sSW" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/obj/machinery/quantumpad{ + name = "TO SERVICE"; + map_pad_id = "cog_dorm4"; + map_pad_link_id = "cog_service" + }, +/turf/open/floor/plasteel, +/area/science/observatory) "sVC" = ( /obj/structure/lattice/catwalk, /obj/structure/cable{ @@ -71525,6 +72554,21 @@ /obj/machinery/atmospherics/pipe/simple/supplymain/visible, /turf/open/space/basic, /area/space/nearstation) +"sWo" = ( +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/obj/machinery/disposal/bin, +/turf/open/floor/wood, +/area/space/nearstation) +"sZP" = ( +/obj/effect/turf_decal/loading_area{ + dir = 1; + icon_state = "drain"; + name = "drain" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) "tff" = ( /obj/structure/plasticflaps, /obj/structure/fans/tiny, @@ -71534,6 +72578,50 @@ }, /turf/open/floor/plating, /area/router) +"tgR" = ( +/obj/machinery/quantumpad{ + name = "FROM ARRIVALS TO DORMS"; + map_pad_id = "cog_arrivals"; + map_pad_link_id = "cog_dorm1" + }, +/obj/effect/turf_decal/stripes/box, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"tmn" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/light/small{ + dir = 4; + light_color = "#d8b1b1" + }, +/obj/structure/table, +/obj/item/book/lorebooks/welcome_to_gato, +/turf/open/floor/plasteel/dark, +/area/science/observatory) +"tnO" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/hidden, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/effect/turf_decal/loading_area{ + dir = 1; + icon_state = "steel_decals10" + }, +/obj/effect/turf_decal/loading_area{ + dir = 8; + icon_state = "steel_decals10" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"tpe" = ( +/obj/structure/sign/painting/library{ + pixel_y = 32 + }, +/obj/machinery/vending/games, +/turf/open/floor/wood, +/area/space) "tpQ" = ( /obj/structure/lattice, /obj/machinery/atmospherics/pipe/simple/violet/visible, @@ -71579,6 +72667,15 @@ }, /turf/open/floor/plasteel, /area/engineering/atmos) +"unC" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/catwalk_floor, +/area/maintenance/port/central) "urj" = ( /obj/structure/cable{ icon_state = "4-8" @@ -71589,12 +72686,32 @@ /obj/effect/landmark/xeno_spawn, /turf/open/floor/plasteel/dark, /area/command/bridge) +"usq" = ( +/obj/structure/chair/comfy/black, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/science/observatory) "uAY" = ( /obj/structure/table, /obj/item/storage/belt/utility, /obj/item/t_scanner, /turf/open/floor/plasteel, /area/engineering/atmos) +"uUg" = ( +/obj/structure/table/wood, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/structure/window/reinforced/spawner, +/obj/item/camera, +/turf/open/floor/plasteel/dark, +/area/service/library) "uVD" = ( /obj/machinery/atmospherics/pipe/simple/brown/visible{ dir = 9 @@ -71616,6 +72733,22 @@ }, /turf/open/floor/plasteel, /area/engineering/atmos) +"vcg" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/structure/chair/sofa/corp, +/turf/open/floor/plasteel/dark/side{ + dir = 1 + }, +/area/hallway/primary/central) +"ves" = ( +/obj/structure/trash_pile, +/turf/open/floor/plating, +/area/maintenance/department/eva) "vxU" = ( /obj/machinery/atmospherics/pipe/simple/yellow/visible, /obj/structure/extinguisher_cabinet{ @@ -71623,10 +72756,84 @@ }, /turf/open/floor/plasteel, /area/engineering/atmos) +"vAI" = ( +/obj/structure/bookcase/manuals/engineering, +/turf/open/floor/wood, +/area/service/library) +"vFS" = ( +/obj/structure/table/wood, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/door/window/northright{ + name = "Library Desk Window"; + req_access_txt = "37"; + dir = 2 + }, +/obj/item/book/lorebooks/welcome_to_gato, +/turf/open/floor/plasteel/dark, +/area/service/library) +"vGv" = ( +/obj/machinery/quantumpad{ + name = "FROM DEPARTURES TO DORMS"; + map_pad_id = "cog_departures"; + map_pad_link_id = "cog_dorm3" + }, +/obj/effect/turf_decal/stripes/box, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"vNU" = ( +/obj/structure/sign/painting/library, +/turf/closed/wall, +/area/service/library) +"vZu" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/item/kirbyplants/photosynthetic, +/turf/open/floor/plasteel, +/area/hallway/primary/port/fore) +"vZR" = ( +/obj/effect/landmark/event_spawn, +/obj/effect/decal/big_gato, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"waj" = ( +/obj/structure/table/glass, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/white/corner, +/area/hallway/primary/central) "wbu" = ( /obj/machinery/atmospherics/pipe/simple/violet/visible, /turf/closed/wall/r_wall, /area/engineering/atmos) +"wdQ" = ( +/obj/structure/chair/beanbag/black{ + dir = 8 + }, +/turf/open/floor/carpet, +/area/space) +"wfv" = ( +/obj/structure/sign/painting/library{ + pixel_y = -32 + }, +/obj/structure/chair/beanbag/gato{ + dir = 8 + }, +/turf/open/floor/carpet, +/area/space) +"wky" = ( +/obj/item/flashlight/lamp/green{ + pixel_x = 1; + pixel_y = 5 + }, +/obj/structure/table/wood, +/turf/open/floor/carpet/green, +/area/space/nearstation) "wmT" = ( /obj/effect/turf_decal/loading_area{ dir = 4; @@ -71635,6 +72842,21 @@ }, /turf/open/floor/plasteel/white, /area/commons/fitness/cogpool) +"wqp" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden, +/obj/structure/chair, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"wtR" = ( +/obj/structure/chair/beanbag/purple{ + dir = 4 + }, +/turf/open/floor/carpet, +/area/space/nearstation) "wyF" = ( /obj/machinery/power/apc{ areastring = "/area/maintenance/disposal"; @@ -71648,6 +72870,13 @@ /obj/machinery/cryopod/tele, /turf/open/floor/plasteel/dark, /area/commons/cryopod) +"wDG" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/space/nearstation) +"wIG" = ( +/turf/open/floor/wood, +/area/space/nearstation) "wPS" = ( /obj/structure/lattice, /obj/machinery/atmospherics/pipe/simple/violet/visible{ @@ -71677,6 +72906,12 @@ }, /turf/open/floor/plasteel, /area/engineering/atmos) +"xjf" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) "xoj" = ( /obj/structure/table, /obj/item/paper_bin{ @@ -71686,6 +72921,16 @@ /obj/item/pen, /turf/open/floor/plasteel, /area/engineering/atmos) +"xqS" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/item/kirbyplants/photosynthetic, +/turf/open/floor/plasteel, +/area/hallway/primary/central) "xxP" = ( /turf/closed/wall, /area/cargo/storage) @@ -71705,6 +72950,22 @@ /obj/machinery/atmospherics/pipe/simple/orange/hidden, /turf/open/floor/plasteel, /area/engineering/atmos) +"xPm" = ( +/obj/structure/table/glass, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"yeL" = ( +/obj/structure/sign/warning{ + name = "QUANTUM PADS HAVE NAMES THAT MENTION THEIR DESTINATION" + }, +/turf/closed/wall, +/area/science/observatory) +"yhv" = ( +/turf/open/floor/plasteel/stairs{ + dir = 4 + }, +/area/science/observatory) (1,1,1) = {" ckl @@ -92642,7 +93903,7 @@ bKK aaa bdg beN -bgx +xPm bdg aaU aaa @@ -92657,7 +93918,7 @@ aaa aaU bdg bEC -bgx +waj bdg aaU aaa @@ -92898,8 +94159,8 @@ bIW bKK aaa bdg -beR -beJ +oGA +mwT bdg bdg bdg @@ -92913,7 +94174,7 @@ aaa bdg bdg bdg -beJ +xjf beR bdg aaU @@ -93155,8 +94416,8 @@ aUF bKK aaa bdg -beJ -beJ +aNB +cei aXk bjg aXl @@ -93170,8 +94431,8 @@ aaa baZ bjg bhS -beJ -beJ +sZP +bHJ bdg aaU aaa @@ -93412,8 +94673,8 @@ bKG bLe aaa bdg -beJ -beJ +aNB +mwT bdg bdg bdg @@ -93427,8 +94688,8 @@ aaa bdg bdg bdg -beJ -beJ +xjf +bHJ bdg aaU aaa @@ -93669,8 +94930,8 @@ aNR aNR aaa bdg -beJ -beJ +aNB +mwT bdg aaU aaa @@ -93685,7 +94946,7 @@ aaa aaU bdg coQ -beJ +bHJ bdg aaU aaa @@ -93926,8 +95187,8 @@ aNR aaU aaa bdg -beJ -bbI +aNB +edZ bdg aaU aaa @@ -93941,8 +95202,8 @@ aaa aaa aaU bdg -cmd -beJ +hll +bHJ bdg aaU aaa @@ -94183,8 +95444,8 @@ aNR aaU aaa bdg -beJ -beJ +aNB +mwT bdg aaU aaa @@ -94198,8 +95459,8 @@ aaa aaa aaU bdg -beJ -beJ +xjf +bHJ bdg aaU aaa @@ -94440,8 +95701,8 @@ aYT aaU aaa bdg -beJ -beJ +aNB +mwT bdg bdg bdg @@ -94455,8 +95716,8 @@ aaa bdg bdg bdg -beJ -beJ +xjf +bHJ bdg aaU aaa @@ -94697,8 +95958,8 @@ aYT aYT bdg bdg -beJ -beJ +aNB +cei aXk bjg aXl @@ -94712,8 +95973,8 @@ aaa baZ bjg bhS -beJ -beJ +sZP +bHJ bGI aaU aaa @@ -94724,8 +95985,8 @@ aaa ceE bjg ceF -beJ -beJ +sZP +bHJ bGI aaa aaa @@ -94954,8 +96215,8 @@ bcs aYT bdj beF -beJ -beJ +aNB +mwT bdg bdg bdg @@ -94969,8 +96230,8 @@ aaa bdg bdg bdg -beJ -beJ +xjf +bHJ bGI aaU aaa @@ -94981,7 +96242,7 @@ aaa bdg bdg bGI -beJ +xjf cis bGI aaa @@ -95210,9 +96471,9 @@ bIl bcJ bod bdr -beJ -beJ -beJ +cei +aNB +mwT bdg aaU aaa @@ -95226,7 +96487,7 @@ aaa aaa aaU bdg -beJ +xjf ceI bGI aaU @@ -95238,7 +96499,7 @@ aaa aaa aaU bGI -beJ +xjf bbI bGI aaU @@ -95467,9 +96728,9 @@ bIr bcx bOY bdr -beJ +cei beT -bbI +edZ bdg aaU aaa @@ -95483,8 +96744,8 @@ aaU aaa aaU bdg -cmd -beT +hll +eNs bGI aaU aaa @@ -95495,8 +96756,8 @@ aaa aaa aaU bGI -beJ -beJ +xjf +bHJ bGI aaU aaU @@ -95724,9 +96985,9 @@ bIV bKg bVY bdr -beJ -bfd -beJ +cei +pZt +mwT bdg aaU aaa @@ -95740,8 +97001,8 @@ aWZ aaa aaU bdg -beJ -bfd +xjf +pyn bdg aaU aaa @@ -95752,7 +97013,7 @@ aaa aaa aaU bdg -beJ +xjf coR bdg aaa @@ -95982,8 +97243,8 @@ aZA aYT bdy beM -bfd -beJ +pZt +mwT bdg aaU aaU @@ -95997,8 +97258,8 @@ aWZ aaU aaU bdg -beJ -bfd +xjf +pyn bdg aaU aaa @@ -96009,8 +97270,8 @@ aaa aaa aaU bdg -beJ -beJ +xjf +bHJ bdg aaa aaa @@ -96266,8 +97527,8 @@ aaU aaU aaU bdg -beJ -beJ +xjf +bHJ bdg aaa aaa @@ -96491,8 +97752,8 @@ aTY aWk aXR azd -aTS -aRW +unC +dJF bcR bdN beJ @@ -96523,14 +97784,14 @@ bdg bdg bdg bGI -beJ +xjf bbK bGI -aaU -aaU -aaU -aaU -aaU +aSv +wDG +wDG +wDG +aSv aTV aVh biP @@ -96748,7 +98009,7 @@ aNL aWl aXR aRI -aTS +unC aRW bcR bcR @@ -96771,23 +98032,23 @@ beJ beJ bfd blc -beJ +aXc coS aXc +lXh aXc aXc aXc aXc aXc -aXc -aXc -aXc +beJ +bHJ bGI -aaU -aaU -aaU -aaU -aaU +wky +iiI +nlZ +saz +rie aTV aTV aTV @@ -97005,7 +98266,7 @@ aNL aXw aXR aRW -aTS +unC aRW bcR bdU @@ -97028,23 +98289,23 @@ bzB bgA bWf bXm -bgA +lGB bWq ccN -cei ccN +mOU ccN ccN ccN ccN coZ -blO +kIq bGI -aaa -aaa -aaa -aaa -aaU +pTS +pTS +qLF +pTS +gYa aTV aVk bfu @@ -97288,8 +98549,8 @@ aZy aZy aZy aXg -bfd -bjg +qTJ +jPG bUt bai baV @@ -97297,11 +98558,11 @@ cKF bbn cKG bGI -aaa -aaa -aaa -aaa -aaU +itx +qLF +qVQ +jNL +kNY aTV aVq bfx @@ -97531,10 +98792,10 @@ bLV bfi blE bBW -bgA +bcp aww awL -aGC +tnO aON aGC bTu @@ -97545,8 +98806,8 @@ bTp bRe baw bZA -cfQ bZA +kaB bZA bqB bZS @@ -97554,12 +98815,12 @@ bZS bZS bZS bZS -aaa -aaa -aaa -aaa -aaU -aUi +tpe +qLF +rGw +qLF +kMD +aTV ciC bzz cvM @@ -97776,7 +99037,7 @@ aUD aXR aXR cjy -aTS +unC aQL aUX aZE @@ -97803,19 +99064,19 @@ bbm baw aXe chU -cjw -cjw -cke +omX +bZF +bay clu cmP clw bZZ -bZH -aaU -aaU -aaU -aaU -aaU +vAI +sWo +wIG +hzm +wIG +qRs aTV aYf beo @@ -98061,18 +99322,18 @@ baw bZC cjv aYc -bZF -bay -bZU -cnW +cjw +sJq bbq -bcp -bZH -aaU -aaU -aaU -aaU -aaU +bbq +bbq +bbq +bbq +fyc +eOJ +qUm +wtR +qRs aTV bHH aWp @@ -98283,7 +99544,7 @@ cCV aYt aBY aOB -aNO +bRZ bcQ aNL aUL @@ -98317,18 +99578,18 @@ bQA aZy bZV bZJ -bZF +prf cpu bax cea -bZX +cea ccY cab -bZH -aaa -aaa -aaa -aaa +qxz +sNj +ikR +mPW +nZF aUk aUk aUk @@ -98553,7 +99814,7 @@ cjq aQL aQL aTS -aRW +dJF bcR bjG blk @@ -98573,19 +99834,19 @@ aWh cmN aZy baE -bRZ -bZF +bZK +uUg csH -bay +kks bKw -bZH -bZH -bZH -bZH -aaa -aaa -aaa -aaa +bZU +iva +iva +iva +iHR +wdQ +jhw +oMJ aUk bmG bmG @@ -98830,19 +100091,19 @@ baS bbr aZy bJC -bZK -bZF +oQn +vFS cjx bay baX -bZH -aaU -aaa -aaa -aaa -aaa -aaa -aaa +mdw +pof +kHh +bLX +qLF +isn +eqZ +wfv aUk bwK bAF @@ -99054,7 +100315,7 @@ chJ aOo baM bcR -aPr +vcg biC beJ bft @@ -99088,18 +100349,18 @@ bbs aZy bKR cnN -bZF +rso cCJ cnP bZS bZS bGI -aaa -aaa -aaa -aaa -aaa -aaa +ewm +cke +cke +cke +cke +ewm aUk bmG bmG @@ -99344,10 +100605,10 @@ aZy aZy aZy bZH -bZH -bZA +vNU +vNU cCK -bZH +bZA bZS bSB bTT @@ -99529,7 +100790,7 @@ aad aad cze agy -aaI +gSW ami akX akX @@ -99584,7 +100845,7 @@ bTw bgE coO bkx -blo +xqS blo bnc bnR @@ -99608,12 +100869,12 @@ aYH bGI bTt bGI +bGI bdg bdg bdg bdg -bdg -bdg +bGI bUq bUv bUq @@ -99786,7 +101047,7 @@ aad aad cze azO -aaI +gSW aco akX alA @@ -100043,7 +101304,7 @@ aad aad cze aam -aaI +gSW acw akX alE @@ -100063,7 +101324,7 @@ avN aBo aBQ aDd -aBQ +cnW aEK aFM azQ @@ -100299,7 +101560,7 @@ aad aad aad cze -aco +riu abd abT akX @@ -100329,10 +101590,10 @@ cAW aEv aIi aHQ -aHQ -aHQ +jWm +meR aJT -aHQ +vZu pOx cpx aHY @@ -100346,10 +101607,10 @@ bGI bGI bGI crr -bjj -bjj -bjj -bjj +nEu +eCc +kBv +rrS bIP bje bqn @@ -100359,7 +101620,7 @@ blC blO bnr blO -blO +tgR blO baf bRs @@ -100370,7 +101631,7 @@ bFA bjj bIP bGA -bGE +wqp bLg bMG bPR @@ -100407,7 +101668,7 @@ bHI bYK buK bst -bst +isJ bKi bPP bQa @@ -100636,12 +101897,12 @@ bRB bGI bTt bGI +bGI bdg bdg bdg bdg -bdg -bdg +bGI bUq bUv bUq @@ -100660,7 +101921,7 @@ bpA bqe ceY bwf -bHJ +bst cbr cDE cDG @@ -101061,7 +102322,7 @@ aaU aaa aaa cyX -cKs +rTd afc afy agb @@ -101174,7 +102435,7 @@ bqs bXz bqm byD -bHJ +bst cbs buS cDZ @@ -101379,7 +102640,7 @@ aaa aaa aaU aSt -bjk +dDX bqG aWB aWI @@ -101577,7 +102838,7 @@ aaU cyX cKs afc -afz +ofE agk agR afz @@ -101636,7 +102897,7 @@ aaa aaa aaU aSt -bjk +dDX bqG aWB aWI @@ -101839,7 +103100,7 @@ cFz agS cFz cFz -cFz +puX aiX ajr ajW @@ -101893,7 +103154,7 @@ aSt aSt aSt aSt -bjk +dDX bqG aWB aWB @@ -102089,13 +103350,13 @@ aaU aaa aaa cyX -cKs +jXb cHM afI agt agV -cJv -cJv +eAS +eAS aih adM adm @@ -102152,7 +103413,7 @@ aPI aPI bjp bqW -aUh +ves aWB aWB aWB @@ -102335,22 +103596,22 @@ ckl ckl aaa aaa -aaa -aaa -aaa +aaU aaa aaa aaU aaa aaU aaa -cyX -adM -adM +aaU +aaa +cze +cze +cze afe afL -adM -adM +cze +cze ahQ ahV aiI @@ -102400,13 +103661,13 @@ aUT baI aOb aPK -aPK -aPK -aPK -aPK +cfQ +cfQ +cfQ +cfQ aVm btR -aPK +cfQ bjH brc bkV @@ -102592,28 +103853,28 @@ ckl ckl aaa aaa -aaa -aaa -aaa +but aaa aaa aaU aaa aaU -cyX -cyX +aaa +aaU +cze +cze adP aep cHM afI agF -adM -adM +cze +cze adM adM adM adt -aeO +sJC acF ale ale @@ -102648,7 +103909,7 @@ aFz aGe aDM aUK -aGe +aVC axQ axQ axQ @@ -102712,7 +103973,7 @@ cII cgB bqr bbh -bPw +jIR bqz bqq bzG @@ -102849,23 +104110,23 @@ ckl ckl aaa aaa -aaa -aaa -aaa -aaa -aaa +but +aaU +aaU +aaU +aaU aaU aaa aaU -cyX -cJv -cJv +cze +usq +dxB aeq afj afN -cJv -cJv -cyX +kcj +bZX +cze aaU aaU act @@ -102969,7 +104230,7 @@ cIJ cgB bqr bbh -bPw +jIR bqz brK bCf @@ -103106,28 +104367,28 @@ ckl ckl aaa aaa +but aaa aaa -aaa -aaa +aaU aaa aaU aaa aaU cyX -cJv +usq adX -cGk +sSW afk -cKr +mye agK -cJv +bZX cyX aaa aaU act adv -aeO +sJC afW ale alT @@ -103221,12 +104482,12 @@ aRv aaa aaa bbh -bdD +mlM cIK cgB bqr bcT -bPw +jIR bqz bsL bzG @@ -103363,28 +104624,28 @@ ckl ckl aaa aaa +but aaa aaa -aaa -aaa +aaU aaa aaU aaa aaU cyX -cJv +kUm adX aey -adM -cKs +yeL +jqv agK -cJv +rQV cyX aaa aac acE adU -aeO +sJC afW ale alV @@ -103620,22 +104881,22 @@ ckl ckl aaa aaa +but aaa aaa -aaa -aaa +aaU aaa aaU aaa aaU cyX -cJv +usq adX -cGn +rBE afu -cKt +eJp agK -cJv +bZX cyX aaU abv @@ -103670,9 +104931,9 @@ aQS aWr aWu aWu -aWu -aWu -aWu +pvy +pvy +pvy bbQ aWA aXd @@ -103740,7 +105001,7 @@ cIM ciW bqC bdu -bXt +gYU csi bsP bAC @@ -103877,23 +105138,23 @@ ckl ckl aaa aaa -aaa -aaa -aaa -aaa -aaa +but +aaU +aaU +aaU +aaU aaU aaa aaU -cyX -cJv -cJv +cze +usq +cyp aeA +yhv aeA -aeA -cJv -cJv -cyX +sNY +bZX +cze aaa chH acS @@ -104134,23 +105395,23 @@ ckl ckl aaa aaa -aaa -aaa -aaa +but aaa aaa aaU aaa aaU -cyX -cyX -cJv -cJv -cJv -cJv -cJv -cyX -cyX +aaa +aaU +cze +cze +gln +jPm +jPm +jPm +tmn +cze +cze aaa abz acX @@ -104391,35 +105652,35 @@ ckl ckl aaa aaa +aaU aaa aaa -aaa -aaa +aaU aaa aaU aaa aaa aaU +cze +cze cyX cyX cyX -cyX -cyX -cyX -cyX +cze +cze aaU aaa acb aft agz -adt +jpv abB afE afE afE afE aFu -aeO +sJC bZh bZh bZh @@ -104648,10 +105909,10 @@ ckl ckl aaa aaa +but aaa aaa -aaa -aaa +aaU aaa aaU aaa @@ -104676,7 +105937,7 @@ ajg abI acQ aHr -aeO +sJC bZh ahB aiY @@ -104905,11 +106166,11 @@ ckl ckl aaa aaa -aaa -aaa -aaa -aaa -aaa +but +aaU +aaU +aaU +aaU aaU aaa aaa @@ -105162,10 +106423,10 @@ ckl ckl aaa aaa +but aaa aaa -aaa -aaa +aaU aaa aaU aaa @@ -105277,7 +106538,7 @@ ctG cIi cLR ctG -cIy +lhY bjm cmn bWZ @@ -105419,10 +106680,10 @@ ckl ckl aaa aaa +but aaa aaa -aaa -aaa +aaU aaa aaU aaa @@ -105534,7 +106795,7 @@ cvq cIq cMU cvr -cIw +jhc bjm cgB bbh @@ -105676,10 +106937,10 @@ ckl ckl aaa aaa +but aaa aaa -aaa -aaa +aaU aaa aaU aaa @@ -105704,7 +106965,7 @@ alY aoo ajw bAt -aeO +sJC bZh bZh apZ @@ -105933,11 +107194,11 @@ ckl ckl aaa cpB -aaa -aaa -aaa -aaa -aaa +but +aaU +aaU +aaU +aaU aaU aaa aaa @@ -106048,7 +107309,7 @@ cvr ctG ctG ctG -cIy +eTI bjW cKO bZh @@ -106190,10 +107451,10 @@ ckl ckl aaa aaa +aaU aaa aaa -aaa -aaa +aaU aaa aaU aaa @@ -106475,7 +107736,7 @@ amR ajw ajw bGc -aeO +sJC aff ahS ajQ @@ -106562,7 +107823,7 @@ cwE cuV cMX ctG -bdG +eRg cIM coa cwH @@ -106815,7 +108076,7 @@ bQm bQC cuw cuV -cuV +cwE cuV cMY ctG @@ -106989,7 +108250,7 @@ anc ajw axe bGc -aeO +sJC ahz qHK ajQ @@ -107072,7 +108333,7 @@ bQn bQJ cuF cva -cyp +cwE cuV cMZ cvr @@ -107244,9 +108505,9 @@ adQ ajw anf ajw -awN +jpv bGc -aeO +sJC ahz aiw ara @@ -107329,7 +108590,7 @@ bQv bQC cuH cvb -cvd +sHI cvd cNa ctE @@ -107843,7 +109104,7 @@ bQz bQB cuJ cvc -cyz +dKa cuV cNc cNr @@ -108123,7 +109384,7 @@ cfy cfy cfy cfy -cfy +fvu buo buo buo @@ -108378,7 +109639,7 @@ bQd cfy ckf cfy -cfy +eKD cfy cfy cfy @@ -108645,7 +109906,7 @@ cwV cyY czc czo -cfy +eEW cma buo aaa @@ -109664,7 +110925,7 @@ cgI clH cnd cog -cpy +vGv crU aaa aaa @@ -110701,7 +111962,7 @@ cyD cyY czc czo -cfy +eEW cma buo aaa @@ -110934,7 +112195,7 @@ bob bia bXX cIM -bty +ovF bIp aaU aaU @@ -110948,7 +112209,7 @@ cfi cgO cgO cnf -ckf +vZR cfy cfy cfy @@ -111207,7 +112468,7 @@ cfy cfy cfy cfy -cfy +fvu buo buo buo @@ -111705,7 +112966,7 @@ biV cdP bXX cIM -bqE +oPq bcT aaU aaa @@ -111962,7 +113223,7 @@ cwa beW bXX cIM -bqD +iwX bcT aaU aaU @@ -112997,7 +114258,7 @@ bqL brv bBc btA -bMQ +sMZ bta bta bta @@ -115828,7 +117089,7 @@ cPN clX bZu cmM -bYn +sAM bZt bHN bHN @@ -116592,7 +117853,7 @@ cxK ctw bjl bGC -bpQ +iLf bpQ cOa cPO @@ -120601,16 +121862,16 @@ aaa aaU aaa aaU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa +aaU +aye +aye +aye +aye +aye +aye +aaU aOz -bLX +but aaU aaa aaa @@ -120867,7 +122128,7 @@ aaa aaa aaa aOz -bLX +but aaU aaa aaa @@ -121124,7 +122385,7 @@ aaa aaa aaa aOz -bLX +but aaU aaa aaa @@ -121381,7 +122642,7 @@ aaa aaa aaa aOz -bLX +but aaU aaa aaa @@ -121638,7 +122899,7 @@ aaa aaa aaa aOz -bLX +but aaU aaa aaa @@ -121886,16 +123147,16 @@ aaa aaU aaa aaU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa +aaU +aye +aye +aaU +aaU +aye +aye +aaU aOz -bLX +but aaU aaa aaa @@ -122152,7 +123413,7 @@ aaa aaa aaa aOz -bLX +but aaU aaU aaU @@ -123462,7 +124723,7 @@ aaU aaU aaU but -aNB +cHR aaa aaa aaa @@ -123719,7 +124980,7 @@ aaa aaU aaU but -aNB +cHR aaa aaa aaa @@ -123976,7 +125237,7 @@ aaa but but but -aNB +cHR aaa aaa aaa @@ -124230,10 +125491,10 @@ aOz aaa aaa aaa -aNB -aNB -aNB -aNB +cHR +cHR +cHR +cHR aaa aaa aaa From 764c0b8ee046b435e6d3f05b51068958cc50be08 Mon Sep 17 00:00:00 2001 From: evilew Date: Wed, 7 May 2025 00:11:39 +0200 Subject: [PATCH 03/17] changes to cog - added a fennec to cargo Snaxi - began reworking bar area on Cog - detailing on Cog like airlock directions, decals, church tweaks --- _maps/map_files/CogStation/CogStation.dmm | 2041 +++++++++------------ _maps/map_files/Snaxi/Snaxi.dmm | 4 +- 2 files changed, 917 insertions(+), 1128 deletions(-) diff --git a/_maps/map_files/CogStation/CogStation.dmm b/_maps/map_files/CogStation/CogStation.dmm index 9bfd2bff66..0d694774e3 100644 --- a/_maps/map_files/CogStation/CogStation.dmm +++ b/_maps/map_files/CogStation/CogStation.dmm @@ -42,6 +42,9 @@ /area/science/test_area) "aag" = ( /obj/machinery/atmospherics/pipe/simple/supplymain/hidden, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 4 + }, /turf/open/floor/plasteel/stairs/medium, /area/hallway/secondary/entry) "aah" = ( @@ -800,12 +803,9 @@ /turf/closed/wall/r_wall, /area/router/aux) "abX" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable{ - icon_state = "0-2" - }, -/turf/open/floor/plating, -/area/security/checkpoint) +/obj/effect/overlay/coconut, +/turf/open/floor/plating/beach/sand, +/area/service/chapel/main) "abY" = ( /obj/structure/grille, /obj/structure/disposalpipe/segment{ @@ -1150,12 +1150,21 @@ /turf/open/floor/plating, /area/maintenance/port/fore) "acM" = ( +/obj/structure/lattice/catwalk, +/obj/item/stack/marker_beacon{ + anchored = 1; + icon_state = "markerburgundy-on"; + light_color = "#FA644B"; + light_power = 3; + light_range = 3; + name = "Docking Beacon"; + picked_color = "Burgundy" + }, /obj/structure/sign/warning{ name = "\improper KEEP CLEAR: HIGH SPEED DELIVERIES"; pixel_x = -32 }, -/obj/structure/lattice, -/turf/open/space/basic, +/turf/open/floor/plating/airless, /area/space/nearstation) "acN" = ( /obj/effect/turf_decal/tile/red{ @@ -2045,10 +2054,18 @@ "aeZ" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/disposalpipe/segment, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "kitchen2"; + name = "kitchen shutters" + }, /turf/open/floor/plating, /area/service/kitchen) "afa" = ( /obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "kitchen2"; + name = "kitchen shutters" + }, /turf/open/floor/plating, /area/service/kitchen) "afb" = ( @@ -2465,23 +2482,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating, /area/security/prison) -"afZ" = ( -/obj/machinery/disposal/bin{ - name = "Brig Catering" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 5; - layer = 2.03 - }, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/service/kitchen) "aga" = ( /obj/structure/table, /obj/item/paper/fluff/holodeck/disclaimer, @@ -2567,15 +2567,8 @@ /obj/machinery/disposal/bin{ name = "Bar Catering" }, -/obj/effect/turf_decal/stripes/line{ - dir = 6; - layer = 2.03 - }, /obj/structure/disposalpipe/trunk, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/obj/effect/turf_decal/tile/bar, +/obj/effect/turf_decal/stripes/box, /turf/open/floor/plasteel, /area/service/kitchen) "agm" = ( @@ -3051,13 +3044,17 @@ /area/security/prison) "ahs" = ( /obj/machinery/light, -/obj/machinery/light_switch{ - pixel_y = -24 - }, /obj/machinery/camera{ c_tag = "Kitchen"; dir = 1 }, +/obj/machinery/button/door{ + id = "kitchen2"; + name = "Kitchen Shutters Control"; + pixel_x = -5; + pixel_y = -23; + req_access_txt = "28" + }, /turf/open/floor/plasteel/cafeteria, /area/service/kitchen) "aht" = ( @@ -3083,12 +3080,17 @@ /turf/open/floor/plating, /area/service/hydroponics) "ahv" = ( -/obj/structure/sign/warning{ - name = "\improper KEEP CLEAR: HIGH SPEED DELIVERIES"; - pixel_x = 32 +/obj/structure/lattice/catwalk, +/obj/item/stack/marker_beacon{ + anchored = 1; + icon_state = "markerburgundy-on"; + light_color = "#FA644B"; + light_power = 3; + light_range = 3; + name = "Docking Beacon"; + picked_color = "Burgundy" }, -/obj/structure/lattice, -/turf/open/space/basic, +/turf/open/floor/plating/airless, /area/space/nearstation) "ahw" = ( /obj/structure/chair{ @@ -3295,11 +3297,6 @@ }, /turf/open/floor/wood, /area/commons/fitness) -"ahX" = ( -/obj/machinery/deepfryer, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/cafeteria, -/area/service/kitchen) "ahY" = ( /obj/machinery/vending/autodrobe, /obj/effect/decal/cleanable/cobweb, @@ -3320,7 +3317,7 @@ }, /area/hallway/secondary/entry) "aia" = ( -/obj/effect/landmark/start/cook, +/obj/machinery/deepfryer, /turf/open/floor/plasteel/cafeteria, /area/service/kitchen) "aib" = ( @@ -3513,6 +3510,10 @@ "aix" = ( /obj/effect/spawner/structure/window/reinforced, /obj/machinery/atmospherics/pipe/simple/cyan/hidden, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "kitchen2"; + name = "kitchen shutters" + }, /turf/open/floor/plating, /area/service/kitchen) "aiy" = ( @@ -3675,10 +3676,8 @@ /turf/open/floor/plating, /area/maintenance/port/fore) "aiU" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/deepfryer, -/turf/open/floor/plasteel/cafeteria, -/area/service/kitchen) +/turf/open/floor/plasteel/dark, +/area/service/chapel/main) "aiV" = ( /obj/item/stack/tile/plasteel{ pixel_x = 10; @@ -3757,11 +3756,9 @@ /turf/open/floor/plating, /area/maintenance/starboard/fore) "aje" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 4 - }, /obj/machinery/atmospherics/pipe/simple/supplymain/hidden, -/turf/open/floor/plasteel, +/obj/effect/spawner/structure/window, +/turf/open/floor/plating, /area/hallway/secondary/entry) "ajf" = ( /obj/machinery/atmospherics/pipe/simple/cyan/hidden, @@ -3792,9 +3789,9 @@ }, /area/hallway/secondary/entry) "aji" = ( -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/bar{ - dir = 1 +/obj/effect/turf_decal/loading_area{ + icon_state = "drain"; + name = "drain" }, /turf/open/floor/plasteel, /area/service/bar) @@ -3959,8 +3956,7 @@ /turf/open/floor/catwalk_floor, /area/maintenance/port/fore) "ajD" = ( -/obj/structure/chair/stool, -/obj/effect/landmark/start/cook, +/obj/structure/table, /turf/open/floor/plasteel/cafeteria, /area/service/kitchen) "ajE" = ( @@ -4194,13 +4190,11 @@ /turf/open/floor/plasteel, /area/construction/secondary) "akd" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable{ - icon_state = "0-4" +/obj/structure/sign/barsign{ + pixel_y = 32 }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/security/checkpoint) +/turf/open/floor/plasteel, +/area/service/bar) "ake" = ( /obj/machinery/firealarm{ pixel_y = 26 @@ -4518,7 +4512,7 @@ "akM" = ( /obj/machinery/atmospherics/pipe/simple/supplymain/hidden, /turf/open/floor/plasteel, -/area/hallway/secondary/entry) +/area/service/bar) "akN" = ( /obj/structure/chair/stool, /obj/effect/landmark/start/assistant, @@ -4935,17 +4929,15 @@ /obj/structure/cable{ icon_state = "4-8" }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden, /turf/open/floor/plasteel/dark/corner, /area/hallway/secondary/entry) "alS" = ( -/obj/structure/table/wood, -/obj/item/trash/plate, -/obj/item/reagent_containers/food/drinks/drinkingglass, -/obj/item/reagent_containers/rag, -/turf/open/floor/carpet{ - icon_state = "carpetsymbol" +/obj/item/toy/beach_ball, +/turf/open/floor/plating/beach/coastline_b{ + dir = 8 }, -/area/service/bar) +/area/service/chapel/main) "alT" = ( /obj/machinery/light/small{ dir = 1; @@ -5167,9 +5159,6 @@ /obj/structure/cable{ icon_state = "4-8" }, -/obj/structure/cable{ - icon_state = "2-8" - }, /obj/machinery/atmospherics/pipe/simple/cyan/hidden, /obj/structure/disposalpipe/segment{ dir = 10 @@ -5201,16 +5190,11 @@ /turf/open/floor/plating, /area/maintenance/starboard/fore) "amx" = ( -/obj/machinery/light{ - dir = 4; - light_color = "#e8eaff" +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 10 }, -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/service/bar) +/turf/open/floor/plasteel/stairs/medium, +/area/hallway/secondary/entry) "amy" = ( /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, @@ -5241,10 +5225,6 @@ /turf/open/floor/plating, /area/maintenance/starboard/fore) "amE" = ( -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, /obj/structure/cable, /obj/machinery/power/apc/highcap/five_k{ areastring = "/area/service/bar"; @@ -5311,9 +5291,11 @@ /obj/machinery/disposal/bin{ name = "Kitchen Mailbox" }, -/obj/effect/turf_decal/delivery/white, /obj/structure/disposalpipe/trunk, -/turf/open/floor/plasteel/cafeteria, +/obj/effect/turf_decal/stripes/end{ + dir = 8 + }, +/turf/open/floor/plasteel, /area/service/kitchen) "amN" = ( /obj/effect/spawner/structure/window, @@ -5646,7 +5628,7 @@ dir = 8 }, /turf/open/floor/plasteel, -/area/hallway/secondary/entry) +/area/service/bar) "anA" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/maintenance{ @@ -5656,16 +5638,6 @@ /obj/machinery/atmospherics/pipe/simple/cyan/hidden, /turf/open/floor/plating, /area/commons/fitness) -"anB" = ( -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/obj/structure/sign/barsign{ - pixel_y = 32 - }, -/turf/open/floor/plasteel, -/area/service/bar) "anC" = ( /obj/machinery/computer/cargo/request, /obj/effect/turf_decal/delivery, @@ -5677,14 +5649,11 @@ /turf/open/floor/plasteel, /area/router/sec) "anD" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, /obj/machinery/atmospherics/pipe/manifold/orange/hidden{ dir = 4 }, -/turf/open/floor/plasteel/dark/corner, -/area/hallway/secondary/entry) +/turf/open/floor/plasteel, +/area/service/bar) "anE" = ( /obj/machinery/vending/games, /turf/open/floor/carpet/arcade, @@ -5702,17 +5671,14 @@ /area/maintenance/starboard/fore) "anH" = ( /obj/machinery/door/firedoor, -/obj/structure/cable{ - icon_state = "1-2" - }, /obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden, /obj/machinery/door/airlock/security{ name = "Security Checkpoint"; req_access_txt = "1" }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden, /turf/open/floor/plating, -/area/security/checkpoint) +/area/service/bar) "anI" = ( /obj/machinery/portable_atmospherics/scrubber, /obj/effect/turf_decal/bot, @@ -5729,41 +5695,11 @@ /turf/open/floor/plasteel, /area/commons/storage/emergency) "anJ" = ( -/obj/structure/table, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ dir = 4 }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/structure/cable{ - icon_state = "0-8" - }, -/obj/item/paper_bin, -/obj/item/stamp/denied{ - pixel_x = 8; - pixel_y = 8 - }, -/obj/item/stamp{ - pixel_x = 6; - pixel_y = 4 - }, -/obj/item/pen, -/obj/machinery/power/apc{ - areastring = "/area/security/checkpoint"; - dir = 4; - name = "Security Checkpoint APC"; - pixel_x = 24 - }, -/obj/machinery/requests_console{ - department = "Security"; - departmentType = 5; - name = "Security RC"; - pixel_y = -32 - }, /turf/open/floor/plasteel, -/area/security/checkpoint) +/area/service/bar) "anK" = ( /turf/closed/wall/r_wall, /area/security/detectives_office) @@ -5908,7 +5844,7 @@ /obj/item/clockwork/component/geis_capacitor/fallen_armor, /obj/structure/table/bronze, /turf/open/floor/plasteel{ - dir = 4; + dir = 8; icon_state = "chapel" }, /area/service/chapel/main) @@ -5969,16 +5905,6 @@ }, /turf/open/floor/carpet/purple, /area/commons/dorms/purple) -"aoj" = ( -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/machinery/holopad, -/turf/open/floor/plasteel, -/area/security/checkpoint) "aok" = ( /obj/structure/chair/wood/normal{ dir = 1 @@ -6067,12 +5993,11 @@ /turf/open/floor/wood, /area/commons/fitness) "aou" = ( -/obj/structure/chair/comfy/brown{ - dir = 8 - }, -/turf/open/floor/carpet{ - icon_state = "carpetsymbol" +/obj/machinery/firealarm{ + dir = 8; + pixel_x = 28 }, +/turf/open/floor/plasteel, /area/service/bar) "aov" = ( /obj/machinery/hydroponics/constructable, @@ -6088,36 +6013,13 @@ }, /turf/open/floor/grass, /area/service/hydroponics) -"aox" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden, -/turf/open/floor/plasteel/dark/corner, -/area/hallway/secondary/entry) "aoy" = ( -/obj/machinery/computer/secure_data, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, /obj/machinery/camera{ c_tag = "Security Checkpoint"; pixel_x = 22 }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/airalarm{ - pixel_y = 23 - }, /turf/open/floor/plasteel, -/area/security/checkpoint) +/area/service/bar) "aoz" = ( /obj/structure/closet, /obj/effect/spawner/lootdrop/maintenance{ @@ -6129,28 +6031,10 @@ }, /area/construction/secondary) "aoA" = ( -/obj/structure/table/reinforced, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/item/flashlight/lamp, -/obj/machinery/door/window/westright{ - name = "Security Checkpoint"; - req_access_txt = "1" - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8; - name = "west facing firelock" - }, -/turf/open/floor/plasteel, -/area/security/checkpoint) +/obj/structure/table, +/obj/item/book/manual/chef_recipes, +/turf/open/floor/plasteel/cafeteria, +/area/service/kitchen) "aoB" = ( /obj/structure/bed, /obj/item/clothing/glasses/sunglasses/blindfold, @@ -6186,20 +6070,11 @@ /turf/open/floor/plasteel, /area/commons/fitness) "aoD" = ( -/obj/structure/chair{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, /obj/machinery/atmospherics/components/unary/vent_pump/on{ dir = 4 }, /turf/open/floor/plasteel, -/area/security/checkpoint) +/area/service/bar) "aoE" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -6210,14 +6085,11 @@ /turf/closed/wall/r_wall, /area/security/office) "aoG" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, /obj/machinery/atmospherics/pipe/simple/cyan/hidden{ dir = 9 }, /turf/open/floor/plasteel, -/area/security/checkpoint) +/area/service/bar) "aoH" = ( /obj/machinery/door/airlock/external/glass{ name = "Port Bow Solars External Access"; @@ -6423,14 +6295,14 @@ dir = 8 }, /turf/open/floor/plasteel{ - dir = 4; + dir = 8; icon_state = "chapel" }, /area/service/chapel/main) "apa" = ( /obj/structure/chair/sofa/right, /turf/open/floor/plasteel{ - dir = 8; + dir = 4; icon_state = "chapel" }, /area/service/chapel/main) @@ -6541,9 +6413,19 @@ /turf/open/floor/plasteel, /area/router/sec) "apq" = ( -/obj/effect/spawner/structure/window, -/obj/machinery/atmospherics/pipe/simple/supplymain/hidden, -/turf/open/floor/plating, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden, +/turf/open/floor/plasteel/dark/corner{ + dir = 1 + }, /area/hallway/secondary/entry) "apr" = ( /obj/machinery/light/small{ @@ -6589,7 +6471,7 @@ pixel_y = 26 }, /turf/open/floor/plasteel{ - dir = 4; + dir = 8; icon_state = "chapel" }, /area/service/chapel/main) @@ -6702,7 +6584,7 @@ dir = 1 }, /turf/open/floor/plasteel{ - dir = 4; + dir = 8; icon_state = "chapel" }, /area/service/chapel/main) @@ -6743,22 +6625,10 @@ /turf/open/floor/plasteel, /area/security/brig) "apR" = ( -/obj/structure/table/wood, -/obj/item/trash/plate, -/obj/item/reagent_containers/food/condiment/saltshaker{ - pixel_x = 1; - pixel_y = 3 - }, -/obj/item/reagent_containers/food/condiment/peppermill{ - pixel_x = -5; - pixel_y = 7 - }, /obj/machinery/atmospherics/components/unary/vent_pump/on{ dir = 8 }, -/turf/open/floor/carpet{ - icon_state = "carpetsymbol" - }, +/turf/open/floor/plasteel, /area/service/bar) "apS" = ( /obj/structure/cable{ @@ -6771,14 +6641,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plasteel, /area/construction) -"apU" = ( -/obj/structure/table/wood, -/obj/item/trash/plate, -/obj/item/gun/ballistic/revolver/russian, -/turf/open/floor/carpet{ - icon_state = "carpetsymbol" - }, -/area/service/bar) "apV" = ( /turf/closed/wall/rust, /area/service/chapel/main) @@ -6857,7 +6719,7 @@ c_tag = "Chapel - Fore" }, /turf/open/floor/plasteel{ - dir = 8; + dir = 4; icon_state = "chapel" }, /area/service/chapel/main) @@ -6900,14 +6762,14 @@ /turf/open/floor/wood, /area/commons/fitness) "aqj" = ( -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, /obj/item/radio/intercom{ name = "Station Intercom (Common)"; pixel_x = 26 }, +/obj/machinery/light{ + dir = 4; + light_color = "#e8eaff" + }, /turf/open/floor/plasteel, /area/service/bar) "aqk" = ( @@ -7106,8 +6968,13 @@ /turf/open/floor/plasteel, /area/commons/fitness) "aqL" = ( -/turf/closed/wall, -/area/security/checkpoint) +/obj/structure/table/reinforced, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "kitchen2"; + name = "kitchen shutters" + }, +/turf/open/floor/plasteel, +/area/service/bar) "aqM" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable, @@ -7202,18 +7069,21 @@ /turf/open/floor/plating, /area/commons/dorms/purple) "aqW" = ( -/obj/structure/table, /obj/machinery/light{ dir = 8; light_color = "#e8eaff" }, -/obj/item/book/manual/chef_recipes, -/obj/item/storage/box/donkpockets, -/obj/structure/disposalpipe/segment, /obj/structure/extinguisher_cabinet{ pixel_x = -26 }, -/turf/open/floor/plasteel/cafeteria, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/obj/machinery/disposal/bin{ + name = "Brig Catering" + }, +/obj/effect/turf_decal/stripes/box, +/turf/open/floor/plasteel, /area/service/kitchen) "aqX" = ( /obj/structure/sign/warning/fire{ @@ -7241,16 +7111,16 @@ /turf/open/floor/plasteel, /area/security/brig) "aqZ" = ( -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/bar{ - dir = 1 +/obj/structure/cable{ + icon_state = "1-2" }, -/obj/machinery/light{ - dir = 1 +/obj/machinery/door/airlock/public/glass{ + name = "Bar" }, -/obj/machinery/atmospherics/pipe/simple/supplymain/hidden, +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/delivery, /turf/open/floor/plasteel, -/area/service/bar) +/area/hallway/secondary/entry) "ara" = ( /obj/effect/turf_decal/stripes/line{ dir = 1 @@ -7475,6 +7345,9 @@ /area/service/kitchen) "ary" = ( /obj/machinery/food_cart, +/obj/machinery/light_switch{ + pixel_y = -24 + }, /turf/open/floor/plasteel/cafeteria, /area/service/kitchen) "arz" = ( @@ -7556,6 +7429,10 @@ /obj/machinery/atmospherics/pipe/simple/orange/hidden{ dir = 8 }, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "cog_gymshutter"; + name = "gym shutters" + }, /turf/open/floor/plating, /area/commons/fitness) "arJ" = ( @@ -7809,19 +7686,14 @@ /turf/open/floor/plasteel, /area/commons/dorms/blue) "asg" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, /obj/structure/cable{ icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/orange/hidden{ dir = 8 }, -/turf/open/floor/plasteel/dark/corner{ - dir = 1 - }, -/area/hallway/secondary/entry) +/turf/open/floor/plasteel, +/area/service/bar) "ash" = ( /obj/machinery/light_switch{ pixel_y = -24 @@ -7926,15 +7798,6 @@ /obj/machinery/atmospherics/pipe/manifold4w/orange/hidden, /turf/open/floor/carpet/blue, /area/commons/dorms/blue) -"asp" = ( -/obj/structure/chair/comfy/brown, -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/obj/effect/landmark/start/assistant, -/turf/open/floor/plasteel, -/area/service/bar) "asq" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -8203,10 +8066,7 @@ /obj/machinery/atmospherics/pipe/simple/cyan/hidden{ dir = 4 }, -/mob/living/simple_animal/mouse/gray{ - desc = "A strangely observant rodent."; - name = "Remy" - }, +/obj/structure/table, /turf/open/floor/plasteel/cafeteria, /area/service/kitchen) "asU" = ( @@ -8555,13 +8415,10 @@ /turf/open/floor/plasteel/cafeteria, /area/service/kitchen) "atP" = ( -/obj/structure/table/wood, -/obj/item/trash/plate, -/obj/item/reagent_containers/food/drinks/drinkingglass, -/turf/open/floor/carpet{ - icon_state = "carpetsymbol" +/turf/open/floor/plating/beach/coastline_t{ + dir = 8 }, -/area/service/bar) +/area/service/chapel/main) "atQ" = ( /obj/structure/closet/lasertag/red, /obj/structure/sign/poster/official/space_cops{ @@ -8721,16 +8578,6 @@ /obj/item/storage/bag/plants, /turf/open/floor/plasteel, /area/service/hydroponics) -"auh" = ( -/obj/structure/table/wood, -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/obj/item/storage/dice, -/obj/item/toy/cards/deck, -/turf/open/floor/plasteel, -/area/service/bar) "aui" = ( /obj/machinery/atmospherics/components/binary/pump/on{ dir = 1; @@ -9509,14 +9356,6 @@ }, /turf/open/floor/plasteel/cafeteria, /area/service/barbershop) -"avT" = ( -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/supplymain/hidden, -/turf/open/floor/plasteel, -/area/service/bar) "avU" = ( /obj/machinery/door/firedoor, /obj/machinery/atmospherics/pipe/simple/orange/hidden{ @@ -9654,12 +9493,9 @@ /turf/open/floor/plasteel, /area/hallway/secondary/civilian) "awh" = ( -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/obj/structure/sign/poster/official/fruit_bowl{ - pixel_x = 32 +/obj/machinery/airalarm{ + dir = 8; + pixel_x = 23 }, /turf/open/floor/plasteel, /area/service/bar) @@ -9764,28 +9600,12 @@ /turf/open/floor/plasteel/white, /area/commons/fitness/cogpool) "awt" = ( -/obj/structure/table/reinforced, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ +/obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/item/folder/red, -/obj/machinery/door/window/westleft{ - name = "Security Checkpoint"; - req_access_txt = "1" - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8; - name = "west facing firelock" - }, -/turf/open/floor/plasteel, -/area/security/checkpoint) +/obj/structure/chair/stool/bar, +/turf/open/floor/carpet, +/area/service/bar) "awu" = ( /obj/machinery/atmospherics/pipe/manifold/general/visible, /turf/open/floor/plating, @@ -9849,13 +9669,13 @@ /area/commons/fitness/cogpool) "awB" = ( /obj/machinery/microwave, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, /obj/structure/table/wood/fancy, -/turf/open/floor/plasteel/dark/side{ - dir = 4 +/obj/effect/turf_decal/loading_area{ + dir = 8; + icon_state = "drain"; + name = "drain" }, +/turf/open/floor/plasteel/dark, /area/service/bar) "awC" = ( /turf/open/floor/plasteel/cafeteria, @@ -9992,10 +9812,7 @@ /obj/machinery/atmospherics/components/unary/vent_pump/on{ dir = 4 }, -/turf/open/floor/plasteel{ - dir = 4; - icon_state = "chapel" - }, +/turf/open/floor/plasteel/dark, /area/service/chapel/main) "awQ" = ( /obj/structure/window/plasma/reinforced{ @@ -10456,16 +10273,11 @@ /turf/open/floor/plasteel, /area/tcommsat/computer) "axG" = ( -/obj/structure/chair/comfy/brown{ - dir = 4 - }, /obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ dir = 4 }, /obj/machinery/atmospherics/pipe/simple/orange/hidden, -/turf/open/floor/carpet{ - icon_state = "carpetsymbol" - }, +/turf/open/floor/plasteel, /area/service/bar) "axH" = ( /obj/effect/turf_decal/stripes/line{ @@ -10871,7 +10683,7 @@ /obj/structure/window/reinforced, /obj/structure/destructible/cult/tome, /turf/open/floor/plasteel{ - dir = 8; + dir = 4; icon_state = "chapel" }, /area/service/chapel/main) @@ -10920,16 +10732,6 @@ }, /turf/open/floor/plasteel, /area/security/prison) -"ayG" = ( -/obj/structure/chair/comfy/brown{ - dir = 1 - }, -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/service/bar) "ayH" = ( /obj/machinery/light/small{ brightness = 3; @@ -11199,10 +11001,6 @@ /area/service/hydroponics/garden) "azi" = ( /obj/machinery/door/firedoor, -/obj/machinery/door/airlock/security{ - name = "Interrogation Maintenance"; - req_access_txt = "63;12" - }, /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -11212,6 +11010,11 @@ /obj/structure/cable{ icon_state = "4-8" }, +/obj/machinery/door/airlock/security{ + name = "Interrogation Maintenance"; + req_access_txt = "63;12"; + dir = 4 + }, /turf/open/floor/plating, /area/security/brig) "azj" = ( @@ -11260,10 +11063,6 @@ }, /turf/open/floor/plasteel, /area/security/brig) -"azm" = ( -/obj/structure/chair/stool/bar, -/turf/open/floor/carpet, -/area/service/bar) "azn" = ( /obj/structure/chair{ dir = 8 @@ -11305,13 +11104,6 @@ /obj/machinery/light_switch{ pixel_y = 24 }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, /obj/structure/disposalpipe/trunk{ dir = 8 }, @@ -11319,8 +11111,12 @@ name = "Station Intercom (Common)"; pixel_x = 26 }, +/obj/machinery/light{ + dir = 4; + light_color = "#e8eaff" + }, /turf/open/floor/plasteel, -/area/security/checkpoint) +/area/service/bar) "azs" = ( /obj/machinery/atmospherics/pipe/simple/orange/hidden{ dir = 8 @@ -11639,10 +11435,6 @@ /turf/closed/wall/r_wall, /area/service/kitchen) "aAb" = ( -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, /obj/effect/landmark/event_spawn, /obj/machinery/atmospherics/pipe/simple/supplymain/hidden, /turf/open/floor/plasteel, @@ -11885,6 +11677,7 @@ pixel_x = -24 }, /turf/open/floor/plasteel{ + dir = 8; icon_state = "chapel" }, /area/service/chapel/main) @@ -11906,7 +11699,7 @@ pixel_y = 28 }, /turf/open/floor/plasteel{ - dir = 4; + dir = 8; icon_state = "chapel" }, /area/service/chapel/main) @@ -12031,24 +11824,12 @@ /turf/open/floor/plating, /area/security/brig) "aAQ" = ( -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/structure/cable{ - icon_state = "1-2" - }, /obj/structure/disposalpipe/segment{ dir = 5 }, /obj/machinery/atmospherics/pipe/simple/cyan/hidden, -/obj/structure/cable{ - icon_state = "2-8" - }, /turf/open/floor/plasteel, -/area/security/checkpoint) +/area/service/bar) "aAR" = ( /obj/structure/disposalpipe/segment, /obj/machinery/atmospherics/pipe/simple/cyan/hidden, @@ -12270,11 +12051,11 @@ /turf/open/floor/plasteel, /area/service/hydroponics) "aBo" = ( -/obj/structure/table, /obj/item/storage/pill_bottle/epinephrine, /obj/machinery/atmospherics/components/unary/vent_scrubber/on{ dir = 8 }, +/obj/structure/table/wood, /turf/open/floor/carpet{ icon_state = "carpetsymbol" }, @@ -12308,7 +12089,7 @@ /obj/item/paper_bin, /obj/item/pen, /turf/open/floor/plasteel{ - dir = 1; + dir = 4; icon_state = "chapel" }, /area/service/chapel/main) @@ -12329,7 +12110,6 @@ /obj/machinery/newscaster{ pixel_y = 32 }, -/obj/effect/landmark/start/assistant, /turf/open/floor/carpet{ icon_state = "carpetsymbol" }, @@ -12847,17 +12627,6 @@ icon_state = "carpetsymbol" }, /area/service/chapel/main) -"aCz" = ( -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden, -/turf/open/floor/plasteel, -/area/service/bar) "aCA" = ( /obj/structure/chair{ dir = 4 @@ -12876,6 +12645,11 @@ /obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ dir = 4 }, +/obj/effect/turf_decal/loading_area{ + dir = 8; + icon_state = "drain"; + name = "drain" + }, /turf/open/floor/carpet, /area/service/bar) "aCC" = ( @@ -12889,6 +12663,11 @@ /obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ dir = 4 }, +/obj/effect/turf_decal/loading_area{ + dir = 8; + icon_state = "drain"; + name = "drain" + }, /turf/open/floor/plasteel/dark, /area/service/bar) "aCE" = ( @@ -12981,10 +12760,6 @@ /turf/open/floor/plating, /area/maintenance/port/fore) "aCN" = ( -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, /obj/machinery/atmospherics/pipe/manifold/supplymain/hidden{ dir = 8 }, @@ -13035,10 +12810,7 @@ }, /obj/structure/table/wood, /obj/item/reagent_containers/food/snacks/grown/harebell, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "chapel" - }, +/turf/open/floor/plasteel/dark, /area/service/chapel/main) "aCR" = ( /obj/effect/turf_decal/tile/green{ @@ -13158,11 +12930,13 @@ /area/service/barbershop) "aDb" = ( /obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable{ - icon_state = "0-4" +/mob/living/simple_animal/chicken{ + desc = "At least it isn't a court kangaroo."; + name = "amusing cluck"; + real_name = "amusing cluck" }, /turf/open/floor/plating, -/area/security/checkpoint) +/area/command/bridge) "aDc" = ( /obj/machinery/firealarm{ dir = 4; @@ -13254,22 +13028,6 @@ "aDl" = ( /turf/open/floor/plasteel/freezer, /area/commons/toilet) -"aDm" = ( -/obj/machinery/computer/security{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel, -/area/security/checkpoint) "aDn" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/transit_tube/horizontal, @@ -13455,25 +13213,6 @@ }, /turf/open/floor/catwalk_floor, /area/maintenance/port/fore) -"aDF" = ( -/obj/structure/table, -/obj/machinery/recharger, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/structure/cable{ - icon_state = "1-4" - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on, -/obj/structure/cable{ - icon_state = "2-4" - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel, -/area/security/checkpoint) "aDG" = ( /obj/machinery/holopad, /turf/open/floor/plasteel, @@ -13481,15 +13220,6 @@ "aDH" = ( /turf/open/floor/plasteel, /area/service/hydroponics/lobby) -"aDI" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "chapel" - }, -/area/service/chapel/main) "aDJ" = ( /obj/structure/disposalpipe/segment{ dir = 5 @@ -13712,9 +13442,7 @@ /obj/machinery/atmospherics/pipe/simple/cyan/hidden{ dir = 4 }, -/turf/open/floor/plasteel{ - icon_state = "chapel" - }, +/turf/open/floor/plasteel/dark, /area/service/chapel/main) "aEj" = ( /obj/machinery/atmospherics/pipe/simple/cyan/hidden{ @@ -13894,10 +13622,6 @@ /area/service/hydroponics/lobby) "aEA" = ( /obj/machinery/disposal/bin, -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, /obj/machinery/light{ dir = 8; light_color = "#e8eaff" @@ -13988,9 +13712,9 @@ /turf/open/floor/wood, /area/service/barbershop) "aEK" = ( -/obj/structure/table, /obj/item/razor, /obj/item/razor, +/obj/structure/table/wood, /turf/open/floor/wood, /area/service/barbershop) "aEL" = ( @@ -14010,16 +13734,16 @@ /turf/open/floor/carpet, /area/service/chapel/main) "aEN" = ( -/obj/structure/table, /obj/machinery/light, /obj/item/dyespray, /obj/item/dyespray, +/obj/structure/table/wood, /turf/open/floor/wood, /area/service/barbershop) "aEO" = ( -/obj/structure/table, /obj/item/clothing/accessory/pocketprotector/cosmetology, /obj/item/clothing/accessory/pocketprotector/cosmetology, +/obj/structure/table/wood, /turf/open/floor/wood, /area/service/barbershop) "aEP" = ( @@ -14150,7 +13874,6 @@ "aFe" = ( /obj/machinery/photocopier, /turf/open/floor/plasteel{ - dir = 4; icon_state = "chapel" }, /area/service/chapel/main) @@ -14201,11 +13924,12 @@ /turf/closed/wall/r_wall, /area/command/heads_quarters/hos) "aFk" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/simple/orange/hidden, -/obj/structure/cable, -/turf/open/floor/plating, -/area/security/checkpoint) +/mob/living/simple_animal/mouse/gray{ + desc = "A strangely observant rodent."; + name = "Remy" + }, +/turf/open/floor/plasteel/cafeteria, +/area/service/kitchen) "aFl" = ( /obj/structure/chair/sofa/right, /obj/effect/turf_decal/tile/green{ @@ -14247,14 +13971,8 @@ /turf/open/floor/plasteel, /area/commons/fitness) "aFp" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/public/glass{ - name = "Bar" - }, -/obj/effect/turf_decal/delivery, -/obj/machinery/atmospherics/pipe/simple/orange/hidden, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) +/turf/open/floor/plating/beach/sand, +/area/service/chapel/main) "aFq" = ( /obj/structure/table/wood, /obj/item/candle{ @@ -15252,10 +14970,6 @@ /turf/open/floor/plasteel, /area/security/prison) "aHh" = ( -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, /obj/machinery/atmospherics/pipe/simple/orange/hidden, /turf/open/floor/plasteel, /area/service/bar) @@ -15289,10 +15003,6 @@ /turf/open/floor/plasteel, /area/hallway/primary/port/fore) "aHl" = ( -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -15742,7 +15452,10 @@ name = "Kitchen RC"; pixel_x = 30 }, -/turf/open/floor/plasteel/cafeteria, +/obj/effect/turf_decal/stripes/end{ + dir = 4 + }, +/turf/open/floor/plasteel, /area/service/kitchen) "aIn" = ( /obj/structure/grille, @@ -16119,16 +15832,17 @@ /area/hallway/primary/port/fore) "aIV" = ( /obj/machinery/door/firedoor, -/obj/machinery/door/airlock/security{ - name = "Interrogation Monitoring"; - req_access_txt = "63" - }, /obj/structure/cable{ icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/orange/hidden{ dir = 8 }, +/obj/machinery/door/airlock/security{ + name = "Interrogation Monitoring"; + req_access_txt = "63"; + dir = 8 + }, /turf/open/floor/plasteel/dark, /area/security/brig) "aIW" = ( @@ -16600,14 +16314,12 @@ /turf/open/floor/plating, /area/maintenance/solars/starboard/fore) "aJS" = ( -/obj/structure/chair/comfy/brown{ - dir = 4 +/obj/machinery/button/door{ + name = "Gym / Kitchen Shutters"; + id = "cog_gymshutter" }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden, -/turf/open/floor/carpet{ - icon_state = "carpetsymbol" - }, -/area/service/bar) +/turf/closed/wall, +/area/commons/fitness) "aJT" = ( /obj/effect/turf_decal/tile/neutral, /obj/effect/turf_decal/tile/neutral{ @@ -16858,14 +16570,8 @@ /turf/open/floor/plasteel, /area/commons/storage/emergency) "aKs" = ( -/obj/structure/table/wood, -/obj/item/trash/plate, -/obj/item/reagent_containers/food/drinks/drinkingglass, -/obj/item/reagent_containers/rag, /obj/machinery/atmospherics/components/unary/vent_scrubber/on, -/turf/open/floor/carpet{ - icon_state = "carpetsymbol" - }, +/turf/open/floor/plasteel, /area/service/bar) "aKt" = ( /obj/effect/turf_decal/delivery, @@ -16942,14 +16648,16 @@ /turf/open/floor/carpet/royalblue, /area/command/bridge) "aKB" = ( -/obj/structure/chair/comfy/brown{ - dir = 8 +/obj/structure/chair/stool/bar, +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/obj/effect/landmark/start/assistant, -/obj/machinery/atmospherics/pipe/simple/orange/hidden, -/turf/open/floor/carpet{ - icon_state = "carpetsymbol" +/obj/effect/turf_decal/loading_area{ + dir = 4; + icon_state = "drain"; + name = "drain" }, +/turf/open/floor/carpet, /area/service/bar) "aKC" = ( /obj/machinery/door/firedoor, @@ -17520,7 +17228,7 @@ }, /obj/machinery/atmospherics/pipe/simple/orange/hidden, /turf/open/floor/plasteel{ - dir = 8; + dir = 4; icon_state = "chapel" }, /area/service/chapel/main) @@ -17856,7 +17564,7 @@ dir = 5 }, /turf/open/floor/plasteel{ - dir = 4; + dir = 8; icon_state = "chapel" }, /area/service/chapel/main) @@ -17865,7 +17573,7 @@ dir = 8 }, /turf/open/floor/plasteel{ - dir = 8; + dir = 4; icon_state = "chapel" }, /area/service/chapel/main) @@ -17885,15 +17593,10 @@ /turf/open/floor/plasteel, /area/tcommsat/computer) "aMy" = ( -/obj/structure/chair/comfy/brown{ - dir = 4 - }, /obj/machinery/atmospherics/pipe/manifold/orange/hidden{ dir = 8 }, -/turf/open/floor/carpet{ - icon_state = "carpetsymbol" - }, +/turf/open/floor/plasteel, /area/service/bar) "aMz" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ @@ -17908,19 +17611,10 @@ /turf/closed/wall/r_wall, /area/service/janitor) "aMC" = ( -/obj/structure/table/wood, -/obj/item/kitchen/fork, -/obj/item/reagent_containers/food/snacks/salad/herbsalad, -/obj/item/candle{ - pixel_x = 8; - pixel_y = 8 - }, /obj/machinery/atmospherics/pipe/simple/orange/hidden{ dir = 8 }, -/turf/open/floor/carpet{ - icon_state = "carpetsymbol" - }, +/turf/open/floor/plasteel, /area/service/bar) "aMD" = ( /turf/closed/wall/rust, @@ -18256,24 +17950,8 @@ }, /area/security/courtroom) "aNl" = ( -/obj/structure/table/wood, -/obj/item/trash/plate, -/obj/item/reagent_containers/food/condiment/pack/ketchup{ - pixel_x = -2; - pixel_y = 6 - }, -/obj/item/reagent_containers/food/condiment/pack/mustard{ - pixel_x = 6; - pixel_y = 3 - }, -/obj/item/candle{ - pixel_x = -8; - pixel_y = 8 - }, /obj/machinery/atmospherics/pipe/manifold/orange/hidden, -/turf/open/floor/carpet{ - icon_state = "carpetsymbol" - }, +/turf/open/floor/plasteel, /area/service/bar) "aNm" = ( /obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ @@ -18347,15 +18025,6 @@ }, /turf/open/floor/plasteel, /area/hallway/secondary/civilian) -"aNu" = ( -/obj/structure/chair/comfy/brown{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/orange/hidden, -/turf/open/floor/carpet{ - icon_state = "carpetsymbol" - }, -/area/service/bar) "aNv" = ( /obj/effect/turf_decal/tile/neutral, /obj/effect/turf_decal/tile/neutral{ @@ -18389,9 +18058,7 @@ /obj/structure/cable{ icon_state = "1-2" }, -/turf/open/floor/plasteel{ - icon_state = "chapel" - }, +/turf/open/floor/plasteel/dark, /area/service/chapel/main) "aNz" = ( /obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ @@ -18561,15 +18228,13 @@ /turf/closed/wall/r_wall, /area/command/teleporter) "aNU" = ( -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/bar{ - dir = 1 +/obj/effect/spawner/structure/window, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "cog_gymshutter"; + name = "gym shutters" }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/service/bar) +/turf/open/floor/plating, +/area/commons/fitness) "aNV" = ( /obj/structure/table, /obj/item/locator, @@ -18584,11 +18249,6 @@ /turf/open/floor/plasteel, /area/maintenance/disposal) "aNX" = ( -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/obj/item/instrument/guitar, /obj/machinery/camera{ c_tag = "Bar - Port"; dir = 4 @@ -18596,10 +18256,6 @@ /turf/open/floor/plasteel, /area/service/bar) "aNY" = ( -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, /obj/machinery/navbeacon{ codes_txt = "patrol;next_patrol=sec2"; location = "bar" @@ -20270,6 +19926,12 @@ /turf/open/floor/plating, /area/engineering/main) "aRM" = ( +/obj/structure/chair/stool/bar, +/obj/effect/turf_decal/loading_area{ + dir = 8; + icon_state = "drain"; + name = "drain" + }, /turf/open/floor/carpet, /area/service/bar) "aRN" = ( @@ -20353,10 +20015,6 @@ /turf/open/floor/plasteel, /area/hallway/secondary/civilian) "aRT" = ( -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, /obj/machinery/atmospherics/pipe/simple/orange/hidden, /obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ dir = 4 @@ -20640,13 +20298,14 @@ }, /area/service/chapel/main) "aSD" = ( -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, /obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ dir = 4 }, +/obj/effect/turf_decal/loading_area{ + dir = 1; + icon_state = "drain"; + name = "drain" + }, /turf/open/floor/plasteel, /area/service/bar) "aSE" = ( @@ -21532,7 +21191,7 @@ "aUB" = ( /obj/structure/table/wood, /obj/item/flashlight/lamp, -/turf/open/floor/carpet/green, +/turf/open/floor/carpet/blue, /area/command/heads_quarters/hop) "aUC" = ( /obj/machinery/atmospherics/pipe/simple/orange/hidden{ @@ -21560,7 +21219,8 @@ /turf/open/floor/plasteel/dark/side, /area/security/courtroom) "aUF" = ( -/turf/open/floor/carpet/green, +/obj/structure/table/wood, +/turf/open/floor/carpet/blue, /area/command/heads_quarters/hop) "aUG" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on{ @@ -22745,10 +22405,6 @@ /turf/closed/wall/r_wall, /area/tcommsat/computer) "aXn" = ( -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, /obj/structure/disposalpipe/segment, /obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ dir = 4 @@ -22799,17 +22455,6 @@ "aXu" = ( /turf/closed/wall, /area/security/courtroom/jury) -"aXv" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/public/glass{ - name = "Bar" - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) "aXw" = ( /obj/effect/turf_decal/tile/blue, /obj/effect/turf_decal/tile/blue{ @@ -24207,13 +23852,18 @@ dir = 4 }, /obj/machinery/holopad, +/obj/effect/turf_decal/loading_area{ + dir = 8; + icon_state = "drain"; + name = "drain" + }, /turf/open/floor/carpet, /area/service/bar) "bas" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/carpet, +/turf/open/floor/plasteel, /area/service/bar) "bat" = ( /obj/structure/chair/stool/bar, @@ -25653,13 +25303,14 @@ /area/hallway/primary/aft) "bdJ" = ( /obj/machinery/door/firedoor, -/obj/machinery/door/airlock/maintenance{ - name = "Telecommunications Control Room Maintenance"; - req_access_txt = "61" - }, /obj/structure/cable{ icon_state = "4-8" }, +/obj/machinery/door/airlock/maintenance{ + name = "Telecommunications Control Room Maintenance"; + req_access_txt = "61"; + dir = 4 + }, /turf/open/floor/plating, /area/command/bridge) "bdK" = ( @@ -27099,7 +26750,9 @@ }, /obj/item/wrench, /obj/item/pipe_dispenser, -/mob/living/simple_animal/sloth/paperwork, +/mob/living/simple_animal/pet/fox/fennec{ + name = "Goob" + }, /turf/open/floor/plasteel, /area/cargo/sorting) "bgP" = ( @@ -28355,7 +28008,7 @@ icon_state = "1-2" }, /obj/structure/cable, -/turf/open/floor/carpet/green, +/turf/open/floor/plasteel/dark, /area/command/heads_quarters/hop) "bjG" = ( /obj/structure/rack, @@ -29565,10 +29218,6 @@ /area/command/heads_quarters/rd) "bmc" = ( /obj/machinery/door/firedoor, -/obj/machinery/door/airlock/command{ - name = "Head of Security's Office"; - req_one_access_txt = "58" - }, /obj/structure/disposalpipe/segment{ dir = 6 }, @@ -29576,6 +29225,11 @@ /obj/machinery/atmospherics/pipe/simple/orange/hidden{ dir = 8 }, +/obj/machinery/door/airlock/command{ + name = "Head of Security's Office"; + req_one_access_txt = "58"; + dir = 4 + }, /turf/open/floor/plasteel, /area/command/heads_quarters/hos) "bmd" = ( @@ -30981,16 +30635,17 @@ /turf/open/floor/plasteel, /area/cargo/miningoffice) "boO" = ( -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, /obj/item/storage/box/drinkingglasses{ pixel_y = 4 }, /obj/structure/table/wood/fancy, -/turf/open/floor/plasteel/dark/side{ - dir = 4 +/obj/item/storage/box/donkpockets, +/obj/effect/turf_decal/loading_area{ + dir = 8; + icon_state = "drain"; + name = "drain" }, +/turf/open/floor/plasteel/dark, /area/service/bar) "boP" = ( /obj/structure/tank_dispenser/oxygen, @@ -31087,7 +30742,6 @@ /obj/effect/turf_decal/tile/purple{ dir = 1 }, -/obj/effect/turf_decal/tile/purple, /turf/open/floor/plasteel, /area/cargo/miningoffice) "boZ" = ( @@ -31198,12 +30852,10 @@ /turf/open/floor/plating, /area/engineering/atmos/aftair) "bpk" = ( -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/effect/landmark/start/shaft_miner, -/turf/open/floor/plasteel, -/area/cargo/miningoffice) +/obj/structure/lattice, +/obj/structure/lattice/catwalk, +/turf/open/space/basic, +/area/space/nearstation) "bpl" = ( /obj/machinery/firealarm{ dir = 1; @@ -31285,10 +30937,14 @@ }, /area/commons/lounge/jazz) "bpu" = ( -/obj/structure/chair{ +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/brown{ dir = 8 }, -/obj/effect/landmark/start/shaft_miner, +/obj/machinery/suit_storage_unit/open, /turf/open/floor/plasteel, /area/cargo/miningoffice) "bpv" = ( @@ -31574,7 +31230,7 @@ /area/maintenance/disposal) "bqh" = ( /obj/machinery/atmospherics/pipe/simple/cyan/hidden, -/turf/open/floor/carpet/green, +/turf/open/floor/plasteel/dark, /area/command/heads_quarters/hop) "bqi" = ( /obj/machinery/button/door{ @@ -31882,13 +31538,13 @@ /turf/open/floor/plating, /area/engineering/main) "bqQ" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 +/obj/machinery/atmospherics/pipe/simple/orange/hidden, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/public/glass{ + name = "Bar" }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 10 - }, -/turf/open/floor/plasteel/dark/corner, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, /area/hallway/secondary/entry) "bqR" = ( /obj/machinery/atmospherics/pipe/simple/cyan/hidden, @@ -31953,7 +31609,6 @@ /turf/open/floor/plasteel, /area/hallway/primary/central) "bqZ" = ( -/obj/machinery/mineral/equipment_vendor, /obj/effect/turf_decal/tile/brown{ dir = 8 }, @@ -31963,6 +31618,7 @@ /obj/effect/turf_decal/tile/purple{ dir = 1 }, +/obj/structure/rack/shelf, /turf/open/floor/plasteel, /area/cargo/miningoffice) "bra" = ( @@ -31995,11 +31651,13 @@ /turf/open/floor/catwalk_floor, /area/maintenance/department/eva) "brd" = ( -/obj/machinery/portable_atmospherics/canister/oxygen, /obj/effect/turf_decal/tile/brown{ dir = 4 }, /obj/effect/turf_decal/tile/purple, +/obj/structure/chair/sofa/old{ + dir = 8 + }, /turf/open/floor/plasteel, /area/cargo/miningoffice) "bre" = ( @@ -32396,25 +32054,27 @@ /turf/open/floor/plasteel, /area/cargo/sorting) "brS" = ( -/obj/machinery/suit_storage_unit/open, /obj/effect/turf_decal/tile/brown{ dir = 8 }, /obj/effect/turf_decal/tile/purple, +/obj/structure/chair/sofa/left/old{ + dir = 1 + }, +/obj/effect/landmark/start/shaft_miner, /turf/open/floor/plasteel, /area/cargo/miningoffice) "brT" = ( -/obj/machinery/suit_storage_unit/open, /obj/effect/turf_decal/tile/brown{ dir = 4 }, /obj/effect/turf_decal/tile/brown{ dir = 8 }, -/obj/machinery/light{ - dir = 4 - }, /obj/effect/turf_decal/tile/purple, +/obj/structure/chair/sofa/corner/old{ + dir = 8 + }, /turf/open/floor/plasteel, /area/cargo/miningoffice) "brU" = ( @@ -33573,7 +33233,7 @@ /obj/machinery/atmospherics/pipe/manifold/cyan/hidden{ dir = 8 }, -/turf/open/floor/carpet/green, +/turf/open/floor/carpet/blue, /area/command/heads_quarters/hop) "buH" = ( /obj/effect/decal/cleanable/dirt, @@ -33642,6 +33302,16 @@ /obj/item/lighter/greyscale, /obj/item/clothing/mask/cigarette/cigar/cohiba, /obj/structure/table/wood/fancy, +/obj/effect/turf_decal/loading_area{ + dir = 8; + icon_state = "drain"; + name = "drain" + }, +/obj/effect/turf_decal/loading_area{ + dir = 1; + icon_state = "drain"; + name = "drain" + }, /turf/open/floor/plasteel/dark, /area/service/bar) "buQ" = ( @@ -33815,11 +33485,6 @@ /turf/open/floor/plasteel, /area/service/bar) "bvi" = ( -/obj/machinery/vending/coffee, -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, /obj/structure/disposalpipe/segment, /obj/machinery/airalarm{ dir = 4; @@ -33844,6 +33509,11 @@ /obj/item/trash/plate, /obj/item/kitchen/fork, /obj/structure/table/wood/fancy, +/obj/effect/turf_decal/loading_area{ + dir = 8; + icon_state = "drain"; + name = "drain" + }, /turf/open/floor/plasteel/dark, /area/service/bar) "bvm" = ( @@ -33866,11 +33536,9 @@ /turf/open/floor/plasteel/cafeteria, /area/service/kitchen) "bvp" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel, -/area/security/checkpoint) +/mob/living/simple_animal/crab, +/turf/open/floor/plating/beach/sand, +/area/service/chapel/main) "bvq" = ( /obj/machinery/door/firedoor, /obj/machinery/atmospherics/pipe/simple/orange/hidden{ @@ -33989,12 +33657,7 @@ /turf/open/floor/carpet, /area/service/chapel/main) "bvF" = ( -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, /obj/structure/disposalpipe/segment, -/obj/machinery/vending/snack/random, /turf/open/floor/plasteel, /area/service/bar) "bvG" = ( @@ -34032,7 +33695,7 @@ /obj/machinery/atmospherics/pipe/simple/cyan/hidden{ dir = 4 }, -/turf/open/floor/carpet/green, +/turf/open/floor/carpet/blue, /area/command/heads_quarters/hop) "bvK" = ( /obj/structure/cable{ @@ -34041,10 +33704,6 @@ /turf/open/floor/plasteel/white, /area/medical/medbay/lobby) "bvL" = ( -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -34159,6 +33818,15 @@ "bvZ" = ( /obj/item/folder, /obj/structure/table/wood/fancy, +/obj/effect/turf_decal/loading_area{ + dir = 8; + icon_state = "drain"; + name = "drain" + }, +/obj/effect/turf_decal/loading_area{ + icon_state = "drain"; + name = "drain" + }, /turf/open/floor/plasteel/dark, /area/service/bar) "bwa" = ( @@ -34252,21 +33920,6 @@ icon_state = "platingdmg2" }, /area/maintenance/disposal) -"bwl" = ( -/obj/structure/closet/secure_closet/security, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/machinery/light{ - dir = 4; - light_color = "#e8eaff" - }, -/obj/structure/sign/poster/official/safety_report{ - pixel_x = 32 - }, -/turf/open/floor/plasteel, -/area/security/checkpoint) "bwm" = ( /obj/structure/sign/departments/science, /turf/closed/wall/r_wall, @@ -35206,7 +34859,7 @@ /obj/structure/cable{ icon_state = "1-8" }, -/turf/open/floor/carpet/green, +/turf/open/floor/carpet/blue, /area/command/heads_quarters/hop) "bye" = ( /obj/machinery/computer/rdservercontrol{ @@ -36009,6 +35662,7 @@ /obj/effect/turf_decal/stripes/line{ dir = 4 }, +/obj/structure/trash_pile, /turf/open/floor/plasteel, /area/cargo/warehouse) "bAb" = ( @@ -36083,6 +35737,10 @@ pixel_y = 3 }, /obj/structure/table/wood/fancy, +/obj/effect/turf_decal/loading_area{ + icon_state = "drain"; + name = "drain" + }, /turf/open/floor/plasteel/dark, /area/service/bar) "bAi" = ( @@ -36148,7 +35806,7 @@ /obj/structure/cable{ icon_state = "2-8" }, -/turf/open/floor/carpet/green, +/turf/open/floor/carpet/blue, /area/command/heads_quarters/hop) "bAo" = ( /obj/effect/turf_decal/tile/blue, @@ -37587,6 +37245,10 @@ /obj/item/book/manual/wiki/barman_recipes, /obj/item/reagent_containers/rag, /obj/structure/table/wood/fancy, +/obj/effect/turf_decal/loading_area{ + icon_state = "drain"; + name = "drain" + }, /turf/open/floor/plasteel/dark, /area/service/bar) "bDv" = ( @@ -37976,19 +37638,8 @@ /turf/open/floor/plasteel/dark, /area/command/heads_quarters/hop) "bEn" = ( -/obj/machinery/computer/card{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = 28 - }, /turf/open/floor/plasteel, -/area/security/checkpoint) +/area/service/bar) "bEo" = ( /obj/structure/cable{ icon_state = "1-2" @@ -38230,10 +37881,6 @@ /turf/open/floor/plating, /area/maintenance/disposal) "bEM" = ( -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, /obj/machinery/firealarm{ dir = 4; pixel_x = -28 @@ -38268,10 +37915,6 @@ }, /area/command/heads_quarters/captain) "bEO" = ( -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, /obj/machinery/light_switch{ pixel_x = -24 }, @@ -38281,10 +37924,6 @@ /turf/open/floor/plasteel, /area/service/bar) "bEP" = ( -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, /obj/machinery/light{ dir = 8; light_color = "#e8eaff" @@ -38362,16 +38001,11 @@ /turf/open/floor/plasteel, /area/engineering/break_room) "bEX" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, /obj/structure/cable{ icon_state = "1-2" }, -/turf/open/floor/plasteel/dark/corner{ - dir = 1 - }, -/area/hallway/secondary/entry) +/turf/open/floor/plasteel, +/area/service/bar) "bEY" = ( /obj/structure/disposalpipe/trunk{ dir = 4 @@ -38506,7 +38140,9 @@ /turf/open/floor/plasteel, /area/science/xenobiology) "bFn" = ( -/turf/open/floor/plating/asteroid, +/turf/open/floor/plating/beach/coastline_b{ + dir = 8 + }, /area/service/chapel/main) "bFo" = ( /obj/machinery/smartfridge/extract/preloaded, @@ -38942,8 +38578,8 @@ /turf/open/floor/plating, /area/maintenance/fore) "bGe" = ( -/mob/living/simple_animal/crab/Coffee, -/turf/open/floor/plating/asteroid, +/obj/effect/overlay/palmtree_l, +/turf/open/floor/plating/beach/sand, /area/service/chapel/main) "bGf" = ( /obj/effect/turf_decal/tile/bar, @@ -40236,7 +39872,7 @@ /obj/machinery/atmospherics/components/unary/vent_pump/on{ dir = 1 }, -/turf/open/floor/carpet/green, +/turf/open/floor/carpet/blue, /area/command/heads_quarters/hop) "bIX" = ( /obj/effect/decal/cleanable/dirt, @@ -41011,7 +40647,7 @@ /obj/structure/cable{ icon_state = "1-2" }, -/turf/open/floor/carpet/green, +/turf/open/floor/carpet/blue, /area/command/heads_quarters/hop) "bKH" = ( /obj/item/beacon, @@ -41266,7 +40902,7 @@ dir = 4 }, /obj/machinery/atmospherics/pipe/simple/cyan/hidden, -/turf/open/floor/plasteel/dark, +/turf/open/floor/plasteel, /area/science/xenobiology) "bLj" = ( /obj/machinery/door/window/westright{ @@ -41499,7 +41135,7 @@ light_color = "#e8eaff" }, /obj/machinery/atmospherics/pipe/simple/cyan/hidden, -/turf/open/floor/plasteel/dark, +/turf/open/floor/plasteel, /area/science/xenobiology) "bLG" = ( /obj/effect/turf_decal/stripes/corner{ @@ -41760,7 +41396,7 @@ /obj/machinery/atmospherics/pipe/manifold/cyan/hidden{ dir = 4 }, -/turf/open/floor/plasteel/dark, +/turf/open/floor/plasteel, /area/science/xenobiology) "bMj" = ( /turf/closed/wall, @@ -41954,6 +41590,7 @@ dir = 4; light_color = "#c1caff" }, +/obj/structure/flora/ausbushes/ywflowers, /turf/open/floor/grass, /area/medical/virology) "bMF" = ( @@ -42385,6 +42022,7 @@ /obj/machinery/light{ dir = 8 }, +/obj/structure/flora/ausbushes/ppflowers, /turf/open/floor/grass, /area/medical/virology) "bNv" = ( @@ -42830,7 +42468,7 @@ /obj/effect/turf_decal/tile/green{ dir = 8 }, -/turf/open/floor/plasteel/dark, +/turf/open/floor/plasteel, /area/science/xenobiology) "bOt" = ( /obj/structure/table, @@ -42919,7 +42557,7 @@ dir = 1; light_color = "#c1caff" }, -/turf/open/floor/plasteel/dark, +/turf/open/floor/plasteel, /area/science/xenobiology) "bOz" = ( /obj/structure/grille, @@ -42938,7 +42576,7 @@ /obj/effect/turf_decal/tile/green{ dir = 1 }, -/turf/open/floor/plasteel/dark, +/turf/open/floor/plasteel, /area/science/xenobiology) "bOB" = ( /obj/structure/grille, @@ -42990,7 +42628,7 @@ /obj/effect/turf_decal/stripes/line{ dir = 1 }, -/turf/open/floor/plasteel, +/turf/open/floor/plasteel/white, /area/science/xenobiology) "bOH" = ( /obj/machinery/atmospherics/components/unary/portables_connector/visible{ @@ -43000,7 +42638,7 @@ /obj/effect/turf_decal/stripes/line{ dir = 1 }, -/turf/open/floor/plasteel, +/turf/open/floor/plasteel/white, /area/science/xenobiology) "bOI" = ( /obj/structure/table/reinforced, @@ -43014,7 +42652,7 @@ network = list("xeno"); pixel_y = 2 }, -/turf/open/floor/plasteel, +/turf/open/floor/plasteel/white, /area/science/xenobiology) "bOJ" = ( /obj/machinery/atmospherics/pipe/simple/orange/hidden{ @@ -43057,7 +42695,7 @@ dir = 1 }, /obj/structure/disposalpipe/trunk, -/turf/open/floor/plasteel, +/turf/open/floor/plasteel/white, /area/science/xenobiology) "bON" = ( /obj/machinery/atmospherics/components/unary/portables_connector/visible{ @@ -43066,7 +42704,7 @@ /obj/effect/turf_decal/stripes/line{ dir = 1 }, -/turf/open/floor/plasteel, +/turf/open/floor/plasteel/white, /area/science/xenobiology) "bOO" = ( /obj/machinery/portable_atmospherics/scrubber, @@ -46209,15 +45847,14 @@ /turf/open/floor/plating, /area/cargo/warehouse) "bVn" = ( -/obj/structure/closet/crate, /obj/effect/turf_decal/tile/blue{ dir = 8 }, /obj/effect/turf_decal/tile/blue{ dir = 1 }, -/obj/effect/spawner/lootdrop/maintenance, /obj/effect/decal/cleanable/dirt, +/obj/structure/trash_pile, /turf/open/floor/plasteel, /area/cargo/warehouse) "bVo" = ( @@ -48459,7 +48096,8 @@ /obj/machinery/door/firedoor, /obj/machinery/door/airlock/research/glass{ name = "Xenobiology Kill Room"; - req_access_txt = "47" + req_access_txt = "47"; + dir = 4 }, /turf/open/floor/plasteel/white, /area/science/xenobiology) @@ -49326,7 +48964,7 @@ /obj/machinery/atmospherics/pipe/simple/cyan/hidden{ dir = 6 }, -/turf/open/floor/plasteel/dark, +/turf/open/floor/plasteel, /area/science/xenobiology) "cbG" = ( /obj/structure/lattice/catwalk, @@ -51559,10 +51197,8 @@ /obj/machinery/light/small{ dir = 4 }, -/obj/item/stack/sheet/metal, -/obj/item/stack/sheet/metal, -/obj/item/stack/sheet/metal, /obj/effect/decal/cleanable/dirt, +/obj/structure/trash_pile, /turf/open/floor/plating, /area/cargo/warehouse) "cfZ" = ( @@ -53336,7 +52972,7 @@ icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/orange/hidden, -/turf/open/floor/plasteel/dark, +/turf/open/floor/plasteel, /area/science/xenobiology) "cjQ" = ( /turf/open/floor/carpet{ @@ -53345,10 +52981,6 @@ /area/command/heads_quarters/captain) "cjR" = ( /obj/machinery/door/firedoor, -/obj/machinery/door/airlock/command{ - name = "Head of Security's Office"; - req_one_access_txt = "58" - }, /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -53362,6 +52994,11 @@ /obj/machinery/atmospherics/pipe/simple/orange/hidden{ dir = 8 }, +/obj/machinery/door/airlock/command{ + name = "Head of Security's Office"; + req_one_access_txt = "58"; + dir = 4 + }, /turf/open/floor/plasteel, /area/command/heads_quarters/hos) "cjS" = ( @@ -53830,41 +53467,35 @@ /turf/closed/wall/r_wall, /area/engineering/teg/hotloop) "ckK" = ( -/obj/structure/closet/secure_closet/miner, -/obj/effect/turf_decal/tile/brown{ - dir = 4 +/obj/structure/lattice/catwalk, +/obj/item/stack/marker_beacon{ + anchored = 1; + icon_state = "markerburgundy-on"; + light_color = "#FA644B"; + light_power = 3; + light_range = 3; + name = "Docking Beacon"; + picked_color = "Burgundy" }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 +/obj/structure/sign/warning{ + name = "\improper KEEP CLEAR: HIGH SPEED DELIVERIES"; + pixel_y = -32 }, -/obj/effect/turf_decal/tile/purple, -/obj/item/clothing/under/rank/cargo/miner, -/turf/open/floor/plasteel, -/area/cargo/miningoffice) +/turf/open/floor/plating/airless, +/area/space/nearstation) "ckL" = ( -/obj/structure/closet/secure_closet/miner, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/machinery/light{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple, -/obj/item/clothing/under/rank/cargo/miner, -/turf/open/floor/plasteel, -/area/cargo/miningoffice) -"ckM" = ( -/obj/structure/closet/secure_closet/miner, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, /obj/effect/turf_decal/tile/brown{ dir = 8 }, /obj/effect/turf_decal/tile/purple, -/obj/item/clothing/under/rank/cargo/miner, +/obj/machinery/mineral/equipment_vendor, /turf/open/floor/plasteel, /area/cargo/miningoffice) +"ckM" = ( +/obj/structure/grille, +/obj/structure/lattice, +/turf/open/space/basic, +/area/space/nearstation) "ckN" = ( /obj/machinery/disposal/bin, /obj/effect/turf_decal/stripes/line{ @@ -53930,7 +53561,7 @@ /obj/effect/turf_decal/tile/green{ dir = 4 }, -/turf/open/floor/plasteel/dark, +/turf/open/floor/plasteel, /area/science/xenobiology) "ckT" = ( /obj/effect/turf_decal/tile/purple{ @@ -54014,7 +53645,7 @@ /obj/structure/cable{ icon_state = "4-8" }, -/turf/open/floor/plasteel/dark, +/turf/open/floor/plasteel, /area/science/xenobiology) "ckY" = ( /obj/effect/turf_decal/tile/yellow{ @@ -54040,7 +53671,7 @@ /obj/structure/cable{ icon_state = "4-8" }, -/turf/open/floor/plasteel/dark, +/turf/open/floor/plasteel, /area/science/xenobiology) "clb" = ( /obj/effect/turf_decal/tile/green{ @@ -54050,7 +53681,7 @@ /obj/structure/cable{ icon_state = "4-8" }, -/turf/open/floor/plasteel/dark, +/turf/open/floor/plasteel, /area/science/xenobiology) "clc" = ( /obj/machinery/vending/wardrobe/chem_wardrobe, @@ -55093,7 +54724,7 @@ dir = 1; pixel_x = 5 }, -/turf/open/floor/plasteel/dark, +/turf/open/floor/plasteel, /area/science/xenobiology) "cnm" = ( /obj/effect/spawner/structure/window/reinforced, @@ -57970,10 +57601,7 @@ dir = 4 }, /obj/effect/landmark/xmastree, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "chapel" - }, +/turf/open/floor/plasteel/dark, /area/service/chapel/main) "csz" = ( /obj/effect/turf_decal/tile/yellow, @@ -58443,7 +58071,7 @@ /turf/open/floor/plasteel, /area/cargo/sorting) "cty" = ( -/obj/effect/landmark/start/shaft_miner, +/obj/structure/table/wood, /turf/open/floor/plasteel, /area/cargo/miningoffice) "ctz" = ( @@ -58645,7 +58273,7 @@ icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/orange/hidden, -/turf/open/floor/plasteel/dark, +/turf/open/floor/plasteel, /area/science/xenobiology) "ctS" = ( /obj/effect/turf_decal/stripes/line{ @@ -58681,7 +58309,7 @@ c_tag = "Xenobiology - Aft"; network = list("ss13","rd") }, -/turf/open/floor/plasteel/dark, +/turf/open/floor/plasteel, /area/science/xenobiology) "ctU" = ( /obj/machinery/atmospherics/pipe/simple/general/visible{ @@ -58696,7 +58324,7 @@ /obj/machinery/firealarm{ pixel_y = 26 }, -/turf/open/floor/plasteel/dark, +/turf/open/floor/plasteel, /area/science/xenobiology) "ctV" = ( /obj/effect/turf_decal/tile/red{ @@ -59553,7 +59181,7 @@ /obj/machinery/airalarm{ pixel_y = 24 }, -/turf/open/floor/plasteel/dark, +/turf/open/floor/plasteel, /area/science/xenobiology) "cvA" = ( /obj/effect/turf_decal/tile/red{ @@ -59819,7 +59447,7 @@ /obj/structure/extinguisher_cabinet{ pixel_x = 26 }, -/turf/open/floor/plasteel/dark, +/turf/open/floor/plasteel, /area/science/xenobiology) "cvW" = ( /obj/structure/table, @@ -60733,8 +60361,6 @@ /turf/open/floor/plasteel, /area/cargo/office) "cxO" = ( -/obj/structure/table, -/obj/item/storage/firstaid/regular, /obj/machinery/atmospherics/components/unary/vent_scrubber/on{ dir = 1 }, @@ -60779,14 +60405,13 @@ /turf/open/floor/plasteel, /area/cargo/miningoffice) "cxT" = ( -/obj/structure/table, /obj/effect/turf_decal/tile/brown{ dir = 8 }, /obj/effect/turf_decal/tile/purple{ dir = 1 }, -/obj/item/paper/guides/cogstation/letter_supp, +/obj/structure/rack/shelf, /turf/open/floor/plasteel, /area/cargo/miningoffice) "cxU" = ( @@ -62582,10 +62207,6 @@ /turf/open/floor/plasteel, /area/hallway/primary/aft) "cBq" = ( -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -62837,10 +62458,6 @@ /turf/open/floor/plasteel, /area/hallway/primary/port/fore) "cBM" = ( -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, /obj/structure/disposalpipe/junction/flip{ dir = 4 }, @@ -62854,10 +62471,6 @@ /area/service/bar) "cBN" = ( /obj/structure/window/reinforced, -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -62871,10 +62484,6 @@ /area/service/bar) "cBO" = ( /obj/structure/window/reinforced, -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, /obj/machinery/light, /obj/structure/disposalpipe/segment{ dir = 4 @@ -62886,10 +62495,6 @@ /turf/open/floor/plasteel, /area/service/bar) "cBP" = ( -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -62902,10 +62507,6 @@ /turf/open/floor/plasteel, /area/service/bar) "cBQ" = ( -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -62922,10 +62523,6 @@ /area/service/bar) "cBR" = ( /obj/structure/window/reinforced, -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, /obj/machinery/light, /obj/structure/disposalpipe/segment{ dir = 4 @@ -62939,10 +62536,6 @@ /turf/open/floor/plasteel, /area/service/bar) "cBS" = ( -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -67207,16 +66800,16 @@ /turf/open/floor/plasteel, /area/engineering/workshop) "cJl" = ( -/obj/structure/chair/comfy/black{ - dir = 8 - }, /obj/structure/cable{ icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/manifold/orange/hidden{ dir = 4 }, -/turf/open/floor/plasteel/dark, +/obj/structure/chair/sofa/corp/corner{ + dir = 4 + }, +/turf/open/floor/plasteel, /area/science/observatory) "cJm" = ( /obj/effect/turf_decal/delivery, @@ -67235,13 +66828,11 @@ /turf/open/floor/plasteel, /area/engineering/atmos) "cJo" = ( -/obj/structure/chair/comfy/black{ - dir = 4 - }, /obj/machinery/atmospherics/components/unary/vent_pump/on{ dir = 1 }, -/turf/open/floor/plasteel/dark, +/obj/structure/chair/sofa/corp/corner, +/turf/open/floor/plasteel, /area/science/observatory) "cJp" = ( /obj/effect/turf_decal/tile/neutral{ @@ -67495,19 +67086,22 @@ /turf/open/floor/plasteel/dark, /area/science/observatory) "cJP" = ( -/obj/structure/chair/comfy/black, /obj/structure/cable{ icon_state = "1-8" }, /obj/machinery/atmospherics/components/unary/vent_scrubber/on{ dir = 1 }, -/turf/open/floor/plasteel/dark, +/obj/structure/chair/sofa/corp/corner{ + dir = 1 + }, +/turf/open/floor/plasteel, /area/science/observatory) "cJQ" = ( -/obj/structure/chair/comfy/black, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel/dark, +/obj/structure/chair/sofa/corp/corner{ + dir = 8 + }, +/turf/open/floor/plasteel, /area/science/observatory) "cJR" = ( /obj/effect/turf_decal/bot, @@ -67836,7 +67430,7 @@ /obj/machinery/atmospherics/pipe/simple/orange/hidden{ dir = 8 }, -/turf/open/floor/plasteel/dark, +/turf/open/floor/plasteel, /area/science/xenobiology) "cKA" = ( /obj/machinery/atmospherics/components/binary/valve, @@ -67846,7 +67440,7 @@ /obj/machinery/atmospherics/pipe/simple/orange/hidden{ dir = 8 }, -/turf/open/floor/plasteel/dark, +/turf/open/floor/plasteel, /area/science/xenobiology) "cKB" = ( /obj/machinery/atmospherics/pipe/simple/general/visible, @@ -67856,7 +67450,7 @@ /obj/machinery/atmospherics/pipe/simple/orange/hidden{ dir = 8 }, -/turf/open/floor/plasteel/dark, +/turf/open/floor/plasteel, /area/science/xenobiology) "cKC" = ( /obj/structure/chair/office/light{ @@ -69163,6 +68757,7 @@ /area/ai_monitored/turret_protected/ai_upload_foyer) "cND" = ( /obj/effect/landmark/event_spawn, +/obj/structure/table/wood, /turf/open/floor/plasteel, /area/cargo/miningoffice) "cNE" = ( @@ -70328,7 +69923,7 @@ dir = 4 }, /obj/machinery/atmospherics/pipe/simple/orange/hidden, -/turf/open/floor/plasteel/dark, +/turf/open/floor/plasteel, /area/science/xenobiology) "cQc" = ( /obj/effect/turf_decal/tile/purple{ @@ -70343,7 +69938,7 @@ /obj/structure/cable{ icon_state = "1-4" }, -/turf/open/floor/plasteel/dark, +/turf/open/floor/plasteel, /area/science/xenobiology) "cQd" = ( /obj/effect/turf_decal/tile/purple, @@ -70357,7 +69952,7 @@ /obj/structure/cable{ icon_state = "4-8" }, -/turf/open/floor/plasteel/dark, +/turf/open/floor/plasteel, /area/science/xenobiology) "cQe" = ( /obj/structure/table/reinforced, @@ -70408,13 +70003,13 @@ dir = 8 }, /obj/machinery/atmospherics/pipe/simple/orange/hidden, -/turf/open/floor/plasteel/dark, +/turf/open/floor/plasteel, /area/science/xenobiology) "cQi" = ( /obj/structure/cable{ icon_state = "1-2" }, -/turf/open/floor/plasteel/dark, +/turf/open/floor/plasteel, /area/science/xenobiology) "cQj" = ( /obj/machinery/door/window/eastleft{ @@ -70466,7 +70061,7 @@ /obj/structure/cable{ icon_state = "4-8" }, -/turf/open/floor/plasteel/dark, +/turf/open/floor/plasteel, /area/science/xenobiology) "cQn" = ( /obj/structure/cable{ @@ -70475,7 +70070,7 @@ /obj/structure/cable{ icon_state = "1-8" }, -/turf/open/floor/plasteel/dark, +/turf/open/floor/plasteel, /area/science/xenobiology) "cQo" = ( /obj/effect/spawner/structure/window/reinforced, @@ -70492,7 +70087,7 @@ /obj/structure/cable{ icon_state = "1-4" }, -/turf/open/floor/plasteel/dark, +/turf/open/floor/plasteel, /area/science/xenobiology) "cQq" = ( /obj/effect/turf_decal/tile/purple, @@ -70503,7 +70098,7 @@ /obj/structure/cable{ icon_state = "4-8" }, -/turf/open/floor/plasteel/dark, +/turf/open/floor/plasteel, /area/science/xenobiology) "cQr" = ( /obj/structure/table/reinforced, @@ -70543,7 +70138,7 @@ /obj/structure/cable{ icon_state = "1-2" }, -/turf/open/floor/plasteel/dark, +/turf/open/floor/plasteel, /area/science/xenobiology) "cQu" = ( /obj/machinery/door/window/eastleft{ @@ -70585,7 +70180,7 @@ light_color = "#e8eaff" }, /obj/machinery/atmospherics/pipe/simple/orange/hidden, -/turf/open/floor/plasteel/dark, +/turf/open/floor/plasteel, /area/science/xenobiology) "cQx" = ( /obj/structure/table/reinforced, @@ -70628,7 +70223,7 @@ /obj/machinery/atmospherics/pipe/manifold/orange/hidden{ dir = 8 }, -/turf/open/floor/plasteel/dark, +/turf/open/floor/plasteel, /area/science/xenobiology) "cQA" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on{ @@ -70637,7 +70232,7 @@ /obj/structure/cable{ icon_state = "1-2" }, -/turf/open/floor/plasteel/dark, +/turf/open/floor/plasteel, /area/science/xenobiology) "cQB" = ( /obj/machinery/door/window/eastleft{ @@ -70678,13 +70273,13 @@ /obj/structure/cable{ icon_state = "2-4" }, -/turf/open/floor/plasteel/dark, +/turf/open/floor/plasteel, /area/science/xenobiology) "cQE" = ( /obj/structure/cable{ icon_state = "1-8" }, -/turf/open/floor/plasteel/dark, +/turf/open/floor/plasteel, /area/science/xenobiology) "cQF" = ( /obj/structure/cable{ @@ -70702,7 +70297,7 @@ /obj/structure/cable{ icon_state = "2-4" }, -/turf/open/floor/plasteel/dark, +/turf/open/floor/plasteel, /area/science/xenobiology) "cQG" = ( /obj/structure/cable{ @@ -70711,7 +70306,7 @@ /obj/structure/cable{ icon_state = "2-8" }, -/turf/open/floor/plasteel/dark, +/turf/open/floor/plasteel, /area/science/xenobiology) "cQH" = ( /obj/structure/table/reinforced, @@ -70730,7 +70325,7 @@ /obj/structure/cable{ icon_state = "1-2" }, -/turf/open/floor/plasteel, +/turf/open/floor/plasteel/white, /area/science/xenobiology) "cQI" = ( /obj/structure/table/reinforced, @@ -70746,7 +70341,7 @@ /obj/structure/cable{ icon_state = "1-2" }, -/turf/open/floor/plasteel, +/turf/open/floor/plasteel/white, /area/science/xenobiology) "cQJ" = ( /obj/effect/spawner/structure/window/reinforced, @@ -71146,6 +70741,16 @@ /obj/effect/landmark/start/atmospheric_technician, /turf/open/floor/plasteel, /area/engineering/atmos) +"dfx" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/structure/chair/bench/left, +/turf/open/floor/plasteel, +/area/cargo/miningoffice) "dnN" = ( /obj/structure/lattice, /obj/machinery/atmospherics/pipe/simple/cyan/visible{ @@ -71325,6 +70930,10 @@ /obj/machinery/atmospherics/pipe/simple/cyan/hidden, /turf/open/floor/carpet, /area/space/nearstation) +"eQp" = ( +/obj/structure/flora/ausbushes/brflowers, +/turf/open/floor/grass, +/area/medical/virology) "eRg" = ( /obj/effect/turf_decal/tile/yellow{ dir = 4 @@ -71437,6 +71046,16 @@ }, /turf/open/floor/wood, /area/space/nearstation) +"fYi" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel/dark, +/area/science/observatory) "gln" = ( /obj/effect/turf_decal/tile/neutral, /obj/effect/turf_decal/tile/neutral{ @@ -71462,6 +71081,10 @@ /obj/structure/lattice, /turf/open/space/basic, /area/space/nearstation) +"gCQ" = ( +/obj/structure/flora/ausbushes/grassybush, +/turf/open/floor/grass, +/area/medical/virology) "gDY" = ( /obj/machinery/light, /obj/machinery/atmospherics/pipe/simple/cyan/visible, @@ -71477,6 +71100,27 @@ }, /turf/open/space/basic, /area/space/nearstation) +"gLq" = ( +/obj/structure/lattice/catwalk, +/obj/item/stack/marker_beacon{ + anchored = 1; + icon_state = "markerburgundy-on"; + light_color = "#FA644B"; + light_power = 3; + light_range = 3; + name = "Docking Beacon"; + picked_color = "Burgundy" + }, +/obj/structure/sign/warning{ + name = "\improper KEEP CLEAR: HIGH SPEED DELIVERIES"; + pixel_x = 32 + }, +/turf/open/floor/plating/airless, +/area/space/nearstation) +"gMi" = ( +/obj/structure/trash_pile, +/turf/open/floor/plating, +/area/maintenance/starboard/central) "gSW" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -71562,6 +71206,10 @@ }, /turf/open/floor/engine, /area/science/storage) +"hFM" = ( +/obj/structure/flora/ausbushes/ppflowers, +/turf/open/floor/grass, +/area/medical/virology) "hKC" = ( /obj/machinery/atmospherics/pipe/simple/green/visible{ dir = 4 @@ -71637,6 +71285,20 @@ }, /turf/open/floor/plasteel, /area/engineering/atmos) +"jdU" = ( +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/structure/chair/sofa/right/old{ + dir = 8 + }, +/obj/effect/landmark/start/shaft_miner, +/obj/machinery/light{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/cargo/miningoffice) "jhc" = ( /obj/effect/turf_decal/tile/yellow{ dir = 4 @@ -71701,6 +71363,15 @@ }, /turf/open/space/basic, /area/space/nearstation) +"jAG" = ( +/obj/machinery/portable_atmospherics/canister/oxygen, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/cargo/miningoffice) +"jIe" = ( +/mob/living/simple_animal/pet/fox/fennec, +/turf/open/floor/plating/asteroid, +/area/service/hydroponics/garden) "jIR" = ( /obj/structure/cable{ icon_state = "4-8" @@ -71762,6 +71433,12 @@ }, /turf/open/floor/plasteel/dark, /area/science/observatory) +"kcS" = ( +/obj/structure/closet/secure_closet/miner, +/obj/item/clothing/under/rank/cargo/miner, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/cargo/miningoffice) "kks" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -71843,6 +71520,14 @@ /obj/machinery/atmospherics/pipe/simple/violet/visible, /turf/open/floor/plasteel, /area/engineering/atmos) +"kQy" = ( +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/machinery/suit_storage_unit/open, +/turf/open/floor/plasteel, +/area/cargo/miningoffice) "kTm" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/landmark/start/prisoner, @@ -71864,6 +71549,11 @@ }, /turf/open/floor/plasteel, /area/engineering/atmos) +"lhQ" = ( +/mob/living/carbon/monkey, +/obj/structure/flora/ausbushes/ywflowers, +/turf/open/floor/grass, +/area/medical/virology) "lhY" = ( /obj/effect/turf_decal/tile/yellow{ dir = 4 @@ -71877,6 +71567,10 @@ /obj/structure/table, /turf/open/floor/plasteel, /area/hallway/primary/aft) +"lnI" = ( +/obj/structure/flora/ausbushes/ywflowers, +/turf/open/floor/grass, +/area/medical/virology) "lGB" = ( /obj/machinery/atmospherics/pipe/simple/cyan/hidden, /obj/effect/turf_decal/stripes/line{ @@ -71884,6 +71578,16 @@ }, /turf/open/floor/plasteel, /area/hallway/primary/central) +"lIX" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/structure/chair/bench, +/turf/open/floor/plasteel, +/area/cargo/miningoffice) "lRy" = ( /obj/machinery/light{ dir = 1 @@ -72048,6 +71752,16 @@ }, /turf/open/floor/carpet/green, /area/space/nearstation) +"nnP" = ( +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/effect/turf_decal/tile/purple, +/obj/structure/chair/sofa/old{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/cargo/miningoffice) "nvn" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on{ dir = 1 @@ -72081,6 +71795,16 @@ /obj/structure/table/wood/poker, /turf/open/floor/carpet, /area/space) +"ocA" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple, +/turf/open/floor/plasteel, +/area/cargo/miningoffice) "ofE" = ( /obj/machinery/atmospherics/pipe/simple/orange/hidden, /obj/effect/decal/big_gato, @@ -72114,6 +71838,13 @@ /obj/structure/table/glass, /turf/open/floor/plasteel, /area/hallway/primary/aft) +"owh" = ( +/obj/structure/sign/warning{ + name = "\improper KEEP CLEAR: HIGH SPEED DELIVERIES" + }, +/obj/structure/lattice/catwalk, +/turf/closed/wall/r_wall, +/area/space/nearstation) "oCf" = ( /obj/effect/decal/medium_gato, /turf/open/floor/plasteel, @@ -72210,6 +71941,11 @@ }, /turf/open/floor/plasteel/white/corner, /area/hallway/primary/central) +"pLp" = ( +/obj/structure/table/wood, +/obj/item/paper/guides/cogstation/letter_supp, +/turf/open/floor/plasteel, +/area/cargo/miningoffice) "pLV" = ( /obj/machinery/airalarm{ dir = 4; @@ -72333,6 +72069,10 @@ /obj/machinery/atmospherics/pipe/simple/orange/visible, /turf/open/floor/plasteel, /area/engineering/atmos) +"rcX" = ( +/obj/structure/trash_pile, +/turf/open/floor/plating, +/area/maintenance/central) "rdF" = ( /obj/machinery/atmospherics/pipe/simple/dark/visible, /turf/open/floor/plasteel, @@ -72367,6 +72107,23 @@ /obj/item/pen, /turf/open/floor/plasteel/dark, /area/service/library) +"ryB" = ( +/obj/structure/lattice/catwalk, +/obj/item/stack/marker_beacon{ + anchored = 1; + icon_state = "markerburgundy-on"; + light_color = "#FA644B"; + light_power = 3; + light_range = 3; + name = "Docking Beacon"; + picked_color = "Burgundy" + }, +/obj/structure/sign/warning{ + name = "\improper KEEP CLEAR: HIGH SPEED DELIVERIES"; + pixel_y = 32 + }, +/turf/open/floor/plating/airless, +/area/space/nearstation) "rBE" = ( /obj/effect/turf_decal/tile/neutral{ dir = 1 @@ -72470,6 +72227,16 @@ /obj/structure/trash_pile, /turf/open/floor/plating, /area/maintenance/starboard/aft) +"sGA" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple, +/turf/open/floor/plasteel, +/area/cargo/miningoffice) "sHB" = ( /obj/effect/landmark/start/atmospheric_technician, /turf/open/floor/plasteel, @@ -72516,6 +72283,11 @@ }, /turf/open/floor/plasteel/dark, /area/science/observatory) +"sOk" = ( +/obj/effect/turf_decal/tile/purple, +/obj/item/kirbyplants/photosynthetic, +/turf/open/floor/plasteel, +/area/cargo/miningoffice) "sRD" = ( /obj/machinery/atmospherics/components/unary/portables_connector/visible, /obj/machinery/portable_atmospherics/canister, @@ -72651,6 +72423,16 @@ }, /turf/open/floor/plasteel, /area/commons/cryopod) +"tNR" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/structure/chair/bench/right, +/turf/open/floor/plasteel, +/area/cargo/miningoffice) "tXV" = ( /obj/machinery/atmospherics/components/binary/pump{ name = "Pure to Ports" @@ -72955,6 +72737,11 @@ /obj/effect/turf_decal/stripes/line, /turf/open/floor/plasteel, /area/hallway/primary/central) +"xZk" = ( +/obj/structure/table/wood, +/obj/item/storage/firstaid/regular, +/turf/open/floor/plasteel, +/area/cargo/miningoffice) "yeL" = ( /obj/structure/sign/warning{ name = "QUANTUM PADS HAVE NAMES THAT MENTION THEIR DESTINATION" @@ -81088,9 +80875,9 @@ aaa aaa aaa aaa -aaU +ahv aaa -aaU +ahv aaa aaa aaa @@ -83341,7 +83128,7 @@ aaa aaa aaa aaa -aaU +ahv aaa aaa aaa @@ -83361,7 +83148,7 @@ aaU aaa aaa aaa -aaU +ahv aaa aaa aaa @@ -84365,7 +84152,7 @@ aaa aaa aaa aaa -aaU +ahv aye aaU akI @@ -84651,7 +84438,7 @@ clQ byi aaU aye -aaU +ahv aaa aaa aaa @@ -85393,7 +85180,7 @@ aaa aaa aaa aaa -aaU +ahv aye aaU akI @@ -85679,7 +85466,7 @@ clT byi aaU aye -aaU +ahv aaa aaa aaa @@ -86932,7 +86719,7 @@ aaa aaa aaa aaU -aaU +ahv aaU aaa aaa @@ -86959,7 +86746,7 @@ aaU aaa aaa aaa -aaU +ahv aaa aaa aaa @@ -90136,7 +89923,7 @@ bPe bxT cls aaU -aaU +ahv aaa aaa aaa @@ -90286,7 +90073,7 @@ aaU aEa aPT aaU -aaU +ahv aaa aaU aPV @@ -90299,7 +90086,7 @@ bik cQT aaU aaa -aaU +ahv aaa aaa aaa @@ -90873,7 +90660,7 @@ aaU aaa aaa aaa -aaU +ahv aaa aaa bxT @@ -91033,7 +90820,7 @@ aaa aaa aaa aaa -aaU +ahv aaU aaU aaU @@ -91118,9 +90905,9 @@ cnU cnU cnU bZW -aaa -aaU -aaU +ckM +aye +aye cbb cbb cbb @@ -91165,7 +90952,7 @@ bxT cls aaU aaU -aaU +ahv aaa aaa aaa @@ -92192,7 +91979,7 @@ bPk bxT cls aaU -aaU +ahv aaa aaa aaa @@ -93149,6 +92936,7 @@ aaa aaa aaa aaa +ahv aaU aaU aaU @@ -93156,15 +92944,14 @@ aaU aaU aaU aaU +ahv aaU aaU aaU aaU aaU aaU -aaU -aaU -aaU +ahv bcy bcy bcy @@ -93391,7 +93178,7 @@ aaa aaU aaa aaa -aaU +ahv aaa aaa aaa @@ -93401,7 +93188,7 @@ aaa aaa aaa aaa -aaU +ahv aaa aaa aaa @@ -94917,7 +94704,7 @@ cjR aFj aFj aFj -aGn +aDb bfA aTu aGn @@ -95190,7 +94977,7 @@ bdg aNB edZ bdg -aaU +ahv aaa aaa aaa @@ -95200,7 +94987,7 @@ aaa aaa aaa aaa -aaU +ahv bdg hll bHJ @@ -95780,7 +95567,7 @@ cFz cGm cJo cJQ -cKs +fYi cJv cyX aaU @@ -95899,7 +95686,7 @@ ckl aaa aaa aaa -aaU +ahv aaU aas aaA @@ -96732,7 +96519,7 @@ cei beT edZ bdg -aaU +ahv aaa aaU aaU @@ -96742,7 +96529,7 @@ aaU aaU aaU aaa -aaU +ahv bdg hll eNs @@ -96927,7 +96714,7 @@ aaa aaa aaa aaa -aaU +ahv aaU aas aaA @@ -97525,7 +97312,7 @@ bjg bdg aaU aaU -aaU +ahv bdg xjf bHJ @@ -97573,9 +97360,9 @@ aaa aaa aaa aaa +ahv aaU -aaU -aaU +ahv aaa aaa aaa @@ -97761,7 +97548,7 @@ bfd beJ bdg bdg -aaU +ahv aWZ aXE aYk @@ -97769,7 +97556,7 @@ aYA aYk beg aWZ -aaU +ahv bdg bdg beJ @@ -98465,20 +98252,20 @@ abM abR abR abM +ahv aZG aaU aaU aaU -aaU -aaU +ahv aTd +ahv aaU aaU aaU aaU aaU -aaU -aTx +ckK akE akE anC @@ -98598,19 +98385,19 @@ cOF cOK cOI cOI -aZG -aaU +ahv aaU aaU +ahv aTd +ahv aaU aaU aaU aaU aaU aaU -aaU -aTx +ahv abM abR abM @@ -99642,7 +99429,7 @@ aaa aaa aaa aaa -aRv +ahv aaa aaU aaa @@ -101184,7 +100971,7 @@ aaU aaU aaU aaU -aaU +ahv aaU aaU aaa @@ -101698,7 +101485,7 @@ aaU aaU aaU aaU -aaU +ahv aaU aaU aaa @@ -102573,7 +102360,7 @@ aaa aaa aaU aaU -aaU +ahv aaU aaU aaU @@ -103087,7 +102874,7 @@ aaa aaa aaU aaU -aaU +ahv aaU aaU aaU @@ -103225,10 +103012,10 @@ cAU cEf cEx bMk -bMw +lhQ bMD -bMv -bMv +eQp +gCQ cvs cCj cCu @@ -103482,10 +103269,10 @@ cug cEg cEA bMl -bMv -bMv +gCQ +lnI bMw -bMv +eQp cpz cuc cpz @@ -103596,7 +103383,7 @@ ckl ckl aaa aaa -aaU +ahv aaa aaa aaU @@ -103910,7 +103697,7 @@ aGe aDM aUK aVC -axQ +rcX axQ axQ axQ @@ -103919,7 +103706,7 @@ aMm axQ axQ axQ -aSt +ves aSt aSt bjA @@ -104000,7 +103787,7 @@ bMv bMv bML bMv -bMv +gCQ bMv bML bMl @@ -104254,8 +104041,8 @@ bLM bKz bKz bMw -bMv -bMv +gCQ +eQp bMv bMl bMl @@ -104510,7 +104297,7 @@ bKT bLN bMb bKz -bMv +hFM bMw bMv bMV @@ -104769,8 +104556,8 @@ bMc bKz bMv bME -bMv -bMv +gCQ +hFM bMl aaU aaa @@ -105199,7 +104986,7 @@ aof ayK aFU aJV -aFU +jIe aFU aFU aFU @@ -105652,7 +105439,7 @@ ckl ckl aaa aaa -aaU +ahv aaa aaa aaU @@ -107451,7 +107238,7 @@ ckl ckl aaa aaa -aaU +ahv aaa aaa aaU @@ -108227,7 +108014,7 @@ aaa aaa aaa aaa -aaU +bpk aaa aaa aaa @@ -108741,7 +108528,7 @@ aaa aaa aaa aaa -aaU +bpk aaa aaa aaa @@ -109004,7 +108791,7 @@ aaa aaa aaa aaa -aaU +ahv aaU aax aba @@ -109268,7 +109055,7 @@ aaa aaa aaa aaa -aaU +ahv aax aax aea @@ -109536,20 +109323,20 @@ aeK afU ahe aiJ -ahz -ahz +aff +aNU arI -ahz -ahz +aNU +aNU +aJS aff aff aff aff -aff -ahz -ahz -ahz -aff +aNU +aNU +aNU +aJS aff aka aka @@ -109793,19 +109580,19 @@ ayk aGZ aKn bEG -bEX +aqZ bEX asg bEX bEX -aXv +bEX bEM bEO bEP amE -asp -auh -ayG +bEn +bEn +bEn aNX aEA bvi @@ -110055,18 +109842,18 @@ akM anz akM akM -apq -aqZ -avT -avT +akM +akM +akM +akM aCN -avT -avT +akM +akM aAb -avT +akM aCN -avT -avT +akM +akM aHl aNY cBN @@ -110304,24 +110091,24 @@ amP aea adQ ayk -aGZ -aKn +amx +apq alR bqQ -aox -anD -aox -aox -aFp aHh -aJS +anD +aHh +aHh +aHh +aHh +aHh aMy axG -aJS aHh aHh aHh -aCz +aHh +axG aHh aHh cBq @@ -110414,10 +110201,10 @@ cfy coy bui buo +ahv aaU aaU -aaU -aaU +ahv buo buo buo @@ -110564,22 +110351,22 @@ aFr aKg ahO aml -abX +aka akd -aoA -awt -aDb -aqL -anB -alS +bEn +bEn +bEn +bEn +bEn +bEn aMC apR -atP +bEn aji -azm -azm +aRM +aRM aCB -azm +aRM aRM bar aSD @@ -110810,7 +110597,7 @@ aaa aaa aaa aaa -aaU +ahv aax aax aea @@ -110821,24 +110608,24 @@ aFt apv aiF amr -aqL +aka aoy aoD -aoj -aDm -aqL -aji +bEn +bEn +bEn +bEn aKs aNl -apU -atP +bEn +bEn aji aBT buP aCD bvl bvZ -bas +awt aSD cBQ ccb @@ -111060,7 +110847,7 @@ aaa aaa aaa aaa -aaU +ahv aaU aax aba @@ -111081,14 +110868,14 @@ amt anH aAQ aoG -bvp -aDF -aFk +bEn +aKs aHh -aKB -aNu -aou -aou +aHh +aHh +aNl +bEn +bEn aji aBW aBX @@ -111311,7 +111098,7 @@ aaa aaa aaa aaa -aaU +ahv aaa aaa aaa @@ -111335,24 +111122,24 @@ adS adV ajd ajj -aqL +aka azr -bwl bEn -anJ -aqL +bEn +bEn +aou awh -amx -aNU +bEn +aMC aqj -aji +bEn aji aFV aiv aMj amA bDu -bat +aKB aSD cBR cbZ @@ -111442,10 +111229,10 @@ cfy cql bui buo +ahv aaU aaU -aaU -aaU +ahv buo buo buo @@ -111592,12 +111379,12 @@ adS afd ajI afK +aka +aka aqL aqL aqL -aqL -aqL -aqL +aka afK amy aOD @@ -111610,7 +111397,7 @@ amA bvD amy bas -aSD +anJ cBN cca cBX @@ -111825,7 +111612,7 @@ aaa aaa aaa aaa -aaU +ahv aaa aaa aaa @@ -111851,9 +111638,9 @@ agZ aeZ agm aqW -ahX -aiU -afZ +ahx +ahx +ahx agl apW amz @@ -112365,7 +112152,7 @@ aif afa aha ahx -ahx +aoA asT ahx ahs @@ -112879,7 +112666,7 @@ aif afK ahc ahx -ahx +aia ajs atO ayl @@ -113110,7 +112897,7 @@ aaa aaa aaU aaU -aaU +ahv aaU aaU aaU @@ -113136,7 +112923,7 @@ aif afK ahd ahx -ahx +ajD ajD atC ahx @@ -113174,7 +112961,7 @@ atf aKT arE arE -att +gMi cqr arE byv @@ -113396,7 +113183,7 @@ ahT ahx ahx ahx -ahx +aFk bvo amM apW @@ -113624,7 +113411,7 @@ aaa aaa aaU aaU -aaU +ahv aaU aaU aaa @@ -114959,7 +114746,7 @@ aBq aCQ aFe aCJ -bFn +alS bFn aJd aJi @@ -115212,12 +114999,12 @@ aLr aRK amY amY -aBs -ane anp +aiU +aAD aCJ -bFn -bFn +atP +atP aJd bfH bdq @@ -115469,12 +115256,12 @@ aLr aRN aSe aAC -aAD -anp ane +aiU +aBs aCJ bGe -bFn +aFp aJd aJl aKV @@ -115725,13 +115512,13 @@ aNt aLr aRN amG -aAD -aBs -awP +ane anp +awP +aAD aCJ -bFn -bFn +abX +bvp aJd bDe aKX @@ -115982,8 +115769,8 @@ aNE aPJ aRN amG -ane anp +ane csy aBs aCJ @@ -116451,7 +116238,7 @@ aaa aaa aaU aaa -aaU +aWR aaa aaU aaa @@ -116498,7 +116285,7 @@ aRS amY aAF aMv -aDI +aEi aBs aAD aBs @@ -116753,8 +116540,8 @@ aOg and aoE amY -aAG -ane +anY +anp aEi aAD aBs @@ -117009,10 +116796,10 @@ aLj aOj amY aoZ -anp ane anp -aDI +ane +aEi aBs aAD aBs @@ -117266,7 +117053,7 @@ aLo aOm amY aqd -ane +anp aBS aBV aEk @@ -117362,7 +117149,7 @@ bOk bOk bOq aaU -aaU +ahv aaa aaa aaa @@ -117523,7 +117310,7 @@ aLj aOy amY apw -anp +ane aBS ayy aEj @@ -117780,7 +117567,7 @@ aLq aOG amY apa -ane +anp aBS ayy bvE @@ -117998,7 +117785,7 @@ abr abM adl abM -aZG +ryB aaU aaV aaV @@ -118037,7 +117824,7 @@ aLr amG amG apL -anp +ane aBS aBu aEj @@ -118146,7 +117933,7 @@ aaU aaU aaU aaU -aaU +ahv aaU aaU aaa @@ -118255,7 +118042,7 @@ acr acW adw adH -aaU +aZG aaU abc aaU @@ -118292,9 +118079,9 @@ aGl aIZ aLr amG -ane anp ane +anp azt aBv aEj @@ -118549,7 +118336,7 @@ aGm aIZ aLr amG -anp +ane aBS aBS aBS @@ -118660,7 +118447,7 @@ aaU aaU aaU aaU -aaU +ahv aaU aaU aaa @@ -118806,7 +118593,7 @@ awx aIZ aLr amG -ane +anp azt azu aAH @@ -119063,7 +118850,7 @@ awp aJa aLr amG -anp +ane aBS ayy ayy @@ -119278,7 +119065,7 @@ aaa aaa aaU aaa -aRv +acM aaa aaU aaa @@ -119320,7 +119107,7 @@ aGw aJb aLt amY -anY +aAG azt azu azu @@ -119351,7 +119138,7 @@ bAS aaa aaU aaa -aRv +acM aaa aaU aaa @@ -119577,7 +119364,7 @@ awp aJs aLz amY -anp +ane aBS aBS aBS @@ -120162,7 +119949,7 @@ bVZ bgV boI boU -cty +bpf bpf bpf cxS @@ -120422,7 +120209,7 @@ cxE cxM cxO cND -bpf +pLp brS bte cdT @@ -120677,10 +120464,10 @@ bgV boI boW bpf -bpu bpf +xZk cty -brS +nnP boI btS ccT @@ -120933,9 +120720,9 @@ bXk bgT boP boY -bpk bpf -bpY +sOk +jdU brd brT boI @@ -121188,11 +120975,11 @@ bSp bhK bXl bgV -boI -boI -ckK +kcS +dfx +bpf ckL -ckM +boI boI boI boI @@ -121358,7 +121145,7 @@ aaa aaa aOz aOz -aaU +ahv aaa aaa aaU @@ -121381,7 +121168,7 @@ aaU aaU aaU aaa -aaU +ahv aOz aOz aaa @@ -121445,12 +121232,12 @@ bSq bld bXl bgV -aaU -boI -boK -boK -boK +kcS +lIX +bpf +kQy boI +aaa aaU cNW cNX @@ -121701,12 +121488,12 @@ ble xxP bnC bXo -bgT -aaa -aaa -aaa -aaa -aaa +bgV +kcS +tNR +bpf +kQy +boI aaa aaU cNX @@ -121718,7 +121505,7 @@ aaU aaa aaa aaa -aaU +ahv aaU aaU aaU @@ -121726,7 +121513,7 @@ blj aaU aaU aaU -aaU +ahv aaa aaa aaU @@ -121959,11 +121746,11 @@ bgT cgm bXr bgT -aaa -aaa -aaa -aaa -aaa +jAG +sGA +ocA +bpu +boI aaa aaU aaU @@ -122215,12 +122002,12 @@ blh bgT blh bXx -bgT -aaa -aaa -aaa -aaa -aaa +bgV +boI +boI +boI +boI +boI aaa aaa aaU @@ -123671,7 +123458,7 @@ aaa aaa aOz aOz -aaU +ahv aaa aaa aaU @@ -123694,7 +123481,7 @@ aaU aaU aaa aaa -aaU +ahv aOz aOz aaa @@ -124957,7 +124744,7 @@ aaa aaa cHR but -aaU +ahv aaU aaa aaa @@ -124978,7 +124765,7 @@ aaa aaa aaa aaU -aaU +ahv but cHR aaa @@ -125219,6 +125006,7 @@ but aaa aaa aaa +ahv aaU aaU aaU @@ -125229,8 +125017,7 @@ aaU aaU aaU aaU -aaU -aaU +ahv aaa aaa aaa @@ -125776,7 +125563,7 @@ aaa aaa aaU aaa -aWR +gLq aaa aaU aaa @@ -125960,7 +125747,7 @@ aaa aaa aaU aaa -aWR +gLq aaa aaU aaa @@ -126113,7 +125900,7 @@ aaa aaa aaU aaa -aWR +gLq aaa aaU aaa @@ -126993,15 +126780,15 @@ abR abM abR abM -aZG -aaU +ryB aaU aaU aaU aaU aaU +ahv aTd -aaU +ahv aaU aaa aaa @@ -127051,12 +126838,12 @@ aaa aaa aaa aaU -aaU +ahv aTd +ahv aaU aaU -aaU -aTx +ckK abM abR abM @@ -127066,15 +126853,15 @@ ccO abM abR abM -aZG -aaU +ryB aaU aaU +ahv +owh +ahv +ahv aTd -aaU -aaU -aTd -aaU +ahv aaU aaa aaa @@ -127103,7 +126890,7 @@ aaa aaa aaa aaU -aaU +ahv cNQ cNI aWj @@ -127112,6 +126899,7 @@ aWj aWj aaU aTd +ahv aaU aaU aaU @@ -127121,9 +126909,9 @@ aaU aaU aaU aaU -aaU -aaU +ahv aTd +ahv aaU aaU aaU @@ -127135,8 +126923,7 @@ aaU aaU aaU aaU -aaU -aTx +ckK abM abR abM @@ -128129,7 +127916,7 @@ aaa aaa aaa aaa -aWj +ahv aWj aWj aWj @@ -128143,7 +127930,7 @@ aWj aWj aWj aWj -aWj +ahv aaa aaa aaa @@ -131727,6 +131514,7 @@ aaa aaa aaa aaa +ahv aWj aWj aWj @@ -131740,8 +131528,7 @@ aWj aWj aWj aWj -aWj -aWj +ahv aaa aaa aaa diff --git a/_maps/map_files/Snaxi/Snaxi.dmm b/_maps/map_files/Snaxi/Snaxi.dmm index d1559e782f..a0e19fabe6 100644 --- a/_maps/map_files/Snaxi/Snaxi.dmm +++ b/_maps/map_files/Snaxi/Snaxi.dmm @@ -10721,7 +10721,9 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/mob/living/simple_animal/sloth/paperwork, +/mob/living/simple_animal/pet/fox/fennec{ + name = "Goob" + }, /turf/open/floor/plasteel{ dir = 1; icon_state = "floor_whole" From 510d3859c8f03f1426db06ba466f1c57e7397ec6 Mon Sep 17 00:00:00 2001 From: Phantastic-Swan Date: Wed, 7 May 2025 15:14:58 +0200 Subject: [PATCH 04/17] starting work on the TEG --- _maps/map_files/CogStation/CogStation.dmm | 748 ++++++---------------- 1 file changed, 181 insertions(+), 567 deletions(-) diff --git a/_maps/map_files/CogStation/CogStation.dmm b/_maps/map_files/CogStation/CogStation.dmm index 9bfd2bff66..334d0cd368 100644 --- a/_maps/map_files/CogStation/CogStation.dmm +++ b/_maps/map_files/CogStation/CogStation.dmm @@ -19527,10 +19527,6 @@ }, /turf/open/floor/plasteel, /area/security/brig) -"aQc" = ( -/obj/machinery/atmospherics/pipe/simple/supply/visible, -/turf/closed/wall/r_wall, -/area/engineering/main) "aQd" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/visible, /obj/machinery/suit_storage_unit/engine, @@ -19593,7 +19589,7 @@ /turf/open/floor/plating, /area/ai_monitored/turret_protected/ai) "aQk" = ( -/obj/machinery/atmospherics/pipe/simple/supply/visible, +/obj/machinery/atmospherics/pipe/simple/cyan/visible, /obj/machinery/space_heater{ anchored = 1 }, @@ -19686,16 +19682,14 @@ /obj/structure/cable{ icon_state = "4-8" }, -/obj/machinery/atmospherics/pipe/simple/supply/visible, +/obj/machinery/atmospherics/pipe/simple/cyan/visible, /obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ dir = 4 }, /turf/open/floor/plasteel, /area/engineering/main) "aQu" = ( -/obj/machinery/atmospherics/components/binary/pump/on{ - dir = 1 - }, +/obj/machinery/atmospherics/pipe/simple/cyan/visible, /turf/closed/wall/r_wall, /area/engineering/main) "aQv" = ( @@ -19862,7 +19856,7 @@ /area/engineering/main) "aQQ" = ( /obj/effect/turf_decal/delivery, -/obj/machinery/atmospherics/pipe/simple/supply/visible, +/obj/machinery/atmospherics/pipe/simple/cyan/visible, /obj/machinery/meter, /turf/open/floor/plasteel, /area/engineering/main) @@ -20224,7 +20218,7 @@ /area/engineering/substation) "aRG" = ( /obj/effect/turf_decal/delivery, -/obj/machinery/atmospherics/pipe/simple/supply/visible, +/obj/machinery/atmospherics/pipe/simple/cyan/visible, /turf/open/floor/plasteel, /area/engineering/main) "aRH" = ( @@ -20263,12 +20257,6 @@ }, /turf/open/floor/plasteel, /area/hallway/secondary/civilian) -"aRL" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 4 - }, -/turf/open/floor/plating, -/area/engineering/main) "aRM" = ( /turf/open/floor/carpet, /area/service/bar) @@ -20328,9 +20316,6 @@ icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/orange/hidden, -/obj/machinery/atmospherics/components/binary/valve/digital{ - dir = 4 - }, /turf/open/floor/plating, /area/engineering/main) "aRS" = ( @@ -20371,7 +20356,7 @@ /turf/open/floor/plasteel, /area/security/office) "aRV" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ +/obj/machinery/atmospherics/pipe/simple/cyan/visible{ dir = 4 }, /turf/open/floor/plating, @@ -20389,12 +20374,6 @@ }, /turf/open/space/basic, /area/space/nearstation) -"aRY" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/turf/open/floor/plating, -/area/engineering/main) "aRZ" = ( /obj/structure/lattice/catwalk, /obj/structure/cable{ @@ -20664,16 +20643,12 @@ /obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ dir = 9 }, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -26 - }, /obj/machinery/light/small, /turf/open/floor/plasteel, /area/engineering/main) "aSH" = ( /obj/effect/turf_decal/delivery, -/obj/machinery/atmospherics/pipe/simple/supply/visible{ +/obj/machinery/atmospherics/pipe/simple/cyan/visible{ dir = 5 }, /obj/machinery/light/small, @@ -20705,7 +20680,7 @@ /area/security/office) "aSK" = ( /obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/supply/visible{ +/obj/machinery/atmospherics/pipe/simple/cyan/visible{ dir = 4 }, /turf/open/floor/plating, @@ -20775,7 +20750,7 @@ /turf/open/floor/plasteel, /area/hallway/secondary/civilian) "aST" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ +/obj/machinery/atmospherics/pipe/simple/cyan/visible{ dir = 4 }, /obj/structure/cable{ @@ -20862,8 +20837,8 @@ /area/hallway/primary/central) "aTc" = ( /obj/machinery/meter, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 4 +/obj/machinery/atmospherics/pipe/simple/cyan/visible{ + dir = 10 }, /turf/open/floor/plating, /area/engineering/main) @@ -21226,7 +21201,7 @@ /obj/structure/cable{ icon_state = "4-8" }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/cyan/visible, /obj/machinery/atmospherics/pipe/simple/orange/hidden{ dir = 8 }, @@ -21346,11 +21321,13 @@ /turf/open/floor/plating, /area/engineering/substation) "aUe" = ( -/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 8 + }, /turf/open/floor/plating, /area/engineering/teg) "aUf" = ( -/turf/closed/wall/r_wall, +/turf/open/floor/plating, /area/engineering/teg) "aUg" = ( /obj/structure/disposalpipe/segment, @@ -21434,10 +21411,6 @@ /turf/closed/wall/r_wall, /area/commons/lounge/jazz) "aUr" = ( -/obj/machinery/door/airlock/engineering{ - name = "Thermo-Electric Generator"; - req_one_access_txt = "10;24" - }, /obj/structure/cable{ icon_state = "1-2" }, @@ -21445,15 +21418,13 @@ dir = 1 }, /obj/effect/turf_decal/stripes/line, -/obj/machinery/door/firedoor/heavy, -/turf/open/floor/plasteel, +/turf/open/floor/plating, /area/engineering/teg) "aUs" = ( /obj/machinery/atmospherics/pipe/simple/orange/hidden, /turf/open/floor/plasteel/dark, /area/service/chapel/office) "aUt" = ( -/obj/effect/spawner/structure/window/reinforced, /obj/structure/cable{ icon_state = "1-4" }, @@ -21692,7 +21663,7 @@ /obj/structure/cable{ icon_state = "2-4" }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/cyan/visible, /turf/open/floor/plating, /area/engineering/main) "aUV" = ( @@ -21954,13 +21925,10 @@ /turf/open/floor/plasteel, /area/commons/cryopod) "aVB" = ( -/obj/machinery/light_switch{ - pixel_y = 24 +/obj/machinery/atmospherics/components/binary/pump{ + dir = 4 }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/engine, +/turf/open/floor/plating, /area/engineering/teg) "aVC" = ( /obj/structure/cable{ @@ -22616,13 +22584,10 @@ /turf/open/floor/plating, /area/maintenance/central) "aWX" = ( -/obj/machinery/firealarm{ - pixel_y = 26 +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ + dir = 4 }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/engine, +/turf/open/floor/plating, /area/engineering/teg) "aWY" = ( /obj/effect/turf_decal/tile/red, @@ -22957,7 +22922,7 @@ /obj/machinery/atmospherics/components/binary/pump/on{ dir = 8 }, -/turf/closed/wall/r_wall, +/turf/open/floor/plating, /area/engineering/teg) "aXQ" = ( /obj/effect/spawner/structure/window/reinforced, @@ -23060,13 +23025,6 @@ /obj/machinery/light/small, /turf/open/floor/plasteel, /area/tcommsat/computer) -"aYb" = ( -/obj/machinery/atmospherics/components/binary/valve/digital{ - dir = 4; - name = "generator to hot loop" - }, -/turf/open/floor/engine, -/area/engineering/teg) "aYc" = ( /obj/effect/landmark/start/assistant, /obj/machinery/atmospherics/pipe/manifold/cyan/hidden{ @@ -23389,7 +23347,7 @@ /obj/structure/cable{ icon_state = "1-2" }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ +/obj/machinery/atmospherics/pipe/manifold/cyan/visible{ dir = 4 }, /turf/open/floor/plating, @@ -23716,7 +23674,7 @@ /turf/open/floor/plasteel/dark, /area/ai_monitored/command/nuke_storage) "aZt" = ( -/obj/machinery/atmospherics/pipe/simple/supply/visible{ +/obj/machinery/atmospherics/pipe/simple/cyan/visible{ dir = 6 }, /obj/effect/turf_decal/stripes/line{ @@ -24171,7 +24129,7 @@ /turf/open/space/basic, /area/space/nearstation) "ban" = ( -/obj/machinery/atmospherics/pipe/simple/supply/visible{ +/obj/machinery/atmospherics/pipe/simple/cyan/visible{ dir = 4 }, /obj/effect/turf_decal/stripes/line{ @@ -24450,7 +24408,7 @@ }, /area/service/lawoffice) "baT" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/visible, +/obj/machinery/atmospherics/pipe/manifold/cyan/visible, /obj/machinery/meter, /obj/structure/cable{ icon_state = "1-2" @@ -24458,9 +24416,8 @@ /turf/open/floor/engine, /area/engineering/teg) "baU" = ( -/obj/machinery/atmospherics/components/binary/valve/digital{ - dir = 4; - name = "cold loop to generator" +/obj/machinery/atmospherics/components/binary/pump/on{ + dir = 8 }, /turf/open/floor/engine, /area/engineering/teg) @@ -24738,7 +24695,7 @@ /obj/structure/cable{ icon_state = "1-8" }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/cyan/visible, /turf/open/floor/plating, /area/engineering/main) "bbC" = ( @@ -24780,7 +24737,7 @@ /area/command/bridge) "bbH" = ( /obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/simple/supply/visible, +/obj/machinery/atmospherics/pipe/simple/cyan/visible, /turf/open/floor/plating, /area/engineering/teg) "bbI" = ( @@ -25108,7 +25065,7 @@ /obj/structure/cable{ icon_state = "4-8" }, -/turf/closed/wall/r_wall, +/turf/open/floor/plating, /area/engineering/teg) "bcw" = ( /obj/effect/spawner/structure/window/reinforced, @@ -25169,9 +25126,7 @@ /turf/open/floor/plasteel/dark, /area/engineering/teg) "bcE" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 - }, +/obj/machinery/atmospherics/pipe/simple/cyan/visible, /turf/open/floor/plating, /area/engineering/main) "bcF" = ( @@ -25602,6 +25557,9 @@ /obj/machinery/light/small{ dir = 4 }, +/obj/machinery/atmospherics/pipe/simple/cyan/visible{ + dir = 5 + }, /turf/open/floor/plating, /area/engineering/main) "bdF" = ( @@ -25878,7 +25836,7 @@ /turf/open/floor/plasteel, /area/hallway/primary/central) "bem" = ( -/obj/machinery/atmospherics/pipe/simple/supply/visible, +/obj/machinery/atmospherics/pipe/simple/cyan/visible, /obj/effect/turf_decal/delivery, /obj/item/extinguisher, /obj/structure/window/reinforced/spawner, @@ -26429,7 +26387,7 @@ /turf/open/floor/plasteel/white, /area/command/gateway) "bfy" = ( -/obj/machinery/atmospherics/pipe/simple/supply/visible, +/obj/machinery/atmospherics/pipe/simple/cyan/visible, /obj/structure/window/reinforced/spawner/west, /obj/effect/turf_decal/stripes/line, /turf/open/floor/plasteel/dark, @@ -26530,7 +26488,7 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/closed/wall/r_wall, +/turf/open/floor/plating, /area/engineering/teg) "bfK" = ( /obj/structure/table/wood, @@ -27053,7 +27011,7 @@ /obj/machinery/atmospherics/components/binary/pump/on{ dir = 4 }, -/turf/closed/wall/r_wall, +/turf/open/floor/plating, /area/engineering/teg) "bgK" = ( /obj/effect/decal/cleanable/dirt, @@ -27111,11 +27069,10 @@ /turf/closed/wall, /area/cargo/qm) "bgR" = ( -/obj/machinery/atmospherics/components/binary/valve/digital{ - dir = 4; - name = "hot loop to generator" +/obj/machinery/atmospherics/components/binary/pump{ + dir = 8 }, -/turf/open/floor/engine, +/turf/open/floor/plating, /area/engineering/teg) "bgS" = ( /obj/effect/turf_decal/tile/brown{ @@ -27215,7 +27172,7 @@ /area/cargo/office) "bhg" = ( /obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ +/obj/machinery/atmospherics/pipe/simple/cyan/visible{ dir = 4 }, /turf/open/floor/plating, @@ -27949,10 +27906,6 @@ }, /turf/open/floor/plasteel, /area/science/mixing) -"biL" = ( -/obj/machinery/atmospherics/pipe/simple/supply/visible, -/turf/closed/wall, -/area/command/heads_quarters/ce) "biM" = ( /obj/machinery/vending/assist, /obj/effect/turf_decal/bot, @@ -28607,7 +28560,7 @@ /turf/open/floor/plasteel, /area/hallway/primary/central) "bkf" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/visible{ +/obj/machinery/atmospherics/pipe/manifold/cyan/visible{ dir = 8 }, /turf/open/floor/engine, @@ -28684,13 +28637,13 @@ /turf/open/floor/plasteel, /area/science/circuit) "bkp" = ( -/obj/machinery/atmospherics/pipe/simple/supply/visible{ +/obj/machinery/atmospherics/pipe/simple/cyan/visible{ dir = 4 }, /turf/open/floor/engine, /area/engineering/teg) "bkq" = ( -/obj/machinery/atmospherics/pipe/simple/supply/visible{ +/obj/machinery/atmospherics/pipe/simple/cyan/visible{ dir = 4 }, /obj/machinery/meter, @@ -28700,9 +28653,8 @@ /turf/open/floor/engine, /area/engineering/teg) "bkr" = ( -/obj/machinery/atmospherics/components/binary/valve/digital{ - dir = 4; - name = "generator to cold loop" +/obj/machinery/atmospherics/components/binary/pump/on{ + dir = 4 }, /turf/open/floor/engine, /area/engineering/teg) @@ -28800,15 +28752,6 @@ }, /turf/open/floor/plating, /area/command/heads_quarters/captain) -"bkD" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "CEPrivacy"; - name = "CE Privacy Shutters" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/command/heads_quarters/ce) "bkE" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable{ @@ -29154,10 +29097,12 @@ /turf/open/floor/plasteel, /area/hallway/primary/central) "blp" = ( -/obj/effect/spawner/structure/window/reinforced, /obj/structure/cable{ icon_state = "4-8" }, +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 8 + }, /turf/open/floor/plating, /area/engineering/teg) "blq" = ( @@ -29586,16 +29531,16 @@ /turf/open/floor/carpet/purple, /area/command/heads_quarters/rd) "bme" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 4 - }, /obj/structure/cable{ icon_state = "1-8" }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ + dir = 4 + }, /turf/open/floor/engine, /area/engineering/teg) "bmf" = ( -/obj/machinery/atmospherics/components/binary/valve/digital{ +/obj/machinery/atmospherics/components/binary/pump{ dir = 4 }, /turf/open/floor/engine, @@ -30208,12 +30153,8 @@ /turf/open/floor/plasteel, /area/cargo/sorting) "bni" = ( -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -26 - }, -/obj/machinery/atmospherics/components/binary/valve/digital{ - dir = 4 +/obj/machinery/atmospherics/components/binary/pump{ + dir = 8 }, /turf/open/floor/engine, /area/engineering/teg) @@ -30251,15 +30192,11 @@ /turf/closed/wall/r_wall, /area/science/mixing) "bnn" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 8 - }, /obj/structure/cable{ icon_state = "1-4" }, -/obj/item/radio/intercom{ - name = "Station Intercom (Common)"; - pixel_y = -29 +/obj/machinery/atmospherics/pipe/simple/cyan/visible{ + dir = 4 }, /turf/open/floor/engine, /area/engineering/teg) @@ -30355,7 +30292,6 @@ /turf/open/floor/plasteel, /area/hallway/primary/central) "bny" = ( -/obj/machinery/portable_atmospherics/pump, /obj/machinery/light/small{ dir = 1; light_color = "#ffc1c1" @@ -30484,14 +30420,15 @@ /turf/open/floor/plasteel, /area/hallway/primary/aft) "bnO" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/visible, /obj/machinery/door/airlock/engineering/glass{ name = "Thermo-Electric Generator"; req_one_access_txt = "10;24" }, /obj/effect/mapping_helpers/airlock/cyclelink_helper, /obj/effect/turf_decal/delivery, -/obj/machinery/door/firedoor/heavy, +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ + dir = 9 + }, /turf/open/floor/plasteel, /area/engineering/teg) "bnP" = ( @@ -30600,7 +30537,7 @@ /obj/structure/cable/yellow{ icon_state = "1-2" }, -/turf/closed/wall/r_wall, +/turf/open/floor/plating, /area/engineering/teg) "bnZ" = ( /obj/structure/table/reinforced, @@ -30617,23 +30554,11 @@ /turf/open/floor/plasteel/dark, /area/security/checkpoint/customs) "boa" = ( -/obj/machinery/atmospherics/pipe/simple/supply/visible{ - dir = 5 - }, -/turf/closed/wall, -/area/command/heads_quarters/ce) -"bob" = ( -/obj/machinery/atmospherics/pipe/simple/supply/visible{ +/obj/machinery/atmospherics/pipe/simple/cyan/visible{ dir = 4 }, -/turf/closed/wall, -/area/command/heads_quarters/ce) -"boc" = ( -/obj/machinery/atmospherics/pipe/simple/supply/visible{ - dir = 10 - }, -/turf/closed/wall, -/area/command/heads_quarters/ce) +/turf/open/floor/plating, +/area/engineering/teg) "bod" = ( /obj/structure/table/reinforced, /obj/item/stack/packageWrap, @@ -30673,14 +30598,15 @@ /turf/open/floor/plasteel, /area/science/server/compcore) "bog" = ( -/obj/machinery/atmospherics/pipe/simple/supply/visible, /obj/machinery/door/airlock/engineering/glass{ name = "Thermo-Electric Generator"; req_one_access_txt = "10;24" }, /obj/effect/mapping_helpers/airlock/cyclelink_helper, /obj/effect/turf_decal/delivery, -/obj/machinery/door/firedoor/heavy, +/obj/machinery/atmospherics/pipe/simple/cyan/visible{ + dir = 5 + }, /turf/open/floor/plasteel, /area/engineering/teg) "boh" = ( @@ -30859,13 +30785,6 @@ "boA" = ( /turf/closed/wall, /area/security/detectives_office) -"boB" = ( -/obj/machinery/door/firedoor, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating, -/area/engineering/main) "boC" = ( /obj/machinery/light/small{ dir = 4 @@ -30882,7 +30801,6 @@ /area/cargo/warehouse) "boD" = ( /obj/effect/turf_decal/delivery, -/obj/machinery/atmospherics/pipe/simple/scrubbers/visible, /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -30906,7 +30824,6 @@ /area/engineering/main) "boF" = ( /obj/effect/turf_decal/delivery, -/obj/machinery/atmospherics/pipe/simple/supply/visible, /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -31096,16 +31013,6 @@ icon_state = "carpetsymbol" }, /area/commons/lounge/jazz) -"bpa" = ( -/obj/machinery/door/firedoor, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 8 - }, -/turf/open/floor/plating, -/area/engineering/main) "bpb" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -31978,12 +31885,6 @@ }, /turf/open/floor/plasteel, /area/maintenance/disposal) -"brb" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ - dir = 6 - }, -/turf/open/floor/plating, -/area/engineering/main) "brc" = ( /obj/structure/cable{ icon_state = "1-2" @@ -32147,14 +32048,6 @@ }, /turf/open/floor/plating, /area/service/chapel/office) -"bru" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/components/binary/valve/digital{ - dir = 4; - name = "hot loop to space" - }, -/turf/open/floor/plating, -/area/engineering/main) "brv" = ( /obj/machinery/portable_atmospherics/canister/air, /obj/machinery/atmospherics/pipe/simple/general/visible, @@ -32196,9 +32089,6 @@ /area/hallway/secondary/civilian) "brz" = ( /obj/effect/turf_decal/delivery, -/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ - dir = 9 - }, /turf/open/floor/plasteel, /area/engineering/main) "brA" = ( @@ -32714,9 +32604,7 @@ /area/service/hydroponics) "bsx" = ( /obj/effect/turf_decal/delivery, -/obj/machinery/atmospherics/pipe/simple/supply/visible{ - dir = 5 - }, +/obj/machinery/portable_atmospherics/pump, /turf/open/floor/plasteel, /area/engineering/main) "bsy" = ( @@ -33016,14 +32904,6 @@ /obj/machinery/atmospherics/pipe/simple/cyan/hidden, /turf/open/floor/plasteel/white, /area/medical/medbay/lobby) -"btk" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/components/binary/valve/digital{ - dir = 4; - name = "cold loop to space" - }, -/turf/open/floor/plating, -/area/engineering/main) "btl" = ( /obj/effect/turf_decal/tile/yellow, /obj/effect/turf_decal/tile/yellow{ @@ -33922,9 +33802,6 @@ /turf/closed/wall/r_wall, /area/service/chapel/office) "bvv" = ( -/obj/machinery/atmospherics/pipe/simple/supply/visible{ - dir = 10 - }, /obj/machinery/light_switch{ pixel_y = -24 }, @@ -34602,10 +34479,6 @@ /obj/machinery/atmospherics/pipe/simple/supplymain/hidden, /turf/open/floor/plasteel, /area/hallway/primary/central) -"bwV" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/visible, -/turf/open/floor/plasteel, -/area/engineering/break_room) "bwW" = ( /turf/closed/wall, /area/maintenance/disposal) @@ -35501,11 +35374,6 @@ /obj/machinery/atmospherics/pipe/manifold/orange/hidden, /turf/open/floor/plating, /area/maintenance/department/chapel) -"byT" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/hallway/primary/aft) "byU" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -35712,9 +35580,6 @@ /turf/open/floor/plasteel, /area/hallway/secondary/exit/departure_lounge) "bzr" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ - dir = 10 - }, /obj/machinery/meter, /turf/closed/wall, /area/hallway/primary/aft) @@ -35967,17 +35832,11 @@ /turf/open/floor/catwalk_floor, /area/maintenance/port/central) "bzU" = ( -/obj/machinery/atmospherics/pipe/simple/supply/visible{ - dir = 6 +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ + dir = 9 }, -/obj/machinery/meter, -/turf/closed/wall, -/area/hallway/primary/aft) -"bzV" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/hallway/primary/aft) +/turf/open/floor/plasteel/dark, +/area/engineering/teg/hotloop) "bzW" = ( /obj/machinery/vending/assist, /turf/open/floor/plating, @@ -35993,13 +35852,6 @@ }, /turf/open/floor/plasteel, /area/science/mixing) -"bzY" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 5 - }, -/turf/open/floor/plating, -/area/hallway/primary/aft) "bzZ" = ( /obj/structure/disposalpipe/segment, /turf/closed/wall/r_wall, @@ -36462,22 +36314,9 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/plating, /area/maintenance/disposal) -"bAR" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ - dir = 5 - }, -/turf/closed/wall/r_wall, -/area/engineering/main) "bAS" = ( /turf/closed/wall/r_wall/rust, /area/maintenance/disposal) -"bAT" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ - dir = 10 - }, -/obj/structure/sign/warning/securearea, -/turf/closed/wall/r_wall, -/area/engineering/main) "bAU" = ( /obj/effect/turf_decal/stripes/line{ dir = 6 @@ -36628,13 +36467,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating, /area/router) -"bBl" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 8 - }, -/turf/open/floor/plating, -/area/hallway/primary/aft) "bBm" = ( /obj/structure/sign/warning/nosmoking, /turf/closed/wall/r_wall, @@ -36790,9 +36622,6 @@ /turf/open/floor/plating, /area/maintenance/disposal) "bBE" = ( -/obj/machinery/atmospherics/pipe/simple/supply/visible{ - dir = 6 - }, /obj/structure/sign/warning/securearea, /turf/closed/wall/r_wall, /area/engineering/main) @@ -36856,12 +36685,6 @@ }, /turf/open/floor/engine, /area/science/mixing) -"bBO" = ( -/obj/machinery/atmospherics/pipe/simple/supply/visible{ - dir = 9 - }, -/turf/closed/wall/r_wall, -/area/engineering/main) "bBP" = ( /obj/machinery/door/firedoor, /obj/structure/table/reinforced, @@ -39895,13 +39718,6 @@ }, /turf/open/floor/plasteel/dark, /area/security/checkpoint/customs) -"bIm" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ - dir = 4 - }, -/obj/structure/lattice, -/turf/open/space/basic, -/area/space/nearstation) "bIn" = ( /obj/machinery/power/smes/engineering, /obj/structure/cable{ @@ -39914,18 +39730,14 @@ /obj/structure/sign/directions/evac{ dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 8 - }, /turf/open/floor/plating, /area/hallway/primary/aft) "bIp" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ dir = 4 }, /turf/open/floor/plating, -/area/hallway/primary/aft) +/area/engineering/teg) "bIq" = ( /turf/open/floor/plasteel/white, /area/medical/medbay/central) @@ -39990,13 +39802,6 @@ }, /turf/open/floor/plasteel/showroomfloor, /area/medical/morgue) -"bIx" = ( -/obj/machinery/atmospherics/pipe/simple/supply/visible{ - dir = 4 - }, -/obj/structure/lattice, -/turf/open/space/basic, -/area/space/nearstation) "bIy" = ( /obj/machinery/door/firedoor, /obj/structure/cable{ @@ -43909,16 +43714,6 @@ }, /turf/open/floor/plasteel, /area/engineering/break_room) -"bQG" = ( -/obj/machinery/atmospherics/pipe/simple/supply/visible, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/engineering/break_room) "bQH" = ( /obj/structure/cable{ icon_state = "4-8" @@ -44025,9 +43820,6 @@ /obj/structure/sign/directions/evac{ dir = 1 }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, /turf/open/floor/plating, /area/hallway/primary/aft) "bQS" = ( @@ -44851,10 +44643,6 @@ }, /turf/open/floor/plasteel, /area/science/research) -"bSx" = ( -/obj/machinery/atmospherics/pipe/simple/supply/visible, -/turf/open/floor/plasteel, -/area/engineering/break_room) "bSy" = ( /obj/effect/turf_decal/tile/yellow{ dir = 1 @@ -45677,12 +45465,14 @@ /turf/open/floor/plating, /area/cargo/warehouse) "bUn" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 9 +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 4 }, /turf/open/floor/plating, -/area/hallway/primary/aft) +/area/engineering/teg) "bUo" = ( /obj/structure/grille, /turf/open/floor/plating/airless, @@ -47859,7 +47649,6 @@ "bYm" = ( /obj/machinery/door/firedoor, /obj/effect/turf_decal/delivery, -/obj/machinery/atmospherics/pipe/simple/supply/visible, /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -49075,7 +48864,6 @@ dir = 8 }, /obj/structure/table/wood, -/obj/machinery/atmospherics/pipe/simple/supply/visible, /obj/item/clothing/ears/earmuffs, /obj/item/radio, /obj/machinery/atmospherics/pipe/simple/cyan/hidden{ @@ -50324,10 +50112,6 @@ }, /turf/open/floor/plating, /area/cargo/warehouse) -"cdy" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/visible, -/turf/closed/wall, -/area/engineering/break_room) "cdz" = ( /obj/effect/turf_decal/tile/yellow{ dir = 8 @@ -50346,7 +50130,6 @@ /turf/open/floor/plasteel, /area/engineering/break_room) "cdB" = ( -/obj/machinery/atmospherics/pipe/simple/supply/visible, /obj/structure/sign/warning/enginesafety, /turf/closed/wall, /area/engineering/break_room) @@ -51106,13 +50889,6 @@ /obj/machinery/photocopier, /turf/open/floor/carpet/blue, /area/medical/medbay/central) -"cfc" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 9 - }, -/turf/open/floor/plating, -/area/hallway/primary/aft) "cfd" = ( /obj/structure/closet/crate/wooden, /obj/effect/turf_decal/tile/blue{ @@ -51731,13 +51507,10 @@ /turf/open/floor/plasteel, /area/cargo/sorting) "cgo" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/visible, +/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/visible, /turf/open/floor/plasteel/dark, /area/engineering/teg/hotloop) "cgp" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ - dir = 10 - }, /obj/machinery/button/ignition{ id = "TEGMixIgniter"; name = "Mix Igniter"; @@ -51997,13 +51770,7 @@ /turf/open/floor/plasteel/dark, /area/engineering/teg/hotloop) "cgS" = ( -/obj/machinery/atmospherics/components/trinary/mixer{ - dir = 4; - node1_concentration = 0.8; - node2_concentration = 0.2; - on = 1; - target_pressure = 4500 - }, +/obj/machinery/atmospherics/components/trinary/mixer/flipped, /turf/open/floor/plasteel/dark, /area/engineering/teg/hotloop) "cgT" = ( @@ -52012,13 +51779,6 @@ /obj/structure/cable, /turf/open/floor/plating, /area/maintenance/disposal) -"cgU" = ( -/obj/machinery/atmospherics/components/binary/valve/digital{ - dir = 4; - name = "manual mix to burn" - }, -/turf/open/floor/plasteel/dark, -/area/engineering/teg/hotloop) "cgV" = ( /obj/effect/turf_decal/stripes/line, /obj/machinery/light/small{ @@ -52073,9 +51833,6 @@ /turf/open/floor/plating, /area/maintenance/disposal) "chb" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ - dir = 9 - }, /obj/structure/cable{ icon_state = "2-4" }, @@ -52204,7 +51961,7 @@ /turf/open/floor/plasteel/dark, /area/engineering/atmos) "chr" = ( -/obj/machinery/atmospherics/components/binary/valve/digital, +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible, /turf/open/floor/plasteel/dark, /area/engineering/teg/hotloop) "chs" = ( @@ -52296,14 +52053,8 @@ }, /turf/open/floor/plasteel, /area/engineering/teg/hotloop) -"chE" = ( -/obj/machinery/atmospherics/pipe/simple/supply/visible{ - dir = 5 - }, -/turf/closed/wall/r_wall, -/area/engineering/teg/coldloop) "chF" = ( -/obj/machinery/atmospherics/pipe/simple/supply/visible{ +/obj/machinery/atmospherics/pipe/simple/cyan/visible{ dir = 4 }, /obj/structure/table, @@ -52313,7 +52064,7 @@ /turf/open/floor/plasteel/dark, /area/engineering/teg/coldloop) "chG" = ( -/obj/machinery/atmospherics/pipe/simple/supply/visible{ +/obj/machinery/atmospherics/pipe/simple/cyan/visible{ dir = 4 }, /obj/structure/cable{ @@ -52329,7 +52080,7 @@ /turf/closed/wall/r_wall/rust, /area/maintenance/fore) "chI" = ( -/obj/machinery/atmospherics/pipe/simple/supply/visible{ +/obj/machinery/atmospherics/pipe/simple/cyan/visible{ dir = 4 }, /obj/machinery/meter, @@ -52820,7 +52571,7 @@ /turf/open/floor/plasteel, /area/science/research) "ciH" = ( -/obj/machinery/atmospherics/pipe/simple/supply/visible{ +/obj/machinery/atmospherics/pipe/simple/cyan/visible{ dir = 6 }, /obj/machinery/meter, @@ -53277,13 +53028,13 @@ /turf/open/floor/plasteel, /area/ai_monitored/command/storage/eva) "cjK" = ( -/obj/machinery/atmospherics/pipe/simple/supply/visible{ +/obj/machinery/atmospherics/pipe/simple/cyan/visible{ dir = 4 }, /turf/closed/wall/r_wall, /area/engineering/teg/coldloop) "cjL" = ( -/obj/machinery/atmospherics/pipe/simple/supply/visible{ +/obj/machinery/atmospherics/pipe/simple/cyan/visible{ dir = 4 }, /obj/machinery/portable_atmospherics/canister, @@ -53410,8 +53161,8 @@ /turf/open/floor/plasteel, /area/security/brig) "cjU" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/visible{ - dir = 1 +/obj/machinery/atmospherics/pipe/simple/cyan/visible{ + dir = 4 }, /obj/structure/cable{ icon_state = "1-2" @@ -53455,7 +53206,7 @@ /turf/open/floor/plasteel/grimy, /area/command/heads_quarters/hos) "cjX" = ( -/obj/machinery/atmospherics/pipe/simple/supply/visible{ +/obj/machinery/atmospherics/pipe/simple/cyan/visible{ dir = 9 }, /obj/machinery/airalarm{ @@ -53760,9 +53511,6 @@ /obj/structure/cable{ icon_state = "1-2" }, -/obj/machinery/atmospherics/components/binary/valve/digital{ - name = "gas to cold loop" - }, /turf/open/floor/plasteel, /area/engineering/teg/coldloop) "ckD" = ( @@ -55138,7 +54886,6 @@ /turf/open/floor/plating, /area/maintenance/port/central) "cnr" = ( -/obj/machinery/atmospherics/pipe/simple/general/visible, /obj/structure/cable{ icon_state = "1-8" }, @@ -55554,7 +55301,6 @@ "coj" = ( /obj/machinery/door/firedoor, /obj/effect/turf_decal/delivery, -/obj/machinery/atmospherics/pipe/simple/scrubbers/visible, /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -55608,7 +55354,6 @@ id = "CEPrivacy"; name = "CE Privacy Shutters" }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/machinery/atmospherics/pipe/simple/cyan/hidden{ dir = 4 }, @@ -56156,13 +55901,6 @@ }, /turf/open/floor/plasteel, /area/science/research) -"cpk" = ( -/obj/machinery/atmospherics/pipe/manifold/general/visible{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/engineering/teg/coldloop) "cpl" = ( /obj/machinery/newscaster{ pixel_x = 30 @@ -56198,9 +55936,6 @@ /turf/open/floor/plasteel, /area/hallway/primary/central) "cpo" = ( -/obj/machinery/atmospherics/components/binary/pump/on{ - dir = 8 - }, /obj/structure/disposalpipe/segment{ dir = 5 }, @@ -56311,9 +56046,6 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/machinery/atmospherics/components/binary/valve/digital{ - dir = 4 - }, /turf/open/floor/plasteel, /area/engineering/teg/coldloop) "cpB" = ( @@ -56351,9 +56083,6 @@ /obj/effect/turf_decal/tile/blue{ dir = 4 }, -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 8 - }, /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -56494,30 +56223,11 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plasteel, /area/engineering/teg/coldloop) -"cpS" = ( -/obj/machinery/atmospherics/pipe/simple/general/visible{ - dir = 5 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/engineering/teg/coldloop) "cpT" = ( -/obj/machinery/atmospherics/components/binary/pump/on{ - dir = 8 - }, /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/pipe/simple/orange/hidden, /turf/open/floor/plasteel, /area/engineering/teg/coldloop) -"cpU" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/atmospherics/components/binary/valve/digital{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engineering/teg/coldloop) "cpV" = ( /obj/effect/turf_decal/tile/blue, /obj/effect/turf_decal/tile/blue{ @@ -56529,9 +56239,6 @@ /obj/effect/turf_decal/tile/blue{ dir = 4 }, -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 8 - }, /obj/machinery/light{ dir = 4; light_color = "#c1caff" @@ -56810,7 +56517,6 @@ /obj/effect/turf_decal/tile/yellow{ dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/visible, /obj/machinery/light{ dir = 1 }, @@ -56823,7 +56529,6 @@ /turf/open/floor/plasteel, /area/engineering/break_room) "cqw" = ( -/obj/machinery/atmospherics/pipe/simple/supply/visible, /obj/machinery/disposal/bin, /obj/machinery/light{ dir = 1 @@ -58933,13 +58638,6 @@ }, /turf/open/floor/engine, /area/science/xenobiology) -"cuo" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 - }, -/turf/open/floor/plating, -/area/hallway/primary/aft) "cup" = ( /obj/effect/turf_decal/tile/blue{ dir = 1 @@ -59181,10 +58879,6 @@ }, /turf/open/floor/plasteel, /area/engineering/workshop) -"cuN" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/visible, -/turf/closed/wall, -/area/engineering/workshop) "cuO" = ( /obj/effect/turf_decal/tile/yellow, /obj/effect/turf_decal/tile/yellow{ @@ -59373,11 +59067,6 @@ }, /turf/open/floor/plasteel, /area/engineering/workshop) -"cvi" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/engineering/workshop) "cvj" = ( /obj/machinery/light_switch{ pixel_x = -24 @@ -62660,19 +62349,6 @@ }, /turf/open/floor/plasteel, /area/engineering/break_room) -"cBy" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/visible, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/cable{ - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/engineering/break_room) "cBz" = ( /obj/structure/filingcabinet/filingcabinet, /obj/effect/turf_decal/tile/brown{ @@ -62709,7 +62385,6 @@ /area/hallway/primary/aft) "cBB" = ( /obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /obj/machinery/atmospherics/pipe/simple/cyan/hidden{ dir = 4 }, @@ -62796,7 +62471,6 @@ dir = 8 }, /obj/structure/table/wood, -/obj/machinery/atmospherics/pipe/simple/scrubbers/visible, /obj/machinery/power/apc{ name = "Engineering Foyer APC"; pixel_y = -24 @@ -66977,18 +66651,6 @@ }, /turf/open/floor/plasteel, /area/hallway/primary/aft) -"cIR" = ( -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/delivery, -/obj/machinery/atmospherics/pipe/simple/scrubbers/visible, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) "cIS" = ( /obj/structure/disposalpipe/segment, /obj/structure/disposalpipe/segment{ @@ -67098,7 +66760,6 @@ "cJb" = ( /obj/machinery/door/firedoor, /obj/effect/turf_decal/delivery, -/obj/machinery/atmospherics/pipe/simple/supply/visible, /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -67609,12 +67270,6 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/plasteel, /area/engineering/storage) -"cKb" = ( -/obj/machinery/atmospherics/pipe/simple/supply/visible{ - dir = 10 - }, -/turf/closed/wall/r_wall, -/area/engineering/storage) "cKc" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/sign/warning/securearea, @@ -69080,31 +68735,12 @@ }, /turf/open/floor/plasteel, /area/security/checkpoint/supply) -"cNr" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 6 - }, -/turf/open/floor/plating, -/area/engineering/workshop) -"cNs" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ - dir = 4 - }, -/turf/closed/wall, -/area/engineering/workshop) "cNt" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ - dir = 4 - }, /obj/structure/disposalpipe/segment, /turf/closed/wall, /area/engineering/workshop) "cNu" = ( /obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ - dir = 4 - }, /obj/machinery/door/airlock/engineering{ name = "Engineering Workshop"; req_access_txt = "11" @@ -69116,12 +68752,6 @@ /obj/machinery/atmospherics/pipe/simple/orange/hidden, /turf/open/floor/plasteel, /area/engineering/workshop) -"cNv" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ - dir = 9 - }, -/turf/closed/wall, -/area/engineering/workshop) "cNw" = ( /turf/closed/wall/r_wall, /area/router/air) @@ -69227,22 +68857,6 @@ }, /turf/open/floor/plasteel/white, /area/medical/medbay/central) -"cNK" = ( -/obj/machinery/atmospherics/components/unary/outlet_injector/on{ - dir = 4 - }, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/engineering/teg/hotloop) -"cNL" = ( -/obj/machinery/atmospherics/components/unary/outlet_injector/on{ - dir = 8 - }, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/engineering/teg/coldloop) "cNM" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/rack, @@ -108058,8 +107672,8 @@ cfo cfB cfH cfW -cgo -cgU +bzU +chs chs chs chZ @@ -109107,12 +108721,12 @@ cvc dKa cuV cNc -cNr -byT -cIR +cvr +bcT +cJb coj -byT -bzY +bcT +bcT aaU aaa aaa @@ -109364,12 +108978,12 @@ cuV cyz cuV cNd -cNs +ctG beY cIM cgB btl -bBl +bcT aaU aaa aaa @@ -109599,14 +109213,14 @@ aQB aQT aSf aTj -aUe +aUf aXP aUf aUf aUf aUf bgJ -blp +bcv bmK bov bqR @@ -109626,7 +109240,7 @@ beZ cIS coz fkx -bBl +bcT aaU aaU aaU @@ -109855,16 +109469,16 @@ ceX aQC aQX aSr -aUe -aUe -aYb +aUf +aUf +bhc bbi bbi bbi bbi -bgR -blp -aUe +bhc +bUn +bIp bow bqS aQC @@ -109885,7 +109499,7 @@ coD bub bIo aaU -cNK +aaU aaU buo bBZ @@ -110121,10 +109735,10 @@ bbt bbt bha bme -aUf +aWX bow -brb -bAR +bqS +aQC cqu bwR cBx @@ -110135,14 +109749,14 @@ cvh cBm cJy cNg -cNs +ctG cIB cMG cVq fui -bBl +bcT +aaU aaU -bIm aaU bui buo @@ -110378,28 +109992,28 @@ bbx bes bhc bmf -aUf -boB -bru -bAT +bgR +bow +bqS +bBE cqv -bwV -cBy +bwR +cBn cBJ -cdy -cuN -cvi +cdC +ctG +cvr cBB -cvi -cuN -cNv +cvr +ctG +ctG bhT cMG cVq fui bzr -byT -cfc +bcT +bcT bcT bvb bCA @@ -110622,12 +110236,12 @@ aPO aPR aQd aQq -aQu +aPR aQI aRr aSG aUf -aVB +aVf aZc bbz bcO @@ -111133,7 +110747,7 @@ aYU cxb bsz aPO -aQc +aQu aQk aQt aQu @@ -111398,7 +111012,7 @@ atF aRJ aSK aUf -aWX +aVf ban bbZ bdl @@ -111406,28 +111020,28 @@ bbZ bfF bkp bni -aUf -bpa -btk +aVB +bpb +bqS bBE cqw -bSx -bQG +bwR +cBx cbd cdB -biL -bkD +biQ +biR cop -bkD -biL -boa +biR +biQ +biQ bhT cIW cIZ cym -bzU -bzV -cuo +bzr +bcT +bcT bcT bBa bJR @@ -111652,7 +111266,7 @@ ciT cJD cmu atF -aRL +bqS aSL aUf aXh @@ -111663,10 +111277,10 @@ bbt bbt bkq bnn -aUf +boa bpb bvv -bBO +aQC cqx bwP bQH @@ -111677,14 +111291,14 @@ cjY cot blt cse -bob +biQ cjz bjm cIM cym -bIp +bcT +aaU aaU -bIx aaU bui buo @@ -111912,7 +111526,7 @@ cJI aRR aST aUt -aUe +aUf baU bcu bdW @@ -111934,14 +111548,14 @@ bjy cou csd byr -bob +biQ bhY bXW cJa cyn bQR aaU -cNL +aaU aaU buo bNH @@ -112166,17 +111780,17 @@ cmh cmp atF atF -aRV +bqS aRV aTC -aUe -aXP +aUf +boa bcv aUf aUf bfJ -bgJ -blp +boa +bcv bny bpb bqS @@ -112191,12 +111805,12 @@ ciK ctd cwC bmw -bob +biQ bia bXX cIM ovF -bIp +bcT aaU aaU aaU @@ -112423,7 +112037,7 @@ aus aus cmw atF -aRY +bqS aTc aTQ aUU @@ -112448,12 +112062,12 @@ bXf bkG cwP ctn -bob +biQ bib bXX cIM bty -bIp +bcT aaU aaa aaa @@ -112686,8 +112300,8 @@ cfw cJM aYL aYL -cKb -chE +aYL +cjK cie cjK ckm @@ -112705,12 +112319,12 @@ biQ biQ biQ biQ -boc -bzV +biQ +bcT bYm cJb -bzV -bUn +bcT +bcT aaU aaa aaa @@ -113206,8 +112820,8 @@ ciD cjU ckC cnr -cpk -cpS +cqD +cqD cqc cqA cqL @@ -113721,7 +113335,7 @@ ckm ckm ckm cpA -cpU +cqO cqo cqD cqO From 5baaecab68f30105027385d7b25b6f7e81c4c70e Mon Sep 17 00:00:00 2001 From: evilew Date: Thu, 8 May 2025 02:32:45 +0200 Subject: [PATCH 05/17] bar update working on bar more --- _maps/map_files/CogStation/CogStation.dmm | 1051 +++++++++++++++------ 1 file changed, 785 insertions(+), 266 deletions(-) diff --git a/_maps/map_files/CogStation/CogStation.dmm b/_maps/map_files/CogStation/CogStation.dmm index a3abdd1115..9a7a3df513 100644 --- a/_maps/map_files/CogStation/CogStation.dmm +++ b/_maps/map_files/CogStation/CogStation.dmm @@ -3498,9 +3498,9 @@ /turf/open/floor/plasteel/checker, /area/service/theater/mime) "aiv" = ( -/obj/structure/table, /obj/machinery/chem_dispenser/drinks/beer, /obj/effect/turf_decal/stripes/line, +/obj/structure/table/glass, /turf/open/floor/plasteel, /area/service/bar) "aiw" = ( @@ -3730,9 +3730,6 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{ - dir = 1 - }, /turf/open/floor/plating, /area/maintenance/starboard/fore) "ajc" = ( @@ -3747,12 +3744,12 @@ /obj/structure/cable{ icon_state = "2-4" }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, /obj/structure/disposalpipe/segment{ dir = 4 }, +/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{ + dir = 1 + }, /turf/open/floor/plating, /area/maintenance/starboard/fore) "aje" = ( @@ -3789,16 +3786,13 @@ }, /area/hallway/secondary/entry) "aji" = ( -/obj/effect/turf_decal/loading_area{ - icon_state = "drain"; - name = "drain" - }, -/turf/open/floor/plasteel, +/turf/open/floor/mineral/basaltstone_floor, /area/service/bar) "ajj" = ( /obj/structure/cable{ icon_state = "1-8" }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden, /turf/open/floor/plating, /area/maintenance/starboard/fore) "ajk" = ( @@ -3871,7 +3865,6 @@ "ajs" = ( /obj/structure/table, /obj/item/reagent_containers/food/snacks/mint, -/obj/item/reagent_containers/food/condiment/mayonnaise, /obj/item/bikehorn{ pixel_x = -8; pixel_y = 8 @@ -3957,6 +3950,7 @@ /area/maintenance/port/fore) "ajD" = ( /obj/structure/table, +/obj/item/reagent_containers/food/condiment/mayonnaise, /turf/open/floor/plasteel/cafeteria, /area/service/kitchen) "ajE" = ( @@ -4193,7 +4187,11 @@ /obj/structure/sign/barsign{ pixel_y = 32 }, -/turf/open/floor/plasteel, +/obj/structure/chair/sofa/left{ + color = "#c45c57"; + dir = 4 + }, +/turf/open/floor/carpet, /area/service/bar) "ake" = ( /obj/machinery/firealarm{ @@ -4511,7 +4509,11 @@ /area/security/brig) "akM" = ( /obj/machinery/atmospherics/pipe/simple/supplymain/hidden, -/turf/open/floor/plasteel, +/obj/structure/chair/stool/bar{ + pixel_x = -5 + }, +/obj/effect/landmark/start/assistant, +/turf/open/floor/carpet, /area/service/bar) "akN" = ( /obj/structure/chair/stool, @@ -4923,13 +4925,13 @@ /turf/open/floor/carpet/blue, /area/commons/dorms/blue) "alR" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, /obj/structure/cable{ icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/orange/hidden, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, /turf/open/floor/plasteel/dark/corner, /area/hallway/secondary/entry) "alS" = ( @@ -5072,9 +5074,6 @@ dir = 8 }, /obj/machinery/light, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, /obj/structure/cable{ icon_state = "4-8" }, @@ -5135,9 +5134,6 @@ /area/maintenance/solars/port) "amr" = ( /obj/machinery/door/firedoor, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, /obj/structure/cable{ icon_state = "4-8" }, @@ -5159,10 +5155,6 @@ /obj/structure/cable{ icon_state = "4-8" }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden, -/obj/structure/disposalpipe/segment{ - dir = 10 - }, /turf/open/floor/plating, /area/maintenance/starboard/fore) "amu" = ( @@ -5225,14 +5217,20 @@ /turf/open/floor/plating, /area/maintenance/starboard/fore) "amE" = ( -/obj/structure/cable, -/obj/machinery/power/apc/highcap/five_k{ - areastring = "/area/service/bar"; - dir = 8; - name = "Bar APC"; - pixel_x = -25 +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/plasteel, +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/tile/bar{ + dir = 1 + }, +/obj/effect/turf_decal/tile/bar{ + dir = 8 + }, +/obj/item/kirbyplants{ + icon_state = "plant-10" + }, +/turf/open/floor/mineral/basaltstone_floor, /area/service/bar) "amF" = ( /obj/effect/landmark/start/cook, @@ -5627,7 +5625,7 @@ /obj/machinery/atmospherics/pipe/simple/orange/hidden{ dir = 8 }, -/turf/open/floor/plasteel, +/turf/open/floor/wood, /area/service/bar) "anA" = ( /obj/machinery/door/firedoor, @@ -5652,7 +5650,7 @@ /obj/machinery/atmospherics/pipe/manifold/orange/hidden{ dir = 4 }, -/turf/open/floor/plasteel, +/turf/open/floor/wood, /area/service/bar) "anE" = ( /obj/machinery/vending/games, @@ -5670,14 +5668,12 @@ /turf/open/floor/plating, /area/maintenance/starboard/fore) "anH" = ( -/obj/machinery/door/firedoor, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden, -/obj/machinery/door/airlock/security{ - name = "Security Checkpoint"; - req_access_txt = "1" +/obj/structure/cable{ + icon_state = "1-2" }, -/turf/open/floor/plating, +/obj/structure/table/wood, +/obj/item/ashtray, +/turf/open/floor/carpet, /area/service/bar) "anI" = ( /obj/machinery/portable_atmospherics/scrubber, @@ -5695,10 +5691,17 @@ /turf/open/floor/plasteel, /area/commons/storage/emergency) "anJ" = ( -/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ +/obj/effect/turf_decal/tile/bar{ + dir = 1 + }, +/obj/effect/turf_decal/tile/bar{ dir = 4 }, -/turf/open/floor/plasteel, +/obj/machinery/light{ + dir = 1 + }, +/obj/effect/turf_decal/tile/bar, +/turf/open/floor/mineral/basaltstone_floor, /area/service/bar) "anK" = ( /turf/closed/wall/r_wall, @@ -5997,7 +6000,7 @@ dir = 8; pixel_x = 28 }, -/turf/open/floor/plasteel, +/turf/open/floor/wood, /area/service/bar) "aov" = ( /obj/machinery/hydroponics/constructable, @@ -6018,7 +6021,9 @@ c_tag = "Security Checkpoint"; pixel_x = 22 }, -/turf/open/floor/plasteel, +/obj/structure/table/wood, +/obj/item/ashtray, +/turf/open/floor/carpet, /area/service/bar) "aoz" = ( /obj/structure/closet, @@ -6070,10 +6075,18 @@ /turf/open/floor/plasteel, /area/commons/fitness) "aoD" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 4 +/obj/structure/table/wood, +/obj/item/reagent_containers/food/condiment/peppermill{ + desc = "Often used to flavor food or make people sneeze. Fashionably moved to the left side of the table."; + pixel_x = -8; + pixel_y = 2 }, -/turf/open/floor/plasteel, +/obj/item/reagent_containers/food/condiment/saltshaker{ + desc = "Salt. From space oceans, presumably. A staple of modern medicine."; + pixel_x = -8; + pixel_y = 12 + }, +/turf/open/floor/carpet, /area/service/bar) "aoE" = ( /obj/structure/disposalpipe/segment{ @@ -6085,10 +6098,14 @@ /turf/closed/wall/r_wall, /area/security/office) "aoG" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 9 +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 4 }, -/turf/open/floor/plasteel, +/obj/structure/chair/sofa/left{ + color = "#c45c57"; + dir = 8 + }, +/turf/open/floor/carpet, /area/service/bar) "aoH" = ( /obj/machinery/door/airlock/external/glass{ @@ -6611,6 +6628,7 @@ /obj/item/radio/intercom{ name = "Station Intercom (Common)" }, +/obj/item/book/lorebooks/welcome_to_gato, /turf/open/floor/wood, /area/commons/fitness) "apQ" = ( @@ -6625,10 +6643,8 @@ /turf/open/floor/plasteel, /area/security/brig) "apR" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 8 - }, -/turf/open/floor/plasteel, +/obj/effect/spawner/structure/window, +/turf/open/floor/plating, /area/service/bar) "apS" = ( /obj/structure/cable{ @@ -6766,11 +6782,7 @@ name = "Station Intercom (Common)"; pixel_x = 26 }, -/obj/machinery/light{ - dir = 4; - light_color = "#e8eaff" - }, -/turf/open/floor/plasteel, +/turf/open/floor/wood, /area/service/bar) "aqk" = ( /obj/structure/lattice/catwalk, @@ -7692,7 +7704,7 @@ /obj/machinery/atmospherics/pipe/simple/orange/hidden{ dir = 8 }, -/turf/open/floor/plasteel, +/turf/open/floor/wood, /area/service/bar) "ash" = ( /obj/machinery/light_switch{ @@ -9497,7 +9509,11 @@ dir = 8; pixel_x = 23 }, -/turf/open/floor/plasteel, +/obj/machinery/light{ + dir = 4; + light_color = "#e8eaff" + }, +/turf/open/floor/wood, /area/service/bar) "awi" = ( /obj/effect/turf_decal/bot, @@ -9603,8 +9619,14 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/structure/chair/stool/bar, -/turf/open/floor/carpet, +/obj/structure/chair/stool/bar{ + pixel_y = 8 + }, +/obj/effect/turf_decal/loading_area{ + icon_state = "drain"; + name = "drain" + }, +/turf/open/floor/carpet/black, /area/service/bar) "awu" = ( /obj/machinery/atmospherics/pipe/manifold/general/visible, @@ -9675,6 +9697,7 @@ icon_state = "drain"; name = "drain" }, +/obj/item/storage/box/donkpockets, /turf/open/floor/plasteel/dark, /area/service/bar) "awC" = ( @@ -10273,11 +10296,8 @@ /turf/open/floor/plasteel, /area/tcommsat/computer) "axG" = ( -/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ - dir = 4 - }, /obj/machinery/atmospherics/pipe/simple/orange/hidden, -/turf/open/floor/plasteel, +/turf/open/floor/wood, /area/service/bar) "axH" = ( /obj/effect/turf_decal/stripes/line{ @@ -11100,13 +11120,6 @@ /turf/open/floor/plating, /area/space/nearstation) "azr" = ( -/obj/machinery/disposal/bin, -/obj/machinery/light_switch{ - pixel_y = 24 - }, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, /obj/item/radio/intercom{ name = "Station Intercom (Common)"; pixel_x = 26 @@ -11115,7 +11128,8 @@ dir = 4; light_color = "#e8eaff" }, -/turf/open/floor/plasteel, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden, +/turf/open/floor/wood, /area/service/bar) "azs" = ( /obj/machinery/atmospherics/pipe/simple/orange/hidden{ @@ -11437,7 +11451,7 @@ "aAb" = ( /obj/effect/landmark/event_spawn, /obj/machinery/atmospherics/pipe/simple/supplymain/hidden, -/turf/open/floor/plasteel, +/turf/open/floor/mineral/basaltstone_floor, /area/service/bar) "aAc" = ( /obj/machinery/space_heater, @@ -11572,7 +11586,7 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/closed/wall/r_wall, +/turf/closed/wall, /area/service/bar) "aAq" = ( /obj/structure/sink{ @@ -11640,14 +11654,13 @@ /turf/open/floor/catwalk_floor, /area/maintenance/fore) "aAy" = ( -/obj/item/kirbyplants{ - icon_state = "plant-14" - }, /obj/effect/turf_decal/loading_area{ dir = 4; icon_state = "drain"; name = "drain" }, +/obj/structure/bedsheetbin/towel, +/obj/structure/table, /turf/open/floor/plasteel/white, /area/commons/fitness/cogpool) "aAz" = ( @@ -11824,11 +11837,11 @@ /turf/open/floor/plating, /area/security/brig) "aAQ" = ( -/obj/structure/disposalpipe/segment{ - dir = 5 +/obj/structure/chair/sofa/right{ + color = "#c45c57"; + dir = 8 }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden, -/turf/open/floor/plasteel, +/turf/open/floor/carpet, /area/service/bar) "aAR" = ( /obj/structure/disposalpipe/segment, @@ -12358,8 +12371,13 @@ /obj/item/toy/figure/bartender{ pixel_x = 4 }, -/obj/structure/table/wood/fancy, -/turf/open/floor/carpet, +/obj/effect/turf_decal/loading_area{ + dir = 8; + icon_state = "drain"; + name = "drain" + }, +/obj/structure/table/reinforced, +/turf/open/floor/plasteel/dark, /area/service/bar) "aBU" = ( /obj/structure/window/reinforced/tinted, @@ -12377,15 +12395,15 @@ "aBW" = ( /obj/structure/window/reinforced, /obj/item/clothing/head/hardhat/cakehat, -/obj/structure/table/wood/fancy, -/turf/open/floor/carpet, +/obj/structure/table/reinforced, +/turf/open/floor/plasteel/dark, /area/service/bar) "aBX" = ( -/obj/structure/table, /obj/machinery/chem_dispenser/drinks, /obj/effect/turf_decal/stripes/line{ dir = 10 }, +/obj/structure/table/glass, /turf/open/floor/plasteel, /area/service/bar) "aBY" = ( @@ -12640,8 +12658,6 @@ /turf/open/floor/plasteel, /area/commons/locker) "aCB" = ( -/obj/structure/chair/stool/bar, -/obj/effect/landmark/start/assistant, /obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ dir = 4 }, @@ -12650,16 +12666,16 @@ icon_state = "drain"; name = "drain" }, -/turf/open/floor/carpet, +/obj/structure/chair/stool/bar{ + pixel_x = 4 + }, +/turf/open/floor/carpet/black, /area/service/bar) "aCC" = ( /obj/structure/disposalpipe/segment, /turf/closed/wall, /area/security/prison) "aCD" = ( -/obj/item/trash/plate, -/obj/item/kitchen/fork, -/obj/structure/table/wood/fancy, /obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ dir = 4 }, @@ -12668,6 +12684,7 @@ icon_state = "drain"; name = "drain" }, +/obj/structure/table/reinforced, /turf/open/floor/plasteel/dark, /area/service/bar) "aCE" = ( @@ -12763,7 +12780,7 @@ /obj/machinery/atmospherics/pipe/manifold/supplymain/hidden{ dir = 8 }, -/turf/open/floor/plasteel, +/turf/open/floor/mineral/basaltstone_floor, /area/service/bar) "aCO" = ( /obj/structure/window/reinforced{ @@ -13621,7 +13638,6 @@ /turf/open/floor/plasteel, /area/service/hydroponics/lobby) "aEA" = ( -/obj/machinery/disposal/bin, /obj/machinery/light{ dir = 8; light_color = "#e8eaff" @@ -13629,8 +13645,15 @@ /obj/machinery/computer/security/telescreen/entertainment{ pixel_x = -32 }, -/obj/structure/disposalpipe/trunk, -/turf/open/floor/plasteel, +/obj/effect/turf_decal/tile/bar{ + dir = 1 + }, +/obj/effect/turf_decal/tile/bar{ + dir = 8 + }, +/obj/item/ashtray, +/obj/structure/table/glass, +/turf/open/floor/mineral/basaltstone_floor, /area/service/bar) "aEB" = ( /obj/structure/disposalpipe/segment{ @@ -14287,8 +14310,8 @@ /obj/structure/disposalpipe/trunk{ dir = 4 }, -/obj/structure/table/wood/fancy, -/turf/open/floor/carpet, +/obj/structure/table/reinforced, +/turf/open/floor/plasteel/dark, /area/service/bar) "aFW" = ( /obj/machinery/atmospherics/pipe/simple/orange/hidden{ @@ -14971,7 +14994,7 @@ /area/security/prison) "aHh" = ( /obj/machinery/atmospherics/pipe/simple/orange/hidden, -/turf/open/floor/plasteel, +/turf/open/floor/mineral/basaltstone_floor, /area/service/bar) "aHi" = ( /obj/structure/chair/stool, @@ -15007,7 +15030,7 @@ dir = 4 }, /obj/machinery/atmospherics/pipe/simple/supplymain/hidden, -/turf/open/floor/plasteel, +/turf/open/floor/mineral/basaltstone_floor, /area/service/bar) "aHm" = ( /obj/machinery/portable_atmospherics/canister/air, @@ -15393,10 +15416,10 @@ /turf/open/floor/plasteel, /area/commons/locker) "aIf" = ( -/obj/machinery/space_heater, -/obj/structure/sign/poster/official/no_erp{ - pixel_y = 32 +/obj/structure/sink{ + pixel_y = 28 }, +/obj/item/reagent_containers/glass/bucket/wood, /turf/open/floor/wood, /area/commons/fitness/cogpool) "aIg" = ( @@ -16479,7 +16502,7 @@ dir = 4; light_color = "#d8b1b1" }, -/obj/structure/bedsheetbin/towel, +/obj/structure/sauna_oven, /turf/open/floor/wood, /area/commons/fitness/cogpool) "aKk" = ( @@ -16571,7 +16594,11 @@ /area/commons/storage/emergency) "aKs" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on, -/turf/open/floor/plasteel, +/obj/structure/chair/sofa/right{ + color = "#c45c57"; + dir = 8 + }, +/turf/open/floor/carpet, /area/service/bar) "aKt" = ( /obj/effect/turf_decal/delivery, @@ -16648,7 +16675,6 @@ /turf/open/floor/carpet/royalblue, /area/command/bridge) "aKB" = ( -/obj/structure/chair/stool/bar, /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -16657,7 +16683,14 @@ icon_state = "drain"; name = "drain" }, -/turf/open/floor/carpet, +/obj/effect/turf_decal/loading_area{ + icon_state = "drain"; + name = "drain" + }, +/obj/structure/chair/stool/bar{ + pixel_y = 8 + }, +/turf/open/floor/carpet/black, /area/service/bar) "aKC" = ( /obj/machinery/door/firedoor, @@ -17161,10 +17194,10 @@ /turf/open/floor/plasteel/dark, /area/command/bridge) "aLF" = ( -/obj/structure/chair/stool, /obj/machinery/atmospherics/pipe/heat_exchanging/junction{ dir = 4 }, +/obj/structure/chair/bench/left, /turf/open/floor/wood, /area/commons/fitness/cogpool) "aLG" = ( @@ -17242,10 +17275,10 @@ /turf/open/floor/plasteel/dark, /area/service/chapel/main) "aLO" = ( -/obj/structure/chair/stool, /obj/machinery/atmospherics/pipe/heat_exchanging/simple{ dir = 4 }, +/obj/structure/chair/bench, /turf/open/floor/wood, /area/commons/fitness/cogpool) "aLP" = ( @@ -17361,7 +17394,6 @@ /turf/open/floor/carpet, /area/security/courtroom) "aMa" = ( -/obj/structure/chair/stool, /obj/machinery/camera{ c_tag = "Pool - Sauna"; dir = 8; @@ -17370,6 +17402,8 @@ /obj/machinery/atmospherics/pipe/heat_exchanging/junction{ dir = 8 }, +/obj/structure/chair/bench/right, +/obj/item/stack/sheet/mineral/wood/fifty, /turf/open/floor/wood, /area/commons/fitness/cogpool) "aMb" = ( @@ -17596,7 +17630,7 @@ /obj/machinery/atmospherics/pipe/manifold/orange/hidden{ dir = 8 }, -/turf/open/floor/plasteel, +/turf/open/floor/wood, /area/service/bar) "aMz" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ @@ -17614,7 +17648,7 @@ /obj/machinery/atmospherics/pipe/simple/orange/hidden{ dir = 8 }, -/turf/open/floor/plasteel, +/turf/open/floor/wood, /area/service/bar) "aMD" = ( /turf/closed/wall/rust, @@ -17951,7 +17985,11 @@ /area/security/courtroom) "aNl" = ( /obj/machinery/atmospherics/pipe/manifold/orange/hidden, -/turf/open/floor/plasteel, +/obj/structure/chair/sofa/left{ + color = "#c45c57"; + dir = 8 + }, +/turf/open/floor/carpet, /area/service/bar) "aNm" = ( /obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ @@ -18253,7 +18291,14 @@ c_tag = "Bar - Port"; dir = 4 }, -/turf/open/floor/plasteel, +/obj/effect/turf_decal/tile/bar{ + dir = 1 + }, +/obj/effect/turf_decal/tile/bar{ + dir = 8 + }, +/obj/structure/chair/comfy, +/turf/open/floor/mineral/basaltstone_floor, /area/service/bar) "aNY" = ( /obj/machinery/navbeacon{ @@ -18261,7 +18306,7 @@ location = "bar" }, /obj/machinery/atmospherics/pipe/manifold/supplymain/hidden, -/turf/open/floor/plasteel, +/turf/open/floor/mineral/basaltstone_floor, /area/service/bar) "aNZ" = ( /obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ @@ -19914,13 +19959,20 @@ /turf/open/floor/plasteel, /area/hallway/secondary/civilian) "aRM" = ( -/obj/structure/chair/stool/bar, /obj/effect/turf_decal/loading_area{ dir = 8; icon_state = "drain"; name = "drain" }, -/turf/open/floor/carpet, +/obj/effect/turf_decal/loading_area{ + dir = 1; + icon_state = "drain"; + name = "drain" + }, +/obj/structure/chair/stool/bar{ + pixel_x = 4 + }, +/turf/open/floor/carpet/black, /area/service/bar) "aRN" = ( /obj/effect/turf_decal/tile/neutral, @@ -20004,7 +20056,7 @@ /obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ dir = 4 }, -/turf/open/floor/plasteel, +/turf/open/floor/mineral/basaltstone_floor, /area/service/bar) "aRU" = ( /obj/machinery/atmospherics/pipe/simple/cyan/hidden{ @@ -20280,12 +20332,7 @@ /obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ dir = 4 }, -/obj/effect/turf_decal/loading_area{ - dir = 1; - icon_state = "drain"; - name = "drain" - }, -/turf/open/floor/plasteel, +/turf/open/floor/mineral/basaltstone_floor, /area/service/bar) "aSE" = ( /obj/machinery/door/firedoor, @@ -22374,7 +22421,11 @@ /obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ dir = 4 }, -/turf/open/floor/plasteel, +/obj/effect/turf_decal/tile/bar, +/obj/effect/turf_decal/tile/bar{ + dir = 4 + }, +/turf/open/floor/mineral/basaltstone_floor, /area/service/bar) "aXo" = ( /obj/effect/turf_decal/stripes/line{ @@ -23809,26 +23860,51 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/machinery/holopad, +/obj/machinery/holopad{ + pixel_y = 3; + pixel_x = 3 + }, /obj/effect/turf_decal/loading_area{ dir = 8; icon_state = "drain"; name = "drain" }, -/turf/open/floor/carpet, +/obj/effect/turf_decal/loading_area{ + icon_state = "drain"; + name = "drain" + }, +/turf/open/floor/carpet/black, /area/service/bar) "bas" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/plasteel, +/obj/effect/turf_decal/tile/bar{ + dir = 8 + }, +/obj/effect/turf_decal/tile/bar{ + dir = 1 + }, +/obj/effect/turf_decal/tile/bar{ + dir = 4 + }, +/obj/item/kirbyplants{ + icon_state = "plant-10" + }, +/turf/open/floor/mineral/basaltstone_floor, /area/service/bar) "bat" = ( -/obj/structure/chair/stool/bar, /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/carpet, +/obj/effect/turf_decal/loading_area{ + icon_state = "drain"; + name = "drain" + }, +/obj/structure/chair/stool/bar{ + pixel_y = 8 + }, +/turf/open/floor/carpet/black, /area/service/bar) "bau" = ( /obj/effect/turf_decal/stripes/line{ @@ -30556,7 +30632,6 @@ pixel_y = 4 }, /obj/structure/table/wood/fancy, -/obj/item/storage/box/donkpockets, /obj/effect/turf_decal/loading_area{ dir = 8; icon_state = "drain"; @@ -31451,6 +31526,7 @@ name = "Bar" }, /obj/effect/turf_decal/delivery, +/obj/structure/disposalpipe/segment, /turf/open/floor/plasteel, /area/hallway/secondary/entry) "bqR" = ( @@ -33178,20 +33254,13 @@ /turf/open/floor/plating, /area/command/heads_quarters/captain) "buP" = ( -/obj/item/trash/plate, -/obj/item/lighter/greyscale, -/obj/item/clothing/mask/cigarette/cigar/cohiba, -/obj/structure/table/wood/fancy, /obj/effect/turf_decal/loading_area{ dir = 8; icon_state = "drain"; name = "drain" }, -/obj/effect/turf_decal/loading_area{ - dir = 1; - icon_state = "drain"; - name = "drain" - }, +/obj/item/storage/fancy/cigarettes/cigars/havana, +/obj/structure/table/reinforced, /turf/open/floor/plasteel/dark, /area/service/bar) "buQ" = ( @@ -33365,12 +33434,20 @@ /turf/open/floor/plasteel, /area/service/bar) "bvi" = ( -/obj/structure/disposalpipe/segment, /obj/machinery/airalarm{ dir = 4; pixel_x = -23 }, -/turf/open/floor/plasteel, +/obj/effect/turf_decal/tile/bar{ + dir = 1 + }, +/obj/effect/turf_decal/tile/bar{ + dir = 8 + }, +/obj/structure/chair/comfy{ + dir = 1 + }, +/turf/open/floor/mineral/basaltstone_floor, /area/service/bar) "bvj" = ( /obj/effect/turf_decal/stripes/line{ @@ -33386,14 +33463,12 @@ /turf/open/floor/plating, /area/maintenance/department/chapel) "bvl" = ( -/obj/item/trash/plate, -/obj/item/kitchen/fork, -/obj/structure/table/wood/fancy, /obj/effect/turf_decal/loading_area{ dir = 8; icon_state = "drain"; name = "drain" }, +/obj/structure/table/reinforced, /turf/open/floor/plasteel/dark, /area/service/bar) "bvm" = ( @@ -33534,8 +33609,15 @@ /turf/open/floor/carpet, /area/service/chapel/main) "bvF" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel, +/obj/structure/disposalpipe/trunk, +/obj/machinery/disposal/bin, +/obj/effect/turf_decal/tile/bar{ + dir = 1 + }, +/obj/effect/turf_decal/tile/bar{ + dir = 8 + }, +/turf/open/floor/mineral/basaltstone_floor, /area/service/bar) "bvG" = ( /obj/structure/table/wood, @@ -33546,8 +33628,14 @@ /turf/open/floor/plasteel/grimy, /area/security/detectives_office) "bvH" = ( -/obj/structure/disposalpipe/segment, -/turf/closed/wall/r_wall, +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden, +/obj/effect/turf_decal/tile/bar{ + dir = 1 + }, +/obj/effect/turf_decal/tile/bar{ + dir = 4 + }, +/turf/open/floor/mineral/basaltstone_floor, /area/service/bar) "bvI" = ( /obj/effect/decal/cleanable/dirt, @@ -33585,7 +33673,17 @@ dir = 4 }, /obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel, +/obj/effect/turf_decal/tile/bar{ + dir = 4 + }, +/obj/effect/turf_decal/tile/bar{ + dir = 1 + }, +/obj/effect/turf_decal/tile/bar, +/obj/item/kirbyplants{ + icon_state = "plant-10" + }, +/turf/open/floor/mineral/basaltstone_floor, /area/service/bar) "bvM" = ( /obj/structure/lattice, @@ -33693,8 +33791,6 @@ /turf/open/floor/plating, /area/engineering/main) "bvZ" = ( -/obj/item/folder, -/obj/structure/table/wood/fancy, /obj/effect/turf_decal/loading_area{ dir = 8; icon_state = "drain"; @@ -33704,6 +33800,7 @@ icon_state = "drain"; name = "drain" }, +/obj/structure/table/reinforced, /turf/open/floor/plasteel/dark, /area/service/bar) "bwa" = ( @@ -35572,27 +35669,12 @@ /turf/closed/wall/r_wall, /area/science/xenobiology) "bAh" = ( -/obj/item/reagent_containers/food/condiment/pack/mustard{ - pixel_x = 6; - pixel_y = 3 - }, -/obj/item/reagent_containers/food/condiment/pack/ketchup{ - pixel_x = -2; - pixel_y = 6 - }, -/obj/item/reagent_containers/food/condiment/peppermill{ - pixel_x = -5; - pixel_y = 7 - }, -/obj/item/reagent_containers/food/condiment/saltshaker{ - pixel_x = 1; - pixel_y = 3 - }, -/obj/structure/table/wood/fancy, /obj/effect/turf_decal/loading_area{ icon_state = "drain"; name = "drain" }, +/obj/item/lighter/greyscale, +/obj/structure/table/reinforced, /turf/open/floor/plasteel/dark, /area/service/bar) "bAi" = ( @@ -37067,11 +37149,11 @@ }, /obj/item/book/manual/wiki/barman_recipes, /obj/item/reagent_containers/rag, -/obj/structure/table/wood/fancy, /obj/effect/turf_decal/loading_area{ icon_state = "drain"; name = "drain" }, +/obj/structure/table/reinforced, /turf/open/floor/plasteel/dark, /area/service/bar) "bDv" = ( @@ -37461,7 +37543,7 @@ /turf/open/floor/plasteel/dark, /area/command/heads_quarters/hop) "bEn" = ( -/turf/open/floor/plasteel, +/turf/open/floor/wood, /area/service/bar) "bEo" = ( /obj/structure/cable{ @@ -37711,7 +37793,13 @@ /obj/structure/cable{ icon_state = "1-2" }, -/turf/open/floor/plasteel, +/obj/machinery/light{ + dir = 8; + light_color = "#e8eaff" + }, +/obj/structure/table/wood, +/obj/item/ashtray, +/turf/open/floor/carpet, /area/service/bar) "bEN" = ( /obj/machinery/computer/communications{ @@ -37744,20 +37832,21 @@ /obj/structure/cable{ icon_state = "1-2" }, -/turf/open/floor/plasteel, +/turf/open/floor/wood, /area/service/bar) "bEP" = ( -/obj/machinery/light{ +/obj/machinery/power/apc/highcap/five_k{ + areastring = "/area/service/bar"; dir = 8; - light_color = "#e8eaff" + name = "Bar APC"; + pixel_x = -25 }, -/obj/structure/sign/poster/official/high_class_martini{ - pixel_x = -32 +/obj/structure/cable, +/obj/structure/musician/piano{ + icon_state = "piano"; + pixel_y = 0 }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel, +/turf/open/floor/wood, /area/service/bar) "bEQ" = ( /obj/structure/cable{ @@ -37827,7 +37916,8 @@ /obj/structure/cable{ icon_state = "1-2" }, -/turf/open/floor/plasteel, +/obj/structure/table/wood, +/turf/open/floor/carpet, /area/service/bar) "bEY" = ( /obj/structure/disposalpipe/trunk{ @@ -61900,7 +61990,13 @@ dir = 4 }, /obj/machinery/atmospherics/pipe/simple/orange/hidden, -/turf/open/floor/plasteel, +/obj/effect/turf_decal/tile/bar{ + dir = 1 + }, +/obj/effect/turf_decal/tile/bar{ + dir = 4 + }, +/turf/open/floor/mineral/basaltstone_floor, /area/service/bar) "cBr" = ( /obj/effect/turf_decal/stripes/line{ @@ -62141,7 +62237,14 @@ /obj/machinery/atmospherics/pipe/simple/orange/hidden{ dir = 8 }, -/turf/open/floor/plasteel, +/obj/effect/turf_decal/tile/bar{ + dir = 8 + }, +/obj/effect/turf_decal/tile/bar{ + dir = 1 + }, +/obj/effect/turf_decal/tile/bar, +/turf/open/floor/mineral/basaltstone_floor, /area/service/bar) "cBN" = ( /obj/structure/window/reinforced, @@ -62154,7 +62257,11 @@ /obj/machinery/atmospherics/pipe/simple/orange/hidden{ dir = 8 }, -/turf/open/floor/plasteel, +/obj/effect/turf_decal/tile/bar{ + dir = 8 + }, +/obj/effect/turf_decal/tile/bar, +/turf/open/floor/mineral/basaltstone_floor, /area/service/bar) "cBO" = ( /obj/structure/window/reinforced, @@ -62166,7 +62273,11 @@ icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/manifold/orange/hidden, -/turf/open/floor/plasteel, +/obj/effect/turf_decal/tile/bar{ + dir = 8 + }, +/obj/effect/turf_decal/tile/bar, +/turf/open/floor/mineral/basaltstone_floor, /area/service/bar) "cBP" = ( /obj/structure/disposalpipe/segment{ @@ -62178,7 +62289,11 @@ /obj/machinery/atmospherics/pipe/simple/orange/hidden{ dir = 8 }, -/turf/open/floor/plasteel, +/obj/effect/turf_decal/tile/bar{ + dir = 8 + }, +/obj/effect/turf_decal/tile/bar, +/turf/open/floor/mineral/basaltstone_floor, /area/service/bar) "cBQ" = ( /obj/structure/disposalpipe/segment{ @@ -62190,10 +62305,12 @@ /obj/structure/cable{ icon_state = "2-4" }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ +/obj/machinery/atmospherics/pipe/manifold/orange/hidden, +/obj/effect/turf_decal/tile/bar{ dir = 8 }, -/turf/open/floor/plasteel, +/obj/effect/turf_decal/tile/bar, +/turf/open/floor/mineral/basaltstone_floor, /area/service/bar) "cBR" = ( /obj/structure/window/reinforced, @@ -62207,7 +62324,11 @@ /obj/machinery/atmospherics/pipe/simple/orange/hidden{ dir = 8 }, -/turf/open/floor/plasteel, +/obj/effect/turf_decal/tile/bar{ + dir = 8 + }, +/obj/effect/turf_decal/tile/bar, +/turf/open/floor/mineral/basaltstone_floor, /area/service/bar) "cBS" = ( /obj/structure/disposalpipe/segment{ @@ -62217,7 +62338,11 @@ icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/manifold4w/orange/hidden, -/turf/open/floor/plasteel, +/obj/effect/turf_decal/tile/bar{ + dir = 8 + }, +/obj/effect/turf_decal/tile/bar, +/turf/open/floor/mineral/basaltstone_floor, /area/service/bar) "cBT" = ( /obj/machinery/airalarm{ @@ -70415,6 +70540,24 @@ /obj/effect/landmark/start/station_engineer, /turf/open/floor/plasteel, /area/engineering/workshop) +"dKi" = ( +/obj/structure/chair/stool/bar{ + pixel_x = 4 + }, +/obj/effect/turf_decal/loading_area{ + dir = 8; + icon_state = "drain"; + name = "drain" + }, +/turf/open/floor/carpet/black, +/area/service/bar) +"dOu" = ( +/obj/machinery/atmospherics/pipe/simple/orange/hidden, +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ + dir = 4 + }, +/turf/open/floor/wood, +/area/service/bar) "dSZ" = ( /obj/effect/spawner/structure/window/reinforced, /obj/machinery/atmospherics/pipe/simple/cyan/visible{ @@ -70427,6 +70570,13 @@ /obj/machinery/atmospherics/pipe/simple/violet/visible, /turf/open/floor/plasteel, /area/engineering/atmos) +"dXO" = ( +/obj/structure/chair/sofa/left{ + color = "#c45c57"; + dir = 4 + }, +/turf/open/floor/carpet, +/area/service/bar) "dYm" = ( /obj/machinery/portable_atmospherics/canister/oxygen, /obj/effect/turf_decal/stripes/line{ @@ -70450,6 +70600,16 @@ }, /turf/open/floor/carpet, /area/space) +"esT" = ( +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 8 + }, +/obj/structure/chair/sofa/right{ + color = "#c45c57"; + dir = 4 + }, +/turf/open/floor/carpet, +/area/service/bar) "ewm" = ( /turf/closed/wall/r_wall, /area/space) @@ -70596,6 +70756,15 @@ }, /turf/open/space/basic, /area/space/nearstation) +"eZw" = ( +/obj/effect/turf_decal/tile/bar{ + dir = 1 + }, +/obj/effect/turf_decal/tile/bar{ + dir = 8 + }, +/turf/open/floor/mineral/basaltstone_floor, +/area/service/bar) "fgS" = ( /obj/machinery/atmospherics/pipe/simple/green/visible{ dir = 4 @@ -70660,6 +70829,23 @@ }, /turf/open/floor/wood, /area/space/nearstation) +"fNC" = ( +/obj/effect/turf_decal/tile/bar{ + dir = 4 + }, +/obj/effect/turf_decal/tile/bar, +/turf/open/floor/mineral/basaltstone_floor, +/area/service/bar) +"fWP" = ( +/obj/machinery/atmospherics/pipe/simple/orange/hidden, +/obj/effect/turf_decal/tile/bar{ + dir = 1 + }, +/obj/effect/turf_decal/tile/bar{ + dir = 4 + }, +/turf/open/floor/mineral/basaltstone_floor, +/area/service/bar) "fYi" = ( /obj/effect/turf_decal/tile/neutral{ dir = 4 @@ -70670,6 +70856,14 @@ /obj/effect/landmark/event_spawn, /turf/open/floor/plasteel/dark, /area/science/observatory) +"geT" = ( +/obj/structure/table, +/obj/item/storage/box/donkpockets{ + pixel_x = 6; + pixel_y = 6 + }, +/turf/open/floor/plasteel/cafeteria, +/area/service/kitchen) "gln" = ( /obj/effect/turf_decal/tile/neutral, /obj/effect/turf_decal/tile/neutral{ @@ -70695,6 +70889,13 @@ /obj/structure/lattice, /turf/open/space/basic, /area/space/nearstation) +"gBg" = ( +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden, +/turf/open/floor/mineral/basaltstone_floor, +/area/service/bar) "gCQ" = ( /obj/structure/flora/ausbushes/grassybush, /turf/open/floor/grass, @@ -70831,6 +71032,17 @@ /obj/machinery/atmospherics/pipe/simple/general/visible, /turf/open/floor/plasteel, /area/engineering/atmos) +"hQd" = ( +/obj/effect/turf_decal/tile/bar{ + dir = 1 + }, +/obj/effect/turf_decal/tile/bar{ + dir = 4 + }, +/obj/item/ashtray, +/obj/structure/table/glass, +/turf/open/floor/mineral/basaltstone_floor, +/area/service/bar) "ifC" = ( /obj/structure/lattice, /obj/machinery/atmospherics/pipe/manifold/orange/visible, @@ -70846,6 +71058,10 @@ /obj/structure/chair/beanbag, /turf/open/floor/carpet, /area/space) +"ire" = ( +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden, +/turf/open/floor/mineral/basaltstone_floor, +/area/service/bar) "isn" = ( /turf/open/floor/carpet, /area/space) @@ -70874,6 +71090,20 @@ /obj/structure/table/glass, /turf/open/floor/plasteel, /area/hallway/primary/aft) +"ixV" = ( +/obj/structure/table/wood, +/obj/item/reagent_containers/food/condiment/saltshaker{ + desc = "Salt. From space oceans, presumably. A staple of modern medicine."; + pixel_x = -8; + pixel_y = 12 + }, +/obj/item/reagent_containers/food/condiment/peppermill{ + desc = "Often used to flavor food or make people sneeze. Fashionably moved to the left side of the table."; + pixel_x = -8; + pixel_y = 2 + }, +/turf/open/floor/carpet, +/area/service/bar) "iCa" = ( /obj/effect/spawner/structure/window/reinforced, /obj/machinery/atmospherics/pipe/simple/cyan/hidden{ @@ -70945,6 +71175,14 @@ }, /turf/open/floor/plasteel, /area/engineering/atmos) +"jop" = ( +/obj/machinery/door/poddoor/shutters/preopen{ + id = "cog_gymshutter"; + name = "gym shutters" + }, +/obj/effect/spawner/structure/window, +/turf/open/floor/plating, +/area/commons/fitness) "jpv" = ( /obj/structure/trash_pile, /turf/open/floor/plating, @@ -70963,6 +71201,18 @@ /obj/effect/turf_decal/stripes/line, /turf/open/floor/plasteel, /area/science/observatory) +"jsw" = ( +/obj/effect/turf_decal/tile/bar{ + dir = 1 + }, +/obj/effect/turf_decal/tile/bar{ + dir = 8 + }, +/obj/item/kirbyplants{ + icon_state = "plant-10" + }, +/turf/open/floor/mineral/basaltstone_floor, +/area/service/bar) "jyu" = ( /obj/structure/lattice, /obj/machinery/atmospherics/pipe/simple/orange/hidden{ @@ -70996,6 +71246,30 @@ /obj/structure/chair/office/dark, /turf/open/floor/wood, /area/space) +"jOB" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "kitchen2"; + name = "kitchen shutters" + }, +/obj/item/reagent_containers/food/condiment/pack/ketchup{ + pixel_x = -2; + pixel_y = 6 + }, +/obj/item/reagent_containers/food/condiment/pack/mustard{ + pixel_x = 6; + pixel_y = 3 + }, +/obj/item/reagent_containers/food/condiment/peppermill{ + pixel_x = -5; + pixel_y = 7 + }, +/obj/item/reagent_containers/food/condiment/saltshaker{ + pixel_x = 1; + pixel_y = 3 + }, +/turf/open/floor/plasteel, +/area/service/bar) "jPm" = ( /obj/effect/turf_decal/tile/neutral, /obj/effect/turf_decal/tile/neutral{ @@ -71075,6 +71349,12 @@ /obj/effect/turf_decal/delivery, /turf/open/floor/plasteel, /area/hallway/primary/port/fore) +"koP" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/wood, +/area/service/bar) "kxO" = ( /obj/effect/turf_decal/tile/blue, /obj/effect/turf_decal/tile/blue{ @@ -71110,6 +71390,16 @@ }, /turf/open/floor/plasteel/white/corner, /area/hallway/primary/central) +"kMa" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 8 + }, +/obj/structure/chair/sofa/right{ + color = "#c45c57"; + dir = 4 + }, +/turf/open/floor/carpet, +/area/service/bar) "kMD" = ( /obj/structure/sign/painting/library{ pixel_y = -32 @@ -71185,6 +71475,23 @@ /obj/structure/flora/ausbushes/ywflowers, /turf/open/floor/grass, /area/medical/virology) +"lCL" = ( +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 8 + }, +/obj/structure/table/wood, +/obj/item/reagent_containers/food/condiment/peppermill{ + desc = "Often used to flavor food or make people sneeze. Fashionably moved to the left side of the table."; + pixel_x = -8; + pixel_y = 2 + }, +/obj/item/reagent_containers/food/condiment/saltshaker{ + desc = "Salt. From space oceans, presumably. A staple of modern medicine."; + pixel_x = -8; + pixel_y = 12 + }, +/turf/open/floor/carpet, +/area/service/bar) "lGB" = ( /obj/machinery/atmospherics/pipe/simple/cyan/hidden, /obj/effect/turf_decal/stripes/line{ @@ -71192,6 +71499,15 @@ }, /turf/open/floor/plasteel, /area/hallway/primary/central) +"lIi" = ( +/obj/machinery/atmospherics/pipe/manifold/supplymain/hidden{ + dir = 8 + }, +/obj/structure/chair/stool/bar{ + pixel_x = -5 + }, +/turf/open/floor/carpet, +/area/service/bar) "lIX" = ( /obj/effect/turf_decal/tile/purple{ dir = 1 @@ -71247,6 +71563,15 @@ /obj/structure/table/glass, /turf/open/floor/plasteel, /area/hallway/primary/port/fore) +"mhe" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/hidden, +/obj/machinery/door/airlock/security{ + name = "Security Checkpoint"; + req_access_txt = "1" + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plating, +/area/service/bar) "mlM" = ( /obj/effect/turf_decal/tile/purple{ dir = 4 @@ -71268,6 +71593,13 @@ /obj/machinery/atmospherics/pipe/manifold/cyan/visible, /turf/closed/wall/r_wall, /area/engineering/atmos) +"mtZ" = ( +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on, +/turf/open/floor/mineral/basaltstone_floor, +/area/service/bar) "mwT" = ( /obj/effect/turf_decal/stripes/line, /turf/open/floor/plasteel, @@ -71631,6 +71963,15 @@ /obj/item/kirbyplants, /turf/open/floor/plasteel, /area/hallway/primary/central) +"qrT" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "kitchen2"; + name = "kitchen shutters" + }, +/obj/item/reagent_containers/food/snacks/pie/cream, +/turf/open/floor/plasteel, +/area/service/bar) "qxz" = ( /obj/structure/bookcase/random/religion, /turf/open/floor/wood, @@ -71679,6 +72020,25 @@ }, /turf/open/floor/wood, /area/space) +"qWN" = ( +/obj/structure/disposalpipe/junction/flip{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 8 + }, +/obj/effect/turf_decal/tile/bar, +/obj/effect/turf_decal/tile/bar{ + dir = 4 + }, +/obj/effect/turf_decal/tile/bar{ + dir = 8 + }, +/turf/open/floor/mineral/basaltstone_floor, +/area/service/bar) "qWY" = ( /obj/machinery/atmospherics/pipe/simple/orange/visible, /turf/open/floor/plasteel, @@ -71766,6 +72126,25 @@ }, /turf/open/floor/wood, /area/space) +"rKq" = ( +/obj/effect/landmark/start/cook, +/turf/open/floor/plasteel/cafeteria, +/area/service/kitchen) +"rLb" = ( +/obj/structure/chair/sofa/right{ + color = "#c45c57"; + dir = 4 + }, +/turf/open/floor/carpet, +/area/service/bar) +"rLh" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/table/wood, +/obj/item/storage/fancy/donut_box, +/turf/open/floor/carpet, +/area/service/bar) "rOE" = ( /obj/structure/plasticflaps, /obj/structure/fans/tiny, @@ -71815,6 +72194,18 @@ }, /turf/open/floor/carpet/green, /area/space/nearstation) +"scS" = ( +/obj/effect/turf_decal/tile/bar{ + dir = 1 + }, +/obj/effect/turf_decal/tile/bar{ + dir = 4 + }, +/obj/structure/chair/comfy{ + dir = 8 + }, +/turf/open/floor/mineral/basaltstone_floor, +/area/service/bar) "sky" = ( /obj/machinery/conveyor/auto{ dir = 4; @@ -71822,6 +72213,13 @@ }, /turf/open/floor/plating/airless, /area/router/aux) +"sqQ" = ( +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden, +/obj/structure/chair/stool/bar{ + pixel_x = -5 + }, +/turf/open/floor/carpet, +/area/service/bar) "stP" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -71932,6 +72330,13 @@ }, /turf/open/floor/plasteel, /area/science/observatory) +"sVw" = ( +/obj/machinery/atmospherics/pipe/simple/orange/hidden, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/wood, +/area/service/bar) "sVC" = ( /obj/structure/lattice/catwalk, /obj/structure/cable{ @@ -71955,6 +72360,10 @@ }, /turf/open/floor/plasteel, /area/hallway/primary/central) +"tbr" = ( +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden, +/turf/open/floor/wood, +/area/service/bar) "tff" = ( /obj/structure/plasticflaps, /obj/structure/fans/tiny, @@ -72028,6 +72437,11 @@ }, /turf/closed/wall/r_wall, /area/engineering/atmos) +"tFy" = ( +/obj/structure/table/wood, +/obj/item/ashtray, +/turf/open/floor/carpet, +/area/service/bar) "tFI" = ( /obj/structure/cable{ icon_state = "4-8" @@ -72063,6 +72477,17 @@ }, /turf/open/floor/plasteel, /area/engineering/atmos) +"ucc" = ( +/obj/effect/turf_decal/loading_area{ + dir = 8; + icon_state = "drain"; + name = "drain" + }, +/obj/structure/chair/stool/bar{ + pixel_x = 4 + }, +/turf/open/floor/carpet/black, +/area/service/bar) "unC" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -72098,6 +72523,31 @@ /obj/item/t_scanner, /turf/open/floor/plasteel, /area/engineering/atmos) +"uEu" = ( +/obj/effect/turf_decal/tile/bar{ + dir = 1 + }, +/obj/effect/turf_decal/tile/bar{ + dir = 4 + }, +/obj/structure/chair/comfy{ + dir = 4 + }, +/turf/open/floor/mineral/basaltstone_floor, +/area/service/bar) +"uNh" = ( +/obj/machinery/jukebox, +/obj/effect/turf_decal/tile/bar{ + dir = 1 + }, +/obj/effect/turf_decal/tile/bar{ + dir = 4 + }, +/obj/effect/turf_decal/tile/bar{ + dir = 8 + }, +/turf/open/floor/mineral/basaltstone_floor, +/area/service/bar) "uUg" = ( /obj/structure/table/wood, /obj/effect/turf_decal/tile/neutral, @@ -72179,10 +72629,23 @@ /obj/effect/turf_decal/stripes/box, /turf/open/floor/plasteel, /area/hallway/secondary/exit/departure_lounge) +"vMp" = ( +/obj/structure/chair/stool/bar, +/obj/effect/landmark/start/assistant, +/turf/open/floor/carpet/green, +/area/service/bar) "vNU" = ( /obj/structure/sign/painting/library, /turf/closed/wall, /area/service/library) +"vRL" = ( +/obj/machinery/atmospherics/pipe/simple/orange/hidden, +/obj/structure/chair/sofa/right{ + color = "#c45c57"; + dir = 8 + }, +/turf/open/floor/carpet, +/area/service/bar) "vZu" = ( /obj/effect/turf_decal/tile/neutral, /obj/effect/turf_decal/tile/neutral{ @@ -72191,6 +72654,19 @@ /obj/item/kirbyplants/photosynthetic, /turf/open/floor/plasteel, /area/hallway/primary/port/fore) +"vZQ" = ( +/obj/machinery/light{ + dir = 4; + light_color = "#e8eaff" + }, +/obj/effect/turf_decal/loading_area{ + dir = 4; + icon_state = "drain"; + name = "drain" + }, +/obj/machinery/space_heater, +/turf/open/floor/plasteel/white, +/area/commons/fitness/cogpool) "vZR" = ( /obj/effect/landmark/event_spawn, /obj/effect/decal/big_gato, @@ -72238,6 +72714,12 @@ }, /turf/open/floor/plasteel/white, /area/commons/fitness/cogpool) +"wqc" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 9 + }, +/turf/open/floor/wood, +/area/service/bar) "wqp" = ( /obj/effect/turf_decal/tile/neutral, /obj/effect/turf_decal/tile/neutral{ @@ -72266,6 +72748,19 @@ /obj/machinery/cryopod/tele, /turf/open/floor/plasteel/dark, /area/commons/cryopod) +"wAR" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/tile/bar{ + dir = 8 + }, +/obj/effect/turf_decal/tile/bar{ + dir = 1 + }, +/turf/open/floor/mineral/basaltstone_floor, +/area/service/bar) "wDG" = ( /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, @@ -72290,6 +72785,15 @@ /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, /area/commons/cryopod) +"xbP" = ( +/obj/machinery/atmospherics/pipe/simple/orange/hidden, +/obj/structure/chair/sofa/left{ + color = "#c45c57"; + dir = 8 + }, +/obj/effect/landmark/start/assistant, +/turf/open/floor/carpet, +/area/service/bar) "xcO" = ( /obj/effect/turf_decal/tile/green{ dir = 4 @@ -72327,6 +72831,14 @@ /obj/item/kirbyplants/photosynthetic, /turf/open/floor/plasteel, /area/hallway/primary/central) +"xtg" = ( +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/obj/machinery/disposal/bin, +/turf/open/floor/wood, +/area/service/bar) "xxP" = ( /turf/closed/wall, /area/cargo/storage) @@ -72336,6 +72848,13 @@ }, /turf/open/floor/plasteel, /area/engineering/atmos) +"xEw" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden, +/turf/open/floor/mineral/basaltstone_floor, +/area/service/bar) "xJH" = ( /turf/open/floor/padded, /area/security/brig) @@ -107163,7 +107682,7 @@ asx asM wmT wmT -arN +vZQ aAy aGH aKj @@ -108947,7 +109466,7 @@ aff aff aff aff -aNU +jop aNU aNU aJS @@ -109195,24 +109714,24 @@ aGZ aKn bEG aqZ -bEX +koP asg -bEX -bEX +anH +rLh bEX bEM bEO bEP -amE -bEn -bEn -bEn +apR +uNh +jsw +eZw aNX aEA bvi bvF -bvL -aXn +amE +wAR cBM bDS bER @@ -109452,22 +109971,22 @@ aag ael agQ aje -akM +xtg anz +sqQ akM -akM -akM -akM -akM -akM -aCN -akM -akM +lIi +sqQ +tbr +tbr +tbr +bvH +ire aAb -akM +ire aCN -akM -akM +ire +ire aHl aNY cBN @@ -109709,27 +110228,27 @@ amx apq alR bqQ -aHh +sVw anD -aHh -aHh -aHh -aHh -aHh +axG +axG +dOu +axG +axG aMy axG +fWP aHh aHh aHh -aHh -axG +gBg aHh aHh -cBq +xEw aRT cBO cca -bEa +vMp amy aaU aaU @@ -109967,21 +110486,21 @@ ahO aml aka akd +rLb bEn +dXO +kMa bEn -bEn -bEn -bEn -bEn -aMC +dXO +esT apR -bEn +uEu aji aRM -aRM +ucc aCB -aRM -aRM +ucc +dKi bar aSD cBP @@ -110226,13 +110745,13 @@ aka aoy aoD bEn +ixV +tFy bEn -bEn -bEn -aKs -aNl -bEn -bEn +tFy +lCL +apR +hQd aji aBT buP @@ -110240,7 +110759,7 @@ aCD bvl bvZ awt -aSD +mtZ cBQ ccb cBV @@ -110479,17 +110998,17 @@ apv apv ajb amt -anH +aka aAQ aoG bEn aKs -aHh -aHh -aHh +xbP +axG +vRL aNl -bEn -bEn +apR +scS aji aBW aBX @@ -110736,9 +111255,9 @@ adS adV ajd ajj -aka +mhe azr -bEn +wqc bEn bEn aou @@ -110746,8 +111265,8 @@ awh bEn aMC aqj -bEn -aji +anJ +fNC aFV aiv aMj @@ -110996,13 +111515,13 @@ afK aka aka aqL -aqL -aqL +qrT +jOB aka afK amy aOD -aql +aka awB boO aAp @@ -111011,7 +111530,7 @@ amA bvD amy bas -anJ +aSD cBN cca cBX @@ -111253,7 +111772,7 @@ aeZ agm aqW ahx -ahx +rKq ahx agl apW @@ -111523,10 +112042,10 @@ amA amA aMl bcW -bvH +aBG bvL aXn -cBM +qWN bDY bEd asB @@ -111780,7 +112299,7 @@ aAW aDq aNn bvh -aql +aka aCe aYK aDr @@ -112537,7 +113056,7 @@ aif afK ahd ahx -ajD +geT ajD atC ahx From 1b9296d69815eba0bb9d599ef1028a904f3b9d55 Mon Sep 17 00:00:00 2001 From: evilew Date: Sat, 10 May 2025 15:30:20 +0200 Subject: [PATCH 06/17] adding SOP books onto maps --- _maps/map_files/BoxStation/BoxStation.dmm | 111 ++++++----- _maps/map_files/CogStation/CogStation.dmm | 98 +++++++-- _maps/map_files/KiloStation/KiloStation.dmm | 108 +++++++++- _maps/map_files/MetaStation/MetaStation.dmm | 101 +++++++++- _maps/map_files/PubbyStation/PubbyStation.dmm | 187 +++++++++++++++--- 5 files changed, 494 insertions(+), 111 deletions(-) diff --git a/_maps/map_files/BoxStation/BoxStation.dmm b/_maps/map_files/BoxStation/BoxStation.dmm index ccff75c33b..7e056822af 100644 --- a/_maps/map_files/BoxStation/BoxStation.dmm +++ b/_maps/map_files/BoxStation/BoxStation.dmm @@ -34,7 +34,7 @@ "aaH" = (/obj/effect/turf_decal/tile/green{dir = 4},/obj/effect/turf_decal/tile/green{dir = 1},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/power/apc/highcap/five_k{areastring = "/area/security/prison/upper"; damage_deflection = 21; desc = "A control terminal for the area's electrical systems. It's secured with a durable antitampering plasteel cage."; dir = 1; name = "Armored Upper Prison Wing APC"; pixel_y = 23},/obj/structure/cable{icon_state = "0-2"},/turf/open/floor/plasteel,/area/security/prison/upper) "aaI" = (/obj/structure/chair{dir = 4},/obj/effect/decal/cleanable/dirt,/turf/open/floor/plasteel/cafeteria,/area/security/prison/upper) "aaJ" = (/obj/structure/table,/obj/effect/decal/cleanable/dirt,/turf/open/floor/plasteel/cafeteria,/area/security/prison/upper) -"aaK" = (/obj/structure/table,/turf/open/floor/plasteel/cafeteria,/area/security/prison/upper) +"aaK" = (/obj/structure/table,/obj/item/book/manual/prisoner_SOP,/turf/open/floor/plasteel/cafeteria,/area/security/prison/upper) "aaL" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/closed/wall,/area/security/prison/upper) "aaM" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/turf/closed/wall,/area/security/prison/upper) "aaN" = (/obj/item/toy/beach_ball/holoball,/turf/open/floor/plasteel,/area/security/prison/upper) @@ -79,13 +79,13 @@ "abA" = (/obj/machinery/door/poddoor/shutters{id = "visitation"; name = "Visitation Shutters"},/obj/machinery/door/window/southleft,/obj/structure/table/reinforced,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/security/prison/upper) "abB" = (/obj/structure/table,/obj/machinery/atmospherics/components/unary/vent_scrubber/on,/obj/machinery/light{dir = 8},/obj/item/book/manual/gato_spacelaw,/turf/open/floor/plasteel/dark,/area/security/prison/upper) "abC" = (/obj/machinery/atmospherics/components/unary/vent_pump/on,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/camera{c_tag = "Prison Visitation"; dir = 8; network = list("ss13","prison")},/turf/open/floor/plasteel/dark,/area/security/prison/upper) -"abD" = (/obj/structure/closet/secure_closet/security/sec,/obj/effect/turf_decal/bot,/turf/open/floor/plasteel/dark,/area/security/office) +"abD" = (/obj/structure/closet/secure_closet/security/sec,/obj/effect/turf_decal/bot,/obj/item/book/manual/sec_SOP,/turf/open/floor/plasteel/dark,/area/security/office) "abE" = (/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 8},/obj/machinery/camera{c_tag = "Firing Range"; dir = 1},/obj/machinery/atmospherics/components/unary/vent_pump/on,/obj/machinery/magnetic_controller{autolink = 1; pixel_y = 3},/obj/structure/table,/obj/item/clothing/glasses/sunglasses{pixel_x = 3; pixel_y = 3},/obj/item/clothing/ears/earmuffs{pixel_x = -3; pixel_y = -2},/obj/item/clothing/glasses/sunglasses{pixel_x = 3; pixel_y = 3},/obj/item/clothing/glasses/sunglasses{pixel_x = 3; pixel_y = 3},/obj/item/clothing/glasses/sunglasses{pixel_x = 3; pixel_y = 3},/obj/item/clothing/ears/earmuffs{pixel_x = -3; pixel_y = -2},/obj/item/clothing/ears/earmuffs{pixel_x = -3; pixel_y = -2},/obj/item/clothing/ears/earmuffs{pixel_x = -3; pixel_y = -2},/obj/item/clothing/ears/earmuffs{pixel_x = -3; pixel_y = -2},/turf/open/floor/plasteel/dark,/area/security/range) "abF" = (/obj/structure/table/wood,/obj/item/kitchen/rollingpin,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/light{dir = 1; pixel_y = 16},/turf/open/floor/plasteel/cafeteria,/area/service/theater) "abG" = (/obj/structure/cable{icon_state = "0-8"},/obj/machinery/door/poddoor/preopen{id = "Secure Gate"; name = "brig shutters"},/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable{icon_state = "1-8"},/turf/open/floor/plating,/area/security/brig) "abH" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/decal/big_gato,/turf/open/floor/plasteel,/area/security/brig) "abI" = (/obj/machinery/cryopod{dir = 4},/obj/effect/turf_decal/bot,/obj/machinery/atmospherics/components/unary/vent_scrubber/on,/turf/open/floor/plasteel/dark,/area/security/prison/cells) -"abJ" = (/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/dark,/area/security/prison/cells) +"abJ" = (/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/item/book/manual/prisoner_SOP,/turf/open/floor/plasteel/dark,/area/security/prison/cells) "abK" = (/obj/structure/chair/sofa/left,/obj/structure/cable{icon_state = "2-4"},/obj/structure/cable{icon_state = "2-8"},/turf/open/floor/plasteel,/area/security/prison/upper) "abL" = (/obj/structure/cable{icon_state = "0-2"},/obj/machinery/power/tracker,/turf/open/floor/plasteel/airless/solarpanel,/area/solars/starboard/fore) "abM" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/lattice/catwalk,/turf/open/space,/area/solars/port/fore) @@ -330,7 +330,7 @@ "agr" = (/obj/machinery/power/apc{areastring = "/area/maintenance/prison/starboard"; dir = 8; name = "Prison Central Maintenance APC"; pixel_x = -24},/obj/effect/turf_decal/bot,/obj/effect/decal/cleanable/dirt,/obj/structure/cable,/turf/open/floor/plating,/area/maintenance/prison/starboard) "ags" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/door/poddoor/preopen{id = "hos"},/obj/structure/cable{icon_state = "0-4"},/turf/open/floor/plating,/area/command/heads_quarters/hos) "agt" = (/obj/structure/disposalpipe/segment{dir = 9},/obj/effect/landmark/start/security_officer,/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel,/area/security/office) -"agu" = (/obj/structure/table,/obj/item/assembly/flash/handheld,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/security/office) +"agu" = (/obj/structure/table,/obj/item/assembly/flash/handheld{pixel_x = -8},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/item/book/manual/sec_SOP{pixel_y = 8; pixel_x = 8},/obj/item/book/manual/sec_SOP{pixel_y = 8; pixel_x = 8},/turf/open/floor/plasteel,/area/security/office) "agv" = (/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 4},/obj/machinery/door/airlock/external{name = "Escape Pod Three"; dir = 4},/turf/open/floor/plating,/area/security/office) "agw" = (/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 8},/obj/machinery/door/airlock/external{name = "Escape Pod Three"; dir = 4},/obj/structure/fans/tiny,/turf/open/floor/plating,/area/security/office) "agx" = (/obj/machinery/airalarm{dir = 8; pixel_x = 24},/obj/machinery/light{dir = 4},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/components/unary/vent_scrubber/on,/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel,/area/security/office) @@ -383,10 +383,10 @@ "ahs" = (/obj/effect/turf_decal/tile/red{dir = 1},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/dark,/area/ai_monitored/security/armory) "aht" = (/obj/structure/rack,/obj/item/gun/energy/e_gun/advtaser{pixel_x = -3; pixel_y = 3},/obj/item/gun/energy/e_gun/advtaser,/obj/item/gun/energy/e_gun/advtaser{pixel_x = 3; pixel_y = -3},/obj/structure/window/reinforced,/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral{dir = 8},/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/bot,/turf/open/floor/plasteel/dark,/area/ai_monitored/security/armory) "ahu" = (/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel,/area/security/prison) -"ahv" = (/obj/machinery/firealarm{dir = 1; pixel_y = -24},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/obj/structure/table,/obj/item/storage/fancy/donut_box,/turf/open/floor/plasteel,/area/security/office) +"ahv" = (/obj/machinery/firealarm{dir = 1; pixel_y = -24},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/obj/structure/table,/obj/item/storage/fancy/large_donut_box{pixel_y = 8},/turf/open/floor/plasteel,/area/security/office) "ahw" = (/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/obj/structure/disposalpipe/segment{dir = 6},/obj/structure/cable{icon_state = "2-4"},/turf/open/floor/plasteel,/area/security/office) "ahx" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/door/poddoor/preopen{id = "hos"},/obj/structure/cable{icon_state = "0-8"},/turf/open/floor/plating,/area/command/heads_quarters/hos) -"ahy" = (/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/landmark/start/prisoner,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/button/door{id = "permacells2"; name = "Privacy Shutters"; pixel_x = 25},/turf/open/floor/plasteel/dark,/area/security/prison/cells) +"ahy" = (/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/landmark/start/prisoner,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/button/door{id = "permacells2"; name = "Privacy Shutters"; pixel_x = 25},/obj/item/book/manual/prisoner_SOP,/turf/open/floor/plasteel/dark,/area/security/prison/cells) "ahz" = (/obj/item/paper_bin/bundlenatural{pixel_x = 6; pixel_y = 4},/obj/item/paper_bin{pixel_x = -6; pixel_y = 4},/obj/item/pen/fountain,/obj/item/folder/red,/obj/structure/disposalpipe/segment{dir = 4},/obj/item/pen,/obj/structure/table,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/security/office) "ahA" = (/obj/structure/disposalpipe/junction/yjunction{dir = 1},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel,/area/security/office) "ahB" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/airalarm{dir = 8; pixel_x = 24},/turf/open/floor/plasteel/dark,/area/security/range) @@ -853,7 +853,7 @@ "aqx" = (/obj/machinery/atmospherics/components/unary/vent_pump/on,/obj/structure/table/wood,/obj/item/flashlight/lamp,/turf/open/floor/plating,/area/commons/vacant_room/office/b) "aqy" = (/obj/structure/table/wood,/obj/item/paper_bin{pixel_x = -3; pixel_y = 7},/turf/open/floor/plating,/area/commons/vacant_room/office/b) "aqz" = (/obj/machinery/light{dir = 8},/obj/machinery/requests_console{department = "Law office"; pixel_x = -32},/obj/machinery/vending/wardrobe/law_wardrobe,/turf/open/floor/wood,/area/service/lawoffice) -"aqA" = (/obj/structure/table/wood,/obj/item/pen/red,/obj/item/book/manual/gato_spacelaw,/obj/item/book/manual/gato_spacelaw,/turf/open/floor/wood,/area/service/lawoffice) +"aqA" = (/obj/structure/table/wood,/obj/item/pen/red,/obj/item/book/manual/gato_spacelaw,/obj/item/book/manual/gato_spacelaw,/obj/item/book/manual/sec_SOP{pixel_x = -6},/turf/open/floor/wood,/area/service/lawoffice) "aqB" = (/obj/structure/table/wood,/obj/item/flashlight/lamp/green{pixel_x = 1; pixel_y = 5},/turf/open/floor/wood,/area/service/lawoffice) "aqC" = (/obj/machinery/door/poddoor/preopen{id = "lawyer_blast"; name = "privacy door"},/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/service/lawoffice) "aqE" = (/obj/machinery/door/airlock/maintenance{name = "Dormitories Maintenance"; req_access_txt = "12"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/maintenance/fore/secondary) @@ -972,7 +972,7 @@ "asN" = (/obj/structure/rack,/obj/effect/spawner/lootdrop/maintenance{lootcount = 2; name = "2maintenance loot spawner"},/turf/open/floor/plating,/area/maintenance/starboard/fore) "asO" = (/turf/open/floor/plating{icon_state = "panelscorched"},/area/maintenance/starboard/fore) "asP" = (/obj/machinery/button/door{id = "maint3"; name = "Blast Door Control C"; pixel_y = 24},/turf/open/floor/plating,/area/maintenance/starboard/fore) -"asQ" = (/obj/structure/table,/turf/open/floor/plating,/area/maintenance/starboard/fore) +"asQ" = (/obj/structure/table,/obj/item/book/manual/greytide_SOP,/turf/open/floor/plating,/area/maintenance/starboard/fore) "asR" = (/obj/machinery/door/airlock/maintenance/abandoned{dir = 8; req_access_txt = "12"},/turf/open/floor/plating,/area/maintenance/starboard/fore) "asS" = (/obj/machinery/recharge_station,/turf/open/floor/plasteel,/area/maintenance/department/electrical) "asT" = (/obj/item/stack/rods/fifty,/obj/structure/rack,/obj/item/stack/cable_coil{pixel_x = -3; pixel_y = 3},/obj/item/stack/cable_coil{amount = 5},/obj/item/stack/sheet/mineral/plasma{amount = 10},/turf/open/floor/plasteel,/area/maintenance/department/electrical) @@ -1325,7 +1325,7 @@ "azK" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel/stairs/left{dir = 8},/area/crew_quarters/fitness) "azL" = (/obj/effect/landmark/start/assistant,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral,/turf/open/floor/plasteel,/area/commons/dorms) "azM" = (/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/structure/chair/comfy{dir = 8},/obj/structure/medkit_cabinet{pixel_y = 27},/obj/effect/turf_decal/loading_area{dir = 2; icon_state = "steel_decals5"},/turf/open/floor/plasteel,/area/crew_quarters/fitness) -"azN" = (/obj/structure/table/wood,/obj/item/storage/dice,/turf/open/floor/carpet,/area/commons/dorms) +"azN" = (/obj/structure/table/wood,/obj/item/storage/dice,/obj/item/book/manual/greytide_SOP{pixel_x = 16},/turf/open/floor/carpet,/area/commons/dorms) "azO" = (/obj/effect/turf_decal/tile/green{dir = 8},/obj/effect/turf_decal/tile/green{dir = 4},/obj/structure/sink/kitchen{pixel_y = 28},/obj/effect/turf_decal/loading_area{dir = 5; icon_state = "steel_panel"; name = "steel pannel"},/obj/effect/turf_decal/loading_area{dir = 4; icon_state = "steel_decals9"},/obj/effect/turf_decal/loading_area{dir = 1; icon_state = "steel_decals9"},/turf/open/floor/plasteel/cafeteria{dir = 5},/area/hallway/secondary/service) "azP" = (/obj/machinery/rnd/production/techfab/department/service,/obj/effect/decal/cleanable/cobweb/cobweb2,/obj/effect/turf_decal/tile/green{dir = 8},/obj/effect/turf_decal/tile/green{dir = 4},/obj/effect/turf_decal/loading_area{dir = 9; icon_state = "steel_decals10"},/obj/effect/turf_decal/loading_area{dir = 10; icon_state = "steel_decals10"},/obj/structure/sign/poster/official/cleanliness{pixel_y = 32},/turf/open/floor/plasteel/cafeteria{dir = 5},/area/hallway/secondary/service) "azQ" = (/obj/effect/decal/cleanable/cobweb,/obj/structure/closet/secure_closet/personal/cabinet,/turf/open/floor/carpet,/area/maintenance/starboard/fore) @@ -1389,7 +1389,7 @@ "aAX" = (/obj/machinery/door/airlock/public/glass{name = "Dormitory"},/obj/machinery/door/firedoor,/turf/open/floor/plasteel,/area/hallway/primary/central) "aAY" = (/obj/effect/turf_decal/tile/green{dir = 8},/obj/effect/turf_decal/tile/green{dir = 4},/turf/open/floor/plasteel/cafeteria{dir = 5},/area/hallway/secondary/service) "aAZ" = (/obj/machinery/light{dir = 8},/obj/item/kirbyplants/random,/obj/effect/turf_decal/tile/green{dir = 8},/obj/effect/turf_decal/tile/green{dir = 4},/turf/open/floor/plasteel/cafeteria{dir = 5},/area/hallway/secondary/service) -"aBa" = (/obj/structure/table,/obj/effect/turf_decal/tile/green{dir = 8},/obj/effect/turf_decal/tile/green{dir = 4},/obj/structure/sign/poster/contraband/corn_oil{pixel_x = 32},/turf/open/floor/plasteel/cafeteria{dir = 5},/area/hallway/secondary/service) +"aBa" = (/obj/structure/table,/obj/effect/turf_decal/tile/green{dir = 8},/obj/effect/turf_decal/tile/green{dir = 4},/obj/structure/sign/poster/contraband/corn_oil{pixel_x = 32},/obj/item/book/manual/service_SOP,/turf/open/floor/plasteel/cafeteria{dir = 5},/area/hallway/secondary/service) "aBb" = (/obj/machinery/space_heater,/turf/open/floor/plating,/area/maintenance/starboard/fore) "aBc" = (/obj/effect/mapping_helpers/airlock/cyclelink_helper,/obj/machinery/door/airlock/external{name = "Port Docking Bay 1"},/turf/open/floor/plasteel/dark,/area/hallway/secondary/entry) "aBd" = (/obj/machinery/light{dir = 8},/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plasteel,/area/hallway/secondary/entry) @@ -1478,7 +1478,7 @@ "aCK" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/turf_decal/stripes/line{dir = 4},/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plasteel,/area/commons/storage/primary) "aCL" = (/obj/structure/table,/obj/item/wirecutters,/obj/item/flashlight{pixel_x = 1; pixel_y = 5},/obj/machinery/firealarm{pixel_y = 24},/turf/open/floor/plasteel/dark,/area/commons/storage/primary) "aCM" = (/obj/structure/table,/obj/item/t_scanner,/obj/machinery/airalarm{pixel_y = 23},/turf/open/floor/plasteel/dark,/area/commons/storage/primary) -"aCN" = (/obj/structure/table,/obj/item/assembly/igniter{pixel_x = -8; pixel_y = -4},/obj/item/assembly/igniter,/obj/item/screwdriver{pixel_y = 16},/obj/machinery/camera{c_tag = "Primary Tool Storage"},/obj/machinery/requests_console{department = "Tool Storage"; pixel_y = 30},/turf/open/floor/plasteel/dark,/area/commons/storage/primary) +"aCN" = (/obj/structure/table,/obj/item/assembly/igniter{pixel_x = -8; pixel_y = -4},/obj/item/assembly/igniter,/obj/item/screwdriver{pixel_y = 16},/obj/machinery/camera{c_tag = "Primary Tool Storage"},/obj/machinery/requests_console{department = "Tool Storage"; pixel_y = 30},/obj/item/book/manual/greytide_SOP{pixel_x = 12},/turf/open/floor/plasteel/dark,/area/commons/storage/primary) "aCO" = (/obj/structure/table,/obj/item/assembly/signaler,/obj/item/assembly/signaler,/obj/item/radio/intercom{name = "Station Intercom (General)"; pixel_y = 20},/obj/item/multitool,/obj/item/multitool{pixel_x = 4},/turf/open/floor/plasteel/dark,/area/commons/storage/primary) "aCP" = (/obj/structure/table,/obj/machinery/cell_charger,/obj/machinery/light_switch{pixel_y = 28},/obj/item/stock_parts/cell/high/plus,/turf/open/floor/plasteel/dark,/area/commons/storage/primary) "aCQ" = (/obj/structure/table,/obj/item/storage/toolbox/mechanical{pixel_x = -2; pixel_y = -1},/turf/open/floor/plasteel/dark,/area/commons/storage/primary) @@ -1642,7 +1642,7 @@ "aFU" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/obj/structure/rack,/obj/effect/spawner/lootdrop/maintenance{lootcount = 2; name = "2maintenance loot spawner"},/turf/open/floor/plating,/area/maintenance/starboard/fore) "aFV" = (/obj/effect/turf_decal/stripes/line{dir = 5},/obj/machinery/power/apc{areastring = "/area/crew_quarters/cryopod"; dir = 8; name = "Cryogenics APC"; pixel_x = -24},/obj/structure/cable{icon_state = "0-4"},/obj/machinery/cryopod/tele,/turf/open/floor/plasteel/dark,/area/commons/dorms) "aFW" = (/obj/machinery/computer/cryopod{pixel_y = 26},/obj/structure/cable{icon_state = "2-8"},/obj/machinery/atmospherics/components/unary/vent_scrubber/on,/turf/open/floor/plasteel,/area/commons/dorms) -"aFX" = (/obj/effect/turf_decal/stripes/line{dir = 10},/obj/machinery/light{dir = 1; pixel_y = 16},/obj/structure/rack/shelf,/turf/open/floor/plasteel/dark,/area/commons/dorms) +"aFX" = (/obj/effect/turf_decal/stripes/line{dir = 10},/obj/machinery/light{dir = 1; pixel_y = 16},/obj/structure/rack/shelf,/obj/item/book/manual/greytide_SOP,/turf/open/floor/plasteel/dark,/area/commons/dorms) "aFY" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/structure/sign/poster/random{pixel_x = 32},/turf/open/floor/plasteel,/area/commons/dorms) "aFZ" = (/obj/structure/cable{icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/turf/open/floor/plasteel,/area/commons/dorms) "aGa" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral{dir = 8},/obj/structure/cable{icon_state = "1-8"},/turf/open/floor/plasteel,/area/commons/dorms) @@ -1879,8 +1879,8 @@ "aKy" = (/obj/machinery/light_switch{pixel_y = 28},/obj/machinery/light/small{dir = 1},/turf/open/floor/plasteel,/area/service/hydroponics) "aKz" = (/obj/structure/sink{pixel_y = 30},/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 4},/turf/open/floor/plasteel,/area/service/hydroponics) "aKA" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/service/hydroponics) -"aKB" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/closet/secure_closet/hydroponics,/obj/machinery/light/small{dir = 1},/turf/open/floor/plasteel,/area/service/hydroponics) -"aKC" = (/obj/structure/closet/secure_closet/hydroponics,/turf/open/floor/plasteel,/area/service/hydroponics) +"aKB" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/closet/secure_closet/hydroponics,/obj/machinery/light/small{dir = 1},/obj/item/book/manual/service_SOP,/turf/open/floor/plasteel,/area/service/hydroponics) +"aKC" = (/obj/structure/closet/secure_closet/hydroponics,/obj/item/book/manual/service_SOP,/turf/open/floor/plasteel,/area/service/hydroponics) "aKD" = (/obj/machinery/smartfridge/disks{pixel_y = 2},/obj/structure/table,/turf/open/floor/plasteel,/area/service/hydroponics) "aKE" = (/obj/machinery/airalarm{pixel_y = 24},/obj/machinery/camera{c_tag = "Hydroponics Storage"},/obj/machinery/light/small{dir = 1},/obj/machinery/plantgenes{pixel_y = 6},/obj/structure/table,/turf/open/floor/plasteel,/area/service/hydroponics) "aKF" = (/obj/machinery/atmospherics/components/unary/vent_pump/on,/turf/open/floor/plasteel,/area/service/hydroponics) @@ -1981,7 +1981,7 @@ "aMy" = (/turf/closed/wall,/area/hallway/secondary/exit) "aMz" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/hallway/secondary/exit) "aMA" = (/obj/machinery/holopad,/turf/open/floor/plasteel,/area/hallway/secondary/entry) -"aMB" = (/obj/structure/table/wood,/turf/open/floor/plasteel/grimy,/area/hallway/secondary/entry) +"aMB" = (/obj/structure/table/wood,/obj/item/book/manual/greytide_SOP,/turf/open/floor/plasteel/grimy,/area/hallway/secondary/entry) "aMC" = (/obj/structure/table/wood,/obj/item/reagent_containers/food/snacks/chips,/obj/item/reagent_containers/food/drinks/soda_cans/cola,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/carpet,/area/hallway/secondary/entry) "aMD" = (/turf/open/floor/carpet,/area/hallway/secondary/entry) "aME" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/carpet,/area/hallway/secondary/entry) @@ -2268,13 +2268,13 @@ "aSd" = (/obj/machinery/power/apc{areastring = "/area/storage/tools"; dir = 1; name = "Auxiliary Tool Storage APC"; pixel_y = 24},/obj/machinery/firealarm{dir = 8; pixel_x = -24},/obj/structure/cable{icon_state = "0-4"},/obj/structure/table,/obj/item/stack/sheet/glass/fifty,/obj/item/stack/rods/fifty,/obj/effect/turf_decal/stripes/line{dir = 9},/turf/open/floor/plasteel,/area/commons/storage/tools) "aSe" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/commons/storage/tools) "aSf" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/open/floor/plasteel/dark,/area/service/bar) -"aSg" = (/obj/structure/table/reinforced,/obj/item/assembly/flash/handheld,/obj/item/assembly/flash/handheld,/turf/open/floor/plasteel,/area/command/bridge) +"aSg" = (/obj/structure/table/reinforced,/obj/item/book/manual/command_SOP,/obj/item/book/manual/command_SOP,/turf/open/floor/plasteel,/area/command/bridge) "aSh" = (/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/stripes/white/line{dir = 5; icon_state = "steel_decals7"},/obj/structure/chair/office/dark{dir = 8},/turf/open/floor/plasteel,/area/command/bridge) "aSi" = (/obj/machinery/button/door{id = "bridge blast"; name = "Bridge Blast Door Control"; pixel_x = 28; pixel_y = -2; req_access_txt = "19"},/obj/machinery/keycard_auth{pixel_x = 29; pixel_y = 8},/obj/structure/chair/office/dark{dir = 1},/turf/open/floor/plasteel,/area/command/bridge) "aSj" = (/obj/structure/cable{icon_state = "1-2"},/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/stripes/white/line{dir = 10; icon_state = "steel_decals7"},/turf/open/floor/plasteel,/area/command/bridge) "aSk" = (/obj/structure/table/reinforced,/obj/item/aicard,/obj/item/multitool,/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel,/area/command/bridge) "aSl" = (/obj/effect/turf_decal/tile/green{dir = 4},/obj/effect/turf_decal/stripes/white/line{dir = 10; icon_state = "steel_decals7"},/obj/structure/chair/office/dark{dir = 4},/turf/open/floor/plasteel,/area/command/bridge) -"aSm" = (/obj/structure/table/reinforced,/obj/structure/cable{icon_state = "1-2"},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel,/area/command/bridge) +"aSm" = (/obj/structure/table/reinforced,/obj/structure/cable{icon_state = "1-2"},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/item/assembly/flash/handheld{pixel_x = 8},/obj/item/assembly/flash/handheld{pixel_x = 8},/obj/item/assembly/flash/handheld{pixel_x = 8},/turf/open/floor/plasteel,/area/command/bridge) "aSn" = (/obj/effect/turf_decal/tile/green{dir = 1},/obj/effect/turf_decal/stripes/white/line{dir = 5; icon_state = "steel_decals7"},/turf/open/floor/plasteel,/area/command/bridge) "aSo" = (/obj/structure/cable{icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/stripes/white/line{dir = 5; icon_state = "steel_decals7"},/obj/effect/turf_decal/stripes/white/line{dir = 10; icon_state = "steel_decals7"},/turf/open/floor/plasteel,/area/command/bridge) "aSp" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel,/area/command/bridge) @@ -2535,7 +2535,7 @@ "aXE" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1},/obj/machinery/door/airlock/maintenance{name = "Cargo Bay Warehouse Maintenance"; req_access_txt = "31"},/turf/open/floor/plating,/area/maintenance/port) "aXF" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/light/small{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/catwalk_floor,/area/maintenance/port) "aXG" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/closed/wall,/area/security/detectives_office) -"aXH" = (/obj/structure/closet/secure_closet/detective,/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/item/book/manual/gato_spacelaw,/turf/open/floor/plasteel/grimy,/area/security/detectives_office) +"aXH" = (/obj/structure/closet/secure_closet/detective,/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/item/book/manual/gato_spacelaw,/obj/item/book/manual/sec_SOP,/turf/open/floor/plasteel/grimy,/area/security/detectives_office) "aXI" = (/obj/machinery/computer/med_data,/obj/machinery/newscaster{pixel_y = 32},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/grimy,/area/security/detectives_office) "aXJ" = (/obj/machinery/computer/secure_data,/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/turf/open/floor/plasteel/grimy,/area/security/detectives_office) "aXK" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/closed/wall,/area/security/detectives_office) @@ -2704,7 +2704,7 @@ "baY" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/computer/security/telescreen/entertainment{pixel_y = 32},/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 8},/turf/open/floor/wood,/area/command/heads_quarters/captain) "baZ" = (/obj/structure/table/wood,/obj/machinery/computer/security/wooden_tv,/turf/open/floor/carpet,/area/security/detectives_office) "bba" = (/obj/structure/table/wood,/obj/item/storage/fancy/cigarettes,/obj/item/clothing/glasses/sunglasses,/turf/open/floor/carpet,/area/security/detectives_office) -"bbb" = (/obj/structure/closet/secure_closet/bar{req_access_txt = "25"},/obj/item/book/manual/blubbery_bartender,/turf/open/floor/carpet/red,/area/service/bar) +"bbb" = (/obj/structure/closet/secure_closet/bar{req_access_txt = "25"},/obj/item/book/manual/blubbery_bartender,/obj/item/book/manual/service_SOP,/turf/open/floor/carpet/red,/area/service/bar) "bbc" = (/turf/open/floor/plasteel/freezer,/area/commons/toilet) "bbd" = (/obj/machinery/biogenerator,/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/service/hydroponics) "bbe" = (/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/loading_area{dir = 4; icon_state = "drain"; name = "drain"},/turf/open/floor/plasteel,/area/hallway/primary/central) @@ -2790,7 +2790,7 @@ "bcK" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/door/poddoor/preopen{id = "heads_meeting"; name = "privacy shutters"},/turf/open/floor/plating,/area/command/meeting_room) "bcL" = (/obj/item/hand_labeler,/obj/item/assembly/timer,/obj/structure/table,/turf/open/floor/wood,/area/command/meeting_room) "bcM" = (/obj/structure/chair/comfy/black{dir = 4},/turf/open/floor/carpet,/area/command/meeting_room) -"bcN" = (/obj/structure/table/wood,/obj/item/radio/intercom{dir = 8; freerange = 1; name = "Station Intercom (Command)"},/turf/open/floor/carpet,/area/command/meeting_room) +"bcN" = (/obj/structure/table/wood,/obj/item/radio/intercom{dir = 8; freerange = 1; name = "Station Intercom (Command)"},/obj/item/book/manual/command_SOP,/turf/open/floor/carpet,/area/command/meeting_room) "bcO" = (/obj/structure/table/wood,/obj/item/book/manual/gato_spacelaw,/turf/open/floor/carpet,/area/command/meeting_room) "bcP" = (/obj/structure/chair/comfy/black{dir = 8},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/carpet,/area/command/meeting_room) "bcQ" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/wood,/area/command/meeting_room) @@ -2850,7 +2850,7 @@ "bdS" = (/obj/structure/table/wood,/obj/machinery/camera{c_tag = "Captain's Office"; dir = 8},/obj/item/storage/lockbox/medal,/turf/open/floor/wood,/area/command/heads_quarters/captain) "bdT" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/catwalk_floor,/area/maintenance/central/secondary) "bdU" = (/obj/structure/table/wood,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/item/paper_bin{pixel_x = -3; pixel_y = 7},/obj/item/pen,/turf/open/floor/carpet/royalblue,/area/command/heads_quarters/captain) -"bdV" = (/obj/structure/table/wood,/turf/open/floor/carpet/royalblue,/area/command/heads_quarters/captain) +"bdV" = (/obj/structure/table/wood,/obj/item/book/manual/command_SOP,/turf/open/floor/carpet/royalblue,/area/command/heads_quarters/captain) "bdW" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/wood,/area/command/heads_quarters/captain) "bdX" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 8},/obj/effect/landmark/event_spawn,/turf/open/floor/wood,/area/command/heads_quarters/captain) "bdY" = (/obj/structure/table/wood,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/item/folder/blue,/obj/item/folder/blue,/obj/item/stamp/captain,/turf/open/floor/carpet/royalblue,/area/command/heads_quarters/captain) @@ -3006,7 +3006,7 @@ "bgW" = (/obj/effect/turf_decal/tile/red{dir = 8},/obj/effect/turf_decal/tile/red{dir = 1},/turf/open/floor/plasteel/dark,/area/security/office) "bgX" = (/obj/machinery/holopad,/turf/open/floor/plasteel/showroomfloor,/area/security/office) "bgY" = (/obj/machinery/atmospherics/components/unary/vent_pump/on,/turf/open/floor/plasteel/dark,/area/security/office) -"bgZ" = (/obj/structure/closet/secure_closet/security/sec,/obj/effect/turf_decal/bot,/obj/machinery/light{dir = 4},/turf/open/floor/plasteel/dark,/area/security/office) +"bgZ" = (/obj/structure/closet/secure_closet/security/sec,/obj/effect/turf_decal/bot,/obj/machinery/light{dir = 4},/obj/item/book/manual/sec_SOP,/turf/open/floor/plasteel/dark,/area/security/office) "bha" = (/obj/machinery/computer/security/hos,/obj/effect/turf_decal/bot,/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel/dark,/area/command/heads_quarters/hos) "bhb" = (/obj/machinery/computer/card/minor/hos,/obj/effect/turf_decal/bot,/turf/open/floor/plasteel/dark,/area/command/heads_quarters/hos) "bhc" = (/obj/machinery/newscaster/security_unit{pixel_x = -30},/obj/machinery/camera{c_tag = "Head of Security's Office"; dir = 4},/obj/machinery/recharger{pixel_y = 4},/obj/structure/table/wood,/turf/open/floor/plasteel/dark,/area/command/heads_quarters/hos) @@ -3015,7 +3015,7 @@ "bhf" = (/obj/machinery/holopad/secure,/turf/open/floor/carpet,/area/command/heads_quarters/hos) "bhg" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 4},/obj/effect/decal/cleanable/dirt,/turf/open/floor/plasteel,/area/security/prison/upper) "bhh" = (/obj/structure/table/wood,/obj/item/paper_bin{pixel_x = -3; pixel_y = 7},/obj/item/flashlight/lamp/green{on = 0; pixel_x = -3; pixel_y = 8},/obj/item/pen/fountain,/turf/open/floor/plasteel/dark,/area/command/heads_quarters/hos) -"bhi" = (/obj/structure/table/wood,/obj/item/folder/red,/obj/item/stamp/hos,/turf/open/floor/carpet,/area/command/heads_quarters/hos) +"bhi" = (/obj/structure/table/wood,/obj/item/folder/red,/obj/item/stamp/hos,/obj/item/book/manual/sec_SOP{pixel_x = 16},/turf/open/floor/carpet,/area/command/heads_quarters/hos) "bhj" = (/obj/structure/table/wood,/obj/structure/cable{icon_state = "1-2"},/obj/item/book/manual/gato_spacelaw,/turf/open/floor/carpet,/area/command/heads_quarters/hos) "bhk" = (/turf/open/floor/carpet,/area/command/heads_quarters/hos) "bhl" = (/obj/machinery/light{dir = 4},/obj/machinery/suit_storage_unit/hos,/obj/effect/turf_decal/delivery,/obj/machinery/status_display/ai{pixel_x = 32},/turf/open/floor/plasteel/dark,/area/command/heads_quarters/hos) @@ -3264,7 +3264,7 @@ "blW" = (/obj/effect/turf_decal/loading_area{dir = 1; icon_state = "drain"; name = "drain"},/obj/structure/table/plasmaglass,/obj/item/ashtray,/turf/open/floor/plasteel,/area/service/bar) "blX" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 4},/obj/effect/turf_decal/loading_area{icon_state = "steel_panel"; name = "steel pannel"},/turf/open/floor/plasteel/cafeteria,/area/service/kitchen) "blY" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/turf_decal/loading_area{dir = 10; icon_state = "steel_panel"; name = "steel pannel"},/turf/open/floor/plasteel/cafeteria,/area/service/kitchen) -"blZ" = (/obj/structure/table,/turf/open/floor/plasteel/cafeteria,/area/service/kitchen) +"blZ" = (/obj/structure/table,/obj/item/book/manual/service_SOP,/turf/open/floor/plasteel/cafeteria,/area/service/kitchen) "bma" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/door/firedoor,/turf/open/floor/plating,/area/service/kitchen) "bmb" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/closed/wall,/area/hallway/secondary/exit) "bmc" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/spawner/structure/window,/obj/machinery/door/poddoor/shutters/preopen{id = "1stclassprivacy"; name = "privacy shutters"},/turf/open/floor/plasteel/dark,/area/hallway/secondary/exit) @@ -3416,7 +3416,7 @@ "boX" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel,/area/hallway/secondary/exit) "boY" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel,/area/hallway/secondary/exit) "boZ" = (/obj/effect/turf_decal/tile/red{dir = 4},/obj/structure/table,/obj/item/paper_bin{pixel_x = 1; pixel_y = 9},/obj/item/pen{pixel_x = 1; pixel_y = 9},/turf/open/floor/plasteel/white/corner{dir = 1},/area/hallway/secondary/exit) -"bpa" = (/obj/effect/turf_decal/tile/red{dir = 4},/obj/structure/table,/turf/open/floor/plasteel/white/corner{dir = 1},/area/hallway/secondary/exit) +"bpa" = (/obj/effect/turf_decal/tile/red{dir = 4},/obj/structure/table,/obj/item/book/manual/greytide_SOP,/turf/open/floor/plasteel/white/corner{dir = 1},/area/hallway/secondary/exit) "bpb" = (/obj/effect/turf_decal/tile/red{dir = 4},/obj/structure/table,/obj/item/book/lorebooks/welcome_to_gato,/obj/item/book/lorebooks/welcome_to_gato{pixel_x = -6; pixel_y = 6},/turf/open/floor/plasteel/white/corner{dir = 1},/area/hallway/secondary/exit) "bpc" = (/turf/open/floor/plasteel/white/corner{dir = 1},/area/hallway/secondary/exit) "bpd" = (/obj/effect/turf_decal/loading_area{dir = 4; icon_state = "drain"; name = "drain"},/turf/open/floor/plasteel,/area/hallway/secondary/exit) @@ -3641,7 +3641,7 @@ "bty" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/catwalk_floor,/area/maintenance/port) "btz" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/catwalk_floor,/area/maintenance/port) "btA" = (/obj/structure/cable{icon_state = "2-8"},/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment{dir = 9},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/turf/open/floor/catwalk_floor,/area/maintenance/port) -"btB" = (/obj/structure/table,/obj/item/clothing/head/soft,/obj/item/clothing/head/soft,/obj/structure/medkit_cabinet{pixel_y = 27},/turf/open/floor/plasteel,/area/cargo/storage) +"btB" = (/obj/structure/table,/obj/item/clothing/head/soft,/obj/item/clothing/head/soft,/obj/structure/medkit_cabinet{pixel_y = 27},/obj/item/book/manual/supply_SOP{pixel_y = 8; pixel_x = 14},/turf/open/floor/plasteel,/area/cargo/storage) "btC" = (/obj/structure/table,/obj/item/hand_labeler,/obj/item/hand_labeler,/obj/machinery/requests_console{department = "Cargo Bay"; departmentType = 2; pixel_y = 30},/turf/open/floor/plasteel,/area/cargo/storage) "btD" = (/obj/structure/table,/obj/machinery/cell_charger,/obj/item/radio/intercom{pixel_y = 20},/turf/open/floor/plasteel,/area/cargo/storage) "btE" = (/obj/machinery/camera{c_tag = "Cargo Bay North"},/obj/machinery/vending/wardrobe/cargo_wardrobe,/turf/open/floor/plasteel,/area/cargo/storage) @@ -3760,7 +3760,7 @@ "bvN" = (/obj/structure/table/reinforced,/obj/item/reagent_containers/food/drinks/britcup{desc = "Kingston's personal cup."},/turf/open/floor/plasteel/white,/area/medical/medbay/central) "bvO" = (/obj/structure/table/reinforced,/obj/item/folder/white,/obj/item/pen,/obj/item/reagent_containers/glass/bottle/epinephrine,/turf/open/floor/plasteel/white,/area/medical/medbay/central) "bvP" = (/obj/structure/table/reinforced,/obj/machinery/camera{c_tag = "Medbay Foyer"; dir = 8; network = list("ss13","medbay")},/obj/machinery/cell_charger,/turf/open/floor/plasteel/white,/area/medical/medbay/central) -"bvQ" = (/obj/structure/table/reinforced,/turf/open/floor/plasteel/white,/area/medical/medbay/central) +"bvQ" = (/obj/structure/table/reinforced,/obj/item/book/manual/med_SOP{pixel_x = -8},/turf/open/floor/plasteel/white,/area/medical/medbay/central) "bvR" = (/obj/machinery/power/apc{areastring = "/area/security/checkpoint/medical"; dir = 8; name = "Medbay Security APC"; pixel_x = -25},/obj/structure/cable{icon_state = "0-4"},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel,/area/security/checkpoint/medical) "bvS" = (/obj/structure/cable{icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/security/checkpoint/medical) "bvT" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/turf/open/floor/plasteel,/area/hallway/primary/starboard) @@ -4002,7 +4002,7 @@ "bAv" = (/obj/machinery/door/poddoor/shutters/preopen{id = "robotics2"; name = "robotics lab shutters"},/obj/effect/spawner/structure/window,/obj/machinery/door/poddoor/shutters/preopen{id = "robotics2"; name = "robotics lab shutters"},/turf/open/floor/plating,/area/science/robotics/lab) "bAw" = (/turf/open/floor/plasteel/white/corner,/area/science/research) "bAx" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/white/side,/area/science/research) -"bAy" = (/obj/item/folder/white,/obj/structure/table,/obj/item/disk/tech_disk,/obj/item/disk/tech_disk,/obj/item/disk/design_disk,/obj/item/disk/design_disk,/turf/open/floor/plasteel/white,/area/science/lab) +"bAy" = (/obj/item/folder/white,/obj/structure/table,/obj/item/disk/tech_disk,/obj/item/disk/tech_disk,/obj/item/disk/design_disk,/obj/item/disk/design_disk,/obj/item/book/manual/science_SOP{pixel_x = -7},/turf/open/floor/plasteel/white,/area/science/lab) "bAz" = (/obj/structure/table,/obj/machinery/cell_charger,/obj/item/stock_parts/cell/high/plus,/obj/item/stock_parts/cell/high/plus,/turf/open/floor/plasteel/white,/area/science/lab) "bAA" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/white,/area/science/lab) "bAB" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel/white,/area/science/lab) @@ -4041,8 +4041,8 @@ "bBj" = (/obj/machinery/holopad,/turf/open/floor/carpet/royalblue,/area/command/heads_quarters/hop) "bBk" = (/obj/machinery/airalarm{dir = 8; pixel_x = 24},/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/command/heads_quarters/hop) "bBl" = (/obj/structure/dresser,/obj/item/flashlight/lamp/green{pixel_x = -4; pixel_y = 14},/turf/open/floor/carpet/royalblue,/area/command/heads_quarters/hop) -"bBm" = (/obj/structure/closet/secure_closet/hop,/turf/open/floor/carpet/royalblue,/area/command/heads_quarters/hop) -"bBn" = (/obj/effect/turf_decal/loading_area{dir = 1; icon_state = "drain"; name = "drain"},/obj/effect/turf_decal/loading_area{dir = 8; icon_state = "drain"; name = "drain"},/obj/machinery/light{dir = 1; pixel_y = 16},/obj/structure/table,/obj/machinery/camera{c_tag = "vault Lobby"; dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/central) +"bBm" = (/obj/structure/closet/secure_closet/hop,/obj/item/book/manual/command_SOP,/turf/open/floor/carpet/royalblue,/area/command/heads_quarters/hop) +"bBn" = (/obj/effect/turf_decal/loading_area{dir = 1; icon_state = "drain"; name = "drain"},/obj/effect/turf_decal/loading_area{dir = 8; icon_state = "drain"; name = "drain"},/obj/machinery/light{dir = 1; pixel_y = 16},/obj/structure/table,/obj/machinery/camera{c_tag = "vault Lobby"; dir = 4},/obj/item/book/manual/command_SOP,/turf/open/floor/plasteel,/area/hallway/primary/central) "bBo" = (/obj/effect/turf_decal/loading_area{dir = 1; icon_state = "drain"; name = "drain"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/hallway/primary/central) "bBp" = (/obj/effect/turf_decal/loading_area{dir = 1; icon_state = "drain"; name = "drain"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/hallway/primary/central) "bBq" = (/obj/effect/turf_decal/loading_area{dir = 1; icon_state = "drain"; name = "drain"},/obj/effect/turf_decal/loading_area{dir = 4; icon_state = "drain"; name = "drain"},/obj/machinery/light{dir = 1; pixel_y = 16},/obj/item/kirbyplants/random,/turf/open/floor/plasteel,/area/hallway/primary/central) @@ -4450,7 +4450,7 @@ "bJi" = (/obj/structure/table,/obj/machinery/button/door{id = "Biohazard"; name = "Biohazard Shutter Control"; pixel_x = -5; pixel_y = 5; req_access_txt = "47"},/obj/machinery/button/door{id = "rnd2"; name = "Research Lab Shutter Control"; pixel_x = 5; pixel_y = 5; req_access_txt = "47"},/obj/machinery/button/door{id = "scishut1"; name = "Office Lockdown"; pixel_x = 5; pixel_y = -5; req_access_txt = "30"},/turf/open/floor/carpet/purple,/area/command/heads_quarters/rd) "bJj" = (/obj/structure/chair/office/light{dir = 8},/obj/effect/landmark/start/research_director,/turf/open/floor/carpet/purple,/area/command/heads_quarters/rd) "bJk" = (/obj/machinery/computer/robotics{dir = 8},/obj/structure/window/reinforced{dir = 4},/turf/open/floor/carpet/purple,/area/command/heads_quarters/rd) -"bJl" = (/obj/structure/rack,/obj/item/aicard,/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plasteel/white,/area/command/heads_quarters/rd) +"bJl" = (/obj/structure/rack,/obj/item/aicard,/obj/effect/turf_decal/stripes/line{dir = 8},/obj/item/book/manual/science_SOP{pixel_x = -8},/turf/open/floor/plasteel/white,/area/command/heads_quarters/rd) "bJm" = (/obj/machinery/holopad,/turf/open/floor/plasteel/white,/area/command/heads_quarters/rd) "bJn" = (/obj/structure/displaycase/labcage,/obj/machinery/light{dir = 4},/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plasteel/white,/area/command/heads_quarters/rd) "bJo" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk{dir = 1},/obj/structure/sign/poster/official/random{pixel_x = -32},/turf/open/floor/plasteel/white,/area/science/circuit) @@ -4464,7 +4464,7 @@ "bJw" = (/obj/structure/dresser,/obj/item/flashlight/lamp/green{pixel_x = -4; pixel_y = 14},/turf/open/floor/wood,/area/cargo/qm) "bJx" = (/obj/machinery/light/small{dir = 1},/turf/open/floor/wood,/area/cargo/qm) "bJy" = (/obj/structure/bed,/obj/item/bedsheet/qm,/turf/open/floor/wood,/area/cargo/qm) -"bJz" = (/obj/item/radio/intercom{name = "Station Intercom (General)"; pixel_y = -35},/obj/machinery/light,/obj/effect/turf_decal/stripes/line{dir = 8},/obj/structure/table,/turf/open/floor/plasteel,/area/cargo/storage) +"bJz" = (/obj/item/radio/intercom{name = "Station Intercom (General)"; pixel_y = -35},/obj/machinery/light,/obj/effect/turf_decal/stripes/line{dir = 8},/obj/structure/table,/obj/item/book/manual/supply_SOP,/turf/open/floor/plasteel,/area/cargo/storage) "bJA" = (/obj/machinery/camera{c_tag = "Cargo Bay South"; dir = 1},/turf/open/floor/plasteel,/area/cargo/storage) "bJB" = (/obj/effect/turf_decal/stripes/corner{dir = 8},/turf/open/floor/plasteel,/area/cargo/storage) "bJC" = (/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel,/area/cargo/storage) @@ -4517,7 +4517,7 @@ "bKx" = (/obj/machinery/atmospherics/pipe/simple{dir = 10},/obj/structure/cable{icon_state = "1-4"},/turf/open/floor/plasteel/dark,/area/science/server) "bKy" = (/obj/machinery/camera{c_tag = "Server Room"; network = list("ss13","rd"); pixel_x = 22},/obj/machinery/power/apc{areastring = "/area/science/server"; dir = 1; name = "Server Room APC"; pixel_y = 25},/obj/structure/cable{icon_state = "0-8"},/turf/open/floor/plasteel/dark,/area/science/server) "bKz" = (/obj/machinery/atmospherics/components/unary/thermomachine/freezer/on,/obj/effect/decal/cleanable/cobweb/cobweb2,/turf/open/floor/plasteel/dark,/area/science/server) -"bKA" = (/obj/structure/reagent_dispensers/peppertank{pixel_x = -30},/obj/machinery/airalarm{pixel_y = 25},/obj/structure/closet/secure_closet/security/science,/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel/dark,/area/security/checkpoint/science) +"bKA" = (/obj/structure/reagent_dispensers/peppertank{pixel_x = -30},/obj/machinery/airalarm{pixel_y = 25},/obj/structure/closet/secure_closet/security/science,/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/red{dir = 8},/obj/item/book/manual/sec_SOP,/turf/open/floor/plasteel/dark,/area/security/checkpoint/science) "bKB" = (/obj/machinery/light_switch{pixel_x = 8; pixel_y = 28},/obj/machinery/button/door{id = "Biohazard"; name = "Biohazard Shutter Control"; pixel_x = -5; pixel_y = 28; req_access_txt = "47"},/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 4},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel/dark,/area/security/checkpoint/science) "bKC" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel/dark,/area/security/checkpoint/science) "bKD" = (/obj/structure/table,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/computer/security/telescreen/circuitry,/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel/dark,/area/security/checkpoint/science) @@ -4540,7 +4540,7 @@ "bKU" = (/obj/machinery/power/apc{areastring = "/area/maintenance/starboard"; dir = 4; name = "Starboard Maintenance APC"; pixel_x = 26},/obj/structure/cable{icon_state = "0-8"},/turf/open/floor/plating,/area/maintenance/starboard) "bKV" = (/obj/structure/closet/secure_closet/quartermaster,/turf/open/floor/wood,/area/cargo/qm) "bKW" = (/turf/open/floor/wood,/area/cargo/qm) -"bKX" = (/obj/structure/table/wood,/turf/open/floor/wood,/area/cargo/qm) +"bKX" = (/obj/structure/table/wood,/obj/item/book/manual/supply_SOP,/turf/open/floor/wood,/area/cargo/qm) "bKY" = (/obj/machinery/door/airlock/mining{name = "Quartermaster"; req_access_txt = "41"},/turf/open/floor/plasteel/dark,/area/cargo/qm) "bKZ" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/door/poddoor/preopen{id = "cargoshut2"; name = "shutters"},/turf/open/floor/plating,/area/cargo/qm) "bLa" = (/obj/structure/cable{icon_state = "1-4"},/obj/effect/turf_decal/tile/brown{dir = 8},/obj/effect/turf_decal/tile/brown{dir = 1},/obj/structure/ore_box,/obj/effect/turf_decal/bot,/obj/machinery/light_switch{pixel_x = -28},/turf/open/floor/plasteel,/area/cargo/miningdock) @@ -4695,7 +4695,7 @@ "bNT" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel,/area/cargo/miningdock) "bNU" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel,/area/cargo/miningdock) "bNV" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/sorting/mail/flip{dir = 1; sortType = 3},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/obj/structure/cable{icon_state = "2-8"},/turf/open/floor/plasteel,/area/cargo/miningdock) -"bNW" = (/obj/machinery/light_switch{pixel_y = -25},/obj/structure/closet/secure_closet/security/cargo,/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel/dark,/area/security/checkpoint/supply) +"bNW" = (/obj/machinery/light_switch{pixel_y = -25},/obj/structure/closet/secure_closet/security/cargo,/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/obj/item/book/manual/sec_SOP,/turf/open/floor/plasteel/dark,/area/security/checkpoint/supply) "bNX" = (/obj/machinery/vending/wardrobe/sec_wardrobe,/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel/dark,/area/security/checkpoint/supply) "bNY" = (/obj/machinery/requests_console{department = "Security"; departmentType = 5; pixel_y = -30},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel/dark,/area/security/checkpoint/supply) "bNZ" = (/obj/structure/filingcabinet,/obj/structure/reagent_dispensers/peppertank{pixel_x = 30},/obj/machinery/newscaster{pixel_y = -32},/obj/machinery/camera{c_tag = "Security Post - Cargo"; dir = 1},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel/dark,/area/security/checkpoint/supply) @@ -4766,7 +4766,7 @@ "bPm" = (/obj/machinery/door/firedoor,/turf/open/floor/plasteel,/area/hallway/primary/aft) "bPn" = (/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/turf_decal/tile/yellow,/turf/open/floor/plasteel,/area/hallway/primary/aft) "bPo" = (/obj/machinery/vending/wardrobe/jani_wardrobe,/turf/open/floor/plasteel,/area/service/janitor) -"bPp" = (/obj/structure/closet/l3closet/janitor,/obj/machinery/airalarm{pixel_y = 23},/turf/open/floor/plasteel,/area/service/janitor) +"bPp" = (/obj/structure/closet/l3closet/janitor,/obj/machinery/airalarm{pixel_y = 23},/obj/item/book/manual/service_SOP,/turf/open/floor/plasteel,/area/service/janitor) "bPq" = (/obj/machinery/light_switch{pixel_y = 28},/obj/machinery/camera{c_tag = "Custodial Closet"},/obj/vehicle/ridden/janicart,/turf/open/floor/plasteel,/area/service/janitor) "bPr" = (/obj/item/storage/box/lights/mixed,/obj/item/storage/box/lights/mixed,/turf/open/floor/plasteel,/area/service/janitor) "bPs" = (/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel,/area/service/janitor) @@ -4795,7 +4795,7 @@ "bPP" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/white,/area/medical/medbay/central) "bPQ" = (/obj/structure/disposalpipe/segment{dir = 10},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/white,/area/medical/medbay/central) "bPR" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/open/floor/plasteel/white,/area/medical/medbay/central) -"bPS" = (/obj/structure/table/glass,/obj/item/paper_bin{pixel_x = -2; pixel_y = 5},/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/cafeteria,/area/command/heads_quarters/cmo) +"bPS" = (/obj/structure/table/glass,/obj/item/paper_bin{pixel_x = -2; pixel_y = 5},/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/obj/item/book/manual/med_SOP{pixel_x = 14},/turf/open/floor/plasteel/cafeteria,/area/command/heads_quarters/cmo) "bPT" = (/obj/structure/table/glass,/obj/item/folder/white,/obj/item/stamp/cmo,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/cafeteria,/area/command/heads_quarters/cmo) "bPU" = (/obj/structure/table/glass,/obj/item/pen,/obj/item/clothing/neck/stethoscope,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/mob/living/simple_animal/pet/cat/Runtime,/turf/open/floor/plasteel/cafeteria,/area/command/heads_quarters/cmo) "bPV" = (/obj/structure/disposalpipe/segment,/obj/item/radio/intercom{pixel_x = 25},/obj/machinery/camera{c_tag = "Chief Medical Office"; dir = 8; network = list("ss13","medbay"); pixel_y = -22},/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/cafeteria,/area/command/heads_quarters/cmo) @@ -5025,7 +5025,7 @@ "bUr" = (/obj/structure/table,/obj/item/storage/firstaid/fire{pixel_x = 3; pixel_y = 3},/obj/item/storage/firstaid/fire,/obj/item/storage/firstaid/regular{pixel_x = -3; pixel_y = -3},/obj/machinery/door/window/northright{name = "First-Aid Supplies"; red_alert_access = 1; req_access_txt = "5"},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 8},/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 1},/turf/open/floor/plasteel,/area/medical/medbay/central) "bUs" = (/obj/structure/table,/obj/item/storage/firstaid/brute{pixel_x = 3; pixel_y = 3},/obj/item/storage/firstaid/brute,/obj/item/storage/firstaid/regular{pixel_x = -3; pixel_y = -3},/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 1},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 8},/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 1},/turf/open/floor/plasteel,/area/medical/medbay/central) "bUt" = (/obj/machinery/light,/obj/machinery/rnd/production/techfab/department/medical,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/white,/area/medical/medbay/central) -"bUu" = (/obj/structure/table,/obj/item/ashtray{pixel_x = 16},/obj/effect/turf_decal/tile/blue{dir = 8},/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/cafeteria{dir = 5},/area/medical/medbay/central) +"bUu" = (/obj/structure/table,/obj/item/ashtray{pixel_x = 16},/obj/effect/turf_decal/tile/blue{dir = 8},/obj/effect/turf_decal/tile/blue{dir = 4},/obj/item/book/manual/med_SOP,/turf/open/floor/plasteel/cafeteria{dir = 5},/area/medical/medbay/central) "bUv" = (/obj/machinery/door/poddoor/preopen{id = "medpriv4"; name = "privacy door"; dir = 4},/obj/machinery/door/airlock/medical/glass{dir = 4; name = "Medbay Storage"; req_access_txt = "5"},/turf/open/floor/plasteel/white,/area/medical/medbay/central) "bUw" = (/obj/structure/disposalpipe/junction/flip{dir = 2},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8},/turf/open/floor/plasteel/white,/area/medical/medbay/central) "bUx" = (/obj/structure/disposalpipe/segment{dir = 9},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/white,/area/medical/medbay/central) @@ -5507,7 +5507,7 @@ "cdI" = (/obj/structure/table,/obj/item/storage/toolbox/mechanical,/obj/item/clothing/ears/earmuffs,/obj/machinery/camera{c_tag = "Testing Lab North"; network = list("ss13","rd")},/obj/machinery/requests_console{department = "Science"; departmentType = 2; name = "Science Requests Console"; pixel_y = 30; receive_ore_updates = 1},/turf/open/floor/plasteel,/area/science/misc_lab) "cdJ" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/door/poddoor/preopen{id = "RBreakPriv"; name = "privacy door"},/turf/open/floor/plating,/area/science/misc_lab) "cdK" = (/obj/machinery/light{dir = 1; pixel_y = 16},/obj/structure/chair/sofa{dir = 4},/turf/open/floor/carpet,/area/science/misc_lab) -"cdL" = (/obj/structure/table/reinforced,/obj/item/reagent_containers/food/snacks/burger/soylent,/turf/open/floor/carpet,/area/science/misc_lab) +"cdL" = (/obj/structure/table/reinforced,/obj/item/book/manual/science_SOP,/turf/open/floor/carpet,/area/science/misc_lab) "cdM" = (/obj/structure/chair/sofa{dir = 8},/turf/open/floor/carpet,/area/science/misc_lab) "cdN" = (/obj/structure/sign/poster/official/random{pixel_y = 32},/turf/open/floor/carpet,/area/science/misc_lab) "cdO" = (/obj/machinery/light{dir = 1; pixel_y = 16},/obj/machinery/vending/coffee,/turf/open/floor/carpet,/area/science/misc_lab) @@ -6608,7 +6608,7 @@ "cyY" = (/obj/machinery/computer/station_alert{dir = 4},/obj/machinery/computer/security/telescreen/ce{dir = 4; pixel_x = -24},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/command/heads_quarters/ce) "cyZ" = (/obj/machinery/keycard_auth{pixel_y = -28},/turf/open/floor/plasteel,/area/command/heads_quarters/ce) "cza" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk{dir = 4},/turf/open/floor/plasteel,/area/command/heads_quarters/ce) -"czb" = (/obj/structure/table/reinforced,/obj/item/cartridge/engineering{pixel_x = 4; pixel_y = 5},/obj/item/cartridge/engineering{pixel_x = -3; pixel_y = 2},/obj/item/cartridge/engineering{pixel_x = 3},/obj/item/cartridge/atmos,/obj/structure/disposalpipe/segment{dir = 9},/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/turf/open/floor/plasteel,/area/command/heads_quarters/ce) +"czb" = (/obj/structure/table/reinforced,/obj/item/cartridge/engineering{pixel_x = 4; pixel_y = 5},/obj/item/cartridge/engineering{pixel_x = -3; pixel_y = 2},/obj/item/cartridge/engineering{pixel_x = 3},/obj/item/cartridge/atmos,/obj/structure/disposalpipe/segment{dir = 9},/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/obj/item/book/manual/engi_SOP{pixel_x = -6},/turf/open/floor/plasteel,/area/command/heads_quarters/ce) "czc" = (/obj/machinery/light_switch{pixel_x = 27},/obj/structure/cable{icon_state = "1-2"},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/command/heads_quarters/ce) "czd" = (/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 1},/obj/machinery/door/airlock/engineering{name = "Engine Room"; req_access_txt = "10"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/engineering/main) "cze" = (/obj/machinery/atmospherics/pipe/simple,/obj/structure/grille,/obj/machinery/meter,/turf/closed/wall/r_wall,/area/engineering/atmos) @@ -6895,7 +6895,7 @@ "cEC" = (/obj/structure/cable,/obj/machinery/power/apc{areastring = "/area/engine/engine_smes"; name = "SMES room APC"; pixel_y = -24},/obj/effect/turf_decal/stripes/line{dir = 10},/obj/item/kirbyplants/random,/turf/open/floor/plasteel,/area/engineering/main) "cED" = (/obj/structure/chair/office/light{dir = 4},/obj/machinery/firealarm{dir = 1; pixel_y = -24},/obj/effect/turf_decal/stripes/line,/turf/open/floor/plasteel,/area/engineering/main) "cEE" = (/obj/structure/table,/obj/item/radio/intercom{name = "Station Intercom (General)"; pixel_y = -35},/obj/item/stock_parts/cell/high/plus,/obj/effect/turf_decal/stripes/line{dir = 6},/turf/open/floor/plasteel,/area/engineering/main) -"cEF" = (/obj/machinery/camera{c_tag = "Engineering Storage"; dir = 4},/obj/structure/table,/obj/item/clothing/gloves/color/yellow,/obj/item/clothing/gloves/color/yellow,/turf/open/floor/plasteel,/area/engineering/main) +"cEF" = (/obj/machinery/camera{c_tag = "Engineering Storage"; dir = 4},/obj/structure/table,/obj/item/book/manual/engi_SOP,/obj/item/book/manual/engi_SOP,/turf/open/floor/plasteel,/area/engineering/main) "cEG" = (/obj/structure/table,/obj/item/stack/rods/fifty,/turf/open/floor/plasteel,/area/engineering/main) "cEH" = (/obj/structure/sign/warning/pods{pixel_x = 32},/obj/effect/turf_decal/stripes/line{dir = 6},/obj/item/kirbyplants/random,/turf/open/floor/plasteel,/area/engineering/main) "cEI" = (/obj/machinery/camera{c_tag = "Engineering Escape Pod"; dir = 4},/turf/open/floor/plating,/area/engineering/main) @@ -6905,7 +6905,7 @@ "cEM" = (/obj/structure/lattice/catwalk,/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,/turf/open/space/basic,/area/space/nearstation) "cEN" = (/obj/effect/decal/cleanable/dirt,/obj/machinery/light/small{dir = 4},/turf/open/floor/plating,/area/maintenance/starboard/aft) "cEO" = (/obj/effect/decal/cleanable/cobweb/cobweb2,/turf/open/floor/plating,/area/maintenance/port/aft) -"cEP" = (/obj/machinery/light{dir = 8},/obj/structure/table,/obj/item/clothing/gloves/color/yellow,/obj/item/clothing/gloves/color/yellow,/turf/open/floor/plasteel,/area/engineering/main) +"cEP" = (/obj/machinery/light{dir = 8},/obj/structure/table,/obj/item/clothing/gloves/color/yellow,/obj/item/clothing/gloves/color/yellow,/obj/item/clothing/gloves/color/yellow,/obj/item/clothing/gloves/color/yellow,/turf/open/floor/plasteel,/area/engineering/main) "cEQ" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment{dir = 5},/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/turf/open/floor/plasteel,/area/engineering/main) "cER" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/landmark/start/station_engineer,/turf/open/floor/plasteel,/area/engineering/main) "cES" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel,/area/engineering/main) @@ -7192,7 +7192,7 @@ "diV" = (/obj/machinery/camera{c_tag = "Permabrig Central"; dir = 8; network = list("ss13","prison")},/obj/effect/turf_decal/tile/green{dir = 4},/obj/effect/turf_decal/tile/green{dir = 1},/obj/effect/turf_decal/tile/green,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/obj/effect/decal/cleanable/dirt,/obj/structure/cable{icon_state = "2-8"},/obj/structure/disposalpipe/segment{dir = 10},/turf/open/floor/plasteel,/area/security/prison/upper) "djA" = (/obj/structure/chair{dir = 8},/turf/open/floor/plasteel/dark,/area/security/brig) "djR" = (/obj/effect/turf_decal/bot,/obj/effect/turf_decal/stripes/white/line{dir = 1; icon_state = "steel_decals_central7"},/turf/open/floor/plasteel,/area/cargo/storage) -"dkI" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/closet/secure_closet/brig{id = "Cell 3"; name = "Cell 3 Locker"},/obj/structure/cable{icon_state = "1-4"},/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 1},/turf/open/floor/plasteel,/area/security/brig) +"dkI" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/closet/secure_closet/brig{id = "Cell 3"; name = "Cell 3 Locker"},/obj/structure/cable{icon_state = "1-4"},/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 1},/obj/item/book/manual/prisoner_SOP,/turf/open/floor/plasteel,/area/security/brig) "dlh" = (/obj/structure/chair/beanbag/red{dir = 1},/turf/open/floor/wood,/area/maintenance/bar) "dqN" = (/obj/structure/chair/beanbag/purple{dir = 8},/turf/open/floor/carpet/black,/area/hallway/primary/central) "dqT" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/dark/side{dir = 4},/area/security/prison/upper) @@ -7239,7 +7239,7 @@ "ffH" = (/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/structure/toilet{dir = 4},/obj/structure/window/reinforced/tinted{dir = 1},/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 4},/turf/open/floor/plasteel/dark,/area/security/prison/cells) "fho" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/white,/area/medical/medbay/central) "fls" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/grass,/area/security/courtroom) -"fmC" = (/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/landmark/start/prisoner,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/button/door{id = "permacells4"; name = "Privacy Shutters"; pixel_y = 25},/turf/open/floor/plasteel/dark,/area/security/prison/cells) +"fmC" = (/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/landmark/start/prisoner,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/button/door{id = "permacells4"; name = "Privacy Shutters"; pixel_y = 25},/obj/item/book/manual/prisoner_SOP,/turf/open/floor/plasteel/dark,/area/security/prison/cells) "frp" = (/obj/structure/sink{dir = 8; pixel_x = -12; pixel_y = 2},/obj/effect/turf_decal/loading_area{dir = 4; icon_state = "drain"; name = "drain"},/turf/open/floor/plasteel/freezer,/area/crew_quarters/fitness/sauna) "ftF" = (/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral{dir = 8},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/door/airlock/grunge{name = "Permanent Cell 5"; wiretypepath = /datum/wires/airlock/security},/turf/open/floor/plasteel/dark,/area/security/prison/cells) "fwq" = (/obj/effect/turf_decal/loading_area{icon_state = "steel_decals_central7"},/turf/open/floor/plasteel,/area/security/prison) @@ -7267,7 +7267,7 @@ "fYR" = (/obj/docking_port/stationary/random{dir = 4; shuttle_id = "pod_lavaland3"; name = "lavaland"},/turf/open/space,/area/space) "fZl" = (/obj/structure/table,/obj/item/ashtray{pixel_x = -6; pixel_y = -3},/obj/item/storage/fancy/rollingpapers{pixel_x = 4; pixel_y = 4},/obj/effect/turf_decal/tile/green{dir = 8},/obj/effect/turf_decal/tile/green{dir = 4},/obj/effect/turf_decal/loading_area{dir = 9; icon_state = "steel_decals10"},/obj/effect/turf_decal/loading_area{dir = 10; icon_state = "steel_decals10"},/turf/open/floor/plasteel/cafeteria{dir = 5},/area/hallway/secondary/service) "gbo" = (/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/stripes/line{dir = 1},/obj/effect/turf_decal/stripes/line,/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel/dark,/area/ai_monitored/security/armory) -"gcb" = (/obj/structure/closet/secure_closet/warden,/obj/structure/sign/poster/official/ion_rifle{pixel_y = 32},/obj/structure/sign/poster/official/twelve_gauge{pixel_x = 32},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/bot,/obj/item/radio/intercom{pixel_x = 32; pixel_y = 20},/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel/showroomfloor,/area/security/warden) +"gcb" = (/obj/structure/closet/secure_closet/warden,/obj/structure/sign/poster/official/ion_rifle{pixel_y = 32},/obj/structure/sign/poster/official/twelve_gauge{pixel_x = 32},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/bot,/obj/item/radio/intercom{pixel_x = 32; pixel_y = 20},/obj/structure/disposalpipe/segment,/obj/item/book/manual/sec_SOP,/turf/open/floor/plasteel/showroomfloor,/area/security/warden) "gdC" = (/obj/structure/sign/warning/securearea{pixel_y = -32},/turf/open/space/basic,/area/space) "gdL" = (/obj/structure/table,/obj/item/hand_labeler,/obj/item/clothing/glasses/science,/obj/item/clothing/glasses/science,/turf/open/floor/plasteel,/area/science/misc_lab) "gdV" = (/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/stripes/corner{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/obj/structure/cable{icon_state = "2-4"},/turf/open/floor/plasteel,/area/security/prison/cells) @@ -7282,6 +7282,7 @@ "gwA" = (/obj/effect/turf_decal/loading_area{icon_state = "drain"; name = "drain"},/obj/machinery/light,/turf/open/floor/plasteel/white/corner{dir = 8},/area/hallway/primary/starboard) "gye" = (/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/light/small,/turf/open/floor/plasteel/dark,/area/security/prison/cells) "gyv" = (/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/obj/machinery/light{light_color = "#d1dfff"},/turf/open/floor/plasteel,/area/security/prison) +"gyQ" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/item/book/manual/greytide_SOP,/turf/open/floor/plating,/area/maintenance/aft) "gzJ" = (/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/cafeteria,/area/security/prison/upper) "gzP" = (/obj/structure/table,/obj/item/book/manual/chef_recipes,/turf/open/floor/plasteel/cafeteria,/area/maintenance/port/fore) "gAi" = (/obj/structure/table,/obj/machinery/reagentgrinder,/turf/open/floor/plasteel/white,/area/medical/virology) @@ -7476,6 +7477,7 @@ "mCQ" = (/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel/dark,/area/security/range) "mDn" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel,/area/security/brig) "mFf" = (/obj/machinery/camera{c_tag = "Prison Cell Block North"; dir = 4; network = list("ss13","prison")},/obj/effect/decal/cleanable/dirt,/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 8},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 4},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel,/area/security/prison/cells) +"mGY" = (/obj/effect/turf_decal/stripes/white/line{dir = 10; icon_state = "steel_decals7"},/obj/effect/turf_decal/stripes/white/line{dir = 5; icon_state = "steel_decals7"},/obj/item/book/manual/command_SOP,/turf/open/floor/plasteel,/area/command/bridge) "mIj" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/turf/closed/wall/r_wall,/area/security/warden) "mIM" = (/obj/effect/turf_decal/stripes/white/line{dir = 6; icon_state = "steel_decals3"},/obj/effect/turf_decal/stripes/white/line{dir = 2; icon_state = "steel_decals3"},/turf/open/floor/plasteel/white/side{dir = 8},/area/medical/medbay/central) "mJZ" = (/obj/structure/sign/nanotrasen,/turf/closed/wall/r_wall,/area/hallway/secondary/entry) @@ -7523,7 +7525,7 @@ "nVj" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/light,/turf/open/floor/plasteel/dark/side,/area/crew_quarters/fitness/sauna) "nVk" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/vending/kink,/turf/open/floor/plasteel/dark/side{dir = 9},/area/crew_quarters/fitness/sauna) "nWV" = (/obj/machinery/treadmill,/turf/open/floor/wood,/area/crew_quarters/fitness) -"oaM" = (/obj/structure/closet/secure_closet/security/med,/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel,/area/security/checkpoint/medical) +"oaM" = (/obj/structure/closet/secure_closet/security/med,/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/obj/item/book/manual/sec_SOP,/turf/open/floor/plasteel,/area/security/checkpoint/medical) "ocs" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/spawner/structure/window/reinforced,/obj/machinery/door/poddoor/shutters/preopen{id = "permacells4"; name = "Privacy Shutters"},/turf/open/floor/plating,/area/security/prison/cells) "oda" = (/obj/effect/turf_decal/stripes/line,/obj/effect/turf_decal/loading_area{dir = 1; icon_state = "steel_decals3"},/obj/effect/turf_decal/loading_area{dir = 10; icon_state = "steel_decals3"},/turf/open/floor/plasteel,/area/security/range) "ofu" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/turf_decal/loading_area{dir = 5; icon_state = "steel_panel"; name = "steel pannel"},/turf/open/floor/plasteel,/area/security/brig) @@ -7533,7 +7535,7 @@ "ooZ" = (/obj/structure/bookcase/random/nonfiction,/turf/open/floor/wood,/area/service/library) "oqG" = (/obj/structure/table,/obj/item/razor,/obj/item/toy/plush/borgplushie{desc = "A horrible abomination to God in plushie form. Legends say this is used to torture prisoners by repeatedly beating them in the head with it.. ..It feels sorta heavy."; force = 1; name = "dogborg plushie"; throwforce = 1},/obj/effect/turf_decal/tile/red{dir = 8},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 1},/obj/machinery/atmospherics/pipe/simple{dir = 5},/turf/open/floor/plasteel/dark,/area/security/execution/transfer) "orq" = (/obj/machinery/light{dir = 8},/obj/effect/turf_decal/tile/bar,/obj/effect/turf_decal/tile/bar{dir = 4},/turf/open/floor/plasteel/dark,/area/service/chapel/main) -"orG" = (/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/landmark/start/prisoner,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/dark,/area/security/prison/cells) +"orG" = (/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/landmark/start/prisoner,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/item/book/manual/prisoner_SOP,/turf/open/floor/plasteel/dark,/area/security/prison/cells) "otM" = (/obj/effect/turf_decal/stripes/white/line{dir = 2; icon_state = "steel_decals3"},/obj/effect/turf_decal/stripes/white/line{dir = 6; icon_state = "steel_decals3"},/obj/machinery/door/firedoor,/turf/open/floor/plasteel,/area/hallway/primary/central) "ovQ" = (/obj/item/toy/sword,/turf/open/floor/plating,/area/maintenance/port/fore) "owr" = (/obj/effect/turf_decal/loading_area{dir = 1; icon_state = "drain"; name = "drain"},/turf/open/floor/plasteel/dark,/area/ai_monitored/command/storage/eva) @@ -7549,7 +7551,7 @@ "oRB" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable{icon_state = "1-4"},/turf/open/floor/plasteel/dark,/area/security/execution/transfer) "oSG" = (/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/door/airlock/grunge{name = "Prison Laundry"; wiretypepath = /datum/wires/airlock/security},/turf/open/floor/plasteel/dark,/area/security/prison/upper) "oZL" = (/obj/structure/chair/comfy/brown{color = "#596479"; dir = 1},/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable{icon_state = "1-4"},/turf/open/floor/plasteel,/area/security/prison/upper) -"pfE" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/closet/secure_closet/brig{id = "Cell 2"; name = "Cell 2 Locker"},/obj/structure/cable{icon_state = "1-4"},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 8},/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 1},/turf/open/floor/plasteel,/area/security/brig) +"pfE" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/closet/secure_closet/brig{id = "Cell 2"; name = "Cell 2 Locker"},/obj/structure/cable{icon_state = "1-4"},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 8},/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 1},/obj/item/book/manual/prisoner_SOP,/turf/open/floor/plasteel,/area/security/brig) "phK" = (/obj/machinery/shower{pixel_y = 12},/obj/effect/turf_decal/loading_area{icon_state = "drain"; name = "drain"},/turf/open/floor/plasteel/freezer,/area/maintenance/starboard/fore) "pjs" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/security{dir = 8; name = "Evidence Storage"; req_access_txt = "3"},/turf/open/floor/plasteel/showroomfloor,/area/security/warden) "pjz" = (/obj/machinery/shower{dir = 4},/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 4},/obj/structure/cable{icon_state = "2-8"},/obj/effect/turf_decal/loading_area{dir = 8; icon_state = "drain"; name = "drain"},/turf/open/floor/plasteel/freezer,/area/security/prison/cells) @@ -7578,6 +7580,7 @@ "qnP" = (/obj/structure/chair{dir = 1},/turf/open/floor/plating,/area/maintenance/port/fore) "qqn" = (/obj/machinery/door/airlock{id_tag = "DormDepart"; name = "1st Class Lounge"},/turf/open/floor/plasteel/dark,/area/hallway/secondary/exit) "qra" = (/obj/structure/cable{icon_state = "2-4"},/obj/structure/cable{icon_state = "0-4"},/obj/effect/spawner/structure/window/reinforced/tinted/electrochromatic{electrochromatic_id = "!permabrigshowers"},/turf/open/floor/plating,/area/security/prison/cells) +"qrU" = (/obj/structure/table/wood,/obj/item/book/manual/greytide_SOP,/turf/open/floor/carpet/red,/area/maintenance/bar) "qwN" = (/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/red,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/obj/effect/decal/cleanable/dirt,/turf/open/floor/plasteel,/area/security/prison/cells) "qxr" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 4},/obj/machinery/camera{c_tag = "Brig Central"; dir = 8},/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 8},/turf/open/floor/plasteel,/area/security/brig) "qxG" = (/obj/machinery/door/airlock/public/glass{name = "Prison Common Room"},/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/dark,/area/security/prison/upper) @@ -7717,7 +7720,7 @@ "uQv" = (/obj/structure/flora/junglebush/large,/turf/open/floor/grass,/area/crew_quarters/fitness/sauna) "uRX" = (/obj/machinery/button/door{id = "RBreakPriv"; name = "Privacy Shutters"; pixel_y = -25},/turf/open/floor/carpet,/area/science/misc_lab) "uRY" = (/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/obj/effect/decal/cleanable/dirt,/obj/machinery/camera{c_tag = "Prison Laundry"; dir = 4; network = list("ss13","prison")},/turf/open/floor/plasteel/cafeteria,/area/security/prison/upper) -"uTq" = (/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/decal/cleanable/blood/old,/obj/machinery/button/door{id = "permacells3"; name = "Privacy Shutters"; pixel_x = 25},/turf/open/floor/plasteel/dark,/area/security/prison/cells) +"uTq" = (/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/decal/cleanable/blood/old,/obj/machinery/button/door{id = "permacells3"; name = "Privacy Shutters"; pixel_x = 25},/obj/item/book/manual/prisoner_SOP,/turf/open/floor/plasteel/dark,/area/security/prison/cells) "uTN" = (/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/door/airlock/public/glass{name = "Prison Yard"; dir = 4},/turf/open/floor/plasteel/dark,/area/security/prison/upper) "uWf" = (/obj/structure/table/glass,/obj/machinery/computer/med_data/laptop,/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/obj/effect/turf_decal/tile/neutral{dir = 1},/turf/open/floor/plasteel/dark,/area/security/brig) "uXO" = (/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/stripes/corner{dir = 8},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/decal/cleanable/dirt,/obj/machinery/status_display/ai{pixel_y = 32},/turf/open/floor/plasteel,/area/security/prison/cells) @@ -7755,7 +7758,7 @@ "vXw" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/security/range) "vXx" = (/obj/machinery/vr_sleeper{dir = 1},/turf/open/floor/plasteel,/area/security/prison/upper) "vXG" = (/obj/machinery/computer/arcade/orion_trail,/turf/open/floor/plasteel,/area/security/prison/upper) -"vXK" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/closet/secure_closet/brig{id = "Cell 1"; name = "Cell 1 Locker"},/obj/structure/cable{icon_state = "1-4"},/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 8},/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 1},/turf/open/floor/plasteel,/area/security/brig) +"vXK" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/closet/secure_closet/brig{id = "Cell 1"; name = "Cell 1 Locker"},/obj/structure/cable{icon_state = "1-4"},/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 8},/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 1},/obj/item/book/manual/prisoner_SOP,/turf/open/floor/plasteel,/area/security/brig) "vYw" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable{icon_state = "1-4"},/turf/open/floor/plasteel/dark,/area/security/execution/transfer) "wce" = (/obj/item/melee/baton/cattleprod,/obj/item/stock_parts/cell/high,/obj/item/electropack,/obj/structure/closet/secure_closet{name = "Persuasion Storage"; req_access = "list(2)"},/turf/open/floor/plasteel/dark,/area/security/brig) "wdy" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 1},/turf/open/floor/plasteel/showroomfloor,/area/security/warden) @@ -7792,7 +7795,7 @@ "xgz" = (/obj/structure/chair,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/security/processing) "xiB" = (/obj/effect/landmark/start/warden,/turf/open/floor/plasteel/showroomfloor,/area/security/warden) "xkX" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/catwalk_floor,/area/maintenance/department/medical/morgue) -"xlw" = (/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/landmark/start/prisoner,/obj/machinery/button/door{id = "permacells1"; name = "Privacy Shutters"; pixel_x = 25},/turf/open/floor/plasteel/dark,/area/security/prison/cells) +"xlw" = (/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/landmark/start/prisoner,/obj/machinery/button/door{id = "permacells1"; name = "Privacy Shutters"; pixel_x = 25},/obj/item/book/manual/prisoner_SOP,/turf/open/floor/plasteel/dark,/area/security/prison/cells) "xme" = (/obj/structure/closet/secure_closet/personal,/turf/open/floor/carpet/gato,/area/commons/dorms) "xmo" = (/obj/structure/sign/plaques/golden{pixel_y = 32},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/ai_monitored/security/armory) "xnZ" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/door/airlock/medical/glass{name = "Prison Forestry"; dir = 4},/turf/open/floor/plasteel/dark,/area/security/prison/upper) @@ -7949,7 +7952,7 @@ byGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaat byGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabhraGRaNMatJatJatJatJauSaAaauSayUaRJayUaNNaNOaNPaNQayUaRJayUayUauSayWaxBaKUaNRaNSaMDaMEaMFaweaNTaLbaxBaPmaPnaPvblCaPwaPwaPwaPxaPyaQCaNVaNZaPwaPwaPwaQEblDaPwblEblFblFblGaSyaQIaOgaOfaOgaOhaOiaOjaOlaOkaQMaRPaWUaOoaOpaIPaOqaOqaOqaOraOqaOqaOqaOqaOsaOqaOqaNbaNaaNgaLEaOtaLCaNdaOqaOqaPPaOqaOqaOqaOqaOqaOqaOqaOqaIPaIPaIPbfQbfQaRfbfQbfQbfQblHaJdblIblJblKblLaJhaLQaLQbeLblMblNaOAaOBaODaWFaOEblOaJiaOFaOGuNxaOIaKmaOHaOJaOKaHTsGRaFbaOLaOLaOMaONaOOaOOaOPaFbaOQaORaOSaCwaFfaFfbpJaFfaFflbTaDYaCwaOWaCwaQnbamipqazRbcjaSWaMyaSXaOZaSYaMzaMzaMzaMzaMzaMzaaaaaaaaaaaaaaaaaabyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyG byGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaRFatJbhrbanaaaaaaaaaaaaaaaaweawfaweayUaXfayUayWaxBaxBayXayUaXfayUaPcaPdaPeaxBaKUaPfaPgaKXaPhaKZaweaPiaLbaLOblPblQmgyaPkaPlaPlaPlaPlaPlaPlaQHaQLaPlaPoaPlaPlaPlaPpaPqaPraPqaPsaPtaPuaYMaLeaRObeuaRZbexblRaPzaScaPAaPAaPMaRgaRmaILaILaILaILaILaILaILaILaPCaPDaPEaPFaPEaPEaPEaPGaPEaPHaPEaPIaPCaILaILaILaILaILaILaILaILaPMaTSaUTaJdaJdaJdblSbeNbeNblSaJdaMOblTaRsblUblVblWblVaJiaSBblXblYaNmaNnaPRaRpblZbmaaOHaPSaPTaPTaPTaPTaPUaVtaHTaHUaFbaPVaMpaOMaONaMpaMpaPWaFbaPXaPYaPZaCwaFfrFuaQaaQbaQbaQcaQdaQeaQfaCwqqnbfTbmbbmcbmdaPbaMyaUsaVCbmeaXcaRkaRkaXdaRkbmfaaaaaaaaaaaaaaaaaabyGbyGbyGbyGbyGbyGbyGbyKbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyKbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyG byGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaatJaaaaQoaaaaaaaaaaxwaxyaxzayTaQpbkuaQqaPeaxBaxBaQraQqbkuaQpaPeaxBaxBaxBaQsaQtaQuaQvaQwaQxbmgaQyaQzaLObmhbmiaPjaQBaPluQvbpMlqGfNxaPlsswaThaTmnVktRyaUfaUCaPpaQNaQOaQPaPsnbdaPuaPuaQRaPuaPuaPAaPAaQSaQTaPAaPAaPAaQUbjWbbeaILaaaaaaaaaaaaaaaaaaaaauKSaKnaQVaQWaQXaQYaQZaRaaRbaRcaRdaReuKSaaaaaaaaaaaaaaaaaaaaaaILaVNaIPbjXaJdbmjaRjbmkaTUaNpbmlaWHbmmbmnbdaaSaaSaaSabmoaJiaSBaRoaRqaRuaRraRtaStaSEbmaaOHaRvaVsbmpbmpbmqaRxaOHaHTaRyaFbaRzooZbmraONaRAaRAaRBaFbaFbaRCaFbaCwaRDaGNaOTaREaREaOUaOVaCwaCwaCwaYNbmsbmtbbkaZNbnSaMyaRGaRHaMzaMzaMzaMzaMzaMzaRIaaaaaaaaaaaaaaaaaabyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyG -byGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaRFatJbhrbanaaaaaaaaaaaaaaaaweaXgawgaRKaRLaRLaRLaRLaRLaRLaRLaRLaRKaRLaRLazaaYOcfZnRaaVOaVPsMNaVTbmuaWNaXbaXyaPjaPjaPjaQBaPlkxbbpPbpPbsnaPlsswjmfbpQjTSbpfbpfkaraPpaRVaQOaQOaPsnbdaPuaRWaRXaRXaRYaPAaSdaTxaSbaTAaUNaSebbVbjWbbeaILaaaaaaaaaaaaaPCaPCaPCaPCaSgaShctzaSjaSkaSiaSmaSnctzaSlaSvaPCaPCaPCaPCaaaaaaaaaaaaaILbmvbmwbmxaJdbmybmzaKoaKoaKoaKobmAbmBaSfaSqaKoaKoaKobmCaVoaSBaSCaSDaSFaSGaSHaStaSBaSIaUcaSKbmDaZubbdbmEaSNaOHaHTaHUaFbbadaMpaOMaONaRAaRAaMpaSOaSPaMpaSQaCworqaSRaSSaREaREaVAaSUaSVaCwbchbcibmFbmGbckaZObdjbdmbdnbdobmHbetaRkaRkaRkaRkbpIaTaaaaaaaaaaaaaaaabyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyG +byGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaRFatJbhrbanaaaaaaaaaaaaaaaaweaXgawgaRKaRLaRLaRLaRLaRLaRLaRLaRLaRKaRLaRLazaaYOcfZnRaaVOaVPsMNaVTbmuaWNaXbaXyaPjaPjaPjaQBaPlkxbbpPbpPbsnaPlsswjmfbpQjTSbpfbpfkaraPpaRVaQOaQOaPsnbdaPuaRWaRXaRXaRYaPAaSdaTxaSbaTAaUNaSebbVbjWbbeaILaaaaaaaaaaaaaPCaPCaPCaPCaSgaShmGYaSjaSkaSiaSmaSnctzaSlaSvaPCaPCaPCaPCaaaaaaaaaaaaaILbmvbmwbmxaJdbmybmzaKoaKoaKoaKobmAbmBaSfaSqaKoaKoaKobmCaVoaSBaSCaSDaSFaSGaSHaStaSBaSIaUcaSKbmDaZubbdbmEaSNaOHaHTaHUaFbbadaMpaOMaONaRAaRAaMpaSOaSPaMpaSQaCworqaSRaSSaREaREaVAaSUaSVaCwbchbcibmFbmGbckaZObdjbdmbdnbdobmHbetaRkaRkaRkaRkbpIaTaaaaaaaaaaaaaaaabyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyG byGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabhrbclbhPatJatJatJatJauSauSauSauSayUayUayUayUayUayUayUayUauSauSmJZaAgaTbxIJaTcaTdaTcnGbaTcaTcaTeaTcaTcaPjaQAaTfaTgaPltIrbfRbfRhaVaPljNLbpfbpfaTouAvpYbaVMaPpaTqaTraTsaPsaQQaPuaTtaTuaTvaTwaPAaUOaTyaSbaTzaUPaSebbVaPBbbeaILaILaTBaPCaPCaPCaTCaTDaTEaTFaTGaTLaTIaTJxHvaTKaTHaTLaTMaTNaTOaTPaTQaPCaPCaPCaTBaILaILbmJaIPbjXaJdaSraKobmKbmLbmLbmMbmNaNqaSsbmMbmLbmLbmObmCaVoaSBaSCbmPaTXaTYaTZaUaaSBaUbaUcaUdbmQbejbelbmRaUgaUhaHTaHUaFbaUihsZaOMaONaUjaMpaMpaUkbmSaUlaUmaCwaUnaUoaUpaREaREaUqaUrlJOaCwbewaQjaQhbmTbckaZPbfVbfWaQhaQibmUaMzaMzaMzaMzaMzaMzaaaaaaaaaaaaaaaaaabyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyG byGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaaaaaaaaaatJaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaayUbmVayWayXmChaTcaUvdOeaUuaUwaUynzpaUwaTcbmWaRTaUAaUBaPlkWDbfRbfRvpOaPlsswirIlAqaUKaULaUMhzoaPpaPpaPpaPpaPsaQQaPuaPuaPuaPuaPuaPAaUQbgfbmXbmYbmZaSebbVaIPbbeaBuaIRaURaUSaZQaPCaUUlTjaUWaUXaUYaUXaUZaVaaVbaVcaVdaVeaVfaVdaVgaSoaViaPCaZRaUSaVkaVlaCTaVNaIPaxxaJdbnaaKobnbbnckLWbnebnfbngaSzbnebndbnhbnibmCaVoaSBbnjbnkbnlaVpbnkbnmbnnaJiaVraUdbnobnpbnpbnqaUgaVtaHTaVuaFbaFbaFbeObaONaVvaVwaMpaVxaVybnraVzaCwuHUaSRaSSaREaREaVAaSUaVBaCwbnsaQjaQhbmTbntbnubnvbfWaQhaQibmUaMzaZNaZOaZPaMzcPzaaaaaaaaaaaaaaaaaabyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyG byGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaatJaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaVDayUayUayWaYSbYnaTcaUxaUuaUuaVHaVIaUzaUwaTcaVJaVKaVQaRTaPlbqwbfRbfRaXtaPlsswkarrWjjtZdIzaXuaXvaPlaVUaVVaVWaVXaVYaVZaWaaWbaWcaWdaWdaWdaWdaWdaWdaWdaWdbbVaIPbjXaCVaIPaWeaWfaWgaWhaWiaWjaWkaWlaWmaWnaWoaWpaWqaWraWsaWtaWuaWvaWkaWwaWxaWyaWzaWAaWBaWCaEpaLyaIPbjXblSbnxaKobnybnzbnzbnAbnBbnCaSAbnAbnzbnzbnDbmCbnEbnFbnGbnHbnIbnJbnKbnLaYoaJiaOHaUdaRwaZWaZWaRwaUgaOHaHTaWDbnMbnNaWPaWQaWRaWSaWSaWTaOMaOMaOMaOMbegaREaREaREaREaREaWVaWWaWXaYIaWZbnObnPbnQbnRaZObnSbfWaQhaQibnTaMzaZPaSTbnUaMzbnwaaaaaaaaaaaaaaaaaabyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyG @@ -7997,7 +8000,7 @@ byGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGby byGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaaaaaaaaaaaaaaaaaaaoBaadaaeaaeaaeaaeaaeckubTLckvbTLckwckxcjhckybTLckzbTLbObcjlckAcjlckBckCcjlckDbWFbXTcilcjqckEckFckGckHckIcjqckJckKckLggkckNcimcinbObchnchocgsbYdckObYdckPckQcjFckRckSckTbYdckUcfAckVcjIckWciDckXckYckZclacgDclbcjOclccbYcldcleclfcaBaadbOhciHbOhclgclhwHdbZvclicljclkcllclmcljclnchNclnclocckwHdbODbPWbPWbPWclpclqcePclrbYzcgRclscgTcgTcgUbODcltcluclvclwcltcltclxclyclzclAclBclCclDclEcjfclFcjfrWbbXEclGbXEclHbXEatJcsjaadaaaaaaaaaatJaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyG byGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaaaaaaaaaaaaaaaaaaaoBaaaaoBaoBaoBaadaadbXSbXSbXSclIclJclKclLclMccHbObbObclNcjlclOclPcnRcnRclRclRbWFbXTcilclSclTclUckGclVclSclSckJclWclXclYclZcimcinbObchnchoaYncjFcmbcmccmccmdcjFcmfcmgcmhbYdbZucfAcmicmjckWcmkckXckYcmlcmmcgDcmncjOcmpcmqcmrcmscmtcaBaadbOhciHbOhbUcbUcbLBbZvbZwcmucmvbZwcmwbZwbZwbZwbZwbZwbZvwHdbODbVYbVYbVYbVYchQcmxcfUcmychQbVYbVYbVYbVYbODcmzcmAcmzcmBcmzcltclxclycmCcmDcjfcmEcmFcmEcjfcmGcjfrWbbXEcmHcmIcblbZYatJaaaatJaaaaaaaaaatJaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaoBaaaaaabyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyG byGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaadaadaadaadaadaadaadaaaaaaaaaaaaaaaaaaaadaadaadbXScmJcmKcmKcmLcjkbXRbObcmMcmNcjlcmOclPcnRcnRmUPpmpbShbXTcilclSclScmScmTcmUcmVcmWcmXcmYcmZcnacnbcimcinbObcnccndcnecjFcnfcngcnhcnicnjcnjcnjcnjcbOcbQcfAckVcjIckWcnpckXcmkcnqchBcnrcnsceCcntcnucnvbfoclecaBaadcccciHcnwbOhcnxbLBcnycgIcgIcnzbZwcnAcnBcnCbOhcnDcnEbOCwHdbODciNcgTcgTcnFciPbYzciQcePcnGcnHbPWbPWbPWbODcnIcmzcmzcmzcmzcltcnJcnJcnKcmDcjfcnLcnLcnLcnLcnLcjfrWbbXEcnMcbmcnNbZYatJaaaatJaaaaaaaaaatJaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyG -byGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaQaaQaaQaaQaaQaaQaaQaaQaaQaaYaaQaaQaaQaaQaaQaaaaaabObbObbObbObbObbObcnObObbObbObbObcnPcnQcjlcmOclPcnRcnRcmOcmRbShbXTcilcnScnTcnUcnVcjqcmSapccnWaWYcnXcnYcnZcimcoacobcoccodcgscjFcoecnkcogcohcoicojcokcolbYdbZuconcjIcjIcjIcoobZucopcoqchBchCbZucdtcorcoscaBcaBcaBcaBaadccccotcoubOhcovcowcoxiDWcoycozbOhcoAcoBcoCbOhcoDbYubYwcoEbODckackebPWcoFckcbYzcfUbYzcfVcoGbPWbPWcfXbODcoHcmzcoIcoJcoKcoLcoMcoNcoOcmDcjfcnLcoPcoQcnLcnLcjfrWbbXEcoScoTccDbZYatJaaaatJaaaaaaaaahAVaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyG +byGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaQaaQaaQaaQaaQaaQaaQaaQaaQaaYaaQaaQaaQaaQaaQaaaaaabObbObbObbObbObbObcnObObbObbObbObcnPcnQcjlcmOclPcnRcnRqrUcmRbShbXTcilcnScnTcnUcnVcjqcmSapccnWaWYcnXcnYcnZcimcoacobcoccodcgscjFcoecnkcogcohcoicojcokcolbYdbZuconcjIcjIcjIcoobZucopcoqchBchCbZucdtcorcoscaBcaBcaBcaBaadccccotcoubOhcovcowcoxiDWcoycozbOhcoAcoBcoCbOhcoDbYubYwcoEbODckackebPWcoFckcbYzcfUbYzcfVcoGbPWbPWcfXbODcoHcmzcoIcoJcoKcoLcoMcoNcoOcmDcjfcnLcoPcoQcnLcnLcjfrWbbXEcoScoTccDbZYatJaaaatJaaaaaaaaahAVaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyG byGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaQaaaaadaaaaadaaaaadaaaacfaaaaadaaaaadaaaaaQaadaadbObcoUcoVbTLcoWbTLbTLbTLbTLbXRbObcoXcoYcoZkJiclPcnRcnRjXNjXNbShbXTcilcpccpdcmUcmUcmUcpecpfcpgcphcpicpjcpkcimbObbObcplcpmcpncjFcjFcpobnZcohcprcprcprcprbYdcnncnocptcpucpvcpwcpxcpycpzclacgDcpAcjOclccnucpBcpCcpCcaBaadcccbLAciHbOhbOhcpDbKtbOhcpEwKnbOhbOhcpGbOhbOhwKncpHbSXcpIbODbPWbPWbPWcpJcpKcePclrbYzcgRcpLcgTcgTcgUbODcmzcmzcpMcmzcmzcltcnJcnJcpNcpOcjfcnLcnLcpPcnLcnLcjfrWbbXEbXEbXEccDbXEaadaaaatJaaaaaaaaaatJaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyG byGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaQaaacpQcpRcpSaaacpQcpRcpSaaacpQcpRcpSaaaaaQaaaaaabObcpTbTLcpUbObbObcpVbObbObbObbObckAcpWckAckAcjlcjlcjlcjlcjlbShbXTcilclScpXcpYcjqcpZclSclSckJcqackMcqbcqccqdcqecqfcqgcqhcqicqjcqkcqlcqmcqntDkcqpcqqcqrbYdcqtcqucqvceucqwcqxcgycqycgCcexchCcqzcdtcorcqAcqBcqCcqDcaBaadbOhbOhciHcqEcqFcpDcqGbOhcpEcqHbYucqIcqJcqKbYucqLcqMbXGcqNbODbVYbVYbVYbVYchQcqOcfUcqPchQbVYbVYbVYbVYbODcltcltcltcltcltcltcqQcqQcqRcqScjfcjfcjfcjfcjfcjfcjfrWbbXEcqTgWmccDbXEaadaadlHkaaaaaaaaaatJaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyG byGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaQaadcpQcqVcpSaaacpQcqVcpSaaacpQcqVcpSaadaadaaaaaabObcqWbTLbTLbObcfibTLcqYccNcgjbObcqZcracrbckAaMqcjlcjlclQclQbWFbXTcilcjqcrdcrecjqcrfcrgcjqckJcrhcricrjcrkcrlcrmcrncrocrpcrqcrrcrscrtcrucrvbFXcrxbnZcnkbYdcrzbZucpscgycrAcrBcrCcrDcrEbZtcrFcrGceCcntcnucrHqcIcpCcaBaadbOhbLAcrIcrJcrKcrLbYmbOhcrMcrNcrOcqMbOCcqMcpHcrPcrQbXGcrRbODciNcgTcgTcrSciPbYzcrTcePcrUcrVbPWbPWbPWbODcrWbZWcrXcrYcrYcltcrZcrZcqRcmDcltcnMcsacoScsbcscbXErWbbXEcsbcsbccDbXEbXEbXEaaeaaaaaaaaaatJaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyG @@ -8011,7 +8014,7 @@ byGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGby byGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaadcpQcyJcpSaaacpQcyJcpSaaacpQcyJcpSaadaadaadaaaaaaaaaaaaaaebObbObbObczJbTLbObczJbVocyLczKczLczMczLczNcyLaaabObcfjbTLczOcyNcyLczPczPczQcyLcyLczRczSczTczUczVcyLczWczXczWctBctBctBczYczZcAactBcAbcAccAdcyLcaBcAecAfcAgcaBcAhcAicAjcaBcAkcAlcAmcaBaoBaoBcoraoBaoBcypctQcAncAocApcAqcArcAscAtctOcAucAvcAwcAxcAycAzcqMcpHcrPcAAcABcABcACcACcACcACcACcADcAEcACcACcACcACcACcAFcAGcAHcAIbXEcAJcmHcmIctkcmIcmIcmIcmIcAKcALcAMcyGcANcAOcAPcyGaadaaaaaaaaaaaaaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyKbyGbyGbyGbyGbyGbyGbyG byGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaQaaacpQcyJcpSaadcpQcyJcpSaadcpQcyJcpSaaaaadaadaadaaaaaaaaaaaecAQcARcASbTLbTLcgibTLcATcyLcAUcAVcAWcAXcAYcyLaaabObctubTLczOcyNcyLczPczPczQcyLcyLcAZcBacBbcBccBdcyLcBacBacBacyLcBecBfcBgcBhcBicBjcBkcppaZHcyLcaBcBmcBncBmcaBcBocBpcBocaBcBqcBrcBscaBaadaadcoraadaadcypctQctQctQcBtcBucBvcBwcBxcBycAucBzcBAcBBcBCcBDcrQcqMcBEbOhcBFbOhbZYbZYbZYbXEbXEbZYbZYbZYbXEbXEbZYbZYbZYbXEcBGcscbXEcBHcBIcBIcBJcBIcwncwncwncBKcBKcAIcyGcBLcBMcBNcyGaadaaaaadaaaaaaaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyG byGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaQaadcpQcyJcpSaaacpQcyJcpSaaacpQcyJcpSaadaadaaaaadaadaaaaaaaaebObbObbObbObbTLbObbObbObcyLcBOcBPcBQcBRcBScyLaadcBTcyLcBUcBVcBWcyLczPczQczQcyLcBXcBYcBgcBhcsFcCacCbcCccCccCccCdcCecCfcCfcCfcCgcChcCicvHcCjcyLcaBcBmcCkcBmcaBcBocClcBocaBcBscCmcBscaBaadaadcoraoBaoBcCncCoaoBaoBcCpcCqcCrcCscCtcCubLAcCvcCwcrPcCxcCycpHcCzcCAbOhcsbbXEaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaaabXEcCBcvobXEbXEbXEbXEbXEcsbbXEaadaaaaaaaaaaadcCCcCCcCDcCCcCCaadaadaadaadaadaadaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyG -byGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaYaaacpQcCEcpSaaacpQcCEcpSaaacpQcCEcpSaaaaaQaaaaaaaadaadaaaaaaaaaaaaaaabXSbTLbXSaaaaaacyLcCFcAVcCGcAXcCHcyLcyLcyLcyLcCIcBVcCJcyLcyLcyLcyLcyLcCKcCLcChcChcsFcppcChcCMcChcCNcChcChcChcChcChcCOcChcsFcppcCPcyLcaBcaBcaBcaBcaBcaBcaBcaBcaBcaBcaBcaBcaBaadaoBcoraoBaoBaoBcypaoBaoBcCQcCRcBxcCScBxcCRbOhcCTcCUcrPcCVcrPcCWbOhbOhbOhcCXbXEaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaaabXEcCYcsbcsbcsbcsbcsbcsbcsbbXEaadaaaaaaaaaaadaaacCCcCZcCCaaaaadaaaaadaaaaaaaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyG +byGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaYaaacpQcCEcpSaaacpQcCEcpSaaacpQcCEcpSaaaaaQaaaaaaaadaadaaaaaaaaaaaaaaabXSbTLbXSaaaaaacyLcCFcAVcCGcAXcCHcyLcyLcyLcyLcCIcBVcCJcyLcyLcyLcyLcyLcCKcCLcChcChcsFcppcChcCMcChcCNcChcChcChcChcChcCOcChcsFcppcCPcyLcaBcaBcaBcaBcaBcaBcaBcaBcaBcaBcaBcaBcaBaadaoBcoraoBaoBaoBcypaoBaoBcCQcCRcBxcCScBxcCRbOhcCTcCUgyQcCVcrPcCWbOhbOhbOhcCXbXEaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaaabXEcCYcsbcsbcsbcsbcsbcsbcsbbXEaadaaaaaaaaaaadaaacCCcCZcCCaaaaadaaaaadaaaaaaaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyG byGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaQaaaaadaaaaadaaaaadaaaaadaaaaadaaaaadaaaaaQaaaaaaaaaaadaadaaaaaaaaaaaabXSbTLbXSaaaaaacyLcDacDbcDccDdcDecDfcDgcDhcDfcDicDjcDkcDlcDmcDncDocDpcDqcDrcDscDscDscDscDscDscDscDscDscDscDscDscDscDscDscDscppcDtcyLcyLcyLcyLcyLcyLcyLcyLcyLcyLaaaaaaaaaaaaaoBaoBcoraoBaoBaoBcypaoBaoBcCQcCRcDucDvcDwcDxaadbOhcDycccccccccbOhbOhaaabhrbhrbhraaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaadbXEcDzcDAcDBcDCcDDbYTbZTbXEbXEaadaaaaaaaaaaadaaacCCcDEcCCaaaaadaaaaadaaaaaaaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyG byGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaQaaQaaQaaQaaQaaYaaQaaQaaQaaQaaQaaQaaQaaQaaQaaaaaaaaaaaaaadaadaaaaaaaadbXSbTLbXSaadaadcyLcDFcDGcDHcDIcDJcDKcDLcDMcDNcDOcDPcDQcDRcDRcDRcDScDRcDTcDscDscDscDscDscDscDscDscDscDscDscDscDscDscDscDscDscDUcqocqocDWcDXcDYcyLcDZcyLaaaaaaaaaaaaaaaaaaaaaaoBaoBcoraoBaoBaoBcypaoBaoBcCQcCRcCRcEacCRcCRaaaaaacEbaaaaoBaaaatJaaaaaaatJaaaatJaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabXEbXEbXEcEcbXEcEdbZYbZYbXEbXEaaaaadaaaaaaaaaaadaaaaaacEeaaaaaaaadaaaaadaaaaaaaadaaaaaaaaaaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyG byGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaadaaaaaabXSbTLbXSaaaaaacyLcEfcEgcEhcEicEjcyLcEkcElcyLcEmcEncEocCMcChcEpcBacDscDscDscDscDscDscDscDscDscDscDscDscDscDscDscDscDscDscDscEqcEqcEqcErcppcEscEtcxVcEuafoaaaaaaaaacEvaaaaaaaoBaoBcoraoBaoBaoBcypaoBaoBcCQaaecCRcEwcCRcExaaaaaacEbaaaaoBaaaatJaaaaaaatJaaaatJaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabXEcEycEzcEzbXEcEAaaaaaaaadaaaaaaaadaaaaaaaaaaadaaaaaacEeaaaaaaaadaaaaadaaaaaaaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyG diff --git a/_maps/map_files/CogStation/CogStation.dmm b/_maps/map_files/CogStation/CogStation.dmm index 9a7a3df513..df5c120d60 100644 --- a/_maps/map_files/CogStation/CogStation.dmm +++ b/_maps/map_files/CogStation/CogStation.dmm @@ -2455,6 +2455,9 @@ /obj/structure/sign/poster/contraband/red_rum{ pixel_y = 32 }, +/obj/item/book/manual/service_SOP, +/obj/item/book/manual/service_SOP, +/obj/item/book/manual/service_SOP, /turf/open/floor/plasteel/dark, /area/hallway/secondary/service) "afW" = ( @@ -3065,7 +3068,6 @@ /obj/effect/turf_decal/tile/purple{ dir = 8 }, -/obj/item/storage/box/disks, /obj/structure/extinguisher_cabinet{ pixel_x = -26 }, @@ -3073,6 +3075,7 @@ dir = 8; light_color = "#e8eaff" }, +/obj/item/book/manual/greytide_SOP, /turf/open/floor/plasteel, /area/commons/lounge) "ahu" = ( @@ -3327,6 +3330,9 @@ }, /obj/item/paper_bin, /obj/item/pen, +/obj/item/book/manual/greytide_SOP{ + pixel_x = -16 + }, /turf/open/floor/carpet{ icon_state = "carpetsymbol" }, @@ -4297,6 +4303,7 @@ /obj/effect/turf_decal/tile/red{ dir = 4 }, +/obj/item/book/manual/sec_SOP, /turf/open/floor/plasteel, /area/security/warden) "akq" = ( @@ -4374,6 +4381,7 @@ /obj/structure/bed, /obj/item/clothing/glasses/sunglasses/blindfold, /obj/effect/decal/cleanable/dirt, +/obj/item/book/manual/prisoner_SOP, /turf/open/floor/plasteel, /area/security/prison) "akx" = ( @@ -7211,6 +7219,8 @@ /obj/machinery/atmospherics/pipe/simple/cyan/hidden{ dir = 4 }, +/obj/item/book/manual/greytide_SOP, +/obj/structure/rack/shelf, /turf/open/floor/carpet/purple, /area/commons/dorms/purple) "ari" = ( @@ -7369,6 +7379,8 @@ /obj/machinery/airalarm{ pixel_y = 24 }, +/obj/item/book/manual/greytide_SOP, +/obj/structure/rack/shelf, /turf/open/floor/carpet/blue, /area/commons/dorms/blue) "arA" = ( @@ -8803,6 +8815,7 @@ /obj/machinery/atmospherics/pipe/simple/orange/hidden{ dir = 8 }, +/obj/item/book/manual/prisoner_SOP, /turf/open/floor/padded, /area/security/brig) "auJ" = ( @@ -10179,6 +10192,7 @@ dir = 4 }, /obj/item/clothing/head/cowboyhat/sec, +/obj/item/book/manual/sec_SOP, /turf/open/floor/plasteel, /area/security/brig) "axw" = ( @@ -10231,6 +10245,7 @@ /obj/effect/turf_decal/bot, /obj/item/clothing/accessory/armband/science, /obj/item/encryptionkey/headset_sci, +/obj/item/book/manual/sec_SOP, /turf/open/floor/plasteel, /area/security/brig) "axB" = ( @@ -10238,6 +10253,7 @@ /obj/effect/turf_decal/bot, /obj/item/clothing/accessory/armband/medblue, /obj/item/encryptionkey/headset_med, +/obj/item/book/manual/sec_SOP, /turf/open/floor/plasteel, /area/security/brig) "axC" = ( @@ -11359,6 +11375,7 @@ /obj/item/clothing/under/costume/maid, /obj/item/stack/spacecash/c10, /obj/item/clothing/under/suit/waiter, +/obj/item/book/manual/service_SOP, /turf/open/floor/plasteel/grimy, /area/service/bar) "azS" = ( @@ -11860,6 +11877,7 @@ /obj/effect/turf_decal/bot, /obj/item/clothing/accessory/armband/engine, /obj/item/encryptionkey/headset_eng, +/obj/item/book/manual/sec_SOP, /turf/open/floor/plasteel, /area/security/brig) "aAT" = ( @@ -12450,6 +12468,7 @@ }, /obj/item/clothing/accessory/armband/cargo, /obj/item/encryptionkey/headset_cargo, +/obj/item/book/manual/sec_SOP, /turf/open/floor/plasteel, /area/security/brig) "aCd" = ( @@ -17478,7 +17497,6 @@ "aMh" = ( /obj/structure/table/reinforced, /obj/machinery/recharger, -/obj/item/reagent_containers/food/drinks/bottle/champagne, /obj/machinery/atmospherics/pipe/simple/cyan/hidden, /obj/machinery/requests_console{ announcementConsole = 1; @@ -18744,6 +18762,7 @@ /obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ dir = 4 }, +/obj/item/book/manual/sec_SOP, /turf/open/floor/plasteel, /area/security/brig) "aOX" = ( @@ -20159,11 +20178,13 @@ /area/maintenance/department/security) "aSh" = ( /obj/structure/table, -/obj/item/storage/fancy/donut_box, /obj/structure/cable{ icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/orange/hidden, +/obj/item/storage/fancy/large_donut_box{ + pixel_y = 8 + }, /turf/open/floor/carpet/red, /area/security/brig) "aSi" = ( @@ -20877,6 +20898,7 @@ pixel_y = 28 }, /obj/structure/rack/shelf, +/obj/item/book/manual/greytide_SOP, /turf/open/floor/plasteel, /area/commons/cryopod) "aTM" = ( @@ -21238,6 +21260,7 @@ /area/security/courtroom) "aUF" = ( /obj/structure/table/wood, +/obj/item/book/manual/command_SOP, /turf/open/floor/carpet/blue, /area/command/heads_quarters/hop) "aUG" = ( @@ -21699,11 +21722,12 @@ /area/hallway/secondary/civilian) "aVI" = ( /obj/structure/table, -/obj/item/storage/box/zipties, /obj/structure/cable{ icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/manifold/orange/hidden, +/obj/item/book/manual/sec_SOP, +/obj/item/book/manual/sec_SOP, /turf/open/floor/carpet/red, /area/security/brig) "aVJ" = ( @@ -23528,6 +23552,9 @@ name = "Law Office Counter"; req_access_txt = "38" }, +/obj/item/book/manual/sec_SOP{ + pixel_x = 16 + }, /turf/open/floor/plasteel/dark, /area/service/lawoffice) "aZJ" = ( @@ -24040,11 +24067,10 @@ "baK" = ( /obj/structure/table/reinforced, /obj/machinery/light, -/obj/item/kitchen/fork, -/obj/item/reagent_containers/food/snacks/pastatomato, /obj/machinery/newscaster/security_unit{ pixel_y = -30 }, +/obj/item/book/manual/sec_SOP, /turf/open/floor/plasteel/grimy, /area/command/heads_quarters/hos) "baL" = ( @@ -24324,6 +24350,9 @@ /obj/item/book/manual/gato_spacelaw, /obj/item/book/manual/gato_spacelaw, /obj/item/book/manual/gato_spacelaw, +/obj/item/book/manual/sec_SOP, +/obj/item/book/manual/sec_SOP, +/obj/item/book/manual/sec_SOP, /turf/open/floor/plasteel/dark, /area/service/lawoffice) "bbp" = ( @@ -27030,6 +27059,7 @@ /obj/machinery/firealarm{ pixel_y = 26 }, +/obj/item/book/manual/greytide_SOP, /turf/open/floor/plasteel/dark, /area/commons/lounge/jazz) "bhw" = ( @@ -28041,6 +28071,7 @@ /area/command/heads_quarters/hop) "bjG" = ( /obj/structure/rack, +/obj/item/book/manual/greytide_SOP, /turf/open/floor/plasteel, /area/hallway/primary/central) "bjH" = ( @@ -28212,11 +28243,11 @@ /turf/open/floor/plasteel, /area/hallway/primary/aft) "bjX" = ( -/obj/structure/rack, /obj/machinery/button/door{ id = "marketdoor"; pixel_y = 24 }, +/obj/structure/rack/shelf, /turf/open/floor/plasteel, /area/hallway/primary/central) "bjY" = ( @@ -30260,6 +30291,7 @@ dir = 1 }, /obj/structure/closet/secure_closet/security/cargo, +/obj/item/book/manual/sec_SOP, /turf/open/floor/plasteel, /area/security/checkpoint/supply) "bnY" = ( @@ -32315,6 +32347,7 @@ pixel_x = -6 }, /obj/structure/window/reinforced/spawner/east, +/obj/item/book/manual/med_SOP, /turf/open/floor/plasteel/white, /area/medical/medbay/lobby) "bst" = ( @@ -34356,6 +34389,7 @@ /obj/structure/sign/poster/official/bless_this_spess{ pixel_x = -32 }, +/obj/item/book/manual/service_SOP, /turf/open/floor/plasteel, /area/service/janitor) "bxj" = ( @@ -38314,6 +38348,7 @@ dir = 8; light_color = "#e8eaff" }, +/obj/item/book/manual/greytide_SOP, /turf/open/floor/wood, /area/commons/fitness) "bFO" = ( @@ -42580,6 +42615,7 @@ /obj/structure/cable{ icon_state = "4-8" }, +/obj/item/book/manual/command_SOP, /turf/open/floor/carpet{ icon_state = "carpetsymbol" }, @@ -43888,17 +43924,10 @@ /area/engineering/atmos) "bRD" = ( /obj/structure/table/wood, -/obj/item/reagent_containers/food/drinks/drinkingglass{ - pixel_x = -6; - pixel_y = 2 - }, -/obj/item/reagent_containers/food/drinks/drinkingglass{ - pixel_x = 6; - pixel_y = 3 - }, /obj/structure/cable{ icon_state = "1-4" }, +/obj/item/book/manual/command_SOP, /turf/open/floor/plasteel/dark, /area/command/bridge) "bRE" = ( @@ -44149,6 +44178,7 @@ }, /obj/item/storage/belt/medolier, /obj/item/clothing/neck/stethoscope, +/obj/item/book/manual/med_SOP, /turf/open/floor/plasteel/white, /area/medical/medbay/central) "bSb" = ( @@ -45526,6 +45556,7 @@ /obj/item/clothing/suit/space/eva, /obj/item/clothing/head/helmet/space/eva, /obj/item/paper/fluff/cogstation/letter_qm, +/obj/item/book/manual/supply_SOP, /turf/open/floor/plasteel, /area/cargo/qm) "bUT" = ( @@ -45537,6 +45568,7 @@ /obj/structure/disposalpipe/segment{ dir = 9 }, +/obj/item/book/manual/supply_SOP, /turf/open/floor/plasteel, /area/cargo/sorting) "bUU" = ( @@ -47459,6 +47491,9 @@ /obj/machinery/atmospherics/pipe/simple/orange/hidden{ dir = 10 }, +/obj/item/book/manual/science_SOP{ + pixel_x = 8 + }, /turf/open/floor/plasteel, /area/science/research) "bYv" = ( @@ -47591,6 +47626,7 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, +/obj/item/book/manual/med_SOP, /turf/open/floor/plasteel/white, /area/medical/medbay/central) "bYK" = ( @@ -49326,6 +49362,9 @@ /obj/machinery/atmospherics/pipe/simple/orange/hidden{ dir = 8 }, +/obj/item/book/manual/greytide_SOP{ + pixel_x = 12 + }, /turf/open/floor/plasteel, /area/hallway/secondary/exit/departure_lounge) "ccy" = ( @@ -57176,6 +57215,9 @@ pixel_y = -32; receive_ore_updates = 1 }, +/obj/item/book/manual/science_SOP{ + pixel_x = 16 + }, /turf/open/floor/plasteel/dark, /area/command/heads_quarters/rd) "csg" = ( @@ -57764,6 +57806,7 @@ pixel_y = -22 }, /obj/item/paper/guides/cogstation/letter_chief, +/obj/item/book/manual/engi_SOP, /turf/open/floor/plasteel, /area/command/heads_quarters/ce) "cto" = ( @@ -57867,6 +57910,7 @@ /area/cargo/sorting) "cty" = ( /obj/structure/table/wood, +/obj/item/book/manual/supply_SOP, /turf/open/floor/plasteel, /area/cargo/miningoffice) "ctz" = ( @@ -57949,6 +57993,9 @@ /obj/machinery/door/firedoor/border_only{ name = "south facing firelock" }, +/obj/item/book/manual/engi_SOP{ + pixel_x = 16 + }, /turf/open/floor/plasteel, /area/engineering/workshop) "ctF" = ( @@ -58919,6 +58966,7 @@ name = "Station Intercom (Medical)"; pixel_y = -30 }, +/obj/item/book/manual/med_SOP, /turf/open/floor/plasteel/cafeteria, /area/medical/medbay/central) "cvx" = ( @@ -62180,6 +62228,9 @@ /obj/machinery/atmospherics/pipe/simple/cyan/hidden{ dir = 4 }, +/obj/item/book/manual/engi_SOP{ + pixel_x = 16 + }, /turf/open/floor/plasteel, /area/engineering/break_room) "cBJ" = ( @@ -67060,6 +67111,7 @@ dir = 1 }, /obj/item/paper/guides/cogstation/letter_cmo, +/obj/item/book/manual/med_SOP, /turf/open/floor/plasteel/white, /area/command/heads_quarters/cmo) "cKk" = ( @@ -71843,6 +71895,11 @@ /obj/effect/landmark/start/librarian, /turf/open/floor/plasteel/dark, /area/service/library) +"oQD" = ( +/obj/machinery/light/small, +/obj/item/book/manual/science_SOP, +/turf/open/floor/plasteel/dark, +/area/science/observatory) "pgu" = ( /obj/structure/lattice, /obj/machinery/atmospherics/pipe/simple/orange/visible, @@ -72604,6 +72661,15 @@ /area/engineering/atmos) "vAI" = ( /obj/structure/bookcase/manuals/engineering, +/obj/item/book/manual/command_SOP, +/obj/item/book/manual/engi_SOP, +/obj/item/book/manual/greytide_SOP, +/obj/item/book/manual/med_SOP, +/obj/item/book/manual/prisoner_SOP, +/obj/item/book/manual/science_SOP, +/obj/item/book/manual/sec_SOP, +/obj/item/book/manual/service_SOP, +/obj/item/book/manual/supply_SOP, /turf/open/floor/wood, /area/service/library) "vFS" = ( @@ -95958,7 +96024,7 @@ cGn cJp cJp cKt -cKu +oQD cze aaU aaa diff --git a/_maps/map_files/KiloStation/KiloStation.dmm b/_maps/map_files/KiloStation/KiloStation.dmm index d29ad9dae8..a277b0db0a 100644 --- a/_maps/map_files/KiloStation/KiloStation.dmm +++ b/_maps/map_files/KiloStation/KiloStation.dmm @@ -5027,7 +5027,9 @@ dir = 8 }, /obj/effect/turf_decal/tile/red, -/obj/item/storage/fancy/donut_box, +/obj/item/storage/fancy/large_donut_box{ + pixel_y = 8 + }, /turf/open/floor/plasteel, /area/security/office) "aiJ" = ( @@ -5045,6 +5047,10 @@ /obj/item/book/manual/gato_spacelaw, /obj/item/book/manual/gato_spacelaw, /obj/item/book/manual/gato_spacelaw, +/obj/item/book/manual/sec_SOP{ + pixel_y = 8; + pixel_x = 8 + }, /turf/open/floor/plasteel, /area/security/office) "aiK" = ( @@ -6604,6 +6610,7 @@ /obj/machinery/status_display/evac{ pixel_y = 32 }, +/obj/item/book/manual/sec_SOP, /turf/open/floor/plasteel/dark, /area/security/brig) "alB" = ( @@ -7262,6 +7269,9 @@ /obj/item/book/manual/gato_spacelaw{ pixel_x = 12 }, +/obj/item/book/manual/sec_SOP{ + pixel_x = -8 + }, /turf/open/floor/plasteel/dark, /area/command/heads_quarters/hos) "amI" = ( @@ -9005,6 +9015,7 @@ /obj/effect/turf_decal/tile/neutral{ dir = 8 }, +/obj/item/book/manual/sec_SOP, /turf/open/floor/plasteel/dark, /area/security/brig) "apI" = ( @@ -9574,6 +9585,7 @@ pixel_x = 1 }, /obj/item/book/manual/gato_spacelaw, +/obj/item/book/manual/gato_spacelaw, /turf/open/floor/plasteel/dark, /area/command/bridge) "aqE" = ( @@ -9584,6 +9596,8 @@ }, /obj/effect/turf_decal/tile/neutral, /obj/machinery/keycard_auth, +/obj/item/book/manual/command_SOP, +/obj/item/book/manual/command_SOP, /turf/open/floor/plasteel/dark, /area/command/bridge) "aqF" = ( @@ -10768,6 +10782,7 @@ /obj/structure/cable{ icon_state = "1-2" }, +/obj/item/book/manual/sec_SOP, /turf/open/floor/plasteel/dark, /area/security/brig) "asw" = ( @@ -12269,7 +12284,12 @@ /area/medical/genetics) "avj" = ( /obj/structure/table/wood, -/obj/item/book/manual/gato_spacelaw, +/obj/item/book/manual/gato_spacelaw{ + pixel_x = -4 + }, +/obj/item/book/manual/command_SOP{ + pixel_x = 8 + }, /turf/open/floor/carpet, /area/command/heads_quarters/captain) "avk" = ( @@ -12923,6 +12943,7 @@ dir = 8 }, /obj/effect/decal/cleanable/dirt, +/obj/item/book/manual/sec_SOP, /turf/open/floor/plasteel/dark, /area/security/brig) "awl" = ( @@ -14626,6 +14647,9 @@ /obj/item/pipe_dispenser, /obj/item/pipe_dispenser, /obj/item/pipe_dispenser, +/obj/item/book/manual/engi_SOP{ + pixel_y = 16 + }, /turf/open/floor/plasteel/dark, /area/engineering/main) "azh" = ( @@ -15897,6 +15921,7 @@ /turf/open/floor/plasteel/dark, /area/ai_monitored/command/storage/eva) "aBn" = ( +/obj/structure/pole, /turf/open/floor/carpet/black, /area/commons/vacant_room/office) "aBp" = ( @@ -19840,6 +19865,7 @@ /obj/structure/extinguisher_cabinet{ pixel_x = -26 }, +/obj/item/book/manual/med_SOP, /turf/open/floor/plasteel/dark, /area/command/heads_quarters/cmo) "aIe" = ( @@ -21323,6 +21349,9 @@ pixel_y = 32 }, /obj/structure/table, +/obj/item/book/manual/med_SOP{ + pixel_y = 4 + }, /turf/open/floor/carpet/cyan, /area/medical/storage) "aKz" = ( @@ -24517,6 +24546,7 @@ name = "medical camera"; network = list("ss13","medical") }, +/obj/item/book/manual/med_SOP, /turf/open/floor/plasteel/dark, /area/medical/storage) "aPR" = ( @@ -24805,6 +24835,7 @@ /obj/item/radio/intercom{ pixel_x = -28 }, +/obj/item/book/manual/med_SOP, /turf/open/floor/plasteel/dark, /area/medical/storage) "aQo" = ( @@ -29664,6 +29695,9 @@ pixel_y = 4 }, /obj/item/stock_parts/scanning_module, +/obj/item/book/manual/science_SOP{ + pixel_x = 16 + }, /turf/open/floor/plasteel/dark, /area/science/lab) "aXR" = ( @@ -30177,6 +30211,7 @@ dir = 1 }, /obj/structure/table/reinforced, +/obj/item/book/manual/science_SOP, /turf/open/floor/plasteel/dark, /area/science/research) "aYO" = ( @@ -33467,6 +33502,10 @@ pixel_x = -9 }, /obj/structure/table, +/obj/item/book/manual/science_SOP{ + pixel_x = 4; + pixel_y = 4 + }, /turf/open/floor/carpet/purple, /area/science/research) "beb" = ( @@ -34316,6 +34355,9 @@ name = "RD Office APC"; pixel_y = 23 }, +/obj/item/book/manual/science_SOP{ + pixel_x = 16 + }, /turf/open/floor/plasteel/dark, /area/command/heads_quarters/rd) "bfv" = ( @@ -36079,6 +36121,7 @@ /obj/structure/cable{ icon_state = "0-4" }, +/obj/item/book/manual/supply_SOP, /turf/open/floor/plasteel/dark, /area/cargo/miningoffice) "bir" = ( @@ -36543,6 +36586,7 @@ pixel_x = -24; pixel_y = -24 }, +/obj/item/book/manual/supply_SOP, /turf/open/floor/plasteel/dark, /area/cargo/qm) "bjb" = ( @@ -38463,6 +38507,7 @@ dir = 1; pixel_y = -24 }, +/obj/structure/rack/shelf, /turf/open/floor/plasteel, /area/cargo/storage) "bmp" = ( @@ -39815,6 +39860,7 @@ dir = 1; pixel_y = -22 }, +/obj/item/book/manual/service_SOP, /turf/open/floor/plasteel/dark, /area/service/hydroponics) "boA" = ( @@ -39873,9 +39919,7 @@ pixel_x = -4; pixel_y = 6 }, -/obj/item/book/manual/chef_recipes{ - pixel_y = 2 - }, +/obj/item/book/manual/service_SOP, /turf/open/floor/plasteel/dark, /area/service/kitchen) "boE" = ( @@ -41331,6 +41375,7 @@ dir = 8; name = "hydroponics camera" }, +/obj/item/book/manual/service_SOP, /turf/open/floor/plasteel/dark, /area/service/hydroponics) "bqR" = ( @@ -42535,6 +42580,7 @@ pixel_y = 24 }, /obj/item/book/manual/gato_spacelaw, +/obj/item/book/manual/sec_SOP, /turf/open/floor/plasteel/dark, /area/security/checkpoint/supply) "bsW" = ( @@ -42548,6 +42594,8 @@ dir = 1 }, /obj/effect/decal/cleanable/dirt, +/obj/structure/rack/shelf, +/obj/item/book/manual/supply_SOP, /turf/open/floor/plasteel, /area/cargo/storage) "bsX" = ( @@ -44011,6 +44059,7 @@ dir = 1 }, /obj/structure/table/wood, +/obj/item/book/manual/greytide_SOP, /turf/open/floor/plasteel/dark, /area/service/bar) "bvG" = ( @@ -44231,6 +44280,7 @@ pixel_y = -30 }, /obj/item/book/manual/blubbery_bartender, +/obj/item/book/manual/service_SOP, /turf/open/floor/wood, /area/service/bar/atrium) "bvZ" = ( @@ -48076,6 +48126,7 @@ /obj/item/radio{ pixel_y = 4 }, +/obj/item/book/manual/greytide_SOP, /turf/open/floor/plasteel/dark, /area/commons/storage/primary) "bCq" = ( @@ -49149,6 +49200,7 @@ dir = 4 }, /obj/effect/turf_decal/tile/neutral, +/obj/item/book/manual/command_SOP, /turf/open/floor/plasteel/dark, /area/command/heads_quarters/hop) "bEk" = ( @@ -50931,6 +50983,7 @@ pixel_x = -24 }, /obj/item/book/manual/gato_spacelaw, +/obj/item/book/manual/prisoner_SOP, /turf/open/floor/plasteel/showroomfloor, /area/security/warden) "bHs" = ( @@ -50965,6 +51018,7 @@ pixel_x = -24 }, /obj/item/book/manual/gato_spacelaw, +/obj/item/book/manual/prisoner_SOP, /turf/open/floor/plasteel/showroomfloor, /area/security/warden) "bHu" = ( @@ -50998,6 +51052,7 @@ pixel_x = -24 }, /obj/item/book/manual/gato_spacelaw, +/obj/item/book/manual/prisoner_SOP, /turf/open/floor/plasteel/showroomfloor, /area/security/warden) "bHx" = ( @@ -51041,6 +51096,7 @@ pixel_x = -24 }, /obj/item/book/manual/gato_spacelaw, +/obj/item/book/manual/prisoner_SOP, /turf/open/floor/plasteel/showroomfloor, /area/security/warden) "bHA" = ( @@ -51077,6 +51133,7 @@ pixel_x = -24 }, /obj/item/book/manual/gato_spacelaw, +/obj/item/book/manual/prisoner_SOP, /turf/open/floor/plasteel/showroomfloor, /area/security/warden) "bHD" = ( @@ -51097,6 +51154,7 @@ pixel_x = -24 }, /obj/item/book/manual/gato_spacelaw, +/obj/item/book/manual/prisoner_SOP, /turf/open/floor/plasteel/showroomfloor, /area/security/warden) "bHE" = ( @@ -52784,6 +52842,7 @@ }, /obj/effect/decal/cleanable/cobweb, /obj/machinery/atmospherics/components/unary/vent_pump/on, +/obj/item/book/manual/prisoner_SOP, /turf/open/floor/plasteel/showroomfloor, /area/security/prison) "bKv" = ( @@ -55689,6 +55748,7 @@ /obj/effect/decal/cleanable/cobweb, /obj/effect/decal/cleanable/blood/gibs/old, /obj/machinery/atmospherics/components/unary/vent_pump/on, +/obj/item/book/manual/prisoner_SOP, /turf/open/floor/plasteel/showroomfloor, /area/security/prison) "bPm" = ( @@ -58514,6 +58574,7 @@ /obj/effect/decal/cleanable/blood/old, /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/components/unary/vent_pump/on, +/obj/item/book/manual/prisoner_SOP, /turf/open/floor/plasteel/showroomfloor, /area/security/prison) "bTI" = ( @@ -62462,6 +62523,7 @@ pixel_x = -26 }, /obj/item/grenade/clusterbuster/cleaner, +/obj/item/book/manual/service_SOP, /turf/open/floor/plasteel/dark, /area/service/janitor) "bZR" = ( @@ -63335,6 +63397,7 @@ pixel_x = 24 }, /obj/machinery/light, +/obj/item/book/manual/engi_SOP, /turf/open/floor/plasteel/dark, /area/command/heads_quarters/ce) "cbr" = ( @@ -70056,6 +70119,7 @@ dir = 4; pixel_x = -26 }, +/obj/item/book/manual/sec_SOP, /turf/open/floor/plasteel/dark, /area/security/brig) "cnn" = ( @@ -76685,6 +76749,7 @@ /obj/machinery/light{ dir = 8 }, +/obj/item/book/manual/sec_SOP, /turf/open/floor/plasteel/dark, /area/security/brig) "cBp" = ( @@ -81558,6 +81623,7 @@ /area/cargo/miningoffice) "fkk" = ( /obj/structure/chair/sofa, +/obj/item/book/manual/greytide_SOP, /turf/open/floor/wood{ icon_state = "wood-broken6" }, @@ -84327,6 +84393,12 @@ }, /turf/open/floor/plasteel/dark, /area/service/bar) +"tyV" = ( +/obj/structure/fluff/railing{ + dir = 1 + }, +/turf/open/floor/carpet/black, +/area/commons/vacant_room/office) "tCi" = ( /obj/effect/decal/cleanable/glass, /turf/open/floor/wood{ @@ -84703,6 +84775,12 @@ }, /turf/open/floor/plating, /area/ruin/space/has_grav/powered/dinner_for_two) +"vjZ" = ( +/obj/structure/fluff/railing{ + dir = 5 + }, +/turf/open/floor/carpet/black, +/area/commons/vacant_room/office) "vmu" = ( /obj/machinery/firealarm{ dir = 1; @@ -84790,6 +84868,12 @@ "vPy" = ( /turf/open/floor/wood, /area/service/bar) +"vQf" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/chair/stool/bar, +/obj/item/book/manual/greytide_SOP, +/turf/open/floor/wood, +/area/maintenance/port/fore) "vRB" = ( /obj/machinery/power/tracker, /obj/structure/cable{ @@ -84903,6 +84987,12 @@ "wnj" = ( /turf/open/floor/plasteel, /area/service/kitchen) +"wpL" = ( +/obj/structure/fluff/railing{ + dir = 4 + }, +/turf/open/floor/carpet/black, +/area/commons/vacant_room/office) "wqJ" = ( /obj/structure/lattice/catwalk, /obj/structure/cable, @@ -99794,7 +99884,7 @@ cwq kul eOu cxe -xTw +vQf aAJ xTw cwp @@ -123490,7 +123580,7 @@ mKp oUc eaJ aqg -aBn +tyV aBn diq bXz @@ -123747,8 +123837,8 @@ aqg gmF vuZ aqg -aBn -aBn +vjZ +wpL diq bEg bEg diff --git a/_maps/map_files/MetaStation/MetaStation.dmm b/_maps/map_files/MetaStation/MetaStation.dmm index f9aae02cab..cd94476100 100644 --- a/_maps/map_files/MetaStation/MetaStation.dmm +++ b/_maps/map_files/MetaStation/MetaStation.dmm @@ -1003,6 +1003,7 @@ network = list("ss13","prison") }, /obj/structure/bed, +/obj/item/book/manual/prisoner_SOP, /turf/open/floor/plasteel, /area/security/prison) "adu" = ( @@ -1011,6 +1012,7 @@ network = list("ss13","prison") }, /obj/structure/bed, +/obj/item/book/manual/prisoner_SOP, /turf/open/floor/plasteel, /area/security/prison) "adv" = ( @@ -1044,6 +1046,7 @@ network = list("ss13","prison") }, /obj/structure/bed, +/obj/item/book/manual/prisoner_SOP, /turf/open/floor/plasteel, /area/security/prison) "ady" = ( @@ -8320,6 +8323,7 @@ id = "Cell 1"; name = "Cell 1 Locker" }, +/obj/item/book/manual/prisoner_SOP, /turf/open/floor/plasteel, /area/security/brig) "aBa" = ( @@ -8327,6 +8331,7 @@ id = "Cell 2"; name = "Cell 2 Locker" }, +/obj/item/book/manual/prisoner_SOP, /turf/open/floor/plasteel, /area/security/brig) "aBb" = ( @@ -8334,6 +8339,7 @@ id = "Cell 3"; name = "Cell 3 Locker" }, +/obj/item/book/manual/prisoner_SOP, /turf/open/floor/plasteel, /area/security/brig) "aBc" = ( @@ -8425,6 +8431,7 @@ c_tag = "Detective's Office"; dir = 4 }, +/obj/item/book/manual/sec_SOP, /turf/open/floor/plasteel/grimy, /area/security/detectives_office) "aBl" = ( @@ -11213,6 +11220,7 @@ /obj/effect/turf_decal/tile/red{ dir = 8 }, +/obj/item/book/manual/sec_SOP, /turf/open/floor/plasteel, /area/security/checkpoint/supply) "aUl" = ( @@ -14160,6 +14168,7 @@ /obj/effect/turf_decal/tile/red{ dir = 4 }, +/obj/item/book/manual/sec_SOP, /turf/open/floor/plasteel, /area/security/checkpoint/customs) "bdd" = ( @@ -14373,6 +14382,7 @@ /obj/effect/turf_decal/tile/red{ dir = 8 }, +/obj/item/book/manual/sec_SOP, /turf/open/floor/plasteel, /area/security/checkpoint/engineering) "beq" = ( @@ -23772,6 +23782,7 @@ /obj/effect/turf_decal/tile/blue{ dir = 4 }, +/obj/item/book/manual/med_SOP, /turf/open/floor/plasteel/white, /area/medical/storage) "bYU" = ( @@ -23795,6 +23806,7 @@ /obj/effect/turf_decal/tile/blue{ dir = 4 }, +/obj/item/book/manual/med_SOP, /turf/open/floor/plasteel/white, /area/medical/storage) "bYV" = ( @@ -25170,6 +25182,7 @@ /obj/machinery/light{ dir = 4 }, +/obj/item/book/manual/sec_SOP, /turf/open/floor/carpet/black, /area/security/checkpoint/science/research) "ccq" = ( @@ -29103,6 +29116,7 @@ dir = 4; pixel_y = 16 }, +/obj/item/book/manual/service_SOP, /turf/open/floor/carpet/black, /area/service/hydroponics) "clT" = ( @@ -29357,6 +29371,9 @@ pixel_y = 6 }, /obj/structure/table, +/obj/item/book/manual/science_SOP{ + pixel_x = 16 + }, /turf/open/floor/plasteel/white, /area/science/lab) "cmH" = ( @@ -34900,6 +34917,9 @@ }, /obj/structure/table, /obj/item/storage/box/donkpockets/donkpocketteriyaki, +/obj/item/book/manual/med_SOP{ + pixel_x = -10 + }, /turf/open/floor/plasteel/white/side, /area/medical/medbay/aft) "cyQ" = ( @@ -42179,6 +42199,7 @@ /obj/effect/turf_decal/tile/red{ dir = 4 }, +/obj/item/book/manual/sec_SOP, /turf/open/floor/plasteel, /area/hallway/secondary/exit/departure_lounge) "cNd" = ( @@ -46477,6 +46498,7 @@ /area/hallway/secondary/entry) "dig" = ( /obj/structure/table/wood, +/obj/item/book/manual/greytide_SOP, /turf/open/floor/plasteel/grimy, /area/hallway/primary/port) "dio" = ( @@ -50755,6 +50777,7 @@ /obj/machinery/keycard_auth{ pixel_y = -24 }, +/obj/item/book/manual/science_SOP, /turf/open/floor/plasteel/cafeteria{ dir = 5 }, @@ -50849,6 +50872,9 @@ pixel_x = 1; pixel_y = 5 }, +/obj/item/book/manual/command_SOP{ + pixel_x = 8 + }, /turf/open/floor/plasteel/dark, /area/command/bridge) "eNK" = ( @@ -51106,6 +51132,7 @@ dir = 4 }, /obj/item/mop, +/obj/item/book/manual/service_SOP, /turf/open/floor/plasteel/cafeteria{ dir = 5 }, @@ -51515,6 +51542,13 @@ }, /turf/open/floor/engine, /area/science/mixing) +"fcu" = ( +/obj/structure/chair{ + dir = 8 + }, +/obj/item/pen/red, +/turf/open/floor/wood, +/area/service/lawoffice) "fcO" = ( /obj/machinery/atmospherics/pipe/manifold/supply/hidden{ dir = 4 @@ -52191,6 +52225,9 @@ /obj/effect/turf_decal/tile/blue{ dir = 8 }, +/obj/item/book/manual/med_SOP{ + pixel_y = 16 + }, /turf/open/floor/plasteel/cafeteria, /area/command/heads_quarters/cmo) "fyZ" = ( @@ -54144,6 +54181,9 @@ /obj/machinery/computer/security/telescreen/entertainment{ pixel_y = 32 }, +/obj/item/book/manual/command_SOP{ + pixel_x = 16 + }, /turf/open/floor/carpet, /area/command/heads_quarters/captain/private) "gCM" = ( @@ -56739,6 +56779,7 @@ /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 6 }, +/obj/item/book/manual/service_SOP, /turf/open/floor/plasteel, /area/command/heads_quarters/hop) "hXP" = ( @@ -61791,6 +61832,9 @@ req_access_txt = "28" }, /obj/structure/table/wood, +/obj/item/book/manual/command_SOP{ + pixel_x = 16 + }, /turf/open/floor/wood, /area/command/heads_quarters/hop) "kHw" = ( @@ -62774,6 +62818,10 @@ /obj/effect/turf_decal/tile/brown{ dir = 4 }, +/obj/item/book/manual/greytide_SOP{ + pixel_y = 16; + pixel_x = 16 + }, /turf/open/floor/plasteel, /area/commons/storage/primary) "lhP" = ( @@ -64647,6 +64695,7 @@ dir = 8 }, /obj/item/book/manual/gato_spacelaw, +/obj/item/book/manual/sec_SOP, /turf/open/floor/plasteel, /area/security/checkpoint/medical) "mgJ" = ( @@ -65887,6 +65936,7 @@ /obj/machinery/atmospherics/components/unary/vent_pump/on{ dir = 8 }, +/obj/item/book/manual/supply_SOP, /turf/open/floor/plasteel, /area/cargo/qm) "mSd" = ( @@ -65999,6 +66049,9 @@ /obj/effect/turf_decal/tile/neutral{ dir = 8 }, +/obj/item/book/manual/engi_SOP{ + pixel_x = 16 + }, /turf/open/floor/plasteel, /area/command/heads_quarters/ce) "mVa" = ( @@ -66824,6 +66877,7 @@ icon_state = "drain"; name = "drain" }, +/obj/item/book/manual/service_SOP, /turf/open/floor/carpet/black, /area/service/hydroponics) "nyA" = ( @@ -69758,6 +69812,7 @@ /area/engineering/atmos) "paQ" = ( /obj/structure/closet/secure_closet/personal/cabinet, +/obj/item/book/manual/greytide_SOP, /turf/open/floor/carpet/gato, /area/commons/dorms) "paS" = ( @@ -69788,6 +69843,9 @@ pixel_x = -8; pixel_y = 3 }, +/obj/item/book/manual/science_SOP{ + pixel_x = 16 + }, /turf/open/floor/carpet/black, /area/science/research) "pbQ" = ( @@ -70470,6 +70528,7 @@ icon_state = "4-8" }, /obj/structure/table/wood/poker, +/obj/item/book/manual/greytide_SOP, /turf/open/floor/carpet/orange, /area/commons/locker) "pse" = ( @@ -71151,6 +71210,9 @@ /obj/effect/turf_decal/tile/red{ dir = 4 }, +/obj/item/book/manual/command_SOP{ + pixel_y = 16 + }, /turf/open/floor/plasteel/dark, /area/command/bridge) "pJX" = ( @@ -72087,6 +72149,9 @@ /obj/structure/cable/yellow{ icon_state = "2-8" }, +/obj/item/book/manual/engi_SOP{ + pixel_x = 16 + }, /turf/open/floor/plasteel, /area/engineering/break_room) "qmj" = ( @@ -72987,6 +73052,10 @@ }, /obj/item/book/manual/gato_spacelaw, /obj/item/cartridge/detective, +/obj/item/book/manual/sec_SOP{ + pixel_y = 8; + pixel_x = 8 + }, /turf/open/floor/plasteel/dark, /area/command/heads_quarters/hos) "qJk" = ( @@ -73100,6 +73169,7 @@ dir = 8 }, /obj/structure/table/wood, +/obj/item/book/manual/service_SOP, /turf/open/floor/wood, /area/service/bar) "qNe" = ( @@ -73214,6 +73284,9 @@ /obj/effect/turf_decal/tile/brown{ dir = 1 }, +/obj/item/book/manual/supply_SOP{ + pixel_x = -6 + }, /turf/open/floor/plasteel/dark/side{ dir = 8 }, @@ -75494,6 +75567,7 @@ /obj/machinery/airalarm{ pixel_y = 23 }, +/obj/item/book/manual/greytide_SOP, /turf/open/floor/wood, /area/commons/dorms) "sbt" = ( @@ -75682,6 +75756,9 @@ /obj/effect/turf_decal/tile/yellow{ dir = 4 }, +/obj/item/book/manual/engi_SOP{ + pixel_x = 16 + }, /turf/open/floor/plasteel, /area/engineering/break_room) "sfb" = ( @@ -75826,11 +75903,17 @@ dir = 1 }, /area/command/gateway) +"siV" = ( +/obj/structure/chair/stool, +/obj/item/book/manual/greytide_SOP, +/turf/open/floor/wood, +/area/maintenance/port/aft) "siX" = ( /obj/structure/closet/secure_closet/personal/cabinet, /obj/machinery/airalarm{ pixel_y = 23 }, +/obj/item/book/manual/greytide_SOP, /turf/open/floor/carpet, /area/commons/dorms) "sjK" = ( @@ -78523,7 +78606,8 @@ /area/engineering/atmos) "tNG" = ( /obj/structure/table/reinforced, -/obj/item/paper, +/obj/item/book/manual/sec_SOP, +/obj/item/book/manual/sec_SOP, /turf/open/floor/plasteel/dark, /area/security/office) "tNR" = ( @@ -85481,15 +85565,20 @@ /area/cargo/warehouse) "xxq" = ( /obj/structure/table/wood, -/obj/item/book/manual/wiki/security_space_law, -/obj/item/book/manual/wiki/security_space_law, -/obj/item/pen/red, /obj/machinery/computer/security/telescreen{ desc = "Used for watching Prison Wing holding areas."; name = "Prison Monitor"; network = list("prison"); pixel_y = 30 }, +/obj/item/book/manual/sec_SOP, +/obj/item/book/manual/sec_SOP, +/obj/item/book/manual/gato_spacelaw{ + pixel_y = -8 + }, +/obj/item/book/manual/gato_spacelaw{ + pixel_y = -8 + }, /turf/open/floor/wood, /area/service/lawoffice) "xxO" = ( @@ -103983,7 +104072,7 @@ dux cbq dux diF -cjt +siV cjt cjt ckP @@ -118323,7 +118412,7 @@ ayJ ayJ lNc dPl -jzU +fcu jzU dgy rCx diff --git a/_maps/map_files/PubbyStation/PubbyStation.dmm b/_maps/map_files/PubbyStation/PubbyStation.dmm index d419b808d5..1b164303c5 100644 --- a/_maps/map_files/PubbyStation/PubbyStation.dmm +++ b/_maps/map_files/PubbyStation/PubbyStation.dmm @@ -3522,6 +3522,7 @@ pixel_x = -28 }, /obj/machinery/atmospherics/components/unary/vent_pump/on, +/obj/item/book/manual/prisoner_SOP, /turf/open/floor/plasteel, /area/security/prison) "agX" = ( @@ -3550,6 +3551,7 @@ pixel_x = -28 }, /obj/machinery/atmospherics/components/unary/vent_pump/on, +/obj/item/book/manual/prisoner_SOP, /turf/open/floor/plasteel, /area/security/prison) "aha" = ( @@ -3577,6 +3579,7 @@ "ahd" = ( /obj/structure/closet/secure_closet/security/sec, /obj/effect/turf_decal/delivery, +/obj/item/book/manual/sec_SOP, /turf/open/floor/plasteel/showroomfloor, /area/security/office) "ahe" = ( @@ -4647,9 +4650,6 @@ /area/security/office) "ajm" = ( /obj/structure/table, -/obj/item/storage/fancy/donut_box{ - pixel_y = 2 - }, /obj/structure/noticeboard{ pixel_y = 32 }, @@ -4659,6 +4659,9 @@ /obj/effect/turf_decal/tile/red{ dir = 4 }, +/obj/item/storage/fancy/large_donut_box{ + pixel_y = 8 + }, /turf/open/floor/plasteel, /area/security/office) "ajn" = ( @@ -6262,7 +6265,13 @@ /area/command/heads_quarters/hos) "amx" = ( /obj/structure/table/wood, -/obj/item/book/manual/wiki/security_space_law, +/obj/item/book/manual/sec_SOP{ + pixel_x = -6 + }, +/obj/item/book/manual/gato_spacelaw{ + pixel_x = 6 + }, +/obj/item/book/manual/prisoner_SOP, /turf/open/floor/carpet, /area/command/heads_quarters/hos) "amy" = ( @@ -6306,6 +6315,9 @@ /obj/item/paper_bin, /obj/item/pen/blue, /obj/item/book/lorebooks/welcome_to_gato, +/obj/item/book/manual/sec_SOP{ + pixel_x = 16 + }, /turf/open/floor/wood, /area/service/lawoffice) "amF" = ( @@ -6473,6 +6485,7 @@ /obj/structure/reagent_dispensers/peppertank{ pixel_y = 30 }, +/obj/item/book/manual/sec_SOP, /turf/open/floor/plasteel/showroomfloor, /area/security/warden) "amT" = ( @@ -6673,6 +6686,9 @@ }, /obj/item/book/lorebooks/welcome_to_gato, /mob/living/simple_animal/parrot/Polly, +/obj/item/book/manual/engi_SOP{ + pixel_y = 16 + }, /turf/open/floor/plasteel, /area/command/heads_quarters/ce) "anp" = ( @@ -8440,6 +8456,9 @@ /area/maintenance/department/crew_quarters/bar) "aqX" = ( /obj/machinery/rnd/production/techfab/department/service, +/obj/structure/fluff/railing{ + dir = 4 + }, /turf/open/floor/plasteel/dark, /area/service/bar) "aqY" = ( @@ -8491,6 +8510,10 @@ c_tag = "Bar Access"; dir = 2 }, +/obj/structure/rack/shelf, +/obj/structure/fluff/railing{ + dir = 8 + }, /turf/open/floor/plasteel/dark, /area/service/bar) "arc" = ( @@ -8521,6 +8544,8 @@ /obj/item/clothing/under/suit/waiter, /obj/item/clothing/shoes/sandal, /obj/structure/closet, +/obj/item/book/manual/service_SOP, +/obj/item/book/manual/service_SOP, /turf/open/floor/plasteel/dark, /area/service/bar) "arf" = ( @@ -10660,6 +10685,7 @@ }, /obj/structure/closet/secure_closet/personal/cabinet, /obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/obj/item/book/manual/greytide_SOP, /turf/open/floor/wood, /area/commons/dorms) "avh" = ( @@ -10807,6 +10833,7 @@ /obj/effect/turf_decal/tile/blue{ dir = 8 }, +/obj/item/book/manual/prisoner_SOP, /turf/open/floor/plasteel, /area/security/brig) "avv" = ( @@ -10838,6 +10865,7 @@ /obj/effect/turf_decal/tile/green{ dir = 8 }, +/obj/item/book/manual/prisoner_SOP, /turf/open/floor/plasteel, /area/security/brig) "avy" = ( @@ -10869,6 +10897,7 @@ /obj/effect/turf_decal/tile/yellow{ dir = 8 }, +/obj/item/book/manual/prisoner_SOP, /turf/open/floor/plasteel, /area/security/brig) "avB" = ( @@ -11134,6 +11163,9 @@ "avY" = ( /obj/structure/table/glass, /obj/item/aicard, +/obj/item/book/manual/command_SOP{ + pixel_x = 16 + }, /turf/open/floor/plasteel/dark, /area/command/bridge) "avZ" = ( @@ -12125,6 +12157,7 @@ /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, +/obj/item/book/manual/greytide_SOP, /turf/open/floor/carpet, /area/commons/dorms) "aym" = ( @@ -12676,6 +12709,10 @@ /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, +/obj/item/book/manual/greytide_SOP{ + pixel_x = 16; + pixel_y = 16 + }, /turf/open/floor/carpet, /area/commons/dorms) "azy" = ( @@ -12875,7 +12912,7 @@ /obj/structure/cable{ icon_state = "1-2" }, -/turf/open/floor/plasteel/dark, +/turf/open/floor/plasteel/stairs/old, /area/service/bar) "azW" = ( /obj/machinery/door/airlock/public/glass{ @@ -13731,6 +13768,7 @@ /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, +/obj/item/book/manual/greytide_SOP, /turf/open/floor/wood, /area/commons/dorms) "aBP" = ( @@ -13925,6 +13963,7 @@ pixel_y = 22 }, /obj/item/book/manual/gato_spacelaw, +/obj/item/book/manual/sec_SOP, /turf/open/floor/plasteel/grimy, /area/security/detectives_office) "aCp" = ( @@ -14245,6 +14284,9 @@ /obj/item/paper_bin{ layer = 2.9 }, +/obj/item/book/manual/command_SOP{ + pixel_y = 16 + }, /turf/open/floor/wood, /area/command/heads_quarters/hop) "aCQ" = ( @@ -14390,6 +14432,7 @@ /obj/effect/turf_decal/tile/red{ dir = 4 }, +/obj/item/book/manual/sec_SOP, /turf/open/floor/plasteel/dark, /area/security/checkpoint/customs) "aDh" = ( @@ -15019,6 +15062,9 @@ "aEy" = ( /obj/structure/table/wood, /obj/item/hand_tele, +/obj/item/book/manual/command_SOP{ + pixel_x = 16 + }, /turf/open/floor/carpet, /area/command/heads_quarters/captain) "aEz" = ( @@ -17059,6 +17105,7 @@ /obj/effect/turf_decal/tile/red{ dir = 8 }, +/obj/item/book/manual/sec_SOP, /turf/open/floor/plasteel/dark, /area/security/checkpoint/medical) "aIA" = ( @@ -18863,6 +18910,7 @@ /obj/structure/cable{ icon_state = "2-4" }, +/obj/structure/closet/crate/internals, /turf/open/floor/plasteel, /area/cargo/warehouse) "aMq" = ( @@ -18895,6 +18943,7 @@ /obj/structure/cable{ icon_state = "4-8" }, +/obj/item/book/manual/supply_SOP, /turf/open/floor/plasteel, /area/cargo/warehouse) "aMt" = ( @@ -21072,6 +21121,7 @@ /obj/item/stack/sheet/glass/fifty, /obj/item/stack/sheet/metal/fifty, /obj/item/book/manual/blubbery_bartender, +/obj/item/book/manual/service_SOP, /turf/open/floor/wood, /area/service/bar) "aQW" = ( @@ -21257,7 +21307,7 @@ /turf/open/floor/plasteel, /area/cargo/warehouse) "aRq" = ( -/obj/structure/closet/crate/internals, +/obj/structure/rack, /turf/open/floor/plasteel, /area/cargo/warehouse) "aRr" = ( @@ -21837,6 +21887,7 @@ /area/service/hydroponics) "aSD" = ( /obj/structure/closet/secure_closet/hydroponics, +/obj/item/book/manual/service_SOP, /turf/open/floor/plasteel, /area/service/hydroponics) "aSE" = ( @@ -21847,6 +21898,7 @@ c_tag = "Hydroponics Storage" }, /obj/structure/closet/secure_closet/hydroponics, +/obj/item/book/manual/service_SOP, /turf/open/floor/plasteel, /area/service/hydroponics) "aSG" = ( @@ -22887,14 +22939,10 @@ icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/dark, +/turf/open/floor/wood, /area/service/bar) "aVf" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/newscaster{ - pixel_x = -32; - pixel_y = 1 - }, /turf/open/floor/plasteel/dark, /area/service/bar) "aVg" = ( @@ -23084,6 +23132,7 @@ /obj/effect/turf_decal/tile/brown{ dir = 4 }, +/obj/structure/rack, /turf/open/floor/plasteel, /area/cargo/office) "aVw" = ( @@ -23111,6 +23160,7 @@ /obj/effect/landmark/start/cargo_technician, /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/effect/turf_decal/bot, +/obj/effect/spawner/lootdrop/maintenance, /turf/open/floor/plasteel, /area/cargo/storage) "aVz" = ( @@ -23514,6 +23564,7 @@ /obj/effect/turf_decal/tile/brown{ dir = 4 }, +/obj/structure/rack/shelf, /turf/open/floor/plasteel, /area/cargo/office) "aWx" = ( @@ -24019,6 +24070,7 @@ /obj/effect/turf_decal/tile/brown{ dir = 4 }, +/obj/structure/rack/shelf, /turf/open/floor/plasteel, /area/cargo/office) "aXw" = ( @@ -24109,9 +24161,6 @@ /area/hallway/secondary/exit/departure_lounge) "aXG" = ( /obj/structure/table, -/obj/effect/holodeck_effect/cards{ - pixel_y = 4 - }, /obj/effect/turf_decal/tile/neutral{ dir = 1 }, @@ -24122,6 +24171,7 @@ /obj/effect/turf_decal/tile/neutral{ dir = 8 }, +/obj/item/book/manual/greytide_SOP, /turf/open/floor/plasteel/dark, /area/hallway/secondary/exit/departure_lounge) "aXH" = ( @@ -24592,6 +24642,7 @@ /obj/effect/turf_decal/tile/brown{ dir = 4 }, +/obj/structure/rack, /turf/open/floor/plasteel, /area/cargo/office) "aYv" = ( @@ -24625,6 +24676,7 @@ dir = 4 }, /obj/effect/turf_decal/bot, +/obj/effect/spawner/lootdrop/maintenance, /turf/open/floor/plasteel, /area/cargo/storage) "aYB" = ( @@ -25409,6 +25461,9 @@ /obj/structure/extinguisher_cabinet{ pixel_x = -26 }, +/obj/item/book/manual/supply_SOP{ + pixel_x = 16 + }, /turf/open/floor/plasteel, /area/cargo/office) "bat" = ( @@ -26287,6 +26342,7 @@ /obj/effect/turf_decal/tile/brown{ dir = 8 }, +/obj/item/book/manual/supply_SOP, /turf/open/floor/plasteel, /area/cargo/qm) "bcB" = ( @@ -28423,7 +28479,7 @@ name = "Privacy Shutters"; pixel_y = 25 }, -/obj/item/book/lorebooks/welcome_to_gato, +/obj/item/book/manual/greytide_SOP, /turf/open/floor/plasteel/grimy, /area/commons/lounge) "bgZ" = ( @@ -32928,6 +32984,7 @@ /obj/effect/turf_decal/tile/purple{ dir = 4 }, +/obj/item/book/manual/science_SOP, /turf/open/floor/plasteel/white, /area/science/explab) "bqq" = ( @@ -36813,6 +36870,9 @@ /obj/effect/turf_decal/tile/purple{ dir = 8 }, +/obj/item/book/manual/science_SOP{ + pixel_x = 16 + }, /turf/open/floor/plasteel/white, /area/science/lab) "byJ" = ( @@ -38652,6 +38712,9 @@ /obj/effect/turf_decal/tile/blue{ dir = 8 }, +/obj/item/book/manual/med_SOP{ + pixel_x = -16 + }, /turf/open/floor/plasteel/white, /area/command/heads_quarters/cmo) "bCu" = ( @@ -39847,6 +39910,9 @@ /obj/effect/turf_decal/tile/purple{ dir = 8 }, +/obj/item/book/manual/science_SOP{ + pixel_x = 16 + }, /turf/open/floor/plasteel/dark, /area/command/heads_quarters/rd) "bEU" = ( @@ -41248,6 +41314,7 @@ /obj/effect/turf_decal/tile/blue{ dir = 8 }, +/obj/item/book/manual/med_SOP, /turf/open/floor/plasteel/white, /area/medical/medbay/central) "bIe" = ( @@ -41262,6 +41329,7 @@ /obj/effect/turf_decal/tile/blue{ dir = 8 }, +/obj/item/book/manual/med_SOP, /turf/open/floor/plasteel/white, /area/medical/medbay/central) "bIf" = ( @@ -48844,6 +48912,14 @@ /obj/structure/table, /obj/item/storage/belt/utility, /obj/item/storage/belt/utility, +/obj/item/book/manual/engi_SOP{ + pixel_y = 16; + pixel_x = 16 + }, +/obj/item/book/manual/engi_SOP{ + pixel_y = 16; + pixel_x = 16 + }, /turf/open/floor/plasteel, /area/engineering/main) "cbf" = ( @@ -51825,6 +51901,7 @@ pixel_y = 29 }, /obj/effect/turf_decal/delivery, +/obj/item/book/manual/sec_SOP, /turf/open/floor/plasteel/showroomfloor, /area/security/office) "cnP" = ( @@ -54580,7 +54657,15 @@ /area/command/bridge) "czN" = ( /obj/structure/table/wood, -/obj/item/storage/bag/books, +/obj/item/book/manual/command_SOP, +/obj/item/book/manual/engi_SOP, +/obj/item/book/manual/greytide_SOP, +/obj/item/book/manual/med_SOP, +/obj/item/book/manual/prisoner_SOP, +/obj/item/book/manual/science_SOP, +/obj/item/book/manual/sec_SOP, +/obj/item/book/manual/service_SOP, +/obj/item/book/manual/supply_SOP, /turf/open/floor/plasteel/dark, /area/service/library) "czO" = ( @@ -58891,6 +58976,22 @@ }, /turf/open/floor/plating, /area/maintenance/department/security/brig) +"kxV" = ( +/obj/structure/table/wood, +/obj/item/flashlight/lamp/green{ + pixel_x = -4; + pixel_y = 12 + }, +/obj/item/pen, +/obj/item/folder/red{ + layer = 2.9; + pixel_x = 8 + }, +/obj/item/book/manual/sec_SOP{ + pixel_x = 16 + }, +/turf/open/floor/plasteel, +/area/security/office) "kyv" = ( /obj/structure/closet/secure_closet/engineering_personal, /obj/effect/turf_decal/stripes/line{ @@ -61950,6 +62051,23 @@ }, /turf/open/floor/plasteel, /area/commons/dorms) +"qrc" = ( +/obj/structure/chair/comfy/black{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/item/book/manual/greytide_SOP, +/turf/open/floor/plasteel/dark, +/area/maintenance/department/engine) "qsd" = ( /obj/item/flashlight/lantern, /turf/open/floor/plasteel/chapel, @@ -62255,6 +62373,10 @@ }, /turf/open/floor/plasteel, /area/construction/mining/aux_base) +"qXf" = ( +/obj/structure/rack/shelf, +/turf/open/floor/plasteel, +/area/cargo/warehouse) "qXH" = ( /obj/structure/disposalpipe/segment{ dir = 5 @@ -63952,6 +64074,14 @@ "uES" = ( /turf/closed/wall/r_wall, /area/command/heads_quarters/captain) +"uGe" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/newscaster{ + pixel_x = 32; + pixel_y = 1 + }, +/turf/open/floor/plasteel/dark, +/area/service/bar) "uGh" = ( /turf/closed/wall/r_wall, /area/command/heads_quarters/rd) @@ -64160,6 +64290,10 @@ }, /turf/open/floor/plasteel, /area/science/lab) +"vgI" = ( +/obj/structure/rack/shelf, +/turf/open/floor/plasteel/dark, +/area/service/bar) "vgX" = ( /obj/structure/lattice, /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, @@ -64925,6 +65059,7 @@ /obj/effect/spawner/lootdrop/three_course_meal, /obj/structure/closet/crate, /obj/item/clothing/mask/cowmask/gag, +/obj/item/book/manual/greytide_SOP, /turf/open/floor/plating{ icon_state = "platingdmg1" }, @@ -87192,7 +87327,7 @@ bKh bLu bLu bNG -bOz +qrc bHQ bIZ aht @@ -89944,7 +90079,7 @@ ajV ajV alC amn -alC +kxV nsU aou apb @@ -90715,7 +90850,7 @@ ajX ajV alC amn -alC +kxV nsU aow apd @@ -96659,8 +96794,8 @@ kbx aQV aRT gPA -cpa -gSv +kbx +vgI csQ aXc kbx @@ -97174,7 +97309,7 @@ kbx apY kbx kbx -kbx +cpa arj kbx kbx @@ -98975,7 +99110,7 @@ aQK kbx aVj aWm -bck +uGe aYi cpk bag @@ -106421,8 +106556,8 @@ igT aMt aNP xxo -dmn aNP +aRq kVA aTq aNI @@ -106934,9 +107069,9 @@ aKk aLh aMv aNQ -dmn -aQg aNP +aQg +qXf apV aTq aNI From 187dd59f1dd252b0174981c0185605c53f513b88 Mon Sep 17 00:00:00 2001 From: evilew Date: Tue, 13 May 2025 02:49:12 +0200 Subject: [PATCH 07/17] adding SOP manuals to more places added SOP manuals to department vending machines / wardrobe machines also added SOP manual pack as a cargo crate --- GainStation13/code/modules/cargo/packs.dm | 15 ++++++++ code/modules/vending/engivend.dm | 3 +- code/modules/vending/medical.dm | 4 ++- code/modules/vending/security.dm | 5 ++- code/modules/vending/wardrobes.dm | 42 +++++++++++++++++------ 5 files changed, 55 insertions(+), 14 deletions(-) diff --git a/GainStation13/code/modules/cargo/packs.dm b/GainStation13/code/modules/cargo/packs.dm index 96c50fa2bb..c2a45bb30d 100644 --- a/GainStation13/code/modules/cargo/packs.dm +++ b/GainStation13/code/modules/cargo/packs.dm @@ -40,3 +40,18 @@ cost = 1500 contains = list(/obj/item/vending_refill/clothing) crate_name = "clothesmate supply crate" + +/datum/supply_pack/misc/sop_manuals + name = "Standard Operating Procedure Book Pack" + desc = "A pack of all SOP books released by GATO! Contains 9 releases." + cost = 1000 + contains = list(/obj/item/book/manual/science_SOP, + /obj/item/book/manual/service_SOP, + /obj/item/book/manual/supply_SOP, + /obj/item/book/manual/engi_SOP, + /obj/item/book/manual/med_SOP, + /obj/item/book/manual/sec_SOP, + /obj/item/book/manual/command_SOP, + /obj/item/book/manual/prisoner_SOP, + /obj/item/book/manual/greytide_SOP) + crate_name = "sop books crate" diff --git a/code/modules/vending/engivend.dm b/code/modules/vending/engivend.dm index 559e56eec7..de53fc858a 100644 --- a/code/modules/vending/engivend.dm +++ b/code/modules/vending/engivend.dm @@ -15,7 +15,8 @@ /obj/item/electronics/airalarm = 10, /obj/item/electronics/firealarm = 10, /obj/item/electronics/firelock = 10, - /obj/item/rcd_ammo = 3 + /obj/item/rcd_ammo = 3, + /obj/item/book/manual/engi_SOP = 5 //GS13 edit ) contraband = list(/obj/item/stock_parts/cell/potato = 3, /obj/item/rcd_ammo = 2, diff --git a/code/modules/vending/medical.dm b/code/modules/vending/medical.dm index 0158547515..d977876357 100644 --- a/code/modules/vending/medical.dm +++ b/code/modules/vending/medical.dm @@ -36,7 +36,9 @@ /obj/item/stack/medical/ointment = 2, /obj/item/stack/medical/suture = 2, /obj/item/stack/medical/bone_gel = 4, - /obj/item/stack/medical/nanogel = 4) + /obj/item/stack/medical/nanogel = 4, + /obj/item/book/manual/med_SOP = 5 //GS13 + ) contraband = list(/obj/item/reagent_containers/pill/tox = 3, /obj/item/reagent_containers/pill/morphine = 4, /obj/item/reagent_containers/pill/charcoal = 6) diff --git a/code/modules/vending/security.dm b/code/modules/vending/security.dm index 52fbd7dac4..706934606a 100644 --- a/code/modules/vending/security.dm +++ b/code/modules/vending/security.dm @@ -14,7 +14,10 @@ /obj/item/storage/box/evidence = 6, /obj/item/flashlight/seclite = 4, /obj/item/restraints/legcuffs/bola/energy = 7, - /obj/item/secbat = 5) + /obj/item/secbat = 5, + /obj/item/book/manual/sec_SOP = 5, + /obj/item/book/manual/prisoner_SOP = 2 //GS13 + ) contraband = list(/obj/item/clothing/glasses/sunglasses = 2, /obj/item/storage/fancy/donut_box = 2, /obj/item/storage/belt/sabre/secbelt = 1) diff --git a/code/modules/vending/wardrobes.dm b/code/modules/vending/wardrobes.dm index f81ba35235..967dd4b1d6 100644 --- a/code/modules/vending/wardrobes.dm +++ b/code/modules/vending/wardrobes.dm @@ -160,7 +160,8 @@ /obj/item/clothing/shoes/sneakers/black = 3, /obj/item/clothing/gloves/fingerless = 3, /obj/item/clothing/head/soft = 3, - /obj/item/radio/headset/headset_cargo = 3 + /obj/item/radio/headset/headset_cargo = 3, + /obj/item/book/manual/supply_SOP = 5 //GS13 edit ) premium = list( /obj/item/clothing/under/rank/cargo/miner = 3, @@ -222,7 +223,9 @@ /obj/item/clothing/suit/toggle/labcoat/depjacket/sci = 4, /obj/item/clothing/shoes/sneakers/white = 4, /obj/item/radio/headset/headset_sci = 4, - /obj/item/clothing/mask/gas = 5) + /obj/item/clothing/mask/gas = 5, + /obj/item/book/manual/science_SOP = 4 //GS13 + ) refill_canister = /obj/item/vending_refill/wardrobe/science_wardrobe payment_department = ACCOUNT_SCI /obj/item/vending_refill/wardrobe/science_wardrobe @@ -244,7 +247,9 @@ /obj/item/clothing/suit/apron/overalls = 5, /obj/item/clothing/under/rank/civilian/hydroponics = 5, /obj/item/clothing/under/rank/civilian/hydroponics/skirt = 5, - /obj/item/clothing/mask/bandana = 4) + /obj/item/clothing/mask/bandana = 4, + /obj/item/book/manual/service_SOP = 1 //GS13 + ) refill_canister = /obj/item/vending_refill/wardrobe/hydro_wardrobe payment_department = ACCOUNT_SRV light_color = LIGHT_COLOR_ELECTRIC_GREEN @@ -270,7 +275,9 @@ /obj/item/storage/backpack/satchel/explorer = 1, /obj/item/clothing/glasses/regular = 2, /obj/item/clothing/glasses/regular/jamjar = 1, - /obj/item/storage/bag/books = 1) + /obj/item/storage/bag/books = 1, + /obj/item/book/manual/service_SOP = 3 //GS13 + ) refill_canister = /obj/item/vending_refill/wardrobe/curator_wardrobe payment_department = ACCOUNT_SRV /obj/item/vending_refill/wardrobe/curator_wardrobe @@ -300,7 +307,9 @@ /obj/item/circuitboard/machine/dish_drive = 1, /obj/item/clothing/glasses/sunglasses/reagent = 1, /obj/item/clothing/neck/petcollar = 3, - /obj/item/storage/belt/bandolier = 1) + /obj/item/storage/belt/bandolier = 1, + /obj/item/book/manual/service_SOP = 1//GS13 + ) refill_canister = /obj/item/vending_refill/wardrobe/bar_wardrobe payment_department = ACCOUNT_SRV /obj/item/vending_refill/wardrobe/bar_wardrobe @@ -326,7 +335,9 @@ /obj/item/clothing/head/chefhat = 2, /obj/item/reagent_containers/rag = 3, /obj/item/book/granter/crafting_recipe/cooking_sweets_101 = 2, - /obj/item/book/granter/crafting_recipe/coldcooking = 2) + /obj/item/book/granter/crafting_recipe/coldcooking = 2, + /obj/item/book/manual/service_SOP = 1 //GS13 + ) refill_canister = /obj/item/vending_refill/wardrobe/chef_wardrobe payment_department = ACCOUNT_SRV /obj/item/vending_refill/wardrobe/chef_wardrobe @@ -358,7 +369,9 @@ /obj/item/watertank/janitor = 2, /obj/item/storage/belt/janitor = 2, /obj/item/screwdriver = 2, - /obj/item/stack/cable_coil/random = 4) + /obj/item/stack/cable_coil/random = 4, + /obj/item/book/manual/service_SOP = 1 //GS13 + ) refill_canister = /obj/item/vending_refill/wardrobe/jani_wardrobe default_price = PRICE_CHEAP extra_price = PRICE_EXPENSIVE * 0.8 @@ -393,7 +406,9 @@ /obj/item/clothing/suit/toggle/lawyer/purple = 3, /obj/item/clothing/suit/toggle/lawyer/black = 3, /obj/item/clothing/shoes/laceup = 3, - /obj/item/clothing/accessory/lawyers_badge = 3) + /obj/item/clothing/accessory/lawyers_badge = 3, + /obj/item/book/manual/sec_SOP = 1 //GS13 + ) refill_canister = /obj/item/vending_refill/wardrobe/law_wardrobe payment_department = ACCOUNT_SRV /obj/item/vending_refill/wardrobe/law_wardrobe @@ -417,7 +432,8 @@ /obj/item/clothing/suit/chaplain/pharaoh = 2, /obj/item/clothing/head/nemes = 1, /obj/item/clothing/head/pharaoh = 1, - /obj/item/storage/fancy/candle_box = 3) + /obj/item/storage/fancy/candle_box = 3, + /obj/item/book/manual/service_SOP = 1) premium = list(/obj/item/toy/plush/plushvar = 1, /obj/item/toy/plush/narplush = 1) refill_canister = /obj/item/vending_refill/wardrobe/chap_wardrobe @@ -516,7 +532,9 @@ /obj/item/clothing/gloves/color/black = 2, /obj/item/clothing/gloves/color/latex = 2, /obj/item/reagent_containers/food/drinks/flask/det = 2, - /obj/item/storage/fancy/cigarettes = 5) + /obj/item/storage/fancy/cigarettes = 5, + /obj/item/book/manual/sec_SOP = 1 //GS13 + ) premium = list(/obj/item/clothing/head/flatcap = 1) refill_canister = /obj/item/vending_refill/wardrobe/det_wardrobe extra_price = PRICE_EXPENSIVE * 1.75 @@ -550,7 +568,9 @@ /obj/item/clothing/suit/captunic = 1, /obj/item/clothing/under/rank/captain/femformal = 1, /obj/item/clothing/glasses/sunglasses/gar/supergar = 1, - /obj/item/clothing/gloves/color/captain = 1) + /obj/item/clothing/gloves/color/captain = 1, + /obj/item/book/manual/command_SOP = 1 //GS13 + ) refill_canister = /obj/item/vending_refill/wardrobe/cap_wardrobe payment_department = ACCOUNT_SEC default_price = PRICE_ALMOST_EXPENSIVE From f36161085e99c5e2309bfbb4573537f21337223c Mon Sep 17 00:00:00 2001 From: evilew Date: Tue, 13 May 2025 03:00:09 +0200 Subject: [PATCH 08/17] last few tweaks to SOPs - moved SOPs to GS13 folder - removed a silly SOP command book on box --- GainStation13/code/game/lore_papers.dm | 402 ++++++++++++++++++++++ _maps/map_files/BoxStation/BoxStation.dmm | 3 +- code/game/objects/items/manuals.dm | 400 --------------------- 3 files changed, 403 insertions(+), 402 deletions(-) diff --git a/GainStation13/code/game/lore_papers.dm b/GainStation13/code/game/lore_papers.dm index e7acbaf7e7..0ff7ed655c 100644 --- a/GainStation13/code/game/lore_papers.dm +++ b/GainStation13/code/game/lore_papers.dm @@ -550,6 +550,408 @@ "} + + //GS13 SOP Manuals Begin +/obj/item/book/manual/science_SOP + name = "GATO Research and Development Standard Operating Procedure" + icon_state = "bookSOPsci" + author = "John GATO, PhD" + title = "GATO Research and Development Standard Operating Procedure" + dat={" + +

Science SOP

+

+ Science, otherwise known as R&D, or simply Sci, is home to the greatest minds of GATO and some of the most skilled button pushers known to man. The science department ensures the station stays up to date on the most bleeding edge technology, providing the crew with advanced robotics and equipment, all while conducting research and experiments for the glory of GATO!

+
+

Scientist

+

+ 1. You are responsible for researching new technologies for the station.

+

2. You are responsible for the distribution of upgraded parts to various departments.

+

3. You are responsible for the containment and security of any and all dangerous or hazardous devices and explosives, and ensuring they are not misused.

+

4. Ensure all slimes remain in Xenobiology. If slimes are not being actively worked with, they must be placed under the effects of BZ gas or euthanized.

+

5. You are responsible for any and all products of Xenoarchaeology.

+

6. Exercise caution when constructing potentially hazardous or dangerous devices. When in doubt, refer to your Research Director.

+

7. Do not abuse the printing capabilities of Science to do things like create your own chemistry lab, medbay, kitchen, etc. Many of your printable boards are there to support other departments.

+

8. Be prepared to take on the SOP for a roboticist if a roboticist is not present.

+


+

Roboticist

+

1. You are responsible for the construction and maintenance of mechs and shells for cyborgs and AI.

+

2. You are responsible for the maintenance of all non-biological crew members such as IPCs and Synthlizards.

+

3. You are responsible for ensuring cyborgs and AIs laws are correctly set and maintained, and that cyborgs are slaved to the stations AI.

+

4. You are responsible for keeping track of all constructed mechs, as well as ensuring they are properly secured.

+

5. Refrain from constructing combat mechs unless directed to by the Head of Security or Captain.

+

6. You are responsible for the construction and distribution of MODsuits to crew who have a valid reason to request one.

+

7. You are responsible for ensuring that MODsuits and Mechs created by you are not misused, even after they have changed hands to other departments or crew.

+

8. Be prepared to take on the SOP for a scientist if a scientist is not present.

+


+

Research Director

+

1. You are responsible for managing all aspects of the science department, including all of the roles listed above.

+

2. You are expected to have broad knowledge of every role listed above and to be able to fulfill SOP for each one as needed.

+

3. You are expected to teach new and existing science personnel as needed and requested.

+

4. Refer to Command SOP for a broader list of duties as a member of command.

+ + "} + +/obj/item/book/manual/service_SOP + name = "GATO Luxury Services Standard Operating Procedure" + icon_state = "bookSOPservice" + author = "John GATO" + title = "GATO Luxury Services Standard Operating Procedure" + dat={" + + +

Service SOP

+

+ The service department is largely an ancillary department which provides entertainment, special services, and support to other departments. Service members are among the lowest ranked members of the crew, and are largely non-essential to the goals of the station and her crew. These positions are fantastic for those new to station life to get their space legs, as mismanagement rarely results in any catastrophic issues!


+

Janitor

+

1. You are responsible for cleaning public areas of the station and disposing of trash.

+

2. You are responsible for cleaning departments upon request or permission.

+

3. Avoid cleaning active crime scenes before security has had a chance to secure sensitive equipment and conduct an investigation.


+

Curator

+

1. You are responsible for maintaining the library. This includes the curation of art and items to be placed on display, as well as the curation of books for the enjoyment of the crew.

+

2. You reserve the right to refuse service to anyone, for any reason, and to remove them from the library quietly and politely. Nerd.

+

3. You are encouraged to write and publish works to continue to fill out GATOs archive and provide a broader variety of books for the crew to enjoy.


+

Bartender

+

1. You are responsible for serving drinks at the bar.

+

2. You reserve the right to refuse service to anyone, for any reason, and to remove them from the bar area by force.

+

3. You may use any means at your disposal, as a bartender, to remove unauthorized crew from the bar area, provided they have been ordered to leave.

+

4. You are responsible for your shotgun.

+

5. In the absence of a chef, you are permitted the usage of their facilities to produce meals should you wish, with respect to the cook SOP, as well as ensuring the tidiness of their workspace.


+

Cook

+

1. You are responsible for supplying the crew with meals. Lots and lots of meals.

+

2. You reserve the right to refuse service to anyone, for any reason, and to remove them from the dining area by force.

+

3. You may use any means at your disposal, as a chef, to remove unauthorized crew from your kitchen, provided they have been ordered to leave and that they are not rendered severely injured.

+

4. In the absence of a botanist, you are permitted the usage of their facilities to acquire additional ingredients, with respect to the botanist SOP, as well as ensuring the tidiness and availability of seeds within their workspace.


+

Botanist

+

1. You are responsible for providing produce and special materials such as cloth, wood, and leather, to other departments and individual crew members upon reasonable request.

+

a.Chiefly this responsibility involves stocking the kitchen food storage with whatever they need or request, or whatever you may think they will want.

+

2. You are responsible for whatever mutations you produce, and ensuring that all items produced for consumption are free of potentially harmful contents.

+

a. While food with chemicals, toxins, or even medicine may be produced, it is encouraged to denote what is contained within, e.g.; “Cyanide Soybeans” or “Bic Bananas” by using a pen on the seed packets.

+

b.You are responsible for any injury resulting from abuse, misuse, or overdose of your products.

+

3. In the absence of a chef, you are permitted the usage of their facilities to produce meals with your ingredients should you wish, with respect to the cook SOP, as well as ensuring the tidiness of their workspace.


+

Lawyer

+

I. You are responsible for providing legal aid and counsel to prisoners and crew.

+

II. You are required to represent convicted criminals in court, at their request.

+

i. Regardless of perceived or obvious guilt or innocence, you are required to argue in favor of their innocence and present arguments for it.

+

ii. You are not to represent GATO in court cases. This should instead be done by the Warden, a head of staff involved in the arrest, or the arresting officer.

+

a. The HOP acts as magistrate in court cases and is therefore an impartial party and unable to represent GATO regardless of involvement.

+

III. You are encouraged, but not required, to know the intricate details of Space Law. You can also just talk out of your ass, but god help your clients.

+

IV. You may act as a mediator in civil disputes and draft legally binding contracts to aid in settling said disputes.


+

Chaplain

+

1. You are permitted on station as a representative of your particular faith or as a broader general religious figure.

+

a. You are not permitted to represent dangerous cults which threaten the livelihood of the crew, such as being the head of a murder cult or a priest of Nar’sie.

+

2. You are required to handle funerals for station crew who are unable to be revived.

+

3. You may conduct sermons and rituals within your chapel, and optionally remodel it to be more in-line with your particular flavor of faith.

+

a. Any rituals involving crew must not result in death or permanent harm. For example, ritual combat may be permitted, but both participants must be rendered aid once the combat has ended.

+

4. You may act within your authority as chaplain to aid in the expulsion and destruction of supernatural forces present on station.

+

5. You may induct, recruit, or convert crew to your faith of their own free will.


+

Clown

+

1. You are responsible for entertaining the crew.

+

2. You are still required, but not expected, to follow space law in this pursuit.

+

a. Note that your unique position and expectation of shrugging at the suggestion of law does not mean you are enabled to pick up a security officers weapon and begin executing crew. Your antics are still expected to be funny, not psychotically homicidal.

+

3. Make the Honkmother proud!!!


+

Mime

+

1. You are responsible for entertaining the crew, as the silent counterpart of the clown.

+

2. You are still required, but not expected, to follow space law in this pursuit.

+

a. Note that your unique position and expectation of shrugging at the suggestion of law does not mean you are enabled to pick up a security officers weapon and begin executing crew. Your antics are still expected to be funny, not psychotically homicidal.

+

3. You are responsible for maintaining your vow of silence.


+

Head of Personnel

+

1. You are responsible for managing all aspects of the service department, including all of the roles listed above.

+

2. You are responsible for assigning or reassigning crew to other departments.

+

3. You are responsible for the abuse and misuse of expanded access authorized on your behalf.

+

4. You are not required to fulfill the SOP for unfulfilled roles in your department, but you should still be familiar with them.

+

5. You are required to act as an impartial judge whenever a court case arises.

+

6. You are expected to teach new and existing service personnel as needed or requested.

+

7. You must protect Ian from theft, injury, and defamation.

+ "} + +/obj/item/book/manual/supply_SOP + name = "GATO Delivery Service Operating Procedure" + icon_state = "bookSOPsupply" + author = "John GATO" + title = "GATO Delivery Service Standard Operating Procedure" + dat={" + + +

Cargo SOP

+

+ Supply, also known as Cargo or Logistics, is responsible for ensuring the crew are provided with the material and equipment required to do their job, as well as hosting the occasional pizza party. Supply is notoriously one of the most boring, uneventful departments on station, while simultaneously being one of the most dangerous and engaging!


+

Cargo Technician

+

1. You are responsible for ensuring the processing, fulfillment, and delivery of orders.

+

a. You are not required to fulfill every order, nor should you. Orders should only be fulfilled if the requests are reasonable, and funding permits it.

+

2. You are responsible for ensuring bounty notices are distributed to departments, as well as processing any turned-in bounties or bounty cubes.

+

a. You are not responsible for hounding other departments for bounty items, but may do so if you wish.

+

3. You are responsible for the mismanagement of funds, as well as the misuse or abuse of requisitioned supplies.

+

4. You are encouraged, but not required, to make the process of ordering supplies as headache-inducing as possible via lengthy requisition forms.


+

Shaft Miner

+

1. You are responsible for mining ores and depositing them into the ORM.

+

2. You are responsible for ensuring the station is provided with an adequate supply of minerals acceptable by the ORM with the exception of Bluespace Crystals and Bananium.

+

3. You are responsible for ensuring your own safety. Ensure your survival by bringing suitable equipment, carrying an active GPS, setting your suit sensors to tracking beacon, and making liberal use of mining points to acquire additional equipment to better improve your chances of survival.

+

4. You are responsible for the mishandling of lavaland loot by both yourself and other members of the crew.


+

Quartermaster

+

1. You are responsible for managing all aspects of the supply department, including all roles listed above.

+

2. You are expected to have broad knowledge of every role listed above and to be able to fulfill SOP for ONLY CARGO TECHNICIANS as needed.

+

a. As a member of command, you are not permitted to leave the station except for extreme circumstances, and hence you are not able to fulfill the duties of a Shaft Miner. You are, however, still expected to be familiar with Shaft Miner SOP.

+

3. In the absence of a Shaft Miner, you may request and recruit assistance from other members of the crew regardless of department.

+

a. Ideally, those recruited to assist in material acquisition in the absence of a shaft miner should source their ores from the Xenoarchaeology area to avoid the hazards of lavaland proper.

+ "} + +/obj/item/book/manual/engi_SOP + name = "GATO Corps of Engineers OSHA Handbook" + icon_state = "bookSOPengi" + author = "John GATO" + title = "GATO Corps of Engineers OSHA Handbook" + dat={" + + +

Engineering SOP

+

+ Engineers are the backbone of every station, ensuring that the station stays powered, livable, and functional. As an engineer, you are the glue that holds the station together, sometimes literally. You are also the most likely of any crewmember to cause a catastrophic early death for the station and her inhabitants.

+
+

Station Engineer

+

+ 1. You are responsible for the structural integrity of the station.

+

2. You are responsible for the activation and maintenance of the station power supply and engine.

+

3. If you are unable to operate the provided engine for whatever reason, solars must be set up at the bare minimum.

+

4. You are responsible for monitoring the station power and promptly responding to outages as they are discovered or reported.

+

5. You are responsible for the containment and repair of hull breaches.

+

6. In the case that you are unable to access areas which have sustained a breach, or otherwise require immediate attention, you are permitted to break into and enter into other departments to repair the damage.

+

7. Ancillary engines, remodeling, etc, should only be done once the stations power needs and integrity have been addressed.

+

8. Be prepared to take on the SOP for an atmospheric technician if an atmospheric technician is not present.


+

Atmospheric Technician

+

1. You are responsible for keeping the stations air breathable and free of deadly plasma.

+

2. You are responsible for returning rooms to habitable temperatures.

+

3. You are responsible for fighting fires that break out.

+

4. You are responsible for restoring breached rooms air to life-supporting quality.

+

5. You are responsible for fulfilling the rare request for gas canisters from outside of your department.

+

6. Be prepared to take on the SOP for a station engineer if a station engineer is not present.


+

Chief Engineer

+

1. You are responsible for managing all aspects of the engineering department, including all roles listed above.

+

2. You are the engine czar, the engine will be run as you dictate it.

+

3. Protect Polly from those who would do her harm.

+

4. You are expected to have broad knowledge of every role listed above and to be able to fulfill SOP for each one as needed.

+

5. You are expected to teach new and existing engineering personnel as needed and requested.

+

6. Refer to Command SOP for a broader list of duties as a member of command.

+ + "} + +/obj/item/book/manual/med_SOP + name = "GATO Medical Practioner's Handbook" + icon_state = "bookSOPmed" + author = "Dr. John GATO" + title = "GATO Medical Practioner's Handbook" + dat={" + + +

Medical SOP

+

+ Station Medical is fast paced, bloody, and not for the faint of heart. You will likely see the crew more up-close and personal than you ever would have liked to. Death is not unusual in station life, nor is being resurrected. Embrace the miracles of modern medicine and keep the crew in peak working condition, death be damned!

+
+

Medical Doctor

+

+ 1. You are directly responsible for the health and safety of the crew.

+

2. You are responsible for monitoring the health of the crew.

+

3. All crew are to be treated without charge. Medical expenses are covered by GATO.

+

4. When reviving crew, be as unobtrusive as possible. Attempt to revive them with all of their original bits and pieces. Replacement organs, limbs, cybernetics and prosthetics should be treated as a last resort.

+

5. All surgeries and implants done on crew, unless for life saving measures, must be done with the consent of the individual unless dictated by both the CMO and Head of Security or Captain, such as for pacification of a violent criminal.

+

6. While you may encourage sensors to be maxed, crew are not required to raise their sensors unless security levels are elevated.


+

Chemist

+

1. You are responsible for ensuring the crew is provided with chemicals relevant to their jobs, namely the medical staff.

+

2. Ensure the public facing chemfridge is stocked with basic medicines, clearly labeled, in safe dosages.

+

3. Fulfill requests for chemicals/pills/etc from other medical staff.

+

4. Fulfill requests for prescriptions, such as mindbreaker toxin for crew afflicted with RDS, or brute/burn patches/pills for security and engineers.

+

5. Do not distribute chemicals to crew outside of the medical staff without a clear, valid reason, such as a botanist requesting chemicals for farming.

+

6. Ensure the chemistry lab is secure and that dispensers are not being taken outside of your department for unrestricted use. Keep your windoors CLOSED.

+

7. Ensure all necessities and crew needs are fulfilled before engaging with factory chem, fermichem, etc.

+

8. Be prepared to take on the SOP for a medical doctor if a medical doctor is not present.


+

Virologist

+

1. You are responsible for ensuring the crew is healthy and free of plague and illness.

+

2. Address any viral outbreaks immediately and with urgency.

+

3. Ensure vaccines are distributed to all crew to eradicate viral outbreaks.

+

4. Ensure any beneficial viruses are not spread through contact/air/etc. Only consenting people should be affected by them.

+

5. Be prepared to take on the SOP for a medical doctor if a medical doctor is not present.


+

Geneticist

+

1. You are responsible for cloning crew, fixing unwanted mutations, and researching beneficial mutations for the crew.

+

2. You are responsible for the abuse or misuse of any mutations distributed to the crew.

+

3. Be prepared to take on the SOP for a medical doctor if a medical doctor is not present.


+

Chief Medical Officer

+

1. You are responsible for managing all aspects of the medical department, including all of the roles listed above.

+

2. You are responsible for alerting an admin if Runtime begins making dozens and dozens of kittens.

+

3. You are expected to have broad knowledge of every role listed above and to be able to fulfill SOP for each one as needed.

+

4. You are expected to teach new and existing medical personnel as needed and requested.

+

5. Refer to Command SOP for a broader list of duties as a member of command.

+ "} + +/obj/item/book/manual/sec_SOP + name = "GATO Security Force Code of Conduct" + icon_state = "bookSOPsec" + author = "Magistrate John GATO" + title = "GATO Security Force Code of Conduct" + dat={" + + +

Security SOP

+

+ Security are the peacekeepers and mischief managers of the station, ensuring the crew are following space law and that intruders are removed or erased from the station. Agents of the law are rarely ever looked upon favorably by the station at large, but you dont care! Youve got the big zappy-wacky stick, and they dont!

+
+

All Security Personnel

+

+ 1. How you carry or wear your weapons depends on the current alert level:

+

a. Code Green: weapons are kept holstered and hidden unless an emergency or incident calls for it (like an altercation turning into resisting arrest).

+

b. Code Blue and above: weapons may be visible.

+

c. The contents of the armory are distributed at the Wardens discretion.


+

Security Officer

+

1. You are responsible for upholding space law, and detaining those in violation of it regardless of rank, seniority, etc.

+

2. Except in cases of violent offenders, you are required to at least broadly cite what space law has been violated before initiating an arrest.

+

a. A more specific citation should be provided on imprisonment and logged in their security file.

+

3. You are responsible for protecting GATO assets and crew from harm from both inside and outside forces.

+

4. You are permitted to carry a disabler, flash, flashbang, stun baton, and pepper spray.

+

5. Weapons must remain holstered unless escalation demands they be drawn.

+

6. You are responsible for exercising reasonable force proportionate to the incident.

+

a. If a suspect is non-violent and not fleeing, you are required to attempt to peacefully de-escalate and detain.

+

i. In this instance, the suspect must be escorted to the brig without the use of handcuffs or incapacitation.

+

b. If a suspect is aggressive, non-compliant, or fleeing, non-lethal force is to be deployed, and the suspect detained.

+

c. If a suspect threatens lethal harm to the officer or to other crew members, or poses a threat to crew by fleeing, lethal force may be deployed to detain the suspect.

+

i. Suspects must be rendered aid after the threat has been dealt with and the suspect has been restrained.

+

d. Known, identified threats to the station may be dealt with as necessary regardless of escalation procedures.

+

i. e.g., a known syndicate agent may be acted upon with lethal or non-lethal force regardless of their apparent threat.

+

7. You are responsible for the reasonable and humane treatment of detainees and prisoners.

+

8. You are responsible for responding to calls for assistance and maintaining an active presence to deter threats.

+


+

Warden

+

1. You are responsible for prisoners, both in permanent holding and within the brig, and ensuring that their sentences are carried out in full.

+

2. You are responsible for issuing equipment, both lethal and nonlethal, to security.

+

a. In a Code Green only non-lethal equipment may be distributed.

+

b. In a Code Blue or above lethal equipment may be distributed.

+

3. You are responsible for the abuse or misuse of the contents of the armory, and ensuring that they are secured and accounted for.

+

4. You are responsible for ensuring the reasonable and humane treatment of prisoners, as well as ensuring the timely release of those temporarily imprisoned.

+

5. You are responsible for conducting thorough searches of every prisoners belongings, including pockets, PDA slots, coat pockets, suit storage, etc.

+

6. Suspects of capital crimes are entitled to a trial upon request, provided a lawyer and the HOP or another head of staff are available.


+

Detective

+

1. You are responsible for aiding security by examining crime scenes, collecting evidence, questioning witnesses, and identifying suspects.

+

a. You are responsible for ensuring that evidence is not tampered with, disturbed, or otherwise rendered inadmissible through your own negligence.

+

2. You must follow the security officer SOP in regards to escalations, use of weapons/force, etc.

+

3. With permission of the HoS, you are permitted to conduct undercover investigations. You must, however, have your security ID on hand at all times.

+

4. You may join the security team during patrols, responses, etc, assuming there are no ongoing investigations.


+

Head of Security

+

1. You are responsible for managing all aspects of the security department, including all of the roles listed above.

+

2. Be sure to exhibit a strong working knowledge of Space Law.

+

3. You are responsible for knowledge of every SOP in your department, as you oversee the affairs of all security personnel.

+

4. Be sure security calls are answered and addressed by your officers.

+

5. Refer to Command SOP for a broader list of duties as a member of command.


+

Alert Levels


+

Code Green

+

1. All Clear Standard operating levels.

+

2. No immediate or clear threat to the station.

+

3. All departments may carry out work as normal.

+

4. Suit sensors are not required to be on.

+

5. Weapons worn by security are to be hidden except when in the case of an emergency.

+

6. Crew members may freely walk in the hallways.

+

7. AI/Cyborgs have no need to bolt down any secure areas.

+

8. Security must respect the privacy of crew members and no unauthorized searches are allowed.


+

Code Blue

+

1. Confirmed Threat Elevated alert level.

+

2. There are reports or other proof available to indicate that there is a threat to the station.

+

3. When a Centcom threat summary is received and printed at communication consoles), the blue alert level is applied.

+

4. Suit sensors are mandatory, but coordinate positions are not required.

+

5. Security may have weapons visible.

+

6. Crew members may be searched by security with probable cause.

+

7. AI/Cyborgs may bolt down high secure areas.

+

8. Energy guns, laser guns and riot gear are allowed to be given out to security personnel if the HoS or Warden agree.


+

Code Red

+

1. Immediate Threat Maximum alert level.

+

2. There is an immediate threat to the station or severe damage.

+

3. Martial Law is in effect.

+

4. Suit sensors are to be turned fully on at all times.

+

5. Security can raid departments and arrest any crew member deemed a threat to the station.

+

6. All crew members must remain in their departments.

+

7. AI/Cyborgs may bolt down maintenance and airlocks leading to space.


+

Code Gamma

+

Coming Soon


+

Code Delta

+

1. Imminent Destruction

+

2. The station's self destruct mechanism has been engaged due to overwhelming threat to the station.

+

3. Martial Law is in effect.

+

4. Suit sensors are to be turned fully on at all times.

+

5. All orders from Heads of Staff and Security must be followed, any disobedience is punishable by death.

+

6. All crew members are to evacuate immediately, if possible.


+

Code Epsilon

+

Coming Soon

+


+ "} + +/obj/item/book/manual/command_SOP + name = "The GATO Command Officer's Handbook" + icon_state = "bookSOPcommand" + author = "Fleet Admiral John \"Officer\" GATO" + title = "The GATO Command Officer's Handbook" + dat={" + + +

Command SOP

+
+

Captain

+

1. You are responsible for the station as a whole.

+

2. You are expected to remain on station, and not to leave the vicinity of the station except in an emergency situation.

+

3. You are responsible for managing heads of staff, and may promote crew (as appropriate) to the position of department head at your discretion.

+

a. Note that you should only do this if a head of staff for a department is not present, and a capable and willing member of that department is willing to take the promotion.

+

b. You are also able to demote heads of staff at your discretion.

+

4. You are responsible for securing the Nuclear Authentication Disk.

+

5. You are responsible and accountable for the actions of your heads of staff.

+

6. You are expected to adhere to the chain of command, and only exercise your authority outside of it where absolutely necessary.

+

7. You are expected to be broadly knowledgeable on all aspects of the station and its operation. As the leader of the station and its crew, you will largely be looked to for guidance and support, especially in emergency situations.

+

8. You are expected to maintain the decorum of your rank.


+

Head of Staff

+

1. You are responsible and accountable for the actions of your department and those employed therein.

+

2. You are expected to remain on station, and not to leave the vicinity of the station except in an emergency situation. You are expected to remain on station, and may only leave as it is deemed absolutely necessary.

+

3. You may not give orders or pull rank on those employed in other departments.

+

a. Exceptions to this may be made in emergency situations, where other heads of staff are absent or unable to give direction to their own departments.

+

4. You are expected to be broadly knowledgeable on all aspects of your department and its operation. As the head of your department, you will largely be looked to for guidance and support by your junior and senior staff alike, and will be expected to pick up the slack in emergency situations to keep things running smoothly.

+

5. You are expected to maintain the decorum of your rank.


+

Succession

+

In the event of an emergency situation where the Captain is unavailable, rendered unable to act, or deposed, the following line of succession should be followed:

+

Captain > Head of Personnel > Research Director > Chief Medical Officer > Chief Engineer > Quartermaster > Head of Security

+ + "} + +/obj/item/book/manual/prisoner_SOP + name = "Important Notice" + icon_state = "prisonerSOPsheet" + author = "Anonymous" + title = "Important Notice" + dat={" + + +

Prisoner SOP

+

Notice: As a prisoner, escaping is obviously not encouraged ICly. However, you are welcome to plot and make escape attempts. Should you make an escape attempt, you are not permitted to randomly kill crew or security officers. Escaping prison simply to kill people is murderboning and will be treated as a rule violation, rather than a violation of SOP. When escaping, you will be pursued by security. Ending up in a scene with a crewmember mid-escape does not protect you from being captured and transported back to prison.

+

1. You have been permanently imprisoned for crimes against GATO, the station, and/or her crew.

+

a. If playing as a prisoner off the bat, it is encouraged to have a security note detailing what crime you were sentenced for.

+

2. Your punishment for this crime will vary depending upon the severity, but can range from permanent imprisonment to exile or even death.

+

3. You are permitted to make requests for accommodations, visitations, and even legal counsel permitting that a lawyer is available to represent you.

+

a. The Warden is not obligated to fulfil these requests.

+

4. You are encouraged to maintain good behavior and earn your freedom through reform, serving your sentence, and backbreaking labor in the mines.

+

5. Prisoners making escape attempts will be handled by officers in accordance to the threat they pose based on the severity of their initial crimes and violent actions toward officers in their escape attempt. As an example:

+

a. A prisoner who escapes and slips out unnoticed without causing harm or stealing weapons will be pursued with non-lethal force.

+

b. A prisoner who escapes and slips out unnoticed without causing harm, but who was imprisoned for murder, will still be pursued with lethal force.

+ "} + +/obj/item/book/manual/greytide_SOP + name = "My SOP" + icon_state = "greySOPsheet" + author = "Mr. GreyTide" + title = "My SOP" + dat={" + + +

Assistant SOP

+

1. You have no special repos responsibilities.

+

2. You may request an assignment from the HOP. Familiarize yourself with the SOP of your desired position before requesting it. all the fun items from that department.

+

3. You are not required to fulfill role/job requests from command.

+

4. You are still required to follow orders from command to ensure the safety and security of the crew and station. have loads of fun :)

+ "} + +//GS13 SOP Manuals end + //gs13 snack attack shuttle loan /obj/item/paper/fluff/chocoslime_research diff --git a/_maps/map_files/BoxStation/BoxStation.dmm b/_maps/map_files/BoxStation/BoxStation.dmm index 7e056822af..195484a931 100644 --- a/_maps/map_files/BoxStation/BoxStation.dmm +++ b/_maps/map_files/BoxStation/BoxStation.dmm @@ -7477,7 +7477,6 @@ "mCQ" = (/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel/dark,/area/security/range) "mDn" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel,/area/security/brig) "mFf" = (/obj/machinery/camera{c_tag = "Prison Cell Block North"; dir = 4; network = list("ss13","prison")},/obj/effect/decal/cleanable/dirt,/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 8},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 4},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel,/area/security/prison/cells) -"mGY" = (/obj/effect/turf_decal/stripes/white/line{dir = 10; icon_state = "steel_decals7"},/obj/effect/turf_decal/stripes/white/line{dir = 5; icon_state = "steel_decals7"},/obj/item/book/manual/command_SOP,/turf/open/floor/plasteel,/area/command/bridge) "mIj" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/turf/closed/wall/r_wall,/area/security/warden) "mIM" = (/obj/effect/turf_decal/stripes/white/line{dir = 6; icon_state = "steel_decals3"},/obj/effect/turf_decal/stripes/white/line{dir = 2; icon_state = "steel_decals3"},/turf/open/floor/plasteel/white/side{dir = 8},/area/medical/medbay/central) "mJZ" = (/obj/structure/sign/nanotrasen,/turf/closed/wall/r_wall,/area/hallway/secondary/entry) @@ -7952,7 +7951,7 @@ byGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaat byGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabhraGRaNMatJatJatJatJauSaAaauSayUaRJayUaNNaNOaNPaNQayUaRJayUayUauSayWaxBaKUaNRaNSaMDaMEaMFaweaNTaLbaxBaPmaPnaPvblCaPwaPwaPwaPxaPyaQCaNVaNZaPwaPwaPwaQEblDaPwblEblFblFblGaSyaQIaOgaOfaOgaOhaOiaOjaOlaOkaQMaRPaWUaOoaOpaIPaOqaOqaOqaOraOqaOqaOqaOqaOsaOqaOqaNbaNaaNgaLEaOtaLCaNdaOqaOqaPPaOqaOqaOqaOqaOqaOqaOqaOqaIPaIPaIPbfQbfQaRfbfQbfQbfQblHaJdblIblJblKblLaJhaLQaLQbeLblMblNaOAaOBaODaWFaOEblOaJiaOFaOGuNxaOIaKmaOHaOJaOKaHTsGRaFbaOLaOLaOMaONaOOaOOaOPaFbaOQaORaOSaCwaFfaFfbpJaFfaFflbTaDYaCwaOWaCwaQnbamipqazRbcjaSWaMyaSXaOZaSYaMzaMzaMzaMzaMzaMzaaaaaaaaaaaaaaaaaabyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyG byGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaRFatJbhrbanaaaaaaaaaaaaaaaaweawfaweayUaXfayUayWaxBaxBayXayUaXfayUaPcaPdaPeaxBaKUaPfaPgaKXaPhaKZaweaPiaLbaLOblPblQmgyaPkaPlaPlaPlaPlaPlaPlaQHaQLaPlaPoaPlaPlaPlaPpaPqaPraPqaPsaPtaPuaYMaLeaRObeuaRZbexblRaPzaScaPAaPAaPMaRgaRmaILaILaILaILaILaILaILaILaPCaPDaPEaPFaPEaPEaPEaPGaPEaPHaPEaPIaPCaILaILaILaILaILaILaILaILaPMaTSaUTaJdaJdaJdblSbeNbeNblSaJdaMOblTaRsblUblVblWblVaJiaSBblXblYaNmaNnaPRaRpblZbmaaOHaPSaPTaPTaPTaPTaPUaVtaHTaHUaFbaPVaMpaOMaONaMpaMpaPWaFbaPXaPYaPZaCwaFfrFuaQaaQbaQbaQcaQdaQeaQfaCwqqnbfTbmbbmcbmdaPbaMyaUsaVCbmeaXcaRkaRkaXdaRkbmfaaaaaaaaaaaaaaaaaabyGbyGbyGbyGbyGbyGbyGbyKbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyKbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyG byGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaatJaaaaQoaaaaaaaaaaxwaxyaxzayTaQpbkuaQqaPeaxBaxBaQraQqbkuaQpaPeaxBaxBaxBaQsaQtaQuaQvaQwaQxbmgaQyaQzaLObmhbmiaPjaQBaPluQvbpMlqGfNxaPlsswaThaTmnVktRyaUfaUCaPpaQNaQOaQPaPsnbdaPuaPuaQRaPuaPuaPAaPAaQSaQTaPAaPAaPAaQUbjWbbeaILaaaaaaaaaaaaaaaaaaaaauKSaKnaQVaQWaQXaQYaQZaRaaRbaRcaRdaReuKSaaaaaaaaaaaaaaaaaaaaaaILaVNaIPbjXaJdbmjaRjbmkaTUaNpbmlaWHbmmbmnbdaaSaaSaaSabmoaJiaSBaRoaRqaRuaRraRtaStaSEbmaaOHaRvaVsbmpbmpbmqaRxaOHaHTaRyaFbaRzooZbmraONaRAaRAaRBaFbaFbaRCaFbaCwaRDaGNaOTaREaREaOUaOVaCwaCwaCwaYNbmsbmtbbkaZNbnSaMyaRGaRHaMzaMzaMzaMzaMzaMzaRIaaaaaaaaaaaaaaaaaabyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyG -byGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaRFatJbhrbanaaaaaaaaaaaaaaaaweaXgawgaRKaRLaRLaRLaRLaRLaRLaRLaRLaRKaRLaRLazaaYOcfZnRaaVOaVPsMNaVTbmuaWNaXbaXyaPjaPjaPjaQBaPlkxbbpPbpPbsnaPlsswjmfbpQjTSbpfbpfkaraPpaRVaQOaQOaPsnbdaPuaRWaRXaRXaRYaPAaSdaTxaSbaTAaUNaSebbVbjWbbeaILaaaaaaaaaaaaaPCaPCaPCaPCaSgaShmGYaSjaSkaSiaSmaSnctzaSlaSvaPCaPCaPCaPCaaaaaaaaaaaaaILbmvbmwbmxaJdbmybmzaKoaKoaKoaKobmAbmBaSfaSqaKoaKoaKobmCaVoaSBaSCaSDaSFaSGaSHaStaSBaSIaUcaSKbmDaZubbdbmEaSNaOHaHTaHUaFbbadaMpaOMaONaRAaRAaMpaSOaSPaMpaSQaCworqaSRaSSaREaREaVAaSUaSVaCwbchbcibmFbmGbckaZObdjbdmbdnbdobmHbetaRkaRkaRkaRkbpIaTaaaaaaaaaaaaaaaabyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyG +byGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaRFatJbhrbanaaaaaaaaaaaaaaaaweaXgawgaRKaRLaRLaRLaRLaRLaRLaRLaRLaRKaRLaRLazaaYOcfZnRaaVOaVPsMNaVTbmuaWNaXbaXyaPjaPjaPjaQBaPlkxbbpPbpPbsnaPlsswjmfbpQjTSbpfbpfkaraPpaRVaQOaQOaPsnbdaPuaRWaRXaRXaRYaPAaSdaTxaSbaTAaUNaSebbVbjWbbeaILaaaaaaaaaaaaaPCaPCaPCaPCaSgaShctzaSjaSkaSiaSmaSnctzaSlaSvaPCaPCaPCaPCaaaaaaaaaaaaaILbmvbmwbmxaJdbmybmzaKoaKoaKoaKobmAbmBaSfaSqaKoaKoaKobmCaVoaSBaSCaSDaSFaSGaSHaStaSBaSIaUcaSKbmDaZubbdbmEaSNaOHaHTaHUaFbbadaMpaOMaONaRAaRAaMpaSOaSPaMpaSQaCworqaSRaSSaREaREaVAaSUaSVaCwbchbcibmFbmGbckaZObdjbdmbdnbdobmHbetaRkaRkaRkaRkbpIaTaaaaaaaaaaaaaaaabyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyG byGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabhrbclbhPatJatJatJatJauSauSauSauSayUayUayUayUayUayUayUayUauSauSmJZaAgaTbxIJaTcaTdaTcnGbaTcaTcaTeaTcaTcaPjaQAaTfaTgaPltIrbfRbfRhaVaPljNLbpfbpfaTouAvpYbaVMaPpaTqaTraTsaPsaQQaPuaTtaTuaTvaTwaPAaUOaTyaSbaTzaUPaSebbVaPBbbeaILaILaTBaPCaPCaPCaTCaTDaTEaTFaTGaTLaTIaTJxHvaTKaTHaTLaTMaTNaTOaTPaTQaPCaPCaPCaTBaILaILbmJaIPbjXaJdaSraKobmKbmLbmLbmMbmNaNqaSsbmMbmLbmLbmObmCaVoaSBaSCbmPaTXaTYaTZaUaaSBaUbaUcaUdbmQbejbelbmRaUgaUhaHTaHUaFbaUihsZaOMaONaUjaMpaMpaUkbmSaUlaUmaCwaUnaUoaUpaREaREaUqaUrlJOaCwbewaQjaQhbmTbckaZPbfVbfWaQhaQibmUaMzaMzaMzaMzaMzaMzaaaaaaaaaaaaaaaaaabyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyG byGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaaaaaaaaaatJaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaayUbmVayWayXmChaTcaUvdOeaUuaUwaUynzpaUwaTcbmWaRTaUAaUBaPlkWDbfRbfRvpOaPlsswirIlAqaUKaULaUMhzoaPpaPpaPpaPpaPsaQQaPuaPuaPuaPuaPuaPAaUQbgfbmXbmYbmZaSebbVaIPbbeaBuaIRaURaUSaZQaPCaUUlTjaUWaUXaUYaUXaUZaVaaVbaVcaVdaVeaVfaVdaVgaSoaViaPCaZRaUSaVkaVlaCTaVNaIPaxxaJdbnaaKobnbbnckLWbnebnfbngaSzbnebndbnhbnibmCaVoaSBbnjbnkbnlaVpbnkbnmbnnaJiaVraUdbnobnpbnpbnqaUgaVtaHTaVuaFbaFbaFbeObaONaVvaVwaMpaVxaVybnraVzaCwuHUaSRaSSaREaREaVAaSUaVBaCwbnsaQjaQhbmTbntbnubnvbfWaQhaQibmUaMzaZNaZOaZPaMzcPzaaaaaaaaaaaaaaaaaabyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyG byGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaatJaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaVDayUayUayWaYSbYnaTcaUxaUuaUuaVHaVIaUzaUwaTcaVJaVKaVQaRTaPlbqwbfRbfRaXtaPlsswkarrWjjtZdIzaXuaXvaPlaVUaVVaVWaVXaVYaVZaWaaWbaWcaWdaWdaWdaWdaWdaWdaWdaWdbbVaIPbjXaCVaIPaWeaWfaWgaWhaWiaWjaWkaWlaWmaWnaWoaWpaWqaWraWsaWtaWuaWvaWkaWwaWxaWyaWzaWAaWBaWCaEpaLyaIPbjXblSbnxaKobnybnzbnzbnAbnBbnCaSAbnAbnzbnzbnDbmCbnEbnFbnGbnHbnIbnJbnKbnLaYoaJiaOHaUdaRwaZWaZWaRwaUgaOHaHTaWDbnMbnNaWPaWQaWRaWSaWSaWTaOMaOMaOMaOMbegaREaREaREaREaREaWVaWWaWXaYIaWZbnObnPbnQbnRaZObnSbfWaQhaQibnTaMzaZPaSTbnUaMzbnwaaaaaaaaaaaaaaaaaabyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyG diff --git a/code/game/objects/items/manuals.dm b/code/game/objects/items/manuals.dm index 4915e06c21..14ec3118ab 100644 --- a/code/game/objects/items/manuals.dm +++ b/code/game/objects/items/manuals.dm @@ -239,406 +239,6 @@ "} - //GS13 SOP Manuals Begin -/obj/item/book/manual/science_SOP - name = "GATO Research and Development Standard Operating Procedure" - icon_state = "bookSOPsci" - author = "John GATO, PhD" - title = "GATO Research and Development Standard Operating Procedure" - dat={" - -

Science SOP

-

- Science, otherwise known as R&D, or simply Sci, is home to the greatest minds of GATO and some of the most skilled button pushers known to man. The science department ensures the station stays up to date on the most bleeding edge technology, providing the crew with advanced robotics and equipment, all while conducting research and experiments for the glory of GATO!

-
-

Scientist

-

- 1. You are responsible for researching new technologies for the station.

-

2. You are responsible for the distribution of upgraded parts to various departments.

-

3. You are responsible for the containment and security of any and all dangerous or hazardous devices and explosives, and ensuring they are not misused.

-

4. Ensure all slimes remain in Xenobiology. If slimes are not being actively worked with, they must be placed under the effects of BZ gas or euthanized.

-

5. You are responsible for any and all products of Xenoarchaeology.

-

6. Exercise caution when constructing potentially hazardous or dangerous devices. When in doubt, refer to your Research Director.

-

7. Do not abuse the printing capabilities of Science to do things like create your own chemistry lab, medbay, kitchen, etc. Many of your printable boards are there to support other departments.

-

8. Be prepared to take on the SOP for a roboticist if a roboticist is not present.

-


-

Roboticist

-

1. You are responsible for the construction and maintenance of mechs and shells for cyborgs and AI.

-

2. You are responsible for the maintenance of all non-biological crew members such as IPCs and Synthlizards.

-

3. You are responsible for ensuring cyborgs and AIs laws are correctly set and maintained, and that cyborgs are slaved to the stations AI.

-

4. You are responsible for keeping track of all constructed mechs, as well as ensuring they are properly secured.

-

5. Refrain from constructing combat mechs unless directed to by the Head of Security or Captain.

-

6. You are responsible for the construction and distribution of MODsuits to crew who have a valid reason to request one.

-

7. You are responsible for ensuring that MODsuits and Mechs created by you are not misused, even after they have changed hands to other departments or crew.

-

8. Be prepared to take on the SOP for a scientist if a scientist is not present.

-


-

Research Director

-

1. You are responsible for managing all aspects of the science department, including all of the roles listed above.

-

2. You are expected to have broad knowledge of every role listed above and to be able to fulfill SOP for each one as needed.

-

3. You are expected to teach new and existing science personnel as needed and requested.

-

4. Refer to Command SOP for a broader list of duties as a member of command.

- - "} - -/obj/item/book/manual/service_SOP - name = "GATO Luxury Services Standard Operating Procedure" - icon_state = "bookSOPservice" - author = "John GATO" - title = "GATO Luxury Services Standard Operating Procedure" - dat={" - - -

Service SOP

-

- The service department is largely an ancillary department which provides entertainment, special services, and support to other departments. Service members are among the lowest ranked members of the crew, and are largely non-essential to the goals of the station and her crew. These positions are fantastic for those new to station life to get their space legs, as mismanagement rarely results in any catastrophic issues!


-

Janitor

-

1. You are responsible for cleaning public areas of the station and disposing of trash.

-

2. You are responsible for cleaning departments upon request or permission.

-

3. Avoid cleaning active crime scenes before security has had a chance to secure sensitive equipment and conduct an investigation.


-

Curator

-

1. You are responsible for maintaining the library. This includes the curation of art and items to be placed on display, as well as the curation of books for the enjoyment of the crew.

-

2. You reserve the right to refuse service to anyone, for any reason, and to remove them from the library quietly and politely. Nerd.

-

3. You are encouraged to write and publish works to continue to fill out GATOs archive and provide a broader variety of books for the crew to enjoy.


-

Bartender

-

1. You are responsible for serving drinks at the bar.

-

2. You reserve the right to refuse service to anyone, for any reason, and to remove them from the bar area by force.

-

3. You may use any means at your disposal, as a bartender, to remove unauthorized crew from the bar area, provided they have been ordered to leave.

-

4. You are responsible for your shotgun.

-

5. In the absence of a chef, you are permitted the usage of their facilities to produce meals should you wish, with respect to the cook SOP, as well as ensuring the tidiness of their workspace.


-

Cook

-

1. You are responsible for supplying the crew with meals. Lots and lots of meals.

-

2. You reserve the right to refuse service to anyone, for any reason, and to remove them from the dining area by force.

-

3. You may use any means at your disposal, as a chef, to remove unauthorized crew from your kitchen, provided they have been ordered to leave and that they are not rendered severely injured.

-

4. In the absence of a botanist, you are permitted the usage of their facilities to acquire additional ingredients, with respect to the botanist SOP, as well as ensuring the tidiness and availability of seeds within their workspace.


-

Botanist

-

1. You are responsible for providing produce and special materials such as cloth, wood, and leather, to other departments and individual crew members upon reasonable request.

-

a.Chiefly this responsibility involves stocking the kitchen food storage with whatever they need or request, or whatever you may think they will want.

-

2. You are responsible for whatever mutations you produce, and ensuring that all items produced for consumption are free of potentially harmful contents.

-

a. While food with chemicals, toxins, or even medicine may be produced, it is encouraged to denote what is contained within, e.g.; “Cyanide Soybeans” or “Bic Bananas” by using a pen on the seed packets.

-

b.You are responsible for any injury resulting from abuse, misuse, or overdose of your products.

-

3. In the absence of a chef, you are permitted the usage of their facilities to produce meals with your ingredients should you wish, with respect to the cook SOP, as well as ensuring the tidiness of their workspace.


-

Lawyer

-

I. You are responsible for providing legal aid and counsel to prisoners and crew.

-

II. You are required to represent convicted criminals in court, at their request.

-

i. Regardless of perceived or obvious guilt or innocence, you are required to argue in favor of their innocence and present arguments for it.

-

ii. You are not to represent GATO in court cases. This should instead be done by the Warden, a head of staff involved in the arrest, or the arresting officer.

-

a. The HOP acts as magistrate in court cases and is therefore an impartial party and unable to represent GATO regardless of involvement.

-

III. You are encouraged, but not required, to know the intricate details of Space Law. You can also just talk out of your ass, but god help your clients.

-

IV. You may act as a mediator in civil disputes and draft legally binding contracts to aid in settling said disputes.


-

Chaplain

-

1. You are permitted on station as a representative of your particular faith or as a broader general religious figure.

-

a. You are not permitted to represent dangerous cults which threaten the livelihood of the crew, such as being the head of a murder cult or a priest of Nar’sie.

-

2. You are required to handle funerals for station crew who are unable to be revived.

-

3. You may conduct sermons and rituals within your chapel, and optionally remodel it to be more in-line with your particular flavor of faith.

-

a. Any rituals involving crew must not result in death or permanent harm. For example, ritual combat may be permitted, but both participants must be rendered aid once the combat has ended.

-

4. You may act within your authority as chaplain to aid in the expulsion and destruction of supernatural forces present on station.

-

5. You may induct, recruit, or convert crew to your faith of their own free will.


-

Clown

-

1. You are responsible for entertaining the crew.

-

2. You are still required, but not expected, to follow space law in this pursuit.

-

a. Note that your unique position and expectation of shrugging at the suggestion of law does not mean you are enabled to pick up a security officers weapon and begin executing crew. Your antics are still expected to be funny, not psychotically homicidal.

-

3. Make the Honkmother proud!!!


-

Mime

-

1. You are responsible for entertaining the crew, as the silent counterpart of the clown.

-

2. You are still required, but not expected, to follow space law in this pursuit.

-

a. Note that your unique position and expectation of shrugging at the suggestion of law does not mean you are enabled to pick up a security officers weapon and begin executing crew. Your antics are still expected to be funny, not psychotically homicidal.

-

3. You are responsible for maintaining your vow of silence.


-

Head of Personnel

-

1. You are responsible for managing all aspects of the service department, including all of the roles listed above.

-

2. You are responsible for assigning or reassigning crew to other departments.

-

3. You are responsible for the abuse and misuse of expanded access authorized on your behalf.

-

4. You are not required to fulfill the SOP for unfulfilled roles in your department, but you should still be familiar with them.

-

5. You are required to act as an impartial judge whenever a court case arises.

-

6. You are expected to teach new and existing service personnel as needed or requested.

-

7. You must protect Ian from theft, injury, and defamation.

- "} - -/obj/item/book/manual/supply_SOP - name = "GATO Delivery Service Operating Procedure" - icon_state = "bookSOPsupply" - author = "John GATO" - title = "GATO Delivery Service Standard Operating Procedure" - dat={" - - -

Cargo SOP

-

- Supply, also known as Cargo or Logistics, is responsible for ensuring the crew are provided with the material and equipment required to do their job, as well as hosting the occasional pizza party. Supply is notoriously one of the most boring, uneventful departments on station, while simultaneously being one of the most dangerous and engaging!


-

Cargo Technician

-

1. You are responsible for ensuring the processing, fulfillment, and delivery of orders.

-

a. You are not required to fulfill every order, nor should you. Orders should only be fulfilled if the requests are reasonable, and funding permits it.

-

2. You are responsible for ensuring bounty notices are distributed to departments, as well as processing any turned-in bounties or bounty cubes.

-

a. You are not responsible for hounding other departments for bounty items, but may do so if you wish.

-

3. You are responsible for the mismanagement of funds, as well as the misuse or abuse of requisitioned supplies.

-

4. You are encouraged, but not required, to make the process of ordering supplies as headache-inducing as possible via lengthy requisition forms.


-

Shaft Miner

-

1. You are responsible for mining ores and depositing them into the ORM.

-

2. You are responsible for ensuring the station is provided with an adequate supply of minerals acceptable by the ORM with the exception of Bluespace Crystals and Bananium.

-

3. You are responsible for ensuring your own safety. Ensure your survival by bringing suitable equipment, carrying an active GPS, setting your suit sensors to tracking beacon, and making liberal use of mining points to acquire additional equipment to better improve your chances of survival.

-

4. You are responsible for the mishandling of lavaland loot by both yourself and other members of the crew.


-

Quartermaster

-

1. You are responsible for managing all aspects of the supply department, including all roles listed above.

-

2. You are expected to have broad knowledge of every role listed above and to be able to fulfill SOP for ONLY CARGO TECHNICIANS as needed.

-

a. As a member of command, you are not permitted to leave the station except for extreme circumstances, and hence you are not able to fulfill the duties of a Shaft Miner. You are, however, still expected to be familiar with Shaft Miner SOP.

-

3. In the absence of a Shaft Miner, you may request and recruit assistance from other members of the crew regardless of department.

-

a. Ideally, those recruited to assist in material acquisition in the absence of a shaft miner should source their ores from the Xenoarchaeology area to avoid the hazards of lavaland proper.

- "} -/obj/item/book/manual/engi_SOP - name = "GATO Corps of Engineers OSHA Handbook" - icon_state = "bookSOPengi" - author = "John GATO" - title = "GATO Corps of Engineers OSHA Handbook" - dat={" - - -

Engineering SOP

-

- Engineers are the backbone of every station, ensuring that the station stays powered, livable, and functional. As an engineer, you are the glue that holds the station together, sometimes literally. You are also the most likely of any crewmember to cause a catastrophic early death for the station and her inhabitants.

-
-

Station Engineer

-

- 1. You are responsible for the structural integrity of the station.

-

2. You are responsible for the activation and maintenance of the station power supply and engine.

-

3. If you are unable to operate the provided engine for whatever reason, solars must be set up at the bare minimum.

-

4. You are responsible for monitoring the station power and promptly responding to outages as they are discovered or reported.

-

5. You are responsible for the containment and repair of hull breaches.

-

6. In the case that you are unable to access areas which have sustained a breach, or otherwise require immediate attention, you are permitted to break into and enter into other departments to repair the damage.

-

7. Ancillary engines, remodeling, etc, should only be done once the stations power needs and integrity have been addressed.

-

8. Be prepared to take on the SOP for an atmospheric technician if an atmospheric technician is not present.


-

Atmospheric Technician

-

1. You are responsible for keeping the stations air breathable and free of deadly plasma.

-

2. You are responsible for returning rooms to habitable temperatures.

-

3. You are responsible for fighting fires that break out.

-

4. You are responsible for restoring breached rooms air to life-supporting quality.

-

5. You are responsible for fulfilling the rare request for gas canisters from outside of your department.

-

6. Be prepared to take on the SOP for a station engineer if a station engineer is not present.


-

Chief Engineer

-

1. You are responsible for managing all aspects of the engineering department, including all roles listed above.

-

2. You are the engine czar, the engine will be run as you dictate it.

-

3. Protect Polly from those who would do her harm.

-

4. You are expected to have broad knowledge of every role listed above and to be able to fulfill SOP for each one as needed.

-

5. You are expected to teach new and existing engineering personnel as needed and requested.

-

6. Refer to Command SOP for a broader list of duties as a member of command.

- - "} - -/obj/item/book/manual/med_SOP - name = "GATO Medical Practioner's Handbook" - icon_state = "bookSOPmed" - author = "Dr. John GATO" - title = "GATO Medical Practioner's Handbook" - dat={" - - -

Medical SOP

-

- Station Medical is fast paced, bloody, and not for the faint of heart. You will likely see the crew more up-close and personal than you ever would have liked to. Death is not unusual in station life, nor is being resurrected. Embrace the miracles of modern medicine and keep the crew in peak working condition, death be damned!

-
-

Medical Doctor

-

- 1. You are directly responsible for the health and safety of the crew.

-

2. You are responsible for monitoring the health of the crew.

-

3. All crew are to be treated without charge. Medical expenses are covered by GATO.

-

4. When reviving crew, be as unobtrusive as possible. Attempt to revive them with all of their original bits and pieces. Replacement organs, limbs, cybernetics and prosthetics should be treated as a last resort.

-

5. All surgeries and implants done on crew, unless for life saving measures, must be done with the consent of the individual unless dictated by both the CMO and Head of Security or Captain, such as for pacification of a violent criminal.

-

6. While you may encourage sensors to be maxed, crew are not required to raise their sensors unless security levels are elevated.


-

Chemist

-

1. You are responsible for ensuring the crew is provided with chemicals relevant to their jobs, namely the medical staff.

-

2. Ensure the public facing chemfridge is stocked with basic medicines, clearly labeled, in safe dosages.

-

3. Fulfill requests for chemicals/pills/etc from other medical staff.

-

4. Fulfill requests for prescriptions, such as mindbreaker toxin for crew afflicted with RDS, or brute/burn patches/pills for security and engineers.

-

5. Do not distribute chemicals to crew outside of the medical staff without a clear, valid reason, such as a botanist requesting chemicals for farming.

-

6. Ensure the chemistry lab is secure and that dispensers are not being taken outside of your department for unrestricted use. Keep your windoors CLOSED.

-

7. Ensure all necessities and crew needs are fulfilled before engaging with factory chem, fermichem, etc.

-

8. Be prepared to take on the SOP for a medical doctor if a medical doctor is not present.


-

Virologist

-

1. You are responsible for ensuring the crew is healthy and free of plague and illness.

-

2. Address any viral outbreaks immediately and with urgency.

-

3. Ensure vaccines are distributed to all crew to eradicate viral outbreaks.

-

4. Ensure any beneficial viruses are not spread through contact/air/etc. Only consenting people should be affected by them.

-

5. Be prepared to take on the SOP for a medical doctor if a medical doctor is not present.


-

Geneticist

-

1. You are responsible for cloning crew, fixing unwanted mutations, and researching beneficial mutations for the crew.

-

2. You are responsible for the abuse or misuse of any mutations distributed to the crew.

-

3. Be prepared to take on the SOP for a medical doctor if a medical doctor is not present.


-

Chief Medical Officer

-

1. You are responsible for managing all aspects of the medical department, including all of the roles listed above.

-

2. You are responsible for alerting an admin if Runtime begins making dozens and dozens of kittens.

-

3. You are expected to have broad knowledge of every role listed above and to be able to fulfill SOP for each one as needed.

-

4. You are expected to teach new and existing medical personnel as needed and requested.

-

5. Refer to Command SOP for a broader list of duties as a member of command.

- "} - -/obj/item/book/manual/sec_SOP - name = "GATO Security Force Code of Conduct" - icon_state = "bookSOPsec" - author = "Magistrate John GATO" - title = "GATO Security Force Code of Conduct" - dat={" - - -

Security SOP

-

- Security are the peacekeepers and mischief managers of the station, ensuring the crew are following space law and that intruders are removed or erased from the station. Agents of the law are rarely ever looked upon favorably by the station at large, but you dont care! Youve got the big zappy-wacky stick, and they dont!

-
-

All Security Personnel

-

- 1. How you carry or wear your weapons depends on the current alert level:

-

a. Code Green: weapons are kept holstered and hidden unless an emergency or incident calls for it (like an altercation turning into resisting arrest).

-

b. Code Blue and above: weapons may be visible.

-

c. The contents of the armory are distributed at the Wardens discretion.


-

Security Officer

-

1. You are responsible for upholding space law, and detaining those in violation of it regardless of rank, seniority, etc.

-

2. Except in cases of violent offenders, you are required to at least broadly cite what space law has been violated before initiating an arrest.

-

a. A more specific citation should be provided on imprisonment and logged in their security file.

-

3. You are responsible for protecting GATO assets and crew from harm from both inside and outside forces.

-

4. You are permitted to carry a disabler, flash, flashbang, stun baton, and pepper spray.

-

5. Weapons must remain holstered unless escalation demands they be drawn.

-

6. You are responsible for exercising reasonable force proportionate to the incident.

-

a. If a suspect is non-violent and not fleeing, you are required to attempt to peacefully de-escalate and detain.

-

i. In this instance, the suspect must be escorted to the brig without the use of handcuffs or incapacitation.

-

b. If a suspect is aggressive, non-compliant, or fleeing, non-lethal force is to be deployed, and the suspect detained.

-

c. If a suspect threatens lethal harm to the officer or to other crew members, or poses a threat to crew by fleeing, lethal force may be deployed to detain the suspect.

-

i. Suspects must be rendered aid after the threat has been dealt with and the suspect has been restrained.

-

d. Known, identified threats to the station may be dealt with as necessary regardless of escalation procedures.

-

i. e.g., a known syndicate agent may be acted upon with lethal or non-lethal force regardless of their apparent threat.

-

7. You are responsible for the reasonable and humane treatment of detainees and prisoners.

-

8. You are responsible for responding to calls for assistance and maintaining an active presence to deter threats.

-


-

Warden

-

1. You are responsible for prisoners, both in permanent holding and within the brig, and ensuring that their sentences are carried out in full.

-

2. You are responsible for issuing equipment, both lethal and nonlethal, to security.

-

a. In a Code Green only non-lethal equipment may be distributed.

-

b. In a Code Blue or above lethal equipment may be distributed.

-

3. You are responsible for the abuse or misuse of the contents of the armory, and ensuring that they are secured and accounted for.

-

4. You are responsible for ensuring the reasonable and humane treatment of prisoners, as well as ensuring the timely release of those temporarily imprisoned.

-

5. You are responsible for conducting thorough searches of every prisoners belongings, including pockets, PDA slots, coat pockets, suit storage, etc.

-

6. Suspects of capital crimes are entitled to a trial upon request, provided a lawyer and the HOP or another head of staff are available.


-

Detective

-

1. You are responsible for aiding security by examining crime scenes, collecting evidence, questioning witnesses, and identifying suspects.

-

a. You are responsible for ensuring that evidence is not tampered with, disturbed, or otherwise rendered inadmissible through your own negligence.

-

2. You must follow the security officer SOP in regards to escalations, use of weapons/force, etc.

-

3. With permission of the HoS, you are permitted to conduct undercover investigations. You must, however, have your security ID on hand at all times.

-

4. You may join the security team during patrols, responses, etc, assuming there are no ongoing investigations.


-

Head of Security

-

1. You are responsible for managing all aspects of the security department, including all of the roles listed above.

-

2. Be sure to exhibit a strong working knowledge of Space Law.

-

3. You are responsible for knowledge of every SOP in your department, as you oversee the affairs of all security personnel.

-

4. Be sure security calls are answered and addressed by your officers.

-

5. Refer to Command SOP for a broader list of duties as a member of command.


-

Alert Levels


-

Code Green

-

1. All Clear Standard operating levels.

-

2. No immediate or clear threat to the station.

-

3. All departments may carry out work as normal.

-

4. Suit sensors are not required to be on.

-

5. Weapons worn by security are to be hidden except when in the case of an emergency.

-

6. Crew members may freely walk in the hallways.

-

7. AI/Cyborgs have no need to bolt down any secure areas.

-

8. Security must respect the privacy of crew members and no unauthorized searches are allowed.


-

Code Blue

-

1. Confirmed Threat Elevated alert level.

-

2. There are reports or other proof available to indicate that there is a threat to the station.

-

3. When a Centcom threat summary is received and printed at communication consoles), the blue alert level is applied.

-

4. Suit sensors are mandatory, but coordinate positions are not required.

-

5. Security may have weapons visible.

-

6. Crew members may be searched by security with probable cause.

-

7. AI/Cyborgs may bolt down high secure areas.

-

8. Energy guns, laser guns and riot gear are allowed to be given out to security personnel if the HoS or Warden agree.


-

Code Red

-

1. Immediate Threat Maximum alert level.

-

2. There is an immediate threat to the station or severe damage.

-

3. Martial Law is in effect.

-

4. Suit sensors are to be turned fully on at all times.

-

5. Security can raid departments and arrest any crew member deemed a threat to the station.

-

6. All crew members must remain in their departments.

-

7. AI/Cyborgs may bolt down maintenance and airlocks leading to space.


-

Code Gamma

-

Coming Soon


-

Code Delta

-

1. Imminent Destruction

-

2. The station's self destruct mechanism has been engaged due to overwhelming threat to the station.

-

3. Martial Law is in effect.

-

4. Suit sensors are to be turned fully on at all times.

-

5. All orders from Heads of Staff and Security must be followed, any disobedience is punishable by death.

-

6. All crew members are to evacuate immediately, if possible.


-

Code Epsilon

-

Coming Soon

-


- "} - -/obj/item/book/manual/command_SOP - name = "The GATO Command Officer's Handbook" - icon_state = "bookSOPcommand" - author = "Fleet Admiral John \"Officer\" GATO" - title = "The GATO Command Officer's Handbook" - dat={" - - -

Command SOP

-
-

Captain

-

1. You are responsible for the station as a whole.

-

2. You are expected to remain on station, and not to leave the vicinity of the station except in an emergency situation.

-

3. You are responsible for managing heads of staff, and may promote crew (as appropriate) to the position of department head at your discretion.

-

a. Note that you should only do this if a head of staff for a department is not present, and a capable and willing member of that department is willing to take the promotion.

-

b. You are also able to demote heads of staff at your discretion.

-

4. You are responsible for securing the Nuclear Authentication Disk.

-

5. You are responsible and accountable for the actions of your heads of staff.

-

6. You are expected to adhere to the chain of command, and only exercise your authority outside of it where absolutely necessary.

-

7. You are expected to be broadly knowledgeable on all aspects of the station and its operation. As the leader of the station and its crew, you will largely be looked to for guidance and support, especially in emergency situations.

-

8. You are expected to maintain the decorum of your rank.


-

Head of Staff

-

1. You are responsible and accountable for the actions of your department and those employed therein.

-

2. You are expected to remain on station, and not to leave the vicinity of the station except in an emergency situation. You are expected to remain on station, and may only leave as it is deemed absolutely necessary.

-

3. You may not give orders or pull rank on those employed in other departments.

-

a. Exceptions to this may be made in emergency situations, where other heads of staff are absent or unable to give direction to their own departments.

-

4. You are expected to be broadly knowledgeable on all aspects of your department and its operation. As the head of your department, you will largely be looked to for guidance and support by your junior and senior staff alike, and will be expected to pick up the slack in emergency situations to keep things running smoothly.

-

5. You are expected to maintain the decorum of your rank.


-

Succession

-

In the event of an emergency situation where the Captain is unavailable, rendered unable to act, or deposed, the following line of succession should be followed:

-

Captain > Head of Personnel > Research Director > Chief Medical Officer > Chief Engineer > Quartermaster > Head of Security

- - "} - -/obj/item/book/manual/prisoner_SOP - name = "Important Notice" - icon_state = "prisonerSOPsheet" - author = "Anonymous" - title = "Important Notice" - dat={" - - -

Prisoner SOP

-

Notice: As a prisoner, escaping is obviously not encouraged ICly. However, you are welcome to plot and make escape attempts. Should you make an escape attempt, you are not permitted to randomly kill crew or security officers. Escaping prison simply to kill people is murderboning and will be treated as a rule violation, rather than a violation of SOP. When escaping, you will be pursued by security. Ending up in a scene with a crewmember mid-escape does not protect you from being captured and transported back to prison.

-

1. You have been permanently imprisoned for crimes against GATO, the station, and/or her crew.

-

a. If playing as a prisoner off the bat, it is encouraged to have a security note detailing what crime you were sentenced for.

-

2. Your punishment for this crime will vary depending upon the severity, but can range from permanent imprisonment to exile or even death.

-

3. You are permitted to make requests for accommodations, visitations, and even legal counsel permitting that a lawyer is available to represent you.

-

a. The Warden is not obligated to fulfil these requests.

-

4. You are encouraged to maintain good behavior and earn your freedom through reform, serving your sentence, and backbreaking labor in the mines.

-

5. Prisoners making escape attempts will be handled by officers in accordance to the threat they pose based on the severity of their initial crimes and violent actions toward officers in their escape attempt. As an example:

-

a. A prisoner who escapes and slips out unnoticed without causing harm or stealing weapons will be pursued with non-lethal force.

-

b. A prisoner who escapes and slips out unnoticed without causing harm, but who was imprisoned for murder, will still be pursued with lethal force.

- "} - -/obj/item/book/manual/greytide_SOP - name = "My SOP" - icon_state = "greySOPsheet" - author = "Mr. GreyTide" - title = "My SOP" - dat={" - - -

Assistant SOP

-

1. You have no special repos responsibilities.

-

2. You may request an assignment from the HOP. Familiarize yourself with the SOP of your desired position before requesting it. all the fun items from that department.

-

3. You are not required to fulfill role/job requests from command.

-

4. You are still required to follow orders from command to ensure the safety and security of the crew and station. have loads of fun :)

- "} - -//GS13 SOP Manuals end - // Wiki books that are linked to the configured wiki link. // A book that links to the wiki From 6dc24e2e9041991f36afe2a248adc1d225f9f5a0 Mon Sep 17 00:00:00 2001 From: Phantastic-Swan Date: Thu, 15 May 2025 11:07:47 +0200 Subject: [PATCH 09/17] added recipe for prussian blue --- code/modules/reagents/chemistry/recipes/medicine.dm | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/code/modules/reagents/chemistry/recipes/medicine.dm b/code/modules/reagents/chemistry/recipes/medicine.dm index 74c7d0d3c6..c894011053 100644 --- a/code/modules/reagents/chemistry/recipes/medicine.dm +++ b/code/modules/reagents/chemistry/recipes/medicine.dm @@ -377,3 +377,11 @@ id = /datum/reagent/medicine/limb_regrowth results = list(/datum/reagent/medicine/limb_regrowth = 2) required_reagents = list(/datum/reagent/blood = 1, /datum/reagent/slime_toxin = 1) + +// GS13 EDIT +/datum/chemical_reaction/prussian_blue + name = "Prussian Blue" + id = /datum/reagent/medicine/prussian_blue + results = list(/datum/reagent/medicine/prussian_blue = 2) + required_reagents = list( /datum/reagent/iron = 1, /datum/reagent/toxin/cyanide = 6) +// GS13 END EDIT \ No newline at end of file From 2d01f0209e4793d0eba705d88920548a42481349 Mon Sep 17 00:00:00 2001 From: Phantastic-Swan Date: Thu, 15 May 2025 14:15:46 +0200 Subject: [PATCH 10/17] moved the recipe to a new file --- .../code/modules/reagents/chemistry/recipes/medicine.dm | 5 +++++ code/modules/reagents/chemistry/recipes/medicine.dm | 8 -------- tgstation.dme | 1 + 3 files changed, 6 insertions(+), 8 deletions(-) create mode 100644 GainStation13/code/modules/reagents/chemistry/recipes/medicine.dm diff --git a/GainStation13/code/modules/reagents/chemistry/recipes/medicine.dm b/GainStation13/code/modules/reagents/chemistry/recipes/medicine.dm new file mode 100644 index 0000000000..991cdd08ba --- /dev/null +++ b/GainStation13/code/modules/reagents/chemistry/recipes/medicine.dm @@ -0,0 +1,5 @@ +/datum/chemical_reaction/prussian_blue + name = "Prussian Blue" + id = /datum/reagent/medicine/prussian_blue + results = list(/datum/reagent/medicine/prussian_blue = 2) + required_reagents = list( /datum/reagent/iron = 1, /datum/reagent/toxin/cyanide = 6) \ No newline at end of file diff --git a/code/modules/reagents/chemistry/recipes/medicine.dm b/code/modules/reagents/chemistry/recipes/medicine.dm index c894011053..74c7d0d3c6 100644 --- a/code/modules/reagents/chemistry/recipes/medicine.dm +++ b/code/modules/reagents/chemistry/recipes/medicine.dm @@ -377,11 +377,3 @@ id = /datum/reagent/medicine/limb_regrowth results = list(/datum/reagent/medicine/limb_regrowth = 2) required_reagents = list(/datum/reagent/blood = 1, /datum/reagent/slime_toxin = 1) - -// GS13 EDIT -/datum/chemical_reaction/prussian_blue - name = "Prussian Blue" - id = /datum/reagent/medicine/prussian_blue - results = list(/datum/reagent/medicine/prussian_blue = 2) - required_reagents = list( /datum/reagent/iron = 1, /datum/reagent/toxin/cyanide = 6) -// GS13 END EDIT \ No newline at end of file diff --git a/tgstation.dme b/tgstation.dme index 475b49a44a..530451df4d 100644 --- a/tgstation.dme +++ b/tgstation.dme @@ -4107,6 +4107,7 @@ #include "GainStation13\code\modules\reagents\chemistry\recipes\fatchem.dm" #include "GainStation13\code\modules\reagents\chemistry\recipes\fatdrinks.dm" #include "GainStation13\code\modules\reagents\chemistry\recipes\others.dm" +#include "GainStation13\code\modules\reagents\chemistry\recipes\medicine.dm" #include "GainStation13\code\modules\reagents\chemistry\recipes\ROCKANDSTONEdrinks.dm" #include "GainStation13\code\modules\reagents\reagent_containers\barrel_tank.dm" #include "GainStation13\code\modules\reagents\reagent_containers\pill.dm" From b10e3f9cbd06ffe76c10a28d8c43537fe5292b1a Mon Sep 17 00:00:00 2001 From: Phantastic-Swan Date: Thu, 15 May 2025 16:28:18 +0200 Subject: [PATCH 11/17] added a set of craftable lockers --- .../crates_lockers/closets/utility_closets.dm | 14 ++++++++++++++ .../objects/items/stacks/sheets/sheet_types.dm | 13 ++++++++++++- tgstation.dme | 1 + 3 files changed, 27 insertions(+), 1 deletion(-) create mode 100644 GainStation13/code/game/objects/structures/crates_lockers/closets/utility_closets.dm diff --git a/GainStation13/code/game/objects/structures/crates_lockers/closets/utility_closets.dm b/GainStation13/code/game/objects/structures/crates_lockers/closets/utility_closets.dm new file mode 100644 index 0000000000..6ecfba12f9 --- /dev/null +++ b/GainStation13/code/game/objects/structures/crates_lockers/closets/utility_closets.dm @@ -0,0 +1,14 @@ +/obj/structure/closet/emcloset/empty + should_populate_contents = FALSE + +/obj/structure/closet/firecloset/empty + should_populate_contents = FALSE + +/obj/structure/closet/toolcloset/empty + should_populate_contents = FALSE + +/obj/structure/closet/radiation/empty + should_populate_contents = FALSE + +/obj/structure/closet/l3closet/empty + should_populate_contents = FALSE \ No newline at end of file diff --git a/code/game/objects/items/stacks/sheets/sheet_types.dm b/code/game/objects/items/stacks/sheets/sheet_types.dm index 832995ded8..0729b43d76 100644 --- a/code/game/objects/items/stacks/sheets/sheet_types.dm +++ b/code/game/objects/items/stacks/sheets/sheet_types.dm @@ -56,7 +56,18 @@ GLOBAL_LIST_INIT(metal_recipes, list ( \ )), \ null, \ new/datum/stack_recipe("rack parts", /obj/item/rack_parts), \ - new/datum/stack_recipe("closet", /obj/structure/closet, 2, time = 15, one_per_turf = TRUE, on_floor = TRUE), \ + // GS13 EDIT + // adds empty, craftable lockers + //new/datum/stack_recipe("closet", /obj/structure/closet, 2, time = 15, one_per_turf = TRUE, on_floor = TRUE), + new/datum/stack_recipe_list("closets", list( \ + new/datum/stack_recipe("closet", /obj/structure/closet, 2, time = 15, one_per_turf = TRUE, on_floor = TRUE), + new/datum/stack_recipe("emergency closet", /obj/structure/closet/emcloset/empty, 2, time = 15, one_per_turf = TRUE, on_floor = TRUE), \ + new/datum/stack_recipe("fire-safety closet", /obj/structure/closet/firecloset/empty, 2, time = 15, one_per_turf = TRUE, on_floor = TRUE), \ + new/datum/stack_recipe("tool closet", /obj/structure/closet/toolcloset/empty, 2, time = 15, one_per_turf = TRUE, on_floor = TRUE), \ + new/datum/stack_recipe("radiation closet", /obj/structure/closet/radiation/empty, 2, time = 15, one_per_turf = TRUE, on_floor = TRUE), \ + new/datum/stack_recipe("biohazard gear closet", /obj/structure/closet/l3closet/empty, 2, time = 15, one_per_turf = TRUE, on_floor = TRUE), \ + )), \ + // GS13 END EDIT null, \ new/datum/stack_recipe("canister", /obj/machinery/portable_atmospherics/canister, 10, time = 15, one_per_turf = TRUE, on_floor = TRUE), \ new/datum/stack_recipe("trash bin", /obj/structure/closet/crate/bin, 10, time = 15, one_per_turf = TRUE, on_floor = TRUE),\ diff --git a/tgstation.dme b/tgstation.dme index 475b49a44a..ee5ff175ba 100644 --- a/tgstation.dme +++ b/tgstation.dme @@ -3989,6 +3989,7 @@ #include "GainStation13\code\game\objects\structures\table_racks.dm" #include "GainStation13\code\game\objects\structures\beds_chairs\bed.dm" #include "GainStation13\code\game\objects\structures\beds_chairs\chair.dm" +#include "GainStation13\code\game\objects\structures\crates_lockers\closets\utility_closets.dm" #include "GainStation13\code\game\objects\structures\crates_lockers\closets\secure\psychology.dm" #include "GainStation13\code\game\objects\structures\crates_lockers\crates\wooden.dm" #include "GainStation13\code\game\turfs\closed.dm" From 72b84d299a4619417298955e244bb7d61ccb30fa Mon Sep 17 00:00:00 2001 From: evilew Date: Mon, 19 May 2025 23:45:13 +0200 Subject: [PATCH 12/17] adding dancing poles to meta and pubby --- _maps/map_files/MetaStation/MetaStation.dmm | 8 +++----- _maps/map_files/PubbyStation/PubbyStation.dmm | 6 +++++- 2 files changed, 8 insertions(+), 6 deletions(-) diff --git a/_maps/map_files/MetaStation/MetaStation.dmm b/_maps/map_files/MetaStation/MetaStation.dmm index cd94476100..95d53a00db 100644 --- a/_maps/map_files/MetaStation/MetaStation.dmm +++ b/_maps/map_files/MetaStation/MetaStation.dmm @@ -33579,6 +33579,7 @@ light_color = "#FF3232" }, /obj/structure/chair/sofa/corp/right, +/obj/item/stack/spacecash/c10, /turf/open/floor/carpet/black, /area/service/bar) "cwd" = ( @@ -42809,13 +42810,9 @@ /turf/closed/wall, /area/hallway/secondary/exit/departure_lounge) "cPc" = ( -/obj/structure/table/plasmaglass, /obj/item/clothing/under/misc/stripper, -/obj/item/reagent_containers/pill/butt_enlargement{ - pixel_x = 8; - pixel_y = 10 - }, /obj/effect/landmark/start/chief_engineer, +/obj/structure/pole, /turf/open/floor/light/colour_cycle/dancefloor_a, /area/service/bar) "cPd" = ( @@ -42829,6 +42826,7 @@ light_color = "#FF3232" }, /obj/effect/landmark/start/assistant, +/obj/item/stack/spacecash/c1, /turf/open/floor/carpet/black, /area/service/bar) "cPf" = ( diff --git a/_maps/map_files/PubbyStation/PubbyStation.dmm b/_maps/map_files/PubbyStation/PubbyStation.dmm index 1b164303c5..ffb42c99e8 100644 --- a/_maps/map_files/PubbyStation/PubbyStation.dmm +++ b/_maps/map_files/PubbyStation/PubbyStation.dmm @@ -64624,6 +64624,10 @@ /obj/effect/turf_decal/delivery, /turf/open/floor/plasteel/dark, /area/engineering/main) +"vQS" = ( +/obj/structure/pole, +/turf/open/floor/plasteel/dark, +/area/maintenance/department/crew_quarters/dorms) "vRi" = ( /obj/structure/cable{ icon_state = "1-2" @@ -102156,7 +102160,7 @@ akf eqD oMN vlF -xbJ +vQS aiT aaa tgv From 5d4513b13a0f040cdef7fe13c4efd4d1444f1fc6 Mon Sep 17 00:00:00 2001 From: Hekto61 <94539922+Hekto61@users.noreply.github.com> Date: Thu, 22 May 2025 20:35:31 +0300 Subject: [PATCH 13/17] Belly rub action --- .../code/datums/mood_events/needs_events.dm | 6 ++++++ .../mob/living/carbon/carbon_defense.dm | 19 ++++++++++++++++++ .../mob/living/carbon/human/species.dm | 20 +++++++++++++++++++ 3 files changed, 45 insertions(+) diff --git a/GainStation13/code/datums/mood_events/needs_events.dm b/GainStation13/code/datums/mood_events/needs_events.dm index 102a3c2d9b..68d8532721 100644 --- a/GainStation13/code/datums/mood_events/needs_events.dm +++ b/GainStation13/code/datums/mood_events/needs_events.dm @@ -11,3 +11,9 @@ description = "I love headpats so much!\n" mood_change = 3 timeout = 2 MINUTES + + +/datum/mood_event/bellyrub_good + description = "I love bellly massage so much!\n" + mood_change = 3 + timeout = 2 MINUTES diff --git a/code/modules/mob/living/carbon/carbon_defense.dm b/code/modules/mob/living/carbon/carbon_defense.dm index 936f8182a6..27409c65c6 100644 --- a/code/modules/mob/living/carbon/carbon_defense.dm +++ b/code/modules/mob/living/carbon/carbon_defense.dm @@ -294,6 +294,25 @@ target_message = "[M] boops your nose.") playsound(src, 'sound/items/Nose_boop.ogg', 50, 0) + //GS13 EDIT Belly rubs start + else if(M.zone_selected == BODY_ZONE_PRECISE_GROIN) + if(ishuman(src)) + var/mob/living/carbon/human/H = src + M.visible_message("[M] rubs [H]'s belly to make [p_them()] feel better!", \ + "You rub [H]'s belly to make [p_them()] feel less stuffed!") + H.reduce_fullness(rand(4,16), FALSE) + if(!HAS_TRAIT(H, TRAIT_ROBOTIC_ORGANISM)) + H.adjust_nutrition(rand(-5,-1)) + SEND_SIGNAL(H, COMSIG_ADD_MOOD_EVENT, "bellyrub_good", /datum/mood_event/bellyrub_good) + if(prob(5)) + M.visible_message(" Belly rubbing causes [H] to belch!", \ + "Your belly massage made [p_them()] to burp!") + H.emote(pick("belch","burp")) + if(prob(10)) + H.emote("gurgle") + M.DelayNextAction(100) + //GS13 EDIT Belly rubs end + else if(check_zone(M.zone_selected) == BODY_ZONE_HEAD) var/datum/species/S S = dna.species diff --git a/code/modules/mob/living/carbon/human/species.dm b/code/modules/mob/living/carbon/human/species.dm index ebce4913d9..5b5e50b92e 100644 --- a/code/modules/mob/living/carbon/human/species.dm +++ b/code/modules/mob/living/carbon/human/species.dm @@ -1730,6 +1730,26 @@ GLOBAL_LIST_EMPTY(roundstart_race_names) return /datum/species/proc/help(mob/living/carbon/human/user, mob/living/carbon/human/target, datum/martial_art/attacker_style) + //GS13 edit start belly rub + if(user.zone_selected == BODY_ZONE_PRECISE_GROIN && user.health >= 0 && target == user) + user.visible_message("[user] rubs their belly!", \ + "You rub your belly!") + user.reduce_fullness(rand(4,16), FALSE) + if(!HAS_TRAIT(user, TRAIT_ROBOTIC_ORGANISM)) + user.adjust_nutrition(rand(-5,-1)) + SEND_SIGNAL(user, COMSIG_ADD_MOOD_EVENT, "bellyrub_good", /datum/mood_event/bellyrub_good) + if(prob(5)) + user.visible_message("While [user] rubs their belly, the spontanious belch comes out!", \ + "Your belly massage made you to burp!") + user.emote(pick("belch","burp")) + if(prob(10)) + user.emote("gurgle") + user.DelayNextAction(100) + playsound(user, 'sound/weapons/thudswoosh.ogg', 50, 1, -1) + return FALSE + + //GS13 edit end belly rub + if(target.health >= 0 && !HAS_TRAIT(target, TRAIT_FAKEDEATH)) target.help_shake_act(user) if(target != user) From e97f5862fdb34295f742600e66aa0187329f483f Mon Sep 17 00:00:00 2001 From: Belaya Date: Fri, 23 May 2025 13:43:39 -0500 Subject: [PATCH 14/17] Intern job cleanup --- .../code}/modules/jobs/job_types/engineer_intern.dm | 0 .../code}/modules/jobs/job_types/medical_intern.dm | 0 .../code}/modules/jobs/job_types/research_student.dm | 0 .../code}/modules/jobs/job_types/security_cadet.dm | 0 tgstation.dme | 8 ++++---- 5 files changed, 4 insertions(+), 4 deletions(-) rename {code => GainStation13/code}/modules/jobs/job_types/engineer_intern.dm (100%) rename {code => GainStation13/code}/modules/jobs/job_types/medical_intern.dm (100%) rename {code => GainStation13/code}/modules/jobs/job_types/research_student.dm (100%) rename {code => GainStation13/code}/modules/jobs/job_types/security_cadet.dm (100%) diff --git a/code/modules/jobs/job_types/engineer_intern.dm b/GainStation13/code/modules/jobs/job_types/engineer_intern.dm similarity index 100% rename from code/modules/jobs/job_types/engineer_intern.dm rename to GainStation13/code/modules/jobs/job_types/engineer_intern.dm diff --git a/code/modules/jobs/job_types/medical_intern.dm b/GainStation13/code/modules/jobs/job_types/medical_intern.dm similarity index 100% rename from code/modules/jobs/job_types/medical_intern.dm rename to GainStation13/code/modules/jobs/job_types/medical_intern.dm diff --git a/code/modules/jobs/job_types/research_student.dm b/GainStation13/code/modules/jobs/job_types/research_student.dm similarity index 100% rename from code/modules/jobs/job_types/research_student.dm rename to GainStation13/code/modules/jobs/job_types/research_student.dm diff --git a/code/modules/jobs/job_types/security_cadet.dm b/GainStation13/code/modules/jobs/job_types/security_cadet.dm similarity index 100% rename from code/modules/jobs/job_types/security_cadet.dm rename to GainStation13/code/modules/jobs/job_types/security_cadet.dm diff --git a/tgstation.dme b/tgstation.dme index ff33c8a9e9..523a8b999b 100644 --- a/tgstation.dme +++ b/tgstation.dme @@ -2492,23 +2492,19 @@ #include "code\modules\jobs\job_types\curator.dm" #include "code\modules\jobs\job_types\cyborg.dm" #include "code\modules\jobs\job_types\detective.dm" -#include "code\modules\jobs\job_types\engineer_intern.dm" #include "code\modules\jobs\job_types\geneticist.dm" #include "code\modules\jobs\job_types\head_of_personnel.dm" #include "code\modules\jobs\job_types\head_of_security.dm" #include "code\modules\jobs\job_types\janitor.dm" #include "code\modules\jobs\job_types\lawyer.dm" #include "code\modules\jobs\job_types\medical_doctor.dm" -#include "code\modules\jobs\job_types\medical_intern.dm" #include "code\modules\jobs\job_types\mime.dm" #include "code\modules\jobs\job_types\paramedic.dm" #include "code\modules\jobs\job_types\prisoner.dm" #include "code\modules\jobs\job_types\quartermaster.dm" #include "code\modules\jobs\job_types\research_director.dm" -#include "code\modules\jobs\job_types\research_student.dm" #include "code\modules\jobs\job_types\roboticist.dm" #include "code\modules\jobs\job_types\scientist.dm" -#include "code\modules\jobs\job_types\security_cadet.dm" #include "code\modules\jobs\job_types\security_officer.dm" #include "code\modules\jobs\job_types\shaft_miner.dm" #include "code\modules\jobs\job_types\station_engineer.dm" @@ -4061,7 +4057,11 @@ #include "GainStation13\code\modules\hydroponics\munchies_weed.dm" #include "GainStation13\code\modules\hydroponics\grown\berries.dm" #include "GainStation13\code\modules\hydroponics\grown\towercap.dm" +#include "GainStation13\code\modules\jobs\job_types\engineer_intern.dm" +#include "GainStation13\code\modules\jobs\job_types\medical_intern.dm" #include "GainStation13\code\modules\jobs\job_types\psychologist.dm" +#include "GainStation13\code\modules\jobs\job_types\research_student.dm" +#include "GainStation13\code\modules\jobs\job_types\security_cadet.dm" #include "GainStation13\code\modules\language\language_holder.dm" #include "GainStation13\code\modules\language\spacerussian.dm" #include "GainStation13\code\modules\language\tajara.dm" From c52b500f5f48829079011f742b5cc955642d62c2 Mon Sep 17 00:00:00 2001 From: Hekto61 <94539922+Hekto61@users.noreply.github.com> Date: Fri, 23 May 2025 22:46:11 +0300 Subject: [PATCH 15/17] Bellyrub text tweak Text tweaks --- GainStation13/code/datums/mood_events/needs_events.dm | 2 +- code/modules/mob/living/carbon/human/species.dm | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/GainStation13/code/datums/mood_events/needs_events.dm b/GainStation13/code/datums/mood_events/needs_events.dm index 68d8532721..da6b2c8635 100644 --- a/GainStation13/code/datums/mood_events/needs_events.dm +++ b/GainStation13/code/datums/mood_events/needs_events.dm @@ -14,6 +14,6 @@ /datum/mood_event/bellyrub_good - description = "I love bellly massage so much!\n" + description = "I really enjoed that belly massage!\n" mood_change = 3 timeout = 2 MINUTES diff --git a/code/modules/mob/living/carbon/human/species.dm b/code/modules/mob/living/carbon/human/species.dm index 5b5e50b92e..42a62b4d96 100644 --- a/code/modules/mob/living/carbon/human/species.dm +++ b/code/modules/mob/living/carbon/human/species.dm @@ -1739,7 +1739,7 @@ GLOBAL_LIST_EMPTY(roundstart_race_names) user.adjust_nutrition(rand(-5,-1)) SEND_SIGNAL(user, COMSIG_ADD_MOOD_EVENT, "bellyrub_good", /datum/mood_event/bellyrub_good) if(prob(5)) - user.visible_message("While [user] rubs their belly, the spontanious belch comes out!", \ + user.visible_message("While [user] rubs their belly, the spontaneous belch comes out!", \ "Your belly massage made you to burp!") user.emote(pick("belch","burp")) if(prob(10)) From 66c061d268543fc6107c6b82080ba6a04d15d566 Mon Sep 17 00:00:00 2001 From: Hekto61 <94539922+Hekto61@users.noreply.github.com> Date: Fri, 23 May 2025 22:53:10 +0300 Subject: [PATCH 16/17] Bellyrub text tweak Another one.... --- GainStation13/code/datums/mood_events/needs_events.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/GainStation13/code/datums/mood_events/needs_events.dm b/GainStation13/code/datums/mood_events/needs_events.dm index da6b2c8635..2b80357baf 100644 --- a/GainStation13/code/datums/mood_events/needs_events.dm +++ b/GainStation13/code/datums/mood_events/needs_events.dm @@ -14,6 +14,6 @@ /datum/mood_event/bellyrub_good - description = "I really enjoed that belly massage!\n" + description = "I really enjoyed that belly massage!\n" mood_change = 3 timeout = 2 MINUTES From bb70775d0f2b725f509e4c8fa4df645f93efba51 Mon Sep 17 00:00:00 2001 From: evilew Date: Sun, 1 Jun 2025 12:41:56 +0200 Subject: [PATCH 17/17] snout sprite tweak the sprite was darkened and gray so I fixed its coloring --- modular_citadel/icons/mob/mam_snouts.dmi | Bin 13102 -> 13115 bytes 1 file changed, 0 insertions(+), 0 deletions(-) diff --git a/modular_citadel/icons/mob/mam_snouts.dmi b/modular_citadel/icons/mob/mam_snouts.dmi index a5762f1ce3d41422837fea7e6af986792d320cb8..4a3911f84973c9ded634224245bc317c0867ab26 100644 GIT binary patch literal 13115 zcmd6t2UJu0mj43^Dn<0FfQX=1f(jBu2na~O2mt{_nzTq0LsxnYf`|o(h9(^~h;->C zKtL(dF*GR&C=d)t3896wIovz%t@+P-GwVNV&3kKD$K%BrKC+HwIu-gb4-UWd;o`slM`TgPI>+}%ek7?-3sV7IbPOwX<@ z!=|J&OB?mYt18WgNGr{kO0ECUg{oP&yupZ>Wr}IfT_|`zLOW7yNEtjpKA;$zirU`t zH5b&TYeGG{-)@JcJaP-!iC#CbiPg@+-j}{*AfhZ)b98RbawF4d+tPJc^a+3QVwKQ^ zccxdv-@R0>82RY-_R22Lod%zb1f$}a`tokgD+YeIJ}*s^-z0`cm3ea`-ZwMz*G7a>#Qqy@_1;Fvz^Gpm-!@q-gYTHXwIQO6bT0(zZTd( z{1v^r=K4jatbgNj3wNU51nZvK5Xph(r?uw$XXRLiZ*!kWgwj(VSAEYncSfieamiyGYeYbUOs?Xeb z1KH+2QNs_V+tKz_?*DBk{HKuv2y_Mn`$NktD06wr!NYbwYn3v6yZlKAg*z%k%FFE) zUg)A!u$JkS?(2>EvI^LsYLBX=lDZFtRfq}qXU=dl?5*{veA%Z~&xG3bN40Mw;6BnN z{wL1L329q1-d_2NIrR{HfXgy(tR7OWd->7bMZDRfFFcdlD~ei{aLV!R*kaRP70dg2 ze~qzp=i3eK}}BR`SG0D;1V|{VvI4F z#*bFif9P!(B6pSWE*fXJPwPv89Pn|%sBP8NsFkl;O~RR>ss&A2ruiF;*R4lt+@`V< zn9Go#X-;_g&h@gRsEm>ra|a3a?G+gZW4y>Y&#>k({KRK+O@}*5O1ot*8*~_Bim#Z*+zHBC&hkHN8noS8ZOok zS8hHs73bQ>J1Mbg1X~O?z-OV=linv3Oq`21+>Pj3sFDg>jA{U@Nfs=?!OWOB6iM|k zE9j+q%6pd4?la6uSZ%dyu{$va25Un9P#kz)C1~EnOW2#5S{60Pxs2hOH0_JqJP|1r zJ@jFY_==R|0hKz{2R9J;m2(l%hD;jH^2!HirTUq7Nq^@mDW)0X=hvd%Z`#@Eqk^F& zas;!`%IDrJQ~a>8G-9g{emw)1)Ohf)d3TYL8O$wZnXX<(*=<6B!(V&xD;0qNZ;U_6_SMxjEBFznrI*+b?dT7B_x*Zy99KIwC`Z^|m ze!HRde1z?x*SBZW24xCvcQr76@?;=KB?E7UZZwv@-@J!sHX)j>q$964{uXxww__;c z7V@_LBAXH<89a%|eiRT-Yoc17Q;;IRCD6uzXD$bxJ##`ykRtO$&A@_V;&`1?B}y8E z9`@d$$wE_Dv*x>oK4B^gC#abhb1$4l+_Zpk$QJl;W= z4Bs)F>2H4+c(BmR_i(T6!DlZ>IfgZ_Mu$osQ>d|9jeQXych$~g;ZX4vd4qH|0%pS# z=4H!gy!syX2zW#%EXWPTO7x{*7_8EG%*`)?t5YRM+4x!jF$K35pC#n4n(+6s7Rm+phAn4U=QTkfzTbi4zk4AFB>cyp*Y-Yu`zWxv{1n(kYV8NM z|C?|9nG%o#8qH25#*o74;Xcb(Qv=+@VkFSC)nyImNnjwc)NlCH_X6mK=`1VJ9#4h0cnn`{JrBPlc#XXV;w=g9>YQg4CpI2HK!D3818MVY1 z0SUX5jcEzy4ZI{w9=#=E!?l|h=#YrPN`$}k0+V@7&r;cw8~2LMb7BMHux!}72RofN z`si<0{I!@S;9BNa$Bxh9CLLirul?k5l;NX1nn9*#uN4f2om!ega_1Y8m$6``I>BHI zFjWsmx!lq+=W|S_?GZ(TEiUmXJA;bp0sOLE#TWxjevalAJw=%$kNI#^KauYo7;QAw zEXnvSL%k3A=GzBLx?FWHXeJZ867Jr8Sj&^&j(u`!oKi)zHBfZz97y+IoyWa(=3|}7 zY6?+28EYtY?-G8^KY&r(Z?7iJJX;XHE?sZg@J4oL#<3$1YQfbz3kp(1G}yB{kfsqVF41GbTYNtr`T9S=TsJAN%h2 zgp2C?US_OeJ~bx4{GGTjp;|kawhv_S_)oiI$ZP)Z8s7idoNF&Fq&{in?W1#t`ABPI zRp$kZc8f#@jBtU9#Y;*+zkD6OU@zY^Oz+2_mo;TP4d{a0(VJeTrlP0{w+^|SOGS4R z%M~IOydBzDe$5%Rm(R8>&=b29*BJ21%rIWx+5s-l#40WP9oPvN6o!?sOICo8lin14 z?FeGP@UDJP0x}lUxbIP*mUv#Rl0KS+DcZe3c4{8r0>Ud!getyjlO77YohH=Wm&O#5 z@Jw9~faJ+6I(YNK z7;P*Gy^x0Cf(|4rt&HDWeUBL&+R3g|WETWGnI;eCJKD30OnUL_h;RTuEL5`nM zj%O~9f)+V6pBvTJok`+{mnZNP`k%|dA7Ip(vFWm>GD2Y?KCd1Ko74uQ^hBv1SwZxL z`Gjyj4$AQxib$wM^A7{tUtRCe+5N%S5`u)boZa+Iy&DMjTi?WQh`&%nzsHBme#>BA z2oi$mPl(;#Wm~Y`c;xej{DJ2}c!ZitqCkVYu^5#%I{PMg+dxS$W75fJyX2&$6ANxon;I?ce66B0zPe)5aCkL3d^ zO`Yggrji0BWgyV~r$wM`!(9iM>|=IjGyl2dh)oo&kQnoO>5jKV>A{VY{O}@!-8%>E zUiwwc(7vr|Gn-n(t7c^YEB{EMuz}sbJ_!EK^T-VE$iFl-&0Ie+FR6>(0%w3fKz&D+J876i_G z99@|1stt+@M|`zMVDu(b!H6qNV!@0>h_*XE8uGysk1?B+HkasHxF$%9Nyl_QJ?>6k zm`4Rd!w3Bh(-Vg;A|#pia3Yc_a%&UfCw(&3>x3%1yd!SnGLfaKwfoBLVc`Y+hiGjQ zD^P-c?iA{g5hRXJ0>ysrmTs!67NW=`eb*+z$&`FQE49Lc_s>ZZ%cs$P^^ZG0VIe;q z3PxqkpMWauj7a78^DjLmc`ftw9q_$lUwlXJQO%U!lg4Sd%X+40f!-x+lVWBFUZEuFjT5 zWW8ctr@~=soSKJ!RP1CvNB$1zF_odol(GiPW2EViMv$M4m}3Jezdc_3zSQDCj!3TD zK;;pZqppM1GHu_aUSU&~Q`D@t@W{Ue2kYdSf3D*A2gd$q;sHn=KSQhu;D#MjOHubE z{0$p~ZOPRc$>E1H1eFiK8f@2s=WJ5}2dxY4GrFJ18>7_x(_Uy;8gZqv%o1&TL1w?l zLoI?~cx6lZgP}7o>>i$;$Q#}~!!4S@j>Gi#vQ8!oaXKFBAI-6y zb6r2oA?MfUytR4HE6}j#5JyQk_uYKn*hb!ow9HqQ-iP~81by?-rZwMKq_X{u8@&%P?f+P>u^cE6EC%I##H65+jg2DKLaY94J zblbt2UM37&;9;gRcs}dP#iQbDkjxJT6Nv>!95&bkG=@Z$xG^X64Pek*;xt?0i^m%jie%RTb z2J;6CaX(37w93PDi0|fHtlX-!U?N`-m!9D7CfC@*@QSc^==6cSk#u0a&Ez#sgl)E# zJCDs+g(!}u^`Ed7@npGLObQagFNq^w=Y)K()mR!_E>BjC%DNV%)wXc}Mxh#ak#W~X01 zq34xX(F_Z5(t`{y&1}gbkq33R#L6ED=%O`)e?x+t6M9c3fu*V{+ z8fwK7+zAFMcUr76`HbHo;$uhjo6bKh^YdlgIv=i2O*IgXMhO+r{OBD`wAFdJk5$PE zYv#j@cfy>Qj!k1kAM%8-KAU9>mffUChb!GB4$R+?CnglJ#wX;0F6G~I_vW~py^k1k zjG`T6HeV9?%kS*A{W}T=BIsvJaja@!6Ot-+N7U zg2lFz57^s5o%$IALJPPLv-0esN$W7yG=5Q*FIXr9Y-AwvQbD31V){VpLRSgceD#xa zh^kjkKVnZ>V4O2&Ys%uC!X0~1pR?6MCH(I*GH`tF-n~;Gxb+H&ZnTo?CJ+ z<9YlELH*0M`ccEVt*%jJ@1>Npv%Z_LQ5fR8CPXN1rW}^5H z%%%lxPrSwN!Xmm=r?9fC{YsTS&6ZgiXFuTlSd|)R_LB~@ZclD2TXQlau zdq3G>lF0~WUq(1@#Jv)1+JpPCo9bKFSkHk}*hgnv==-y0&$ySRA2%OxwM}U9Li2@G!v0Bw z&#bS*_6lK>?%JPuae39-bva;`l3Hdn5zc941FXMIhQDfsIXm!|6|#x4A$*QI6Dh=L z`}No24eO7GlAXJtE0sa*)uG!fyQUlU%}Sqv+d_j#^*8;Fbt|&3hjW>~C~jzQ&OkQe zz7>MJJaol5MJJJu=A+{*#e$%sO##Ip<&;B~t%BwsSxzdF#z}D4DU+!!H%juO%}bLE zAk!wG-#7B!=8Ds~<`rly&7C0UC+-?lI&+-{5?Ll|8>OKkl8o#4m~L{A#<H);2&v7(fHEx&#htEi~>k?~+c$Wlpz9~lh{6;xGi+Gr(* zys!C5`uY3A&_8Mpj*BcG7tPy)xtNY*>lBq{*%jt$>(i-XTCGp^ERWgAR+80f+hXQ_#xp* zSt zZ_k#zu5i|g91)ssw@~Ze;nN(4TAmX_(q`Zs#W!ncsVAb0&Fy)Y4|BX`vqHBDaUU)Z zGb}XCwhnM`6bt;{3DJ?)XtNGRqQ^+pq9AT1bs=L98l~~T>@yjS!_lX5?E zg7vCBk=wwp>3MQ{yNNesDkj**>Hizs&K1vtKKd_N^Z|d9N=i!kB{sFB08{s_wzkI; zM>+TW{@Af&E~&}ce&2mp^+V+9yugzKO^Lr`+0GMAz1YEvYB()CH*CcdCd-{4>bDk% zICD@LN=gqrFiVM80MM(-2cc+R@AK74`in`~;_||uEaE4J%5elPHQyT{Br6v5$Ail1 zk5X}M3&bXHFU;CWB7Xt97h%uWFs_OQZRbpxZp%EgoQW;Hc588Zy0jr=ii>bA=7zbD z1k)OJ%yxAPo2&7@mVK#`-R!3-gYXTZgJDCvrI1*m6m$1P)en6k_9)21U%Y8KJ=p_Y zoC`AnLK`13LodQ)SJ-VWPPwoV?4V`OFJW`mEP#3ev32LwZdkn&GcM2}1JisFre*?b zxQ&m+56hW{VjjSzWoelfF(!65YcZV?n~Wk1?j_@ESZAxa0KOAHjDu;sQaDGhNk(nT z^w9E1_q>5r*YkdhXK4|DZpZ9=R`qf8ij9TU3&E|SgfGX~&OQ@4>ffDovirmQ4H^nD z7t1g-LxYGhn9xR;nnznYvUiwRJjeCs3rQAiwCpFsnSRofg;uzT`0zXbu-DGJdf`F| zXwO!-_>}yn^Z+WEkPcj4?1Q6+rO8ar=L|Wu0PCgmX!Sd^TdCEYpr1==;0w}y8q%fv zdkZLTQza50kCzG!pGY~?U8je|)XItwO=*5eZ|kz3(rihJ!R0H=AF_xK2;~4{8md#i zYtop?SLNQjnuQa2a|i4D>ID~19w?|Qf9fsw>y`+}!af!Rx-=Fc)a}t&v?Ur> z6e83izx{$oXTUkCLot~x2ufKi;BA0+NqtL+T9_mFaji5y4Cajl*0o42h6b?v7a`Gq zu+sgRpeQTz^Za)2-e z^3&F*oQARrXPRWNeUP-gC8%B*-AQR~&L#(&9_V0dT862sCME$%(aOe_A$r~Z&{M!5 z?n!K(6!)%bRTuKZVj!?ebh8w>q?c(Tk#%LGZfYS)(Xc_SNh8Y(Cv|akAwN*d8^B-r zlP36da01P2cS7Slq6~8smPKhUAHz7TYL|&1k**C$tl1X^Do@F&L>bJiMRHYJ1KMi~ z(wkR%UjDp-2bAl5L+UqV8}?(S`J*K!(X_hzw`{Y6CQ=I19V&rRfbb_0FOm24d0$US zM^>67?SBI)Aby}8kG8P1E;0%U^JzlYTtu)YlWalOdy)RE;O9XMI#8zr%zxsh`vqTy zM_<|rvD$gi;A->>-O!=sIExhR(dbmX>_yr&O^+Fr{X(FZbNQ_EQq>FJm4@w-i>mvp zp?+CBr4e}<1Q8FGM#%-*q{giZ&MR3F%ref7AIQ8}^^y*^9>0*o;3Z0He12``5Pd$U zeer=hVM~e}vyUsTQ*$EFX+RCxB<|H(LF8=F9xvL|gCe6OM|N#E_3-m~KO_3Q8M?@C zYYmOO)RemP)l-R{9V-W<{6xEpx$cIa1I_&mF=X}}0tKJuZRa(S>a{s^@rT-smGu5} zjmQ({K*!HaHd;;;Q?ChvKu7;9*X`thIR06cf&a=4{^p0de`=}FzaiQGSUKP*mMsR& z-4A-zQ77nr36aCALyUO@lm{e}Jr1}bZcmJL__`;;U=OZ!7oO}4t0;~#>cDs2r3zmE zWwL+`egW<5lJ#9-n26whiqG=Q0XaU~?BS%i%)M(2igRx)3MMq^GxER1YiBBzE7?() zWzz^0$Lgoo82T0Ld->W>1HK#pyBNa=ZZ`m2pbTS9;8z)kIF+9D$W8k$B{llKS7IZ8%zfJhwXOP|al({zIyTiH@)` zJ;zws@DwiCC_?sHZbFVfXh)uVpquL*<9}!`Zny2#!TwKVwxC=n%i}|^(A>b2fE=C_ z?>ii4f>LknCU(_Ch%1WTAcacw)3r#`==2;7HZ+?ZFno#)3A9HuAg;;>hZ}j9gBT0u zV_mfYaUPX{w@rU`iS{0-#UHbNL5hc&o918|0iu~(czjm`J8^|b$K$FkMaZwVjA7|F zaDm;ImcC2_j_a`33qWElY3-pa)57IsDWE0=Pc%FE%29^d$e@(IM{Rn+e99x(sT#_Y6_ml*Z-uU`fxHs ztH?P_Yj47@_SxJll5BzEO9i5{SU`cE)@_wyhtm)bR;>S3PnH(GG=y5le~DcuQwF;G zMsD@fmK<#RBDw!OZ;0H~s&=tljopOTj&7iN@LGXEvhLMGVC7rK?Z=U_gi^1 z4^gL6PDBoW415D0Fqi<7i=X&gF}dL{-2O|BT80thI3qxIJ-Tw{AZZID*7o-jXgU|b|BRrpXF)8Pjri##nUGkz+*$g94Srqon3dH_CX0Z&&$928zjE#w+5 zl2Q&(yx&HG(*roTgnS`ajSMCv`4hlc?oKqFl#Y||&!2>WQS5K8L#cp-2r2F@_g5)N zQ;WSqduP0Rp-G3Dsv#z*(B7UtXOK{aGH0*rMKO++Hd|t^S?KfFyC9e{kut4D23;=( zY0j!?D+8Oo7WK~sAWtG+v7F%pKI^+vsoNvSkY0OeI$Iz4j%La8p%w!at72hIt=0{z zv8`$DEVQ3CJ`N2-T6K-=e841f#kF_MD5Q@DT`f^g%+^ue0cP@&B%6GhTU^$ZO5TbO zrB3%a-9<nwzTmvX&59)kW;ZfcO|d+&Wu%65d?IXfKUdRHSuPlw?^@&oACNLh4VtYVXgcZ z6xk&!B$l@`UCtJWY zig&>&`BXo3g0X>!Ka>(~f_OY92 z00vd>EYL;PyZ4nnc{i321H9(dA(XlzM6cygeKGd~)(e%0qtxkj9?e>`y}X6@7NiZu zsQ^E?u;S=5F&9M|z8^L|32x-NtZ;^(FAwU9riV)K=g)pEa25rW*FNQvr+j&xD@Hv) z1gimjMAg?z9rb)nBX#F+ZzSf;Mx!KnesjBY5Bi5OI+ur(<2zsVGCDoK7kQ4o3P1Y1 zmc1*4bO~6g3<(KQfI`i`m0Rv3ArWe7YAP!Jmqb^Cq{b*$0giRSk!54e@e=^_g+%W~ zS-)~x>iSzh<*Rml#yQT-5N=BnKG0uNWF@r&4+MTzsphM*_pg*3?L?x`zQQXe{RMop zZVC(_0ahY-k4K>}`le#ijz)dBdJ9$C`iHsz14d)Me!XQ^|1hu5wJIcxYzVhb?DXQI z;;O0@*~ZPAV;|f?P6#KDGAy6{GWQt{(^xI~{^o}Kox*@S00a0tbiL0Kazb!v8kFk) zSZ*u}7%jXisT;5NwG-Z7uU|A9W)WR|mEFSw8g)sXI}gR36(T&IymQL%RQKZ_Z_|Al zaq)Y2buRiZ7chzZ*SkQ=+y97EE&4~g%F=MWpqmx{1D={3r?yx8vKuEU$;p+^&~0kH z?8f>u+zxX9EcBJc>4x<`3Xs&9j)f?RWnz&YEY`Ufm^pi+?o)M9jM3$g*JK$n&ZhzuA;Pg zmI=a7S`Ae6;ieCa$soG1m(5$Qw#^3QS3AxK%PW$K+BY`*m;oNm*ud3N**+nMa?*4d zq@*El1Reyi(Ki4i1gI%mMS;}^f8st?iUK+=W?B=p^+|GsW;f6Pjr{i3Iz9bH)# z6JG5-ry`gyRTfiPsyCs|-cxDunE3Nv3lk5nc$)Pn5Iqe(4b=2*$2Rc>mvHk<=UVh( zZ(c-z?*csf`=2;-=o!7|YV62eM@Mbh)eld0vgrotKGNw+jg9X_1nD>B)Fzz`^G*lodz{mU;Jm`(|vwV4IjZxxs(&*r_8#*Pr5ibLPic;`H> z5ju^x0VNu3*Sc(>q>-~}>67WrV_^_o6~FmIV`0heB{bJ2;ARsPll{~}Z1Dgnv#_yd zCUw2}#~s6tE%?F8%F0bit6{6Q2PkQdNfY8&ikvHJ0q8>cOg8naMR$0Y&R%W{FXIxE*T8G#Owrb~a( zSI3K3Z$I6n+Hl;$svmq>jrz;kEL;Bd&i4N_(s?1a4}sjx*C1_^u3+;pAD7{hV4(n) z6)bv@(+Zv$R!1>$*{d=51q3X%VA*EKugc}~oeo}J#sGnISd6*9S8-SxE!oXbqED;` z;(%XRQc}`De7i94jSW5yQ@1QX`naMGsX{O=+&KcYc5J+_RdU@r#tEt_oIeo>@KrZQ zM@M3FeZ8_Lp~1WXJsDhb5@4($!Ftf7)0~b}S(`t*SNpI>YRy-ps*juj_h~4yF0N`T z3eSxsWqiJFqC&zmj@+!vf`~3Aau=cdxdH*f_vye`Bd+(hTmC+>Xl9Te{zX@iGY~Tu=jsa&&6($=c;i(^ZZ<_ZDT{jrM`$HPqz%oZHCd_#uyg7iPYx9xQ6A=D{0@hpC zWx3o=0K=kbVyPQG4MZ*x&A15-J#+`{L>cYLy$ko(46$#9}6zSIsY@X83afr2gq~I4m$wS%=ie*?%!KTt+#AI-pfd}wn?}eZ4*CsbkdH^Tx~in zQ9#`qFhsK$Y4Lg4pI4iaV14}5`BfNNeR~ytu{r|Vi6d;53}{4F4|K(zVw)w_ZsEil z6sHRMZ8VDNH5m4lmKv8fb$3dbWw8U^iv_qHW5zW5b_lbSKX7z4khpsXHs5rxlO(?# zJ3Y3YtbCxCt&)yZ-v@d`uyN0$2RnQILT7W+xl zTa0~H8rD32-atHT%?5_2=^>XZCI!@YJip6oQo5I#dTxh!hZr17jVO6$h#L(}%^$A* z-fwCjIXgWaK1NtI>yq4Gk&BlO}~i$px=x9vC`n8pYCEnec=;_5W))E#nirjP` zh|N+J>t!-$wsG45SGP$6Lc`tJI@y~kpBPGuB`;_T@}S5&J-bKFMEV0c#p`zVzQ0@B i??90M7q!*pvIX7^3@i|T-`aCF5KPzjk5cWsQU3<0Go$PP delta 10857 zcmbuFcT`hb*Y1M~h=|xQ2trT+K_rND5TarsK|tx!1p(>3myIIe5iytuNDXQL>Ag2m z0g-Abp$A0*p+yKS5R$t&=e*yz-}vsh?LJ*jsnawz%C2HbZw zBBoPUNO@Ou=l_!7^2+thW!Hf{mj8LS&qh{)cTL=$11%mYpK(zs?;KB7W8yyAy>5}f zZ}Xb>ZhzOD)*6b}&*iO6XycX8@6kEfzxB?$@1151Cii(hvN&vF!1%f5jkJtx!}&Vi zkmBhjJ3-}*$(>;)fH*!n>zcYtvH}*;c3De)hjld$LLkGdwZ=FI1R?=r1OG;XBM|Rl)i4vqFJ@96O+zJDB-wjqw-5Et?f#Tc+I4c?{(lVjP<~Q z6-n_oBaqitq%hg*mX8UW**Zp;I>n=_p zkVpPwAT&5XS?K(C;LNiB^$?BJD6u z)~hOohj6u-x=1~(`E4kYrL)>j6XFD}XyLRBSQmE<2`};WW^zMD)X#XlJJKuF(ZDSB z;$&3M-o0gX23;)+V9I@`Hj)^JK6SP@-SnoS6vWKqzTKuJVK{aiQ35M4F~96FCuEYS zrHQv#15l8l03hoGtOylN`JEKm;v9u+L1z!+m2PWP%BYH1chd^`2U$i8+R~D-I?uBq zs?fO+1{*is9l3zfKvhSlHsgb7NpC8?AmF==og3|I!%l@gsbL;o(GA>{YhIx|L-N%E zHiP>8US0JiX+}>{cN?$fG|~AY<^+?mA^lT;Afo8Nfc&QJ+?#=-N0#A_qPh_-Sha#i z)vN`l#$;b0z^wQs8F!3&;Cw$6Kt}R-45X~W(6d-{I+@}z_!e;)P`Gg(Q#70oOe{Uk zxOe4T>l4}Mi+E_#)KL+EdAp*QLaqPl0)-bcd@e)7i~kEsF5KW zC*-S0i>a~xV#=0IGh78%A;m~IM(jepm3baOfrQ`VMgWVs7!i*Y(l( zJp2TvNLv8wJJdHZHy+495@rEk^$7rtZ`l7N;5sY^t)zuv;up3pD0WRGc1z4!JeiEp zsFvTvWM6?cbtms8i7myihVTSJZ;PqF9Z^UR8aJ}tIY2co^I{2 zr6tJ^f2ftMDSC9~h4VMZ$bM6^^Zg9Y5bt7Nm(p7GAAiPEWV^drQj`s6�GoHflrsgZ5B=Mx1dpVahuyytL{ww;}XGPp02a<#H|bcDOn+s%8e(}LhBU9 z8CkxqGK#Fuiw?KQww`rq1H-Z@Z#pz-QVImp=W&GF&|9vnynlIRcA`u0)`?@m({INd!&c{tDdp;^`P& zJ~dWp+e@>{lT5Yi+pqJy=kLe=7LDqnQMH(N6s`8BTJSIHS+UgfoKfoY1a1lxed-De zg+^q3nAbNlTK_2SM9ReHi#42@^tp~k4r=5&YU$(f@49F{m@58S4p+eM;a09MGX|fl zk?SI{YleG~%v#$jHLjGY<)H5Th5u`2&?TIG%GEPLIF}%{WKdSP_RSqUq#tOdvha8m zo7hDpm(gYxuQU6}TAor$mqaqK0G`R&=M>5BXAz35#JkO`*I14#YGq2i`~6dz@y-At z5F0dH2xr%!e2n%5DoW@u!jB3%C$fH_yLr_5T1%@dm+tJ9-k2+BY4FS+%)zt?l42~K z4)V`SE$<=*ln{@>FsXe>=17CUpM@$$wx{u9Zc8Z11^X2#iSsnk6R91VPosSe!#MWa4A%F_N$_lH?-(ZdUN-`SqWd^$peU{z>wo;_KCZ=of3V$7sH)36hD3`6%w=@}j2ipm#Ktw)o)-5q zAlrXZAO|q6T6>wO4s5-q9_!_&6a9$Z&u&>lINvEAGN{j#uLGaup~4&*L^S-SjIYgzav7& zBkX9n*8>?Nh!3kbuDO05*~Z3(>P?;%i7rY8x|)`|rgfcE&Sut<*oJ35AEQ3?7rWr| zE$6~u3F!s6E}E0<>MBaYBZweka=`cnTJe7QR^HXoPKoKp;qRLvVEutFZ*dZzxJZdf zxYDzvUzh$yKD(A2;n_+@Z;+P=}qQb+TvU)pNvE=;8p` z)g=Joo)*qMB}SPUE+wvgPXvC4=(< z2D>_@0$|y>spXA%ibsn9<2?;Bt+=!hxfylgTf+4ZMtpLqc1-Ajb0l2v+mn9d;zkYJ zD;!trj|<`SP!~h_L?)jog&(;5;TM1alH}(s=U|4b`+G%sf{HPnCGtcLv0Ow>DgWI_ zqtRe7B3gNC+L~d6$D<6fK?L7phP;R#)+tVz8Iq9p<({>- zZs!jMVt)gFTKL<;8`l_T=3-isU6>eOGanp6JzJFHm6oc(C(|@8-SbXy?ea;%db3uP zjjd_j?dN2fgv%VbOZotj_d&~pG~za1(s1JVwXOaU@b&1`jL~t8 z)@z#gP$r;5gF1Z{IwD5z=raCZy^?f46;$c1mB@#;*diRz`?&rI3DzNgY|9lpuqZeW zm{$FWOw!EneW(z$^pp5yMexFB@Zk+h3LGa2hldTmRG}fP(^&6c^)iaxT~>C1JLSN` zzWP2e&+0ehuOruIHEOQvxl88;LdE;ry>={gr@{JOL~Qy@b))o|g?{t!GaJhjQn@;I zq-`Vq)2DyD+hqP&9C!5d^K)``&I3y9iaEMigu1#q-_ZG+$|D=DMblo4w!caQ$gILU zy)my|9jUCWl`#Wk}e>~aGxi^9x3`MiPokxHC@Ig~ZNGRCl z3q77_s?@mea&~PraB0FnXGc1<>*}jGGpA{**U@B>X}*!TxVZ0ZdVsSnVEcYBrz|gY zM#}mDw%z>{t+{4hgH>K$?(E`{s>E`0b4y82cU#Y`ynFZ-=4AD)Z$p6#KWMcD2bAe# zw9nW2Kc-~53UYrml__Q}1=070*4THRYTTR*8Q;zNMX;U>0PKaDPj|6y7?WA9y@K2+ zZOnP4?k0}gyjDlRPgz$!YB*r})e9}frq*+{=9eniOq)uC%b(*Trb#&+En#|bLkc)X z$kxUORmW(zzeyeVx2$8wt{n3QO7JED#y64yk4iIbM6a1D(fsGS$)yXu%50{i`D#)R zY2@ydjEo_2cWPyRS-(PfZ|h{WCS!YTt%6Bjnq()H4^8waS9}hJg;)WtXCaW9ti@Y_ zp`oEI#A>%OhhM+OhF|vJ5Hd(r?4%}MFNA8Yha zsXY3*yVX;`15Uk?7`&A&5Le8b#4wXF$Q&)*x^Q$)7RO%L^84cC#f zTbxJE^o?XFdBbAM)jgi==RESbGf~=k#*|1{@*EBPRaNzyWQxm6ZmYLMZjEHngEJmJ zo;y{UCl(zsJe8f3vjCLs6!ODhxXo1ZNU4OrT{^hOPb=$5i!Q|lUe?7aMoGH`9(-jHGOEBK ztiiHwvfn*EWgAellTVUYV*{5u1{fI`2|jqy`O>eN0AJs|_ya{ejFE+*lHRK&$cMXt zRmyVRSkjgmLrbJLI4)rKfkJoKNrOb!gC)T$mac;zUXs`(>dDSu7i3@zsR+LBimb95 zdy97?UlT$Gm>G==G8Ydkgr7W`up1iz8RFb)mN{0e+4e(hjCo%WYPE-JPcLsOYp!2x~jyRu;n$K+k!J?xX(-(IYhG8Eva&`?oemOB2>ZAenR z>07CcW0OpXhU1~M$a>2@J4}!CYGn<}V1Mxw4nFD)4~25On{@P-3HW1=YzOqfLZ{FI zFx$vICbq7NoDVi8G-5O`*}5MIVsXgr@Q&Gvi=pJFs$%MAa~G^dca=I|y#Z$!9U@`p zbawOC43Kh|Wiz@dsWh#5V0f`m5y)ldscH3F_x9Y5=3cg>1Xw398J1$u2Bo-$mEHq6 zkrY7<#ov@JoIjG7AU~5J4W)mU|7?CS3xox%TVI~V@7#KZ|=8YHw2QewerDN(*s zH0pD?=$9pb=T%Vi>NqZeF(c+3i0NlX_}p2sd>iva8Q4t%Uyb(nne&i;;(!H40~iNb zC+<+-_wTm>57meEK??K&Dz*;{#kPxe)c;B2E&8U~-oTC44leq3?vu`8`0;By+~E_& zx8tVo4e?jxEnls-=<^40BYZS91W9-ZmB(l_>96u%jc?-EKm|L|E0Zes-P5s-(4A&0G8OAlS0`kWc?4v=sHRI#Y4T}>y0;7^l&Hv0N3z3*CXml@ar}D|tEzXdvMx*?F?i(^1)p zLzld|atJPf4nYI?B_)*^)>ecBYisxJUB-%iiRQ&e%sc%trN%l)){^=4!fX@BKZNpb zrb2fihv{JLSEk)$)J(yl@kOe%QU0Z$r=$M7yfJN8;B%ryvWc#iV6j`?{Y{_dakBXP zl78d;SxJsUAaKUxH5_J9jbB1#1N9ieYkSGB%;c~p7Nx;+8Y^#lt*~VeCpo%rB)Mz$ zvt{;jLSy}N#!eSriYnkN#sm1@n{2lG0fsm*YkW#gw@Nqvf2T}0J=gPf{as4vyc$`* z9ntwPISTHa25%GQRfuL|OO7{C?5l05QB%6MV!GYHC^uDyXN|dw^&5O`zrO24ic{Yt zbT`#3xiR^9ppgGg@iJ@@@6k!L9MPu5$i}d+(<2 zIY>hm1ldIHD4EY&>q5RQm`Yd$-hMcV(mIA?Yd1UF$6zbqXUl|)kQP zI|W}^2mX7{^=VXY&hqg%ks9gJT3ew%t^7uTqcD%#ChQ@*$Q{jC`L;?^JLLc5Pp2}> zWACC~Oy4)|RwiTZ`CKojG;s)4U;bsIN{TZtP|*!f_L&7#H=(;H#-CiBdb*vVBfK-+ z`Z5NQ{F2_sML}^dZv%V14MtI`P9*n^z7fG4Nd!}qs>__aulrS|D8;8PW4ZZ`{^XNS z^_l4Yc0o}jK=2DIT9YMFpTd#BT0S%w&O9XqX^=csu2Rk_!wcz$7qfxx2A)%{K3fi5 zk2;J4wdIdY2ZeSTselX{GJfyBN9~tT95&(;EU|bzd`6X(qQ9zvt;i&|&JZ7jL*g+< zuhH}#?T>f^90YalY>6#_odL{8-Y7Qxe-WqlL(YYZ=OHOTWFZAt8O#{-R8+Rqg0;t{ zw~}R?O78gBd0KWTpB#+u<;W?mxSdVs-S}-q8M5^WdH=H(P_Ro$Wtk9`2B!|4MlX8V z6}s*oU#CwwquhPL+>BJssU?%rHK^+?GZTy~(R*v#Q$0>aD|*=qCbsq<5wJKWb-thq zlCNjM9;ij&)pmZydJ}&5d_wppnhwVGx#cYnv7&=(MJ4dRJ*6!ZFn#TrN{~+?f9Eso zwc`^1G9xZPzTNtu5%nn}s&C$)WmQ@Va)63K0^%b>xG&LPIzoBdgAiQ|bNzMNZ1eXW z(yQQU(h?krAuV0ve3BRNj<1;2Ft17{zk2Pq;f^|FnH))UdG&%T4B*<5FUDJwD6;Bi>(}Ua7(g{tE21{crMi!g*2{5Xdn@c5v_u@!bc4 zCf4joG}h+$K>(~2r4f)&@{Pgz%wCIcE1{sR!j-}cDP1A)jf)}cq?9|aXU_Mpl-vtQ z;=a?sJ(@6}esV!+vHDkhz|Z)A>v}zLcQ*7U{m4R_9gGEt&Prs%#+C1ZGGxmy9ZFse zn-+a``jvX~r!fN;oFr(BG`w`nOwiN(A!BGX4l|knFcuBM^ojSjD>aZBvtEDT66)av zMoU;{%*O6b!cDH}CJFwJCKJk8i@=qHCoe2z+bFV|8y_FZA!$W{g}UPDjR` zwW*OAAu7DFz=hD7cJ$CAg|%eFxDt^Oa_D0w;Z^ur zE82V`FD(nWG!O2$Z^JR+`$1A7U_CUsc4oOFppvb|jrk~(?s#diB&q%pZgb_-bud|F z9t^)+AOZP3ya?6&J9jb9i(r3j6m$%Ck28$I_6y;f9K<+3z!= z6z7)NA9;0<2tWHEw#-s4H}7{99BUEW^NI4wBSdK={LQI-inWrWJW`h|PqP zD#Q>(pO_7!exV71C(aPd-Pkn6aWa+l62H;KJe>gDXM3V&2xsv-WYxV5koE0;wBhF{ z9DsTTrqm_p`2Yy$BZ#K+=*m%yk%)pVvBVsjujGU-N&qwm8Y{M{q30BTn&|^2)`Y<+ zjvZ`!2m2uCIh3Kbw+`BrSkJ@my7Y+lZlVNG z?H|Bn=x{J}+sEwK>AUEO^hBXmxNC2Qwj+5wRG7~r9KLemZ8$QL5~PFrzA$UK=WB0m zqsL~w1<-cMboAI~lQH*mA;(^zS=&&+-ha8g4ydb>S5Pn-E;ZRt2AnJ{EmbxA&ZW7A zC=yqc!>4ab*fLYi*yh$-bn+%W=Am`N4DDJ8OCDX5r~Ns}2$QE$K9qWb49`09gA*7d zEW^xiN9B`;o=-QMbf_F&7n?PVmhDzx*iov~COk%-S|eZMuNr?9NCE5$jcfduQf}Wi zx-E)4fBt-(|B_j3@8k8Y?LP;LW(WF~LTS_z@Kh}5&OljaWuwFSGL{d%9`!w?c& zfK@}jabgb(2Llne_FDDtjF9|6v+bZ16_X3i4&iXfwGOL^2VAL29z!7MQS_KBuuMoV zS_y%J6y+B&CnslJ$zv0~l~K9u-}a8r_{zosP%k?6sidu~t*6BvV^waJO018v2htFL z6~_1XXnz*7Yp<=wR5bBALcaa& zA4_GerT0(^+Kx6+?x+{$)O0Xbfz{^YG$ho`jH(t^hpDQn4h#*6|AQ@Syr!ca939t_ zSf%Y2$6sQ+M&9pX9e=>z_(DEinDzRO@O_ZDfOFP{qG|7p?7A5;a5WaXtLfN=Nptdo zY1&fId0*c%kLe7eXr;D*uAtudkeSyNX~S;$$tBe1-iU;`c#K_14kdr#u z+TIA549WrdCV2bVAfK_veKmuoz87tEJ65JJ8N3#%jX}_w;}hsqT1&Tt(}o->aksoz zI_$vZkw2j!4y?DUN{P9(jXz!DX7%ysi5dQJ0kuOZzz_&H-tn<+UM{Zd+!l%e$=0PU zZ6JuWQXsZRg7!eriA#GRs68P<$Whp}=j21;j`SHd|(dQ%w3rw-Z6Fzppu9;wt+>Oi>2q@u-H>PS8F z{pWkrci8UdhaWrY^3QLQwu<*fuwkD_KEzxW`p4KA%A2x$j+W7yUuj9WUp;R*oF24{ z+UqjBR(}qW5@btOTKgs^i!`abcDwI=f;-Wgg~t8h8mHDBsXZzK=b#|4qpb5 z+vlyVK+3cgXc3}PUZ1RPY)b*Tqh8J!k`J~oZ!&6mZH3$weghKW09I)wfZLd292(vG zFB(#$n7PkZI=n=q7eL;0&mXMun_Wxkn_E-h%$mYLXh9T2(urBRq89`$YY{2V9_LrA zBgiI^VWZmcRGfSGET1EBZBR+IHPPD&4I2?O}u{ zP3!LJ9%)$?Kr4u$dj#*LjV(bFNLjD+>ESKgc*AYW!2J1nB-FS0O;|@Q$bm3cRWveM zC&*0SWJ6kBnu5V(y)IXYYY&IYpQoJdUf42lUv`p|g4A2wtH!7J;vL;LuNmprV?-Z) zWP9AqJ(>}uA(?AV09_&_5{GBqIVX?o+w$2Az{;`uGo!cq2pM?525DPDS#ABy$Ap-4 z#P$&ct&xzoi397Ucpgg6q9a?7^_$HcsI^nkf^|~%GBP7^8z zmBfe)-|Oipa>!kR9fgTRI(iGoMkdn{7o6%bUby?UEva-|`4KV>5-~H9@F1~lqYcnA zYUEbu6ARe+A%-;J7C`I3=RgDYbndA6qztUbr;mN`%{YA~tkhge!{>U8yb{X}1^;%d z5$2!8b79i2M@vpf6(UiUd08ZX-LwJC{IRdtNQBw)x19D;^%i@_s+aJ$^uKlM~=Zj9m1S{RZ5WiGj74SB3@Ro6AG(>Y5vROp@y zROi3{$t#}CyxpGO{EZlr%f|MdEURZg(4X!yDw+S;h*U7#{IsD3L;xWAvQFL}U*WHwAv z^p1BPm0?yQ7*>^fB$K87&Gl9tOWN|m*nusd9xIj>X`Gbru}qboITH?k{?UbQz=}1O zJ!^b`Oxj@VH$|izf;10XbHT#5%#nnwc3`P&j2FRh`w7hqoLy%QN;V?YvsV7Hb_xAO z3}(&0QB@o_|IV(=WTbDp8O?^7ucwk4q$E$rfM0h$lG=D8d~?_3Ec^%gtT1)&<=*8m z8i_%k*baKsTPV@hyaa#?)g-^J23cCd5ur+eC2PY&W-c~WCaPzLX~m+-z@s)dn=@tH zm(4uy=s(-c$vI^)r@^>aSG*xsSq(J(+1B^|8K*sE&0IBEUo2-8>@4SlS7m_{^p|)~ zP|E(aSQU;5O0rJaF+i4OgPdf(#{P1DsPyoTS5m z7g=x_x+C>)Y-mS8W5q>1w2Iie%bxByv0#nhW6mR*>oa@wcVe%icb0cB8jL^H+xaX; zQS7=kYdg2ZW%hh6Ak1jloaBO%nDnP+BR=2CC-vX5YJ(SS|Jg