diff --git a/code/game/machinery/alarm.dm b/code/game/machinery/alarm.dm index 0cc68bb1595..ec6e99f0b0e 100644 --- a/code/game/machinery/alarm.dm +++ b/code/game/machinery/alarm.dm @@ -274,6 +274,21 @@ pixel_x = 10; /obj/machinery/alarm/cold/south PRESET_SOUTH +/obj/machinery/alarm/warm + target_temperature = T20C + 10 + +/obj/machinery/alarm/warm/north + PRESET_NORTH + +/obj/machinery/alarm/warm/east + PRESET_EAST + +/obj/machinery/alarm/warm/west + PRESET_WEST + +/obj/machinery/alarm/warm/south + PRESET_SOUTH + /obj/machinery/alarm/server/Initialize() . = ..() TLV[GAS_OXYGEN] = list(-1.0, -1.0,-1.0,-1.0) // Partial pressure, kpa diff --git a/code/game/machinery/atmoalter/canister.dm b/code/game/machinery/atmoalter/canister.dm index 61123423411..9a2ede2a1a5 100644 --- a/code/game/machinery/atmoalter/canister.dm +++ b/code/game/machinery/atmoalter/canister.dm @@ -590,6 +590,10 @@ update_flag . = ..() src.air_contents.temperature = 283 +/obj/machinery/portable_atmospherics/canister/air/warm/Initialize() + . = ..() + src.air_contents.temperature = 303.15 + /obj/machinery/portable_atmospherics/canister/chlorine/antag // Keeping the chlorine canister with the skull on it seems fun for antags. name = "Canister: \[Cl2\]" icon_state = "poisonous" diff --git a/code/modules/effects/map_effects/window_spawner.dm b/code/modules/effects/map_effects/window_spawner.dm index 48e5e8722e5..3cebf89a983 100644 --- a/code/modules/effects/map_effects/window_spawner.dm +++ b/code/modules/effects/map_effects/window_spawner.dm @@ -56,7 +56,9 @@ if(spawn_grille) new grille_path(loc) if(spawn_firedoor) - new firedoor_path(loc) + var/obj/machinery/door/firedoor/new_firedoor = new firedoor_path(loc) + if(req_one_access) + new_firedoor.req_one_access = req_one_access if(!single_window) var/list/neighbours = list() for (var/dir in GLOB.cardinal) diff --git a/code/modules/paperwork/paper.dm b/code/modules/paperwork/paper.dm index 877bf0178d9..dc1d08014c0 100644 --- a/code/modules/paperwork/paper.dm +++ b/code/modules/paperwork/paper.dm @@ -761,11 +761,11 @@ // Fluff papers that you can map in, for lore or whatever. // -// Parent item. +/// Parent item for fluff papers. Used for lore or something I guess /obj/item/paper/fluff name = "fluff paper" desc = "You aren't supposed to see this." - ///The language to translate the paper into. Set to the name of the language. + /// The language to translate the paper into. Set to the name of the language. var/language /obj/item/paper/fluff/Initialize() @@ -789,7 +789,7 @@
We apologize for the lack of a microwave. As compensation, employees are given a donut box. Please enjoy.
-SCC Internal \ Affairs" -// Used in the bunker on the SCCV Horizon. +/// Used in the bunker on the SCCV Horizon. /obj/item/paper/fluff/bunker name = "bunker evacuation route instructions" desc = "A paper. It has evacuation route instructions printed on it." @@ -798,7 +798,7 @@ the newly created hole to cool.
  • Use the emergency crowbar to pry away the metal.
  • Deploy the emergency ladder.
  • Dispose of the used \ equipment, if necessary.
  • " -// Used in the bridge on the SCCV Horizon +/// Used in the bridge on the SCCV Horizon /obj/item/paper/fluff/bridge name = "bridge evacuation route instructions" desc = "A paper. It has evacuation route instructions printed on it." @@ -807,7 +807,7 @@ the newly created hole to cool.
  • Use the emergency crowbar to pry away the metal.
  • Deploy the emergency ladder.
  • Dispose of the used \ equipment, if necessary.
  • " -// Used on the IAC ship, meant for distribution. +/// Used on the IAC ship, meant for distribution. /obj/item/paper/fluff/iac name = "interstellar aid corps info pamphlet" desc = "A paper. It has an IAC logo stamped right on front of it." diff --git a/html/changelogs/Ben10083 - IHSS Reclaimation.yml b/html/changelogs/Ben10083 - IHSS Reclaimation.yml new file mode 100644 index 00000000000..8574828d71e --- /dev/null +++ b/html/changelogs/Ben10083 - IHSS Reclaimation.yml @@ -0,0 +1,65 @@ +################################ +# Example Changelog File +# +# Note: This file, and files beginning with ".", and files that don't end in ".yml" will not be read. If you change this file, you will look really dumb. +# +# Your changelog will be merged with a master changelog. (New stuff added only, and only on the date entry for the day it was merged.) +# When it is, any changes listed below will disappear. +# +# Valid Prefixes: +# bugfix +# - (fixes bugs) +# wip +# - (work in progress) +# qol +# - (quality of life) +# soundadd +# - (adds a sound) +# sounddel +# - (removes a sound) +# rscadd +# - (adds a feature) +# rscdel +# - (removes a feature) +# imageadd +# - (adds an image or sprite) +# imagedel +# - (removes an image or sprite) +# spellcheck +# - (fixes spelling or grammar) +# experiment +# - (experimental change) +# balance +# - (balance changes) +# code_imp +# - (misc internal code change) +# refactor +# - (refactors code) +# config +# - (makes a change to the config files) +# admin +# - (makes changes to administrator tools) +# server +# - (miscellaneous changes to server) +################################# + +# Your name. +author: Ben10083 + +# Optional: Remove this file after generating master changelog. Useful for PR changelogs that won't get used again. +delete-after: True + +# Any changes you've made. See valid prefix list above. +# INDENT WITH TWO SPACES. NOT TABS. SPACES. +# SCREW THIS UP AND IT WON'T WORK. +# Also, this gets changed to [] after reading. Just remove the brackets when you add new shit. +# Please surround your changes in double quotes ("). It works without them, but if you use certain characters it screws up compiling. The quotes will not show up in the changelog. +changes: + - bugfix: "An investigation revealed that the engineer responsible for installing the Plains Tyrant Containment Cell on the IHSS Reclamation stole the rare materials for the construction for their own gain. They have been exiled and the cell has been strengthed." + - bugfix: "IHSS Reclamation Ghostspawners fixed." + - bugfix: "IHSS Reclamation Shuttle Hangar Docking fixed." + - rscadd: "Adds missing firelocks to IHSS Reclamation." + - rscadd: "IHSS Reclamation now has cargo delivery points." + - rscadd: "Fore docking port added to IHSS Reclamation." + - code_imp: "Window spawners now pass their req_one_access to their firelocks." + - rscadd: "New Warm variants for air canister and air alarm, so Unathi can feel comfy." diff --git a/maps/away/away_site/uueoaesa/reclamation/ihss_reclamation.dm b/maps/away/away_site/uueoaesa/reclamation/ihss_reclamation.dm index 96805550c50..9d41e86ff55 100644 --- a/maps/away/away_site/uueoaesa/reclamation/ihss_reclamation.dm +++ b/maps/away/away_site/uueoaesa/reclamation/ihss_reclamation.dm @@ -127,3 +127,20 @@ name = "In transit" landmark_tag = "nav_transit_ihss_reclamation" base_turf = /turf/space/transit/north + +/obj/item/paper/fluff/ihss_reclamation_cell + name = "Rules of Observation" + info = "
    IHSS Reclamation
    Hazardous Specimen Containment Rules of Observation

    \ + I thought this crew could be trusted to not do the obvious, but I have witnessed firsthand that this was a foolish hope of mine. \ + If you wish to not end up like others, you are to at least try to understand the following before entering:
    \ +
    1. Approach the cell slowly.
    2. Do not touch or shake the fence.
    3. \ +
    4. Do not knock on the glass.
    5. Do not put their appendages or tail through the fence holes.
    6. \ +
    7. Have means of escape prepared in event of containment failure.
    8. \ +
    9. Check cell exterior periodically, if damage to cell is seen, engage the lockdown immediately.
    10. \ +
    11. Do not unbolt or especially open the cell door unless you know what you are doing.
    12. \ +
    13. The Skrazi is not to be used against any 'hostiles'. Stop asking.
    14. \ +
    15. Put only food items in the delivery chute.
    16. \ +
    17. Do not fall into the delivery chute. Rescue attempts are not to be made before the Skrazi is sedated.
    18. \ +
    19. The cell is to be cleaned weekly. Do not forget to sedate the Skrazi before entering the cell.
    20. \ +
    21. Do not taunt the Skrazi..
    " + language = LANGUAGE_UNATHI diff --git a/maps/away/away_site/uueoaesa/reclamation/ihss_reclamation.dmm b/maps/away/away_site/uueoaesa/reclamation/ihss_reclamation.dmm index ad3e5ad7836..15bc1459ccb 100644 --- a/maps/away/away_site/uueoaesa/reclamation/ihss_reclamation.dmm +++ b/maps/away/away_site/uueoaesa/reclamation/ihss_reclamation.dmm @@ -15,10 +15,12 @@ dir = 1; color = "#ba9122" }, -/turf/simulated/floor/tiled/dark{ - temperature = 303.15 - }, +/turf/simulated/floor/tiled/dark, /area/ihss_reclamation/southhall) +"ae" = ( +/obj/machinery/firealarm/north, +/turf/simulated/floor/tiled/dark, +/area/ihss_reclamation/dock) "ah" = ( /obj/effect/floor_decal/corner/red/diagonal{ dir = 4; @@ -29,9 +31,7 @@ dir = 1; color = "#ba9122" }, -/turf/simulated/floor/tiled/dark{ - temperature = 303.15 - }, +/turf/simulated/floor/tiled/dark, /area/ihss_reclamation/southhall) "ak" = ( /turf/simulated/wall/shuttle/raider, @@ -42,30 +42,24 @@ /obj/machinery/light{ dir = 1 }, -/turf/simulated/floor/tiled/dark{ - temperature = 303.15 - }, +/turf/simulated/floor/tiled/dark, /area/ihss_reclamation/storage) "am" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 1 }, -/obj/machinery/alarm/south{ - req_one_access = null - }, -/turf/simulated/floor/tiled/dark{ - temperature = 303.15 +/obj/machinery/alarm/warm/south{ + req_one_access = list(113) }, +/turf/simulated/floor/tiled/dark, /area/ihss_reclamation/crew/eight) "an" = ( -/obj/effect/map_effect/window_spawner/full/reinforced/grille/firedoor, -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 4 +/obj/machinery/light{ + dir = 4; + inserted_light = /obj/item/light/tube/colored/blue }, -/turf/simulated/floor/tiled/dark{ - temperature = 303.15 - }, -/area/ihss_reclamation/dock) +/turf/simulated/floor/tiled/dark, +/area/ihss_reclamation/hangarhall) "ao" = ( /obj/machinery/computer/general_air_control/large_tank_control{ max_pressure_setting = 5000; @@ -73,9 +67,7 @@ output_tag = "ihss_co2_out"; sensors = list("ihss_co2_sensor"="Tank") }, -/turf/simulated/floor/plating{ - temperature = 303.15 - }, +/turf/simulated/floor/plating, /area/ihss_reclamation/fuel) "ap" = ( /obj/machinery/light{ @@ -85,9 +77,7 @@ color = "#ba9122"; dir = 5 }, -/turf/simulated/floor/tiled/dark{ - temperature = 303.15 - }, +/turf/simulated/floor/tiled/dark, /area/ihss_reclamation/bridge) "ar" = ( /turf/simulated/floor/wood{ @@ -100,9 +90,7 @@ color = "#941307" }, /obj/machinery/atmospherics/unary/vent_scrubber/on, -/turf/simulated/floor/tiled/dark{ - temperature = 303.15 - }, +/turf/simulated/floor/tiled/dark, /area/ihss_reclamation/armoryfoyer) "av" = ( /obj/effect/floor_decal/corner/lime{ @@ -131,9 +119,7 @@ dir = 1; color = "#ba9122" }, -/turf/simulated/floor/tiled/dark{ - temperature = 303.15 - }, +/turf/simulated/floor/tiled/dark, /area/ihss_reclamation/southhall) "aB" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -145,9 +131,7 @@ name = "Biological Research"; req_access = list(113) }, -/obj/machinery/door/firedoor/noid{ - dir = 4 - }, +/obj/machinery/door/firedoor/noid, /turf/simulated/floor/tiled/white{ temperature = 303.15 }, @@ -155,9 +139,10 @@ "aF" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/dark{ - temperature = 303.15 +/obj/structure/cable/green{ + icon_state = "1-2" }, +/turf/simulated/floor/tiled/dark, /area/ihss_reclamation/northhall) "aG" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -194,9 +179,7 @@ dir = 1; color = "#ba9122" }, -/turf/simulated/floor/tiled/dark{ - temperature = 303.15 - }, +/turf/simulated/floor/tiled/dark, /area/ihss_reclamation/easthall) "aN" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -210,9 +193,7 @@ icon_state = "rwindow" }, /obj/item/paper_bin, -/turf/simulated/floor/tiled/dark{ - temperature = 303.15 - }, +/turf/simulated/floor/tiled/dark, /area/ihss_reclamation/armoryfoyer) "aP" = ( /obj/machinery/light{ @@ -221,7 +202,8 @@ /obj/effect/map_effect/marker/airlock{ frequency = 1003; master_tag = "airlock_ihss_solars"; - name = "airlock_ihss_solars" + name = "airlock_ihss_solars"; + req_one_access = list(113) }, /obj/machinery/embedded_controller/radio/airlock/airlock_controller{ dir = 8; @@ -236,9 +218,7 @@ /obj/structure/cable/green{ icon_state = "1-2" }, -/turf/simulated/floor/plating{ - temperature = 303.15 - }, +/turf/simulated/floor/plating, /area/ihss_reclamation/solars) "aR" = ( /obj/structure/lattice/catwalk, @@ -246,17 +226,15 @@ /turf/template_noop, /area/space) "aS" = ( -/obj/effect/map_effect/window_spawner/full/borosilicate/reinforced/firedoor, -/obj/machinery/atmospherics/pipe/simple/visible/yellow, -/turf/simulated/floor/plating{ - temperature = 303.15 +/obj/effect/map_effect/window_spawner/full/borosilicate/reinforced/firedoor{ + req_one_access = list(113) }, +/obj/machinery/atmospherics/pipe/simple/visible/yellow, +/turf/simulated/floor/plating, /area/ihss_reclamation/fuel) "aT" = ( /obj/machinery/atmospherics/pipe/simple/visible/universal, -/turf/simulated/floor/plating{ - temperature = 303.15 - }, +/turf/simulated/floor/plating, /area/ihss_reclamation/atmos) "aU" = ( /obj/structure/cable{ @@ -283,15 +261,11 @@ color = "#ba9122"; dir = 8 }, -/turf/simulated/floor/tiled/dark{ - temperature = 303.15 - }, +/turf/simulated/floor/tiled/dark, /area/ihss_reclamation/bridge) "aZ" = ( /obj/machinery/atmospherics/unary/vent_pump/on, -/turf/simulated/floor/tiled/dark{ - temperature = 303.15 - }, +/turf/simulated/floor/tiled/dark, /area/ihss_reclamation/northhall) "bg" = ( /obj/effect/floor_decal/corner/lime{ @@ -302,10 +276,12 @@ }, /area/ihss_reclamation/plantroom) "bj" = ( -/obj/effect/map_effect/window_spawner/full/reinforced/grille/firedoor, -/turf/simulated/floor/plating{ - temperature = 303.15 +/obj/effect/map_effect/window_spawner/full/shuttle/raider{ + req_one_access = list(113); + spawn_firedoor = 1; + spawn_grille = 1 }, +/turf/simulated/floor/plating, /area/ihss_reclamation/southhall) "bl" = ( /obj/structure/table/rack, @@ -314,9 +290,7 @@ /obj/item/device/binoculars, /obj/item/device/geiger, /obj/item/device/geiger, -/turf/simulated/floor/tiled/dark{ - temperature = 303.15 - }, +/turf/simulated/floor/tiled/dark, /area/ihss_reclamation/storage) "bn" = ( /obj/structure/cable/green{ @@ -329,12 +303,10 @@ color = "#ba9122"; dir = 5 }, -/obj/machinery/alarm/north{ - req_one_access = null - }, -/turf/simulated/floor/tiled/dark{ - temperature = 303.15 +/obj/machinery/alarm/warm/north{ + req_one_access = list(113) }, +/turf/simulated/floor/tiled/dark, /area/ihss_reclamation/bridge) "bo" = ( /obj/effect/floor_decal/corner/yellow{ @@ -345,9 +317,7 @@ color = "#ba9122"; dir = 9 }, -/turf/simulated/floor/tiled/dark{ - temperature = 303.15 - }, +/turf/simulated/floor/tiled/dark, /area/ihss_reclamation/bridge) "bw" = ( /obj/structure/cable/green{ @@ -368,57 +338,44 @@ /obj/item/stack/material/tritium/full, /obj/structure/closet/crate/rad, /obj/effect/floor_decal/industrial/outline/engineering, -/turf/simulated/floor/plating{ - temperature = 303.15 - }, +/turf/simulated/floor/plating, /area/ihss_reclamation/solars) "by" = ( -/obj/machinery/atmospherics/unary/vent_pump{ - dir = 8 +/obj/machinery/light{ + pixel_y = -2 }, -/obj/machinery/embedded_controller/radio/airlock/docking_port{ - dir = 2; +/turf/simulated/floor/tiled/dark, +/area/ihss_reclamation/southhall) +"bB" = ( +/turf/simulated/wall/shuttle/raider, +/area/ihss_reclamation/crew) +"bC" = ( +/obj/machinery/door/airlock/external{ + dir = 4 + }, +/obj/machinery/access_button{ + pixel_x = -8; pixel_y = 28; - pixel_x = -6 - }, -/obj/machinery/airlock_sensor{ - pixel_x = 6; - pixel_y = 28 + dir = 8 }, /obj/effect/map_effect/marker/airlock/docking{ landmark_tag = "nav_ihss_reclamation_dock4"; master_tag = "airlock_reclamation_dock4"; name = "airlock_reclamation_dock4" }, -/turf/simulated/floor/plating{ - temperature = 303.15 - }, -/area/ihss_reclamation/dock) -"bB" = ( -/turf/simulated/wall/shuttle/raider, -/area/ihss_reclamation/crew) -"bC" = ( -/obj/effect/floor_decal/corner/red/diagonal{ - dir = 4; - color = "#941307" - }, -/obj/effect/floor_decal/corner/yellow/diagonal{ - dir = 1; - color = "#ba9122" - }, +/obj/effect/map_effect/marker_helper/airlock/interior, /obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/dark{ - temperature = 303.15 + dir = 6 }, +/turf/simulated/floor/plating, /area/ihss_reclamation/dock) "bK" = ( -/obj/effect/map_effect/window_spawner/full/reinforced/grille/firedoor, -/turf/simulated/floor/tiled/dark{ - temperature = 303.15 +/obj/effect/map_effect/window_spawner/full/shuttle/raider{ + req_one_access = list(113); + spawn_firedoor = 1; + spawn_grille = 1 }, +/turf/simulated/floor/plating, /area/ihss_reclamation/dock) "bL" = ( /turf/simulated/floor/exoplanet/grass/moghes{ @@ -430,15 +387,13 @@ /obj/structure/reagent_dispensers/coolanttank, /obj/item/reagent_containers/glass/bucket, /obj/effect/floor_decal/industrial/outline/engineering, -/turf/simulated/floor/plating{ - temperature = 303.15 - }, +/turf/simulated/floor/plating, /area/ihss_reclamation/solars) "bQ" = ( -/obj/effect/map_effect/window_spawner/full/borosilicate/reinforced/firedoor, -/turf/simulated/floor/plating{ - temperature = 303.15 +/obj/effect/map_effect/window_spawner/full/borosilicate/reinforced/firedoor{ + req_one_access = list(113) }, +/turf/simulated/floor/plating, /area/ihss_reclamation/atmos) "bR" = ( /obj/effect/floor_decal/corner/grey/diagonal, @@ -482,9 +437,7 @@ color = "#941307"; dir = 10 }, -/turf/simulated/floor/tiled/dark{ - temperature = 303.15 - }, +/turf/simulated/floor/tiled/dark, /area/ihss_reclamation/bridge) "bW" = ( /obj/structure/cable/green{ @@ -494,17 +447,13 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/lattice/catwalk/indoor/grate, -/turf/simulated/floor/plating{ - temperature = 303.15 - }, +/turf/simulated/floor/plating, /area/ihss_reclamation/hangar1) "bY" = ( /obj/machinery/atmospherics/pipe/simple/hidden/red{ dir = 4 }, -/turf/simulated/floor/plating{ - temperature = 303.15 - }, +/turf/simulated/floor/plating, /area/ihss_reclamation/equipment) "cb" = ( /turf/simulated/wall/shuttle/raider, @@ -531,9 +480,10 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, -/turf/simulated/floor/tiled/dark{ - temperature = 303.15 +/obj/machinery/door/firedoor/noid{ + dir = 4 }, +/turf/simulated/floor/tiled/dark, /area/ihss_reclamation/dock) "ch" = ( /obj/structure/bed/stool/chair/office/light{ @@ -547,18 +497,14 @@ /obj/structure/sink{ pixel_y = 28 }, -/turf/simulated/floor/tiled/dark{ - temperature = 303.15 - }, +/turf/simulated/floor/tiled/dark, /area/ihss_reclamation/crew/seven) "cl" = ( /obj/machinery/atmospherics/portables_connector{ dir = 1 }, /obj/machinery/portable_atmospherics/canister/carbon_dioxide, -/turf/simulated/floor/plating{ - temperature = 303.15 - }, +/turf/simulated/floor/plating, /area/ihss_reclamation/fuel) "cs" = ( /obj/effect/floor_decal/spline/fancy/wood{ @@ -579,6 +525,7 @@ dir = 8; pixel_x = -12 }, +/obj/machinery/firealarm/north, /turf/simulated/floor/tiled/white{ temperature = 303.15 }, @@ -593,9 +540,7 @@ color = "#941307"; dir = 10 }, -/turf/simulated/floor/tiled/dark{ - temperature = 303.15 - }, +/turf/simulated/floor/tiled/dark, /area/ihss_reclamation/bridge) "cB" = ( /obj/effect/floor_decal/corner/yellow/diagonal{ @@ -607,9 +552,7 @@ color = "#941307" }, /obj/machinery/atmospherics/pipe/simple/hidden, -/turf/simulated/floor/tiled/dark{ - temperature = 303.15 - }, +/turf/simulated/floor/tiled/dark, /area/ihss_reclamation/dock) "cC" = ( /obj/machinery/atmospherics/pipe/simple/visible/yellow{ @@ -618,12 +561,14 @@ /obj/structure/cable/green{ icon_state = "4-8" }, -/turf/simulated/floor/plating{ - temperature = 303.15 - }, +/turf/simulated/floor/plating, /area/ihss_reclamation/fuel) "cF" = ( -/obj/effect/map_effect/window_spawner/full/reinforced/firedoor, +/obj/effect/map_effect/window_spawner/full/shuttle/raider{ + req_one_access = list(113); + spawn_firedoor = 1; + spawn_grille = 1 + }, /turf/simulated/floor/plating, /area/ihss_reclamation/crew/five) "cG" = ( @@ -631,46 +576,29 @@ color = "#941307"; dir = 6 }, -/turf/simulated/floor/tiled/dark{ - temperature = 303.15 - }, +/turf/simulated/floor/tiled/dark, /area/ihss_reclamation/bridge) "cI" = ( /obj/machinery/autolathe, -/turf/simulated/floor/tiled/dark{ - temperature = 303.15 - }, +/turf/simulated/floor/tiled/dark, /area/ihss_reclamation/equipment) "cJ" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 4 }, -/turf/simulated/floor/tiled/dark{ - temperature = 303.15 - }, +/turf/simulated/floor/tiled/dark, /area/ihss_reclamation/westhall) "cM" = ( -/obj/machinery/atmospherics/unary/vent_pump{ - dir = 1 - }, -/obj/machinery/embedded_controller/radio/airlock/docking_port{ - dir = 8; - pixel_y = 6; - pixel_x = 20 - }, -/obj/machinery/airlock_sensor{ - pixel_x = 20; - dir = 8; - pixel_y = -6 +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ + dir = 8 }, +/obj/machinery/light, /obj/effect/map_effect/marker/airlock/docking{ - landmark_tag = "nav_ihss_reclamation_dock1"; - master_tag = "airlock_reclamation_dock1"; - name = "airlock_reclamation_dock1" - }, -/turf/simulated/floor/plating{ - temperature = 303.15 + landmark_tag = "nav_ihss_reclamation_dock4"; + master_tag = "airlock_reclamation_dock4"; + name = "airlock_reclamation_dock4" }, +/turf/simulated/floor/plating, /area/ihss_reclamation/dock) "cO" = ( /obj/effect/floor_decal/corner/grey/diagonal, @@ -692,9 +620,7 @@ /obj/structure/cable/green{ icon_state = "1-4" }, -/turf/simulated/floor/plating{ - temperature = 303.15 - }, +/turf/simulated/floor/plating, /area/ihss_reclamation/hangar1) "cQ" = ( /obj/effect/floor_decal/corner/red/diagonal{ @@ -709,9 +635,7 @@ /obj/machinery/door/firedoor/multi_tile{ req_one_access = null }, -/turf/simulated/floor/tiled/dark{ - temperature = 303.15 - }, +/turf/simulated/floor/tiled/dark, /area/ihss_reclamation/westhall) "cU" = ( /turf/simulated/wall/shuttle/raider, @@ -735,17 +659,13 @@ name = "airlock_reclamation_dock3" }, /obj/effect/map_effect/marker_helper/airlock/interior, -/turf/simulated/floor/plating{ - temperature = 303.15 - }, +/turf/simulated/floor/plating, /area/ihss_reclamation/dock) "df" = ( /obj/structure/cable/green{ icon_state = "1-2" }, -/turf/simulated/floor/plating{ - temperature = 303.15 - }, +/turf/simulated/floor/plating, /area/ihss_reclamation/hangar1) "dg" = ( /obj/structure/cable/green{ @@ -756,9 +676,7 @@ dir = 4; color = "#941307" }, -/turf/simulated/floor/tiled/dark{ - temperature = 303.15 - }, +/turf/simulated/floor/tiled/dark, /area/ihss_reclamation/armoryfoyer) "dk" = ( /obj/structure/flora/grass/junglegrass/random, @@ -771,16 +689,13 @@ /obj/machinery/door/blast/odin{ dir = 4 }, -/turf/simulated/floor/plating{ - temperature = 303.15 - }, +/turf/simulated/floor/plating, /area/ihss_reclamation/hangar1) "dm" = ( /obj/effect/floor_decal/industrial/outline/engineering, /obj/structure/closet/radiation, -/turf/simulated/floor/tiled/dark{ - temperature = 303.15 - }, +/obj/machinery/firealarm/east, +/turf/simulated/floor/tiled/dark, /area/ihss_reclamation/storage) "dp" = ( /obj/structure/cable/green{ @@ -794,9 +709,7 @@ dir = 1; color = "#ba9122" }, -/turf/simulated/floor/tiled/dark{ - temperature = 303.15 - }, +/turf/simulated/floor/tiled/dark, /area/ihss_reclamation/southhall) "dq" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ @@ -814,9 +727,7 @@ dir = 4; color = "#941307" }, -/turf/simulated/floor/tiled/dark{ - temperature = 303.15 - }, +/turf/simulated/floor/tiled/dark, /area/shuttle/ihss_reclamation) "dy" = ( /turf/simulated/wall/shuttle/raider, @@ -834,9 +745,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 8 }, -/turf/simulated/floor/tiled/dark{ - temperature = 303.15 - }, +/turf/simulated/floor/tiled/dark, /area/ihss_reclamation/crew) "dB" = ( /obj/structure/window/reinforced{ @@ -852,18 +761,21 @@ color = "#941307"; dir = 9 }, -/turf/simulated/floor/tiled/dark{ - temperature = 303.15 - }, +/turf/simulated/floor/tiled/dark, /area/ihss_reclamation/bridge) "dF" = ( /obj/structure/cable{ icon_state = "1-4" }, -/turf/simulated/floor/plating{ - temperature = 303.15 - }, +/turf/simulated/floor/plating, /area/ihss_reclamation/solars) +"dH" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/red{ + dir = 4 + }, +/obj/machinery/firealarm/north, +/turf/simulated/floor/plating, +/area/ihss_reclamation/equipment) "dK" = ( /obj/effect/floor_decal/corner/red/diagonal{ dir = 4; @@ -873,18 +785,14 @@ dir = 1; color = "#ba9122" }, -/turf/simulated/floor/tiled/dark{ - temperature = 303.15 - }, +/turf/simulated/floor/tiled/dark, /area/ihss_reclamation/southhall) "dN" = ( /obj/machinery/atmospherics/portables_connector{ dir = 4 }, /obj/machinery/portable_atmospherics/powered/pump, -/turf/simulated/floor/plating{ - temperature = 303.15 - }, +/turf/simulated/floor/plating, /area/ihss_reclamation/equipment) "dO" = ( /turf/simulated/wall/shuttle/raider, @@ -894,9 +802,7 @@ color = "#ba9122"; dir = 10 }, -/turf/simulated/floor/tiled/dark{ - temperature = 303.15 - }, +/turf/simulated/floor/tiled/dark, /area/ihss_reclamation/mess) "dS" = ( /obj/effect/floor_decal/corner/lime/full{ @@ -908,8 +814,8 @@ }, /area/ihss_reclamation/plantroom) "dU" = ( -/obj/machinery/alarm/north{ - req_one_access = null +/obj/machinery/alarm/warm/north{ + req_one_access = list(113) }, /turf/simulated/floor/exoplanet/grass/moghes, /area/ihss_reclamation/simulation) @@ -927,17 +833,13 @@ /obj/machinery/power/apc/high/north{ req_access = list(113) }, -/turf/simulated/floor/tiled/dark{ - temperature = 303.15 - }, +/turf/simulated/floor/tiled/dark, /area/ihss_reclamation/crew/four) "eb" = ( -/obj/machinery/alarm/west{ - req_one_access = null - }, -/turf/simulated/floor/tiled/dark{ - temperature = 303.15 +/obj/machinery/alarm/warm/west{ + req_one_access = list(113) }, +/turf/simulated/floor/tiled/dark, /area/ihss_reclamation/crew) "ec" = ( /obj/structure/window/reinforced, @@ -954,15 +856,24 @@ color = "#ba9122"; dir = 10 }, -/turf/simulated/floor/tiled/dark{ - temperature = 303.15 - }, +/turf/simulated/floor/tiled/dark, /area/ihss_reclamation/bridge) "ed" = ( -/turf/simulated/floor/plating{ - temperature = 303.15 - }, +/turf/simulated/floor/plating, /area/ihss_reclamation/fuel) +"eg" = ( +/obj/machinery/button/remote/airlock{ + dir = 1; + id = "bolts_reclamation_cell"; + name = "Containment Airlock Bolts"; + pixel_x = -6; + pixel_y = 24; + req_one_access = list(113); + specialfunctions = 4; + desiredstate = 1 + }, +/turf/simulated/floor/exoplanet/grass/moghes/dirt/beach, +/area/ihss_reclamation/envirosim) "ei" = ( /obj/effect/landmark/entry_point/starboard{ name = "starboard, captain's quarters" @@ -971,9 +882,7 @@ /area/shuttle/ihss_reclamation) "ej" = ( /obj/effect/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/plating{ - temperature = 303.15 - }, +/turf/simulated/floor/plating, /area/ihss_reclamation/hangar1) "er" = ( /obj/effect/map_effect/marker/airlock/docking{ @@ -981,9 +890,7 @@ master_tag = "airlock_reclamation_dock2"; name = "airlock_reclamation_dock2" }, -/turf/simulated/floor/plating{ - temperature = 303.15 - }, +/turf/simulated/floor/plating, /area/ihss_reclamation/dock) "eu" = ( /obj/structure/cable/green{ @@ -991,9 +898,7 @@ }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/dark{ - temperature = 303.15 - }, +/turf/simulated/floor/tiled/dark, /area/ihss_reclamation/mess) "ev" = ( /obj/structure/lattice/catwalk, @@ -1006,10 +911,13 @@ /turf/template_noop, /area/ihss_reclamation/bridge) "ez" = ( -/obj/machinery/alarm/south{ - req_one_access = null +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 }, -/turf/simulated/wall/shuttle/raider, +/obj/machinery/alarm/warm/east{ + req_one_access = list(113) + }, +/turf/simulated/floor/plating, /area/ihss_reclamation/atmos) "eB" = ( /obj/structure/cable/green{ @@ -1029,15 +937,11 @@ dir = 1; color = "#ba9122" }, -/turf/simulated/floor/tiled/dark{ - temperature = 303.15 - }, +/turf/simulated/floor/tiled/dark, /area/ihss_reclamation/crew) "eE" = ( /obj/structure/bed/stool/chair/office/dark, -/turf/simulated/floor/tiled/dark{ - temperature = 303.15 - }, +/turf/simulated/floor/tiled/dark, /area/ihss_reclamation/crew/one) "eH" = ( /obj/machinery/light{ @@ -1048,18 +952,14 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 6 }, -/turf/simulated/floor/plating{ - temperature = 303.15 - }, +/turf/simulated/floor/plating, /area/ihss_reclamation/atmos) "eI" = ( /obj/effect/floor_decal/corner/yellow{ color = "#ba9122"; dir = 9 }, -/turf/simulated/floor/tiled/dark{ - temperature = 303.15 - }, +/turf/simulated/floor/tiled/dark, /area/ihss_reclamation/mess) "eQ" = ( /obj/machinery/computer/operating, @@ -1074,14 +974,10 @@ /obj/effect/floor_decal/industrial/warning{ dir = 8 }, -/turf/simulated/floor/plating{ - temperature = 303.15 - }, +/turf/simulated/floor/plating, /area/shuttle/ihss_reclamation) "eU" = ( -/turf/simulated/floor/tiled/dark{ - temperature = 303.15 - }, +/turf/simulated/floor/tiled/dark, /area/ihss_reclamation/crew/eight) "eZ" = ( /obj/effect/floor_decal/corner/red/diagonal{ @@ -1095,9 +991,7 @@ dir = 1; color = "#ba9122" }, -/turf/simulated/floor/tiled/dark{ - temperature = 303.15 - }, +/turf/simulated/floor/tiled/dark, /area/ihss_reclamation/easthall) "fb" = ( /obj/machinery/atmospherics/pipe/simple/hidden/fuel{ @@ -1114,36 +1008,25 @@ }, /obj/machinery/door/airlock/atmos{ name = "Fuel Bay"; + dir = 4; + req_access = list(113) + }, +/obj/machinery/door/firedoor/noid{ dir = 4 }, -/obj/machinery/door/firedoor/noid, /obj/structure/lattice/catwalk/indoor/grate, -/turf/simulated/floor/plating{ - temperature = 303.15 - }, +/turf/simulated/floor/plating, /area/ihss_reclamation/fuel) "fd" = ( -/obj/machinery/atmospherics/unary/vent_pump{ - dir = 1 +/obj/effect/floor_decal/corner/yellow/diagonal{ + dir = 1; + color = "#ba9122" }, -/obj/machinery/embedded_controller/radio/airlock/docking_port{ - dir = 8; - pixel_y = 6; - pixel_x = 20 - }, -/obj/machinery/airlock_sensor{ - pixel_x = 20; - dir = 8; - pixel_y = -6 - }, -/obj/effect/map_effect/marker/airlock/docking{ - landmark_tag = "nav_ihss_reclamation_dock2"; - master_tag = "airlock_reclamation_dock2"; - name = "airlock_reclamation_dock2" - }, -/turf/simulated/floor/plating{ - temperature = 303.15 +/obj/effect/floor_decal/corner/red/diagonal{ + dir = 4; + color = "#941307" }, +/turf/simulated/floor/tiled/dark, /area/ihss_reclamation/dock) "fh" = ( /obj/structure/cable/green{ @@ -1194,23 +1077,17 @@ /obj/item/storage/belt/mining, /obj/item/stack/flag/red, /obj/effect/floor_decal/industrial/outline/engineering, -/turf/simulated/floor/tiled/dark{ - temperature = 303.15 - }, +/turf/simulated/floor/tiled/dark, /area/ihss_reclamation/storage) "fw" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 4 }, -/turf/simulated/floor/tiled/dark{ - temperature = 303.15 - }, +/turf/simulated/floor/tiled/dark, /area/ihss_reclamation/storage) "fy" = ( /obj/machinery/light, -/turf/simulated/floor/plating{ - temperature = 303.15 - }, +/turf/simulated/floor/plating, /area/ihss_reclamation/atmos) "fB" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -1225,16 +1102,14 @@ dir = 1; color = "#ba9122" }, -/turf/simulated/floor/tiled/dark{ - temperature = 303.15 - }, +/turf/simulated/floor/tiled/dark, /area/ihss_reclamation/northhall) "fD" = ( -/obj/effect/map_effect/window_spawner/full/borosilicate/reinforced/firedoor, -/obj/machinery/atmospherics/pipe/simple/visible/blue, -/turf/simulated/floor/plating{ - temperature = 303.15 +/obj/effect/map_effect/window_spawner/full/borosilicate/reinforced/firedoor{ + req_one_access = list(113) }, +/obj/machinery/atmospherics/pipe/simple/visible/blue, +/turf/simulated/floor/plating, /area/ihss_reclamation/atmos) "fJ" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -1255,9 +1130,7 @@ /obj/machinery/light{ dir = 1 }, -/turf/simulated/floor/tiled/dark{ - temperature = 303.15 - }, +/turf/simulated/floor/tiled/dark, /area/ihss_reclamation/botanyhazard) "fU" = ( /obj/machinery/portable_atmospherics/canister/carbon_dioxide, @@ -1277,9 +1150,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 6 }, -/turf/simulated/floor/tiled/dark{ - temperature = 303.15 - }, +/turf/simulated/floor/tiled/dark, /area/ihss_reclamation/storage) "fZ" = ( /turf/simulated/wall/shuttle/raider, @@ -1298,24 +1169,24 @@ /obj/structure/cable/green{ icon_state = "1-2" }, -/turf/simulated/floor/tiled/dark{ - temperature = 303.15 - }, +/turf/simulated/floor/tiled/dark, /area/ihss_reclamation/armory) "gd" = ( /obj/effect/shuttle_landmark/nav_ihss_reclamation/nav1, /turf/template_noop, /area/space) +"gh" = ( +/obj/machinery/firealarm/north, +/turf/simulated/floor/exoplanet/grass/moghes, +/area/ihss_reclamation/simulation) "gk" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 1 }, -/obj/machinery/alarm/south{ - req_one_access = null - }, -/turf/simulated/floor/tiled/dark{ - temperature = 303.15 +/obj/machinery/alarm/warm/south{ + req_one_access = list(113) }, +/turf/simulated/floor/tiled/dark, /area/ihss_reclamation/crew/four) "gl" = ( /obj/structure/cable/green{ @@ -1331,9 +1202,7 @@ dir = 1; color = "#ba9122" }, -/turf/simulated/floor/tiled/dark{ - temperature = 303.15 - }, +/turf/simulated/floor/tiled/dark, /area/ihss_reclamation/westhall) "gm" = ( /obj/effect/floor_decal/corner/red/diagonal{ @@ -1344,13 +1213,30 @@ req_access = list(113) }, /obj/structure/cable/green, -/turf/simulated/floor/tiled/dark{ - temperature = 303.15 - }, +/turf/simulated/floor/tiled/dark, /area/ihss_reclamation/armory) "gn" = ( /turf/template_noop, /area/space) +"go" = ( +/obj/machinery/atmospherics/unary/vent_pump/high_volume, +/obj/machinery/embedded_controller/radio/airlock/docking_port{ + dir = 8; + pixel_y = 6; + pixel_x = 20 + }, +/obj/machinery/airlock_sensor{ + pixel_x = 20; + dir = 8; + pixel_y = -6 + }, +/obj/effect/map_effect/marker/airlock/docking{ + landmark_tag = "nav_ihss_reclamation_dock2"; + master_tag = "airlock_reclamation_dock2"; + name = "airlock_reclamation_dock2" + }, +/turf/simulated/floor/plating, +/area/ihss_reclamation/dock) "gr" = ( /obj/machinery/door/blast/regular/open{ name = "Hazardous Specimen Containment"; @@ -1372,6 +1258,10 @@ name = "Hazardous Specimen"; req_access = list(113) }, +/obj/machinery/door/firedoor/noid, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, /turf/simulated/floor/exoplanet/grass/moghes/dirt{ icon_state = "edge" }, @@ -1384,36 +1274,34 @@ /obj/structure/bed/handrail{ dir = 8 }, -/turf/simulated/floor/plating{ - temperature = 303.15 - }, +/turf/simulated/floor/plating, /area/shuttle/ihss_reclamation) "gt" = ( /obj/item/bedsheet/red, /obj/structure/bed, /obj/structure/curtain/open/bed, -/obj/effect/ghostspawpoint{ +/obj/effect/ghostspawpoint/one_use{ name = "igs - ihss_crew"; identifier = "ihss_crew" }, -/turf/simulated/floor/tiled/dark{ - temperature = 303.15 +/obj/effect/ghostspawpoint/one_use{ + name = "igs - ihss_security"; + identifier = "ihss_security" }, +/turf/simulated/floor/tiled/dark, /area/ihss_reclamation/crew/three) "gw" = ( -/obj/machinery/door/airlock/external, -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 10 +/obj/machinery/door/airlock/external{ + dir = 4 }, /obj/effect/map_effect/marker/airlock/docking{ - landmark_tag = "nav_ihss_reclamation_dock2"; - master_tag = "airlock_reclamation_dock2"; - name = "airlock_reclamation_dock2" + landmark_tag = "nav_ihss_reclamation_dock4"; + master_tag = "airlock_reclamation_dock4"; + name = "airlock_reclamation_dock4" }, /obj/effect/map_effect/marker_helper/airlock/interior, -/turf/simulated/floor/plating{ - temperature = 303.15 - }, +/obj/machinery/atmospherics/pipe/manifold/hidden, +/turf/simulated/floor/plating, /area/ihss_reclamation/dock) "gx" = ( /obj/structure/cable/green{ @@ -1429,9 +1317,7 @@ dir = 1; color = "#ba9122" }, -/turf/simulated/floor/tiled/dark{ - temperature = 303.15 - }, +/turf/simulated/floor/tiled/dark, /area/ihss_reclamation/hangarhall) "gz" = ( /obj/structure/flora/grass/junglegrass/rocky/random, @@ -1441,22 +1327,11 @@ }, /area/ihss_reclamation/envirosim) "gB" = ( -/obj/machinery/atmospherics/unary/vent_pump{ - dir = 1 - }, /obj/machinery/light{ - dir = 8; - icon_state = "tube_empty" + pixel_y = -2 }, -/obj/effect/map_effect/marker/airlock/docking{ - landmark_tag = "nav_ihss_reclamation_dock2"; - master_tag = "airlock_reclamation_dock2"; - name = "airlock_reclamation_dock2" - }, -/turf/simulated/floor/plating{ - temperature = 303.15 - }, -/area/ihss_reclamation/dock) +/turf/simulated/floor/tiled/dark, +/area/ihss_reclamation/northhall) "gD" = ( /obj/structure/cable{ icon_state = "1-2"; @@ -1470,9 +1345,7 @@ dir = 4 }, /obj/structure/bed/stool/chair/office/bridge/generic, -/turf/simulated/floor/tiled/dark{ - temperature = 303.15 - }, +/turf/simulated/floor/tiled/dark, /area/ihss_reclamation/bridge) "gI" = ( /obj/effect/floor_decal/corner/lime{ @@ -1505,18 +1378,16 @@ /obj/machinery/atmospherics/portables_connector{ dir = 1 }, -/obj/machinery/portable_atmospherics/canister/air/airlock, -/turf/simulated/floor/plating{ - temperature = 303.15 +/obj/machinery/portable_atmospherics/canister/air/warm{ + start_pressure = 1000 }, +/turf/simulated/floor/plating, /area/ihss_reclamation/southhall) "gQ" = ( /obj/machinery/atmospherics/pipe/manifold/visible{ dir = 8 }, -/turf/simulated/floor/tiled/dark{ - temperature = 303.15 - }, +/turf/simulated/floor/tiled/dark, /area/ihss_reclamation/botanyhazard) "gR" = ( /obj/effect/floor_decal/industrial/outline/grey, @@ -1543,10 +1414,21 @@ }, /obj/item/device/radio, /obj/item/device/radio, -/turf/simulated/floor/tiled/dark{ - temperature = 303.15 - }, +/turf/simulated/floor/tiled/dark, /area/ihss_reclamation/storage) +"gU" = ( +/obj/machinery/atmospherics/unary/vent_pump/high_volume, +/obj/machinery/light{ + dir = 8; + icon_state = "tube_empty" + }, +/obj/effect/map_effect/marker/airlock/docking{ + landmark_tag = "nav_ihss_reclamation_dock2"; + master_tag = "airlock_reclamation_dock2"; + name = "airlock_reclamation_dock2" + }, +/turf/simulated/floor/plating, +/area/ihss_reclamation/dock) "gZ" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on, /turf/simulated/floor/tiled/white{ @@ -1564,9 +1446,7 @@ /obj/item/clothing/shoes/sandals/caligae, /obj/item/clothing/shoes/sandals/caligae, /obj/item/clothing/accessory/poncho, -/turf/simulated/floor/tiled/dark{ - temperature = 303.15 - }, +/turf/simulated/floor/tiled/dark, /area/ihss_reclamation/crew/four) "hi" = ( /obj/effect/floor_decal/corner/red/diagonal{ @@ -1577,9 +1457,7 @@ dir = 1; color = "#ba9122" }, -/turf/simulated/floor/tiled/dark{ - temperature = 303.15 - }, +/turf/simulated/floor/tiled/dark, /area/ihss_reclamation/northhall) "hm" = ( /obj/structure/flora/tree/jungle/small{ @@ -1597,27 +1475,25 @@ /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 1 }, -/turf/simulated/floor/tiled/dark{ - temperature = 303.15 - }, +/turf/simulated/floor/tiled/dark, /area/ihss_reclamation/bridge) +"hq" = ( +/obj/machinery/firealarm/south, +/turf/simulated/floor/tiled/dark, +/area/ihss_reclamation/crew) "ht" = ( /obj/effect/floor_decal/corner/red/diagonal{ dir = 4; color = "#941307" }, /obj/structure/reagent_dispensers/water_cooler, -/turf/simulated/floor/tiled/dark{ - temperature = 303.15 - }, +/turf/simulated/floor/tiled/dark, /area/ihss_reclamation/armoryfoyer) "hu" = ( /turf/simulated/wall/shuttle/raider, /area/ihss_reclamation/southhall) "hB" = ( -/turf/simulated/floor/plating{ - temperature = 303.15 - }, +/turf/simulated/floor/plating, /area/ihss_reclamation/solars) "hF" = ( /obj/structure/cable/green{ @@ -1630,9 +1506,7 @@ dir = 10 }, /obj/structure/lattice/catwalk/indoor/grate, -/turf/simulated/floor/plating{ - temperature = 303.15 - }, +/turf/simulated/floor/plating, /area/ihss_reclamation/hangar1) "hJ" = ( /obj/structure/cable/green{ @@ -1652,9 +1526,7 @@ dir = 5 }, /obj/structure/lattice/catwalk/indoor/grate, -/turf/simulated/floor/plating{ - temperature = 303.15 - }, +/turf/simulated/floor/plating, /area/ihss_reclamation/hangar1) "hM" = ( /obj/machinery/light{ @@ -1665,9 +1537,7 @@ /obj/structure/cable/green{ icon_state = "0-2" }, -/turf/simulated/floor/plating{ - temperature = 303.15 - }, +/turf/simulated/floor/plating, /area/ihss_reclamation/hangar1) "hT" = ( /obj/effect/floor_decal/corner/grey/diagonal, @@ -1686,35 +1556,29 @@ name = "Bridge"; req_access = list(113) }, -/obj/machinery/door/firedoor/noid{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark{ - temperature = 303.15 - }, +/obj/machinery/door/firedoor/noid, +/turf/simulated/floor/tiled/dark, /area/ihss_reclamation/bridge) "hZ" = ( /obj/effect/floor_decal/corner/mauve{ dir = 5 }, /obj/machinery/chem_master, +/obj/machinery/firealarm/north, /turf/simulated/floor/tiled/white{ temperature = 303.15 }, /area/ihss_reclamation/xenobot) "ib" = ( -/obj/machinery/atmospherics/unary/vent_pump{ - dir = 8 - }, -/obj/machinery/light, +/obj/machinery/door/airlock/external, /obj/effect/map_effect/marker/airlock/docking{ - landmark_tag = "nav_ihss_reclamation_dock4"; - master_tag = "airlock_reclamation_dock4"; - name = "airlock_reclamation_dock4" - }, -/turf/simulated/floor/plating{ - temperature = 303.15 + landmark_tag = "nav_ihss_reclamation_dock2"; + master_tag = "airlock_reclamation_dock2"; + name = "airlock_reclamation_dock2" }, +/obj/effect/map_effect/marker_helper/airlock/exterior, +/obj/effect/shuttle_landmark/nav_ihss_reclamation/dock2, +/turf/simulated/floor/plating, /area/ihss_reclamation/dock) "ie" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ @@ -1722,6 +1586,10 @@ }, /turf/simulated/floor/exoplanet/grass/moghes, /area/ihss_reclamation/simulation) +"if" = ( +/obj/machinery/alarm/warm/east, +/turf/simulated/floor/tiled/dark, +/area/ihss_reclamation/dock) "ig" = ( /obj/effect/floor_decal/corner/red/diagonal{ dir = 4; @@ -1736,18 +1604,14 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 8 }, -/turf/simulated/floor/tiled/dark{ - temperature = 303.15 - }, +/turf/simulated/floor/tiled/dark, /area/ihss_reclamation/armoryfoyer) "ip" = ( /obj/machinery/atmospherics/pipe/simple/visible/yellow, -/obj/machinery/alarm/west{ - req_one_access = null - }, -/turf/simulated/floor/plating{ - temperature = 303.15 +/obj/machinery/alarm/warm/west{ + req_one_access = list(113) }, +/turf/simulated/floor/plating, /area/ihss_reclamation/fuel) "iv" = ( /obj/structure/sign/flag/hegemony/large/north{ @@ -1761,9 +1625,7 @@ color = "#941307"; dir = 5 }, -/turf/simulated/floor/tiled/dark{ - temperature = 303.15 - }, +/turf/simulated/floor/tiled/dark, /area/ihss_reclamation/bridge) "iw" = ( /obj/machinery/atmospherics/pipe/simple/hidden/fuel{ @@ -1779,15 +1641,11 @@ icon_state = "4-8" }, /obj/structure/lattice/catwalk/indoor/grate, -/turf/simulated/floor/plating{ - temperature = 303.15 - }, +/turf/simulated/floor/plating, /area/ihss_reclamation/hangar1) "iA" = ( /obj/machinery/atmospherics/pipe/simple/hidden/red, -/turf/simulated/floor/plating{ - temperature = 303.15 - }, +/turf/simulated/floor/plating, /area/ihss_reclamation/equipment) "iB" = ( /turf/simulated/wall/shuttle/raider, @@ -1802,17 +1660,13 @@ color = "#ba9122" }, /obj/machinery/atmospherics/pipe/simple/hidden, -/turf/simulated/floor/tiled/dark{ - temperature = 303.15 - }, +/turf/simulated/floor/tiled/dark, /area/ihss_reclamation/dock) "iH" = ( /obj/machinery/light{ dir = 1 }, -/turf/simulated/floor/tiled/dark{ - temperature = 303.15 - }, +/turf/simulated/floor/tiled/dark, /area/ihss_reclamation/crew) "iI" = ( /obj/effect/floor_decal/corner/mauve/full{ @@ -1851,9 +1705,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 10 }, -/turf/simulated/floor/tiled/dark{ - temperature = 303.15 - }, +/turf/simulated/floor/tiled/dark, /area/ihss_reclamation/crew/four) "iM" = ( /obj/effect/floor_decal/corner/red/diagonal{ @@ -1864,26 +1716,20 @@ dir = 1; color = "#ba9122" }, -/turf/simulated/floor/tiled/dark{ - temperature = 303.15 - }, +/turf/simulated/floor/tiled/dark, /area/ihss_reclamation/hangarhall) "iN" = ( /obj/structure/bed/stool/chair/office/dark, /obj/machinery/light{ dir = 4 }, -/turf/simulated/floor/tiled/dark{ - temperature = 303.15 - }, +/turf/simulated/floor/tiled/dark, /area/ihss_reclamation/crew/four) "iP" = ( /obj/structure/sink{ pixel_y = 28 }, -/turf/simulated/floor/tiled/dark{ - temperature = 303.15 - }, +/turf/simulated/floor/tiled/dark, /area/ihss_reclamation/crew/one) "iR" = ( /obj/structure/cable/green{ @@ -1899,9 +1745,7 @@ dir = 1; color = "#ba9122" }, -/turf/simulated/floor/tiled/dark{ - temperature = 303.15 - }, +/turf/simulated/floor/tiled/dark, /area/ihss_reclamation/hangarhall) "iT" = ( /obj/effect/floor_decal/corner/mauve{ @@ -1917,17 +1761,17 @@ color = "#941307" }, /obj/machinery/computer/shuttle_control/explore/ihss_reclamation, -/turf/simulated/floor/tiled/dark{ - temperature = 303.15 - }, +/turf/simulated/floor/tiled/dark, /area/shuttle/ihss_reclamation) "iW" = ( -/turf/simulated/floor/tiled/dark{ - temperature = 303.15 - }, +/turf/simulated/floor/tiled/dark, /area/ihss_reclamation/crew) "ja" = ( -/obj/effect/map_effect/window_spawner/full/reinforced/grille/firedoor, +/obj/effect/map_effect/window_spawner/full/shuttle/raider{ + req_one_access = list(113); + spawn_firedoor = 1; + spawn_grille = 1 + }, /turf/simulated/floor/plating, /area/ihss_reclamation/easthall) "jd" = ( @@ -1936,26 +1780,30 @@ color = "#941307" }, /obj/machinery/atmospherics/unary/vent_pump/on, -/turf/simulated/floor/tiled/dark{ - temperature = 303.15 - }, +/turf/simulated/floor/tiled/dark, /area/ihss_reclamation/armoryfoyer) +"je" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/lattice/catwalk/indoor/grate, +/obj/machinery/firealarm/east, +/turf/simulated/floor/plating, +/area/ihss_reclamation/hangar1) "jh" = ( /obj/structure/sink{ pixel_y = 28 }, -/turf/simulated/floor/tiled/dark{ - temperature = 303.15 - }, +/turf/simulated/floor/tiled/dark, /area/ihss_reclamation/crew/three) "ji" = ( /obj/effect/floor_decal/corner/red{ color = "#941307"; dir = 10 }, -/turf/simulated/floor/tiled/dark{ - temperature = 303.15 - }, +/turf/simulated/floor/tiled/dark, /area/ihss_reclamation/mess) "jj" = ( /obj/effect/floor_decal/corner/red/diagonal{ @@ -1972,9 +1820,7 @@ dir = 1; color = "#ba9122" }, -/turf/simulated/floor/tiled/dark{ - temperature = 303.15 - }, +/turf/simulated/floor/tiled/dark, /area/ihss_reclamation/crew) "jl" = ( /obj/effect/floor_decal/spline/fancy/wood{ @@ -1988,9 +1834,7 @@ }, /area/ihss_reclamation/captain) "jn" = ( -/turf/simulated/floor/plating{ - temperature = 303.15 - }, +/turf/simulated/floor/plating, /area/ihss_reclamation/atmos) "jr" = ( /obj/structure/closet/cabinet, @@ -1999,9 +1843,7 @@ /obj/item/clothing/shoes/sandals/caligae, /obj/item/clothing/shoes/sandals/caligae, /obj/item/clothing/accessory/poncho, -/turf/simulated/floor/tiled/dark{ - temperature = 303.15 - }, +/turf/simulated/floor/tiled/dark, /area/ihss_reclamation/crew/one) "jC" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -2012,18 +1854,14 @@ /obj/structure/bed/stool/chair/office/dark{ dir = 1 }, -/turf/simulated/floor/tiled/dark{ - temperature = 303.15 - }, +/turf/simulated/floor/tiled/dark, /area/ihss_reclamation/armoryfoyer) "jK" = ( /obj/structure/table/standard, /obj/machinery/light{ dir = 8 }, -/turf/simulated/floor/tiled/dark{ - temperature = 303.15 - }, +/turf/simulated/floor/tiled/dark, /area/ihss_reclamation/crew/five) "jM" = ( /obj/structure/cable/green{ @@ -2032,9 +1870,7 @@ /obj/machinery/power/apc/high/north{ req_access = list(113) }, -/turf/simulated/floor/tiled/dark{ - temperature = 303.15 - }, +/turf/simulated/floor/tiled/dark, /area/ihss_reclamation/crew) "jN" = ( /obj/effect/floor_decal/corner/red/diagonal{ @@ -2042,15 +1878,17 @@ color = "#941307" }, /obj/structure/bed/stool/chair/padded/beige, -/turf/simulated/floor/tiled/dark{ - temperature = 303.15 - }, +/turf/simulated/floor/tiled/dark, /area/ihss_reclamation/armoryfoyer) "jP" = ( -/obj/machinery/atmospherics/binary/passive_gate{ +/obj/machinery/atmospherics/binary/passive_gate/on{ dir = 4 }, /obj/effect/floor_decal/industrial/outline/yellow, +/obj/structure/fuel_port/hydrogen{ + pixel_y = 32; + pixel_x = 5 + }, /turf/simulated/floor, /area/shuttle/ihss_reclamation) "jQ" = ( @@ -2059,9 +1897,8 @@ }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/plating{ - temperature = 303.15 - }, +/obj/machinery/firealarm/west, +/turf/simulated/floor/plating, /area/ihss_reclamation/atmos) "jS" = ( /obj/structure/cable/green{ @@ -2079,9 +1916,7 @@ dir = 8 }, /obj/machinery/door/firedoor/noid, -/turf/simulated/floor/tiled/dark{ - temperature = 303.15 - }, +/turf/simulated/floor/tiled/dark, /area/ihss_reclamation/easthall) "jT" = ( /obj/structure/cable/green{ @@ -2100,18 +1935,14 @@ dir = 1; color = "#ba9122" }, -/turf/simulated/floor/tiled/dark{ - temperature = 303.15 - }, +/turf/simulated/floor/tiled/dark, /area/ihss_reclamation/hangarhall) "jX" = ( /obj/effect/floor_decal/corner/red/diagonal{ dir = 4; color = "#941307" }, -/turf/simulated/floor/tiled/dark{ - temperature = 303.15 - }, +/turf/simulated/floor/tiled/dark, /area/ihss_reclamation/armory) "ka" = ( /obj/structure/cable/green{ @@ -2127,15 +1958,13 @@ dir = 1; color = "#ba9122" }, -/turf/simulated/floor/tiled/dark{ - temperature = 303.15 - }, +/turf/simulated/floor/tiled/dark, /area/ihss_reclamation/southhall) "kb" = ( -/obj/machinery/atmospherics/portables_connector{ +/obj/machinery/atmospherics/portables_connector/aux{ dir = 8 }, -/obj/machinery/portable_atmospherics/canister/air/airlock, +/obj/machinery/portable_atmospherics/canister/air/warm, /obj/effect/floor_decal/industrial/hatch/yellow, /obj/machinery/light/colored/red{ dir = 4 @@ -2152,9 +1981,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 6 }, -/turf/simulated/floor/tiled/dark{ - temperature = 303.15 - }, +/turf/simulated/floor/tiled/dark, /area/ihss_reclamation/crew/three) "kg" = ( /obj/effect/landmark/entry_point/port{ @@ -2172,13 +1999,15 @@ /obj/item/bedsheet/red, /obj/structure/bed, /obj/structure/curtain/open/bed, -/obj/effect/ghostspawpoint{ +/obj/effect/ghostspawpoint/one_use{ name = "igs - ihss_crew"; identifier = "ihss_crew" }, -/turf/simulated/floor/tiled/dark{ - temperature = 303.15 +/obj/effect/ghostspawpoint/one_use{ + name = "igs - ihss_security"; + identifier = "ihss_security" }, +/turf/simulated/floor/tiled/dark, /area/ihss_reclamation/crew/one) "kk" = ( /obj/effect/floor_decal/spline/fancy/wood{ @@ -2196,23 +2025,24 @@ dir = 8 }, /obj/effect/map_effect/marker/airlock/shuttle{ - cycle_to_external_air = 1; master_tag = "airlock_reclamation_shuttle"; name = "airlock_reclamation_shuttle"; req_one_access = list(113); - shuttle_tag = "IHSS Reclamation Shuttle" + shuttle_tag = "IHSS Reclamation Shuttle"; + cycle_to_external_air = 1 }, -/obj/machinery/atmospherics/unary/vent_pump/high_volume{ +/obj/machinery/atmospherics/unary/vent_pump/high_volume/aux{ dir = 4 }, -/turf/simulated/floor/plating{ - temperature = 303.15 - }, +/turf/simulated/floor/plating, /area/shuttle/ihss_reclamation) "kr" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/fuel{ dir = 1 }, +/obj/machinery/atmospherics/pipe/simple/hidden/aux{ + dir = 9 + }, /turf/simulated/floor, /area/shuttle/ihss_reclamation) "ks" = ( @@ -2222,11 +2052,11 @@ /turf/simulated/wall/shuttle/raider, /area/ihss_reclamation/simulation) "ku" = ( -/obj/effect/map_effect/window_spawner/full/borosilicate/reinforced/firedoor, -/obj/machinery/atmospherics/pipe/simple/visible/purple, -/turf/simulated/floor/plating{ - temperature = 303.15 +/obj/effect/map_effect/window_spawner/full/borosilicate/reinforced/firedoor{ + req_one_access = list(113) }, +/obj/machinery/atmospherics/pipe/simple/visible/purple, +/turf/simulated/floor/plating, /area/ihss_reclamation/fuel) "kF" = ( /obj/structure/cable/green{ @@ -2242,18 +2072,14 @@ dir = 1; color = "#ba9122" }, -/turf/simulated/floor/tiled/dark{ - temperature = 303.15 - }, +/turf/simulated/floor/tiled/dark, /area/ihss_reclamation/westhall) "kG" = ( /obj/structure/table/standard, /obj/machinery/light{ dir = 8 }, -/turf/simulated/floor/tiled/dark{ - temperature = 303.15 - }, +/turf/simulated/floor/tiled/dark, /area/ihss_reclamation/crew/three) "kH" = ( /obj/machinery/button/remote/blast_door{ @@ -2263,29 +2089,19 @@ pixel_y = -3 }, /obj/machinery/atmospherics/pipe/simple/visible/red, -/turf/simulated/floor/plating{ - temperature = 303.15 - }, +/turf/simulated/floor/plating, /area/ihss_reclamation/atmos) "kM" = ( -/obj/machinery/door/airlock/external, -/obj/machinery/access_button{ - pixel_x = 28; - pixel_y = -8; - dir = 2 - }, -/obj/effect/shuttle_landmark/nav_ihss_reclamation/dock2{ - dir = 1 +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ + dir = 4 }, +/obj/machinery/light, /obj/effect/map_effect/marker/airlock/docking{ - landmark_tag = "nav_ihss_reclamation_dock2"; - master_tag = "airlock_reclamation_dock2"; - name = "airlock_reclamation_dock2" - }, -/obj/effect/map_effect/marker_helper/airlock/exterior, -/turf/simulated/floor/plating{ - temperature = 303.15 + landmark_tag = "nav_ihss_reclamation_dock3"; + master_tag = "airlock_reclamation_dock3"; + name = "airlock_reclamation_dock3" }, +/turf/simulated/floor/plating, /area/ihss_reclamation/dock) "kO" = ( /obj/machinery/door/airlock/external, @@ -2303,9 +2119,7 @@ name = "airlock_reclamation_dock1" }, /obj/effect/map_effect/marker_helper/airlock/exterior, -/turf/simulated/floor/plating{ - temperature = 303.15 - }, +/turf/simulated/floor/plating, /area/ihss_reclamation/dock) "kP" = ( /obj/structure/closet/cabinet, @@ -2314,9 +2128,7 @@ /obj/item/clothing/shoes/sandals/caligae, /obj/item/clothing/shoes/sandals/caligae, /obj/item/clothing/accessory/poncho, -/turf/simulated/floor/tiled/dark{ - temperature = 303.15 - }, +/turf/simulated/floor/tiled/dark, /area/ihss_reclamation/crew/seven) "kQ" = ( /obj/machinery/light{ @@ -2334,19 +2146,14 @@ dir = 4; color = "#941307" }, -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 9; - icon_state = "intact" - }, -/turf/simulated/floor/tiled/dark{ - temperature = 303.15 +/obj/machinery/atmospherics/pipe/simple/hidden/aux{ + dir = 9 }, +/turf/simulated/floor/tiled/dark, /area/shuttle/ihss_reclamation) "kS" = ( /obj/random/dirt_75, -/turf/simulated/floor/plating{ - temperature = 303.15 - }, +/turf/simulated/floor/plating, /area/ihss_reclamation/southhall) "kT" = ( /obj/effect/floor_decal/corner/red/diagonal{ @@ -2360,9 +2167,7 @@ dir = 1; color = "#ba9122" }, -/turf/simulated/floor/tiled/dark{ - temperature = 303.15 - }, +/turf/simulated/floor/tiled/dark, /area/ihss_reclamation/westhall) "kU" = ( /obj/structure/cable/green{ @@ -2371,27 +2176,21 @@ /obj/machinery/power/apc/high/west{ req_access = list(113) }, -/turf/simulated/floor/tiled/dark{ - temperature = 303.15 - }, +/turf/simulated/floor/tiled/dark, /area/ihss_reclamation/dock) "kY" = ( /obj/item/bedsheet/red, /obj/structure/bed, /obj/structure/curtain/open/bed, /obj/effect/ghostspawpoint{ - name = "igs - ihss_crew"; - identifier = "ihss_crew" - }, -/turf/simulated/floor/tiled/dark{ - temperature = 303.15 + identifier = "ihss_security"; + name = "igs - ihss_security" }, +/turf/simulated/floor/tiled/dark, /area/ihss_reclamation/crew/seven) "ld" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on, -/turf/simulated/floor/tiled/dark{ - temperature = 303.15 - }, +/turf/simulated/floor/tiled/dark, /area/ihss_reclamation/southhall) "le" = ( /turf/simulated/wall/shuttle/raider, @@ -2401,36 +2200,28 @@ req_access = list(113) }, /obj/effect/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/plating{ - temperature = 303.15 - }, +/turf/simulated/floor/plating, /area/ihss_reclamation/equipment) "lh" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 1 }, -/obj/machinery/alarm/south{ - req_one_access = null - }, -/turf/simulated/floor/tiled/dark{ - temperature = 303.15 +/obj/machinery/alarm/warm/south{ + req_one_access = list(113) }, +/turf/simulated/floor/tiled/dark, /area/ihss_reclamation/crew/three) "lk" = ( /obj/machinery/light{ dir = 8 }, -/turf/simulated/floor/tiled/dark{ - temperature = 303.15 - }, +/turf/simulated/floor/tiled/dark, /area/ihss_reclamation/crew) "ll" = ( /obj/machinery/light{ dir = 4 }, -/turf/simulated/floor/tiled/dark{ - temperature = 303.15 - }, +/turf/simulated/floor/tiled/dark, /area/ihss_reclamation/easthall) "lo" = ( /obj/structure/window/reinforced, @@ -2447,9 +2238,7 @@ color = "#941307" }, /obj/machinery/door/window/westleft, -/turf/simulated/floor/tiled/dark{ - temperature = 303.15 - }, +/turf/simulated/floor/tiled/dark, /area/shuttle/ihss_reclamation) "lp" = ( /turf/simulated/wall/shuttle/raider, @@ -2470,9 +2259,7 @@ /obj/machinery/door/firedoor/multi_tile{ req_one_access = null }, -/turf/simulated/floor/tiled/dark{ - temperature = 303.15 - }, +/turf/simulated/floor/tiled/dark, /area/ihss_reclamation/easthall) "ls" = ( /turf/simulated/wall/shuttle/raider, @@ -2492,18 +2279,14 @@ color = "#941307"; dir = 10 }, -/turf/simulated/floor/tiled/dark{ - temperature = 303.15 - }, +/turf/simulated/floor/tiled/dark, /area/ihss_reclamation/bridge) "lw" = ( /obj/machinery/light{ dir = 8; icon_state = "tube_empty" }, -/turf/simulated/floor/tiled/dark{ - temperature = 303.15 - }, +/turf/simulated/floor/tiled/dark, /area/ihss_reclamation/dock) "lB" = ( /obj/structure/bed/stool/chair/shuttle{ @@ -2516,17 +2299,13 @@ /obj/machinery/computer/ship/navigation/wall{ pixel_x = 32 }, -/turf/simulated/floor/tiled/dark{ - temperature = 303.15 - }, +/turf/simulated/floor/tiled/dark, /area/shuttle/ihss_reclamation) "lD" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 1 }, -/turf/simulated/floor/tiled/dark{ - temperature = 303.15 - }, +/turf/simulated/floor/tiled/dark, /area/ihss_reclamation/northhall) "lE" = ( /obj/effect/floor_decal/corner/mauve{ @@ -2551,14 +2330,10 @@ /obj/item/modular_computer/console/preset/civilian{ dir = 1 }, -/turf/simulated/floor/tiled/dark{ - temperature = 303.15 - }, +/turf/simulated/floor/tiled/dark, /area/ihss_reclamation/bridge) "lJ" = ( -/turf/simulated/floor/tiled/dark{ - temperature = 303.15 - }, +/turf/simulated/floor/tiled/dark, /area/ihss_reclamation/dock) "lL" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ @@ -2584,17 +2359,39 @@ /obj/structure/cable/green{ icon_state = "4-8" }, -/turf/simulated/floor/tiled/dark{ - temperature = 303.15 - }, +/turf/simulated/floor/tiled/dark, /area/ihss_reclamation/northhall) +"mc" = ( +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/ihss_reclamation/dock) +"mf" = ( +/obj/effect/floor_decal/corner/yellow/diagonal{ + dir = 1; + color = "#ba9122" + }, +/obj/effect/floor_decal/corner/red/diagonal{ + dir = 4; + color = "#941307" + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/ihss_reclamation/dock) "mg" = ( -/obj/machinery/alarm/west{ - req_one_access = null - }, -/turf/simulated/floor/tiled/dark{ - temperature = 303.15 +/obj/machinery/alarm/warm/west{ + req_one_access = list(113) }, +/turf/simulated/floor/tiled/dark, /area/ihss_reclamation/westhall) "mh" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -2610,9 +2407,7 @@ color = "#941307" }, /obj/effect/overmap/visitable/ship/landable/ihss_reclamation_shuttle, -/turf/simulated/floor/tiled/dark{ - temperature = 303.15 - }, +/turf/simulated/floor/tiled/dark, /area/shuttle/ihss_reclamation) "mi" = ( /obj/structure/lattice/catwalk, @@ -2653,9 +2448,7 @@ /obj/structure/cable/green{ icon_state = "4-8" }, -/turf/simulated/floor/plating{ - temperature = 303.15 - }, +/turf/simulated/floor/plating, /area/ihss_reclamation/fuel) "mr" = ( /obj/machinery/door/airlock/external{ @@ -2670,12 +2463,13 @@ name = "airlock_reclamation_dock3" }, /obj/effect/map_effect/marker_helper/airlock/exterior, -/turf/simulated/floor/plating{ - temperature = 303.15 - }, +/turf/simulated/floor/plating, /area/ihss_reclamation/dock) "mt" = ( -/obj/effect/map_effect/window_spawner/full/reinforced, +/obj/effect/map_effect/window_spawner/full/shuttle/raider{ + req_one_access = list(113); + spawn_firedoor = 1 + }, /turf/simulated/floor/tiled/white{ temperature = 303.15 }, @@ -2693,9 +2487,7 @@ dir = 1; color = "#ba9122" }, -/turf/simulated/floor/tiled/dark{ - temperature = 303.15 - }, +/turf/simulated/floor/tiled/dark, /area/ihss_reclamation/northhall) "mv" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -2711,12 +2503,10 @@ }, /area/ihss_reclamation/xenobot) "mA" = ( -/obj/machinery/alarm/east{ - req_one_access = null - }, -/turf/simulated/floor/tiled/dark{ - temperature = 303.15 +/obj/machinery/alarm/warm/east{ + req_one_access = list(113) }, +/turf/simulated/floor/tiled/dark, /area/ihss_reclamation/easthall) "mB" = ( /obj/machinery/body_scanconsole{ @@ -2733,9 +2523,7 @@ /obj/structure/bed/handrail{ dir = 8 }, -/turf/simulated/floor/plating{ - temperature = 303.15 - }, +/turf/simulated/floor/plating, /area/shuttle/ihss_reclamation) "mF" = ( /obj/structure/closet/cabinet, @@ -2744,18 +2532,14 @@ /obj/item/clothing/shoes/sandals/caligae, /obj/item/clothing/shoes/sandals/caligae, /obj/item/clothing/accessory/poncho, -/turf/simulated/floor/tiled/dark{ - temperature = 303.15 - }, +/turf/simulated/floor/tiled/dark, /area/ihss_reclamation/crew/five) "mG" = ( /obj/effect/floor_decal/corner/red{ color = "#941307"; dir = 1 }, -/turf/simulated/floor/tiled/dark{ - temperature = 303.15 - }, +/turf/simulated/floor/tiled/dark, /area/ihss_reclamation/bridge) "mN" = ( /obj/structure/closet/cabinet, @@ -2764,9 +2548,7 @@ /obj/item/clothing/shoes/sandals/caligae, /obj/item/clothing/shoes/sandals/caligae, /obj/item/clothing/accessory/poncho, -/turf/simulated/floor/tiled/dark{ - temperature = 303.15 - }, +/turf/simulated/floor/tiled/dark, /area/ihss_reclamation/crew/two) "mS" = ( /obj/structure/cable/green{ @@ -2803,9 +2585,7 @@ dir = 4; color = "#941307" }, -/turf/simulated/floor/tiled/dark{ - temperature = 303.15 - }, +/turf/simulated/floor/tiled/dark, /area/ihss_reclamation/armory) "ng" = ( /obj/structure/cable/green{ @@ -2814,9 +2594,7 @@ /obj/machinery/power/apc/high/west{ req_access = list(113) }, -/turf/simulated/floor/tiled/dark{ - temperature = 303.15 - }, +/turf/simulated/floor/tiled/dark, /area/ihss_reclamation/hangarhall) "nj" = ( /obj/structure/cable/green{ @@ -2828,18 +2606,18 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, -/turf/simulated/floor/tiled/dark{ - temperature = 303.15 - }, +/turf/simulated/floor/tiled/dark, /area/ihss_reclamation/northhall) "nk" = ( -/obj/effect/map_effect/window_spawner/full/reinforced/firedoor, +/obj/effect/map_effect/window_spawner/full/shuttle/mercenary{ + req_one_access = list(113); + spawn_firedoor = 1; + spawn_grille = 1 + }, /obj/effect/landmark/entry_point/fore{ name = "fore, solars" }, -/turf/simulated/floor/plating{ - temperature = 303.15 - }, +/turf/simulated/floor/plating, /area/shuttle/ihss_reclamation) "nl" = ( /obj/structure/cable/green{ @@ -2855,10 +2633,10 @@ name = "Habitation"; dir = 4 }, -/obj/machinery/door/firedoor/noid, -/turf/simulated/floor/tiled/dark{ - temperature = 303.15 +/obj/machinery/door/firedoor/noid{ + dir = 4 }, +/turf/simulated/floor/tiled/dark, /area/ihss_reclamation/crew) "nm" = ( /obj/effect/landmark/entry_point/aft{ @@ -2884,9 +2662,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 8 }, -/turf/simulated/floor/tiled/dark{ - temperature = 303.15 - }, +/turf/simulated/floor/tiled/dark, /area/ihss_reclamation/southhall) "nq" = ( /turf/simulated/wall/shuttle/raider, @@ -2895,23 +2671,17 @@ /obj/machinery/atmospherics/pipe/simple/hidden/blue{ dir = 10 }, -/turf/simulated/floor/plating{ - temperature = 303.15 - }, +/turf/simulated/floor/plating, /area/ihss_reclamation/equipment) "nu" = ( -/turf/simulated/floor/tiled/dark{ - temperature = 303.15 - }, +/turf/simulated/floor/tiled/dark, /area/ihss_reclamation/botanyhazard) "nv" = ( /obj/effect/floor_decal/corner/red{ color = "#941307"; dir = 6 }, -/turf/simulated/floor/tiled/dark{ - temperature = 303.15 - }, +/turf/simulated/floor/tiled/dark, /area/ihss_reclamation/mess) "ny" = ( /obj/effect/floor_decal/corner/lime{ @@ -2929,9 +2699,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 10 }, -/turf/simulated/floor/plating{ - temperature = 303.15 - }, +/turf/simulated/floor/plating, /area/ihss_reclamation/solars) "nB" = ( /obj/structure/cable/green{ @@ -2973,9 +2741,10 @@ dir = 4; icon_state = "map-scrubbers" }, -/turf/simulated/floor/plating{ - temperature = 303.15 +/obj/structure/cable/green{ + icon_state = "2-8" }, +/turf/simulated/floor/plating, /area/ihss_reclamation/equipment) "nJ" = ( /turf/simulated/floor/exoplanet/grass/moghes/dirt{ @@ -2995,7 +2764,7 @@ }, /area/ihss_reclamation/plantroom) "nQ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ +/obj/machinery/atmospherics/pipe/simple/hidden/aux{ dir = 10 }, /obj/effect/floor_decal/corner/red/diagonal{ @@ -3003,9 +2772,7 @@ color = "#941307" }, /obj/structure/bed/handrail, -/turf/simulated/floor/tiled/dark{ - temperature = 303.15 - }, +/turf/simulated/floor/tiled/dark, /area/shuttle/ihss_reclamation) "nW" = ( /obj/effect/floor_decal/spline/fancy/wood{ @@ -3027,10 +2794,12 @@ }, /area/ihss_reclamation/medsci) "oc" = ( -/obj/effect/map_effect/window_spawner/full/reinforced, -/turf/simulated/floor/tiled/white{ - temperature = 303.15 +/obj/machinery/door/blast/regular/open{ + name = "Environment Simulation Chamber"; + id = "ihss_environment" }, +/obj/structure/chainlink_fence, +/turf/simulated/floor/exoplanet/grass/moghes, /area/ihss_reclamation/envirosim) "od" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -3048,6 +2817,20 @@ }, /turf/simulated/wall/shuttle/space_ship/mercenary, /area/shuttle/ihss_reclamation) +"of" = ( +/obj/machinery/firealarm/east, +/turf/simulated/floor/tiled/dark, +/area/ihss_reclamation/northhall) +"og" = ( +/obj/machinery/atmospherics/portables_connector{ + dir = 4 + }, +/obj/machinery/portable_atmospherics/powered/pump, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/ihss_reclamation/equipment) "ok" = ( /obj/effect/floor_decal/corner/lime{ dir = 10 @@ -3065,14 +2848,16 @@ /obj/item/clothing/shoes/sandals/caligae, /obj/item/clothing/shoes/sandals/caligae, /obj/item/clothing/accessory/poncho, -/turf/simulated/floor/tiled/dark{ - temperature = 303.15 - }, +/turf/simulated/floor/tiled/dark, /area/ihss_reclamation/crew/three) "om" = ( /obj/machinery/light/colored/red, /turf/simulated/floor, /area/shuttle/ihss_reclamation) +"op" = ( +/obj/machinery/firealarm/north, +/turf/simulated/floor/tiled/dark, +/area/ihss_reclamation/crew) "ot" = ( /obj/structure/cable/green{ icon_state = "1-2" @@ -3085,9 +2870,7 @@ dir = 1; color = "#ba9122" }, -/turf/simulated/floor/tiled/dark{ - temperature = 303.15 - }, +/turf/simulated/floor/tiled/dark, /area/ihss_reclamation/easthall) "ox" = ( /obj/structure/table/steel, @@ -3097,15 +2880,11 @@ dir = 4; color = "#941307" }, -/turf/simulated/floor/tiled/dark{ - temperature = 303.15 - }, +/turf/simulated/floor/tiled/dark, /area/shuttle/ihss_reclamation) "oz" = ( /obj/structure/table/standard, -/turf/simulated/floor/tiled/dark{ - temperature = 303.15 - }, +/turf/simulated/floor/tiled/dark, /area/ihss_reclamation/crew/three) "oC" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -3114,9 +2893,13 @@ /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 4 }, -/turf/simulated/floor/plating{ - temperature = 303.15 +/obj/machinery/power/apc/high/south{ + req_access = list(113) }, +/obj/structure/cable/green{ + icon_state = "0-4" + }, +/turf/simulated/floor/plating, /area/ihss_reclamation/equipment) "oD" = ( /turf/simulated/wall/shuttle/raider, @@ -3125,9 +2908,7 @@ /obj/machinery/light{ dir = 4 }, -/turf/simulated/floor/tiled/dark{ - temperature = 303.15 - }, +/turf/simulated/floor/tiled/dark, /area/ihss_reclamation/westhall) "oF" = ( /obj/machinery/light{ @@ -3141,9 +2922,7 @@ /obj/structure/cable{ icon_state = "1-2" }, -/turf/simulated/floor/plating{ - temperature = 303.15 - }, +/turf/simulated/floor/plating, /area/ihss_reclamation/solars) "oH" = ( /obj/machinery/light{ @@ -3165,15 +2944,11 @@ /obj/machinery/power/apc/high/west{ req_access = list(113) }, -/turf/simulated/floor/tiled/dark{ - temperature = 303.15 - }, +/turf/simulated/floor/tiled/dark, /area/ihss_reclamation/armoryfoyer) "oM" = ( /obj/structure/bed/stool/chair/office/dark, -/turf/simulated/floor/tiled/dark{ - temperature = 303.15 - }, +/turf/simulated/floor/tiled/dark, /area/ihss_reclamation/crew/seven) "oP" = ( /turf/simulated/wall/shuttle/raider, @@ -3191,9 +2966,7 @@ /obj/machinery/power/apc/high/north{ req_access = list(113) }, -/turf/simulated/floor/tiled/dark{ - temperature = 303.15 - }, +/turf/simulated/floor/tiled/dark, /area/ihss_reclamation/crew/one) "oU" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -3216,13 +2989,19 @@ /obj/structure/plasticflaps/airtight{ dir = 4 }, -/obj/machinery/door/firedoor/noid, +/obj/machinery/door/firedoor/noid{ + dir = 4 + }, /turf/simulated/floor/tiled/white{ temperature = 303.15 }, /area/ihss_reclamation/botanyhazard) "oV" = ( -/obj/effect/map_effect/window_spawner/full/reinforced/firedoor, +/obj/effect/map_effect/window_spawner/full/shuttle/raider{ + req_one_access = list(113); + spawn_firedoor = 1; + spawn_grille = 1 + }, /turf/simulated/floor/plating, /area/ihss_reclamation/crew/three) "oY" = ( @@ -3243,9 +3022,7 @@ dir = 1; color = "#ba9122" }, -/turf/simulated/floor/tiled/dark{ - temperature = 303.15 - }, +/turf/simulated/floor/tiled/dark, /area/ihss_reclamation/northhall) "pb" = ( /obj/structure/cable/green{ @@ -3255,9 +3032,7 @@ /obj/machinery/power/apc/high/north{ req_access = list(113) }, -/turf/simulated/floor/tiled/dark{ - temperature = 303.15 - }, +/turf/simulated/floor/tiled/dark, /area/ihss_reclamation/crew/six) "pe" = ( /obj/effect/floor_decal/corner/grey/diagonal, @@ -3275,9 +3050,7 @@ color = "#941307"; dir = 5 }, -/turf/simulated/floor/tiled/dark{ - temperature = 303.15 - }, +/turf/simulated/floor/tiled/dark, /area/ihss_reclamation/bridge) "ph" = ( /obj/effect/floor_decal/corner/mauve{ @@ -3290,9 +3063,10 @@ /area/ihss_reclamation/xenobot) "pi" = ( /obj/machinery/portable_atmospherics/canister/oxygen, -/turf/simulated/floor/plating{ - temperature = 303.15 +/obj/machinery/alarm/warm/east{ + req_one_access = list(113) }, +/turf/simulated/floor/plating, /area/ihss_reclamation/equipment) "pj" = ( /obj/structure/cable/green{ @@ -3304,18 +3078,14 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 6 }, -/turf/simulated/floor/tiled/dark{ - temperature = 303.15 - }, +/turf/simulated/floor/tiled/dark, /area/ihss_reclamation/crew/five) "pn" = ( /obj/machinery/power/apc/high/south{ req_access = list(113) }, /obj/structure/cable/green, -/turf/simulated/floor/tiled/dark{ - temperature = 303.15 - }, +/turf/simulated/floor/tiled/dark, /area/ihss_reclamation/southhall) "pq" = ( /obj/effect/floor_decal/industrial/warning{ @@ -3325,18 +3095,14 @@ dir = 9; icon_state = "warning" }, -/turf/simulated/floor/plating{ - temperature = 303.15 - }, +/turf/simulated/floor/plating, /area/shuttle/ihss_reclamation) "ps" = ( /obj/effect/floor_decal/corner/yellow{ color = "#ba9122"; dir = 6 }, -/turf/simulated/floor/tiled/dark{ - temperature = 303.15 - }, +/turf/simulated/floor/tiled/dark, /area/ihss_reclamation/mess) "pw" = ( /obj/structure/cable/green{ @@ -3348,15 +3114,11 @@ color = "#941307"; dir = 10 }, -/turf/simulated/floor/tiled/dark{ - temperature = 303.15 - }, +/turf/simulated/floor/tiled/dark, /area/ihss_reclamation/mess) "py" = ( /obj/structure/bed/stool/padded/red, -/turf/simulated/floor/tiled/dark{ - temperature = 303.15 - }, +/turf/simulated/floor/tiled/dark, /area/ihss_reclamation/mess) "pA" = ( /obj/machinery/mech_recharger/hephaestus, @@ -3366,9 +3128,7 @@ color = "#941307" }, /obj/effect/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/dark{ - temperature = 303.15 - }, +/turf/simulated/floor/tiled/dark, /area/ihss_reclamation/armory) "pB" = ( /obj/effect/floor_decal/corner/red/diagonal{ @@ -3383,9 +3143,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 5 }, -/turf/simulated/floor/tiled/dark{ - temperature = 303.15 - }, +/turf/simulated/floor/tiled/dark, /area/ihss_reclamation/dock) "pD" = ( /obj/effect/floor_decal/corner/red/diagonal{ @@ -3395,17 +3153,13 @@ /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 8 }, -/turf/simulated/floor/tiled/dark{ - temperature = 303.15 - }, +/turf/simulated/floor/tiled/dark, /area/ihss_reclamation/armoryfoyer) "pE" = ( /obj/machinery/light{ dir = 4 }, -/turf/simulated/floor/tiled/dark{ - temperature = 303.15 - }, +/turf/simulated/floor/tiled/dark, /area/ihss_reclamation/dock) "pG" = ( /obj/structure/cable/green{ @@ -3421,21 +3175,21 @@ dir = 1; color = "#ba9122" }, -/turf/simulated/floor/tiled/dark{ - temperature = 303.15 - }, +/turf/simulated/floor/tiled/dark, /area/ihss_reclamation/northhall) "pK" = ( /obj/item/bedsheet/red, /obj/structure/bed, /obj/structure/curtain/open/bed, -/obj/effect/ghostspawpoint{ +/obj/effect/ghostspawpoint/one_use{ name = "igs - ihss_crew"; identifier = "ihss_crew" }, -/turf/simulated/floor/tiled/dark{ - temperature = 303.15 +/obj/effect/ghostspawpoint/one_use{ + name = "igs - ihss_security"; + identifier = "ihss_security" }, +/turf/simulated/floor/tiled/dark, /area/ihss_reclamation/crew/two) "pN" = ( /obj/machinery/shipsensors/strong, @@ -3450,9 +3204,7 @@ dir = 4 }, /obj/machinery/iff_beacon/name_change, -/turf/simulated/floor/plating{ - temperature = 303.15 - }, +/turf/simulated/floor/plating, /area/shuttle/ihss_reclamation) "pP" = ( /obj/structure/window/reinforced{ @@ -3471,10 +3223,23 @@ color = "#941307"; dir = 6 }, -/turf/simulated/floor/tiled/dark{ - temperature = 303.15 - }, +/turf/simulated/floor/tiled/dark, /area/ihss_reclamation/bridge) +"pQ" = ( +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ + dir = 1 + }, +/obj/machinery/light{ + dir = 8; + icon_state = "tube_empty" + }, +/obj/effect/map_effect/marker/airlock/docking{ + landmark_tag = "nav_ihss_reclamation_dock1"; + master_tag = "airlock_reclamation_dock1"; + name = "airlock_reclamation_dock1" + }, +/turf/simulated/floor/plating, +/area/ihss_reclamation/dock) "pR" = ( /obj/structure/closet/secure_closet/guncabinet{ req_access = list(113) @@ -3499,9 +3264,7 @@ color = "#941307" }, /obj/effect/floor_decal/industrial/hatch/red, -/turf/simulated/floor/tiled/dark{ - temperature = 303.15 - }, +/turf/simulated/floor/tiled/dark, /area/ihss_reclamation/armory) "pW" = ( /obj/structure/cable/green{ @@ -3513,9 +3276,7 @@ "pX" = ( /obj/structure/table/standard, /obj/item/device/flashlight/lamp, -/turf/simulated/floor/tiled/dark{ - temperature = 303.15 - }, +/turf/simulated/floor/tiled/dark, /area/ihss_reclamation/research) "pY" = ( /obj/structure/table/rack, @@ -3535,9 +3296,7 @@ /obj/item/stack/material/glass/full, /obj/item/stack/material/aluminium/full, /obj/item/stack/material/aluminium/full, -/turf/simulated/floor/tiled/dark{ - temperature = 303.15 - }, +/turf/simulated/floor/tiled/dark, /area/ihss_reclamation/equipment) "qc" = ( /obj/machinery/vending/tool{ @@ -3545,40 +3304,36 @@ req_one_access = list(113) }, /obj/effect/floor_decal/industrial/outline/engineering, -/turf/simulated/floor/plating{ - temperature = 303.15 +/obj/machinery/light{ + dir = 4; + inserted_light = /obj/item/light/tube/colored/blue }, +/turf/simulated/floor/plating, /area/ihss_reclamation/equipment) "qg" = ( /obj/machinery/light{ dir = 8 }, -/obj/machinery/alarm/west{ - req_one_access = null +/obj/machinery/alarm/warm/west{ + req_one_access = list(113) }, /turf/simulated/floor/exoplanet/grass/moghes, /area/ihss_reclamation/envirosim) "qn" = ( /obj/structure/table/standard, -/turf/simulated/floor/tiled/dark{ - temperature = 303.15 - }, +/turf/simulated/floor/tiled/dark, /area/ihss_reclamation/crew/four) "qr" = ( /obj/machinery/atmospherics/pipe/simple/hidden/red{ dir = 10 }, -/turf/simulated/floor/plating{ - temperature = 303.15 - }, +/turf/simulated/floor/plating, /area/ihss_reclamation/equipment) "qt" = ( /obj/machinery/light{ dir = 1 }, -/turf/simulated/floor/tiled/dark{ - temperature = 303.15 - }, +/turf/simulated/floor/tiled/dark, /area/ihss_reclamation/northhall) "qu" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ @@ -3588,14 +3343,27 @@ color = "#ba9122"; dir = 6 }, -/turf/simulated/floor/tiled/dark{ - temperature = 303.15 - }, +/turf/simulated/floor/tiled/dark, /area/ihss_reclamation/mess) "qx" = ( /obj/effect/shuttle_landmark/ihss_reclamation_transit, /turf/space/transit/north, /area/space) +"qD" = ( +/obj/machinery/door/airlock/external, +/obj/machinery/access_button{ + pixel_x = 28; + pixel_y = 8; + dir = 1 + }, +/obj/effect/map_effect/marker/airlock/docking{ + landmark_tag = "nav_ihss_reclamation_dock2"; + master_tag = "airlock_reclamation_dock2"; + name = "airlock_reclamation_dock2" + }, +/obj/effect/map_effect/marker_helper/airlock/exterior, +/turf/simulated/floor/plating, +/area/ihss_reclamation/dock) "qF" = ( /obj/structure/cable/green{ icon_state = "4-8" @@ -3605,23 +3373,21 @@ }, /obj/machinery/atmospherics/pipe/manifold/hidden/supply, /obj/structure/lattice/catwalk/indoor/grate, -/turf/simulated/floor/plating{ - temperature = 303.15 - }, +/turf/simulated/floor/plating, /area/ihss_reclamation/hangar1) +"qG" = ( +/obj/machinery/firealarm/south, +/turf/simulated/floor/plating, +/area/ihss_reclamation/solars) "qH" = ( /obj/machinery/atmospherics/pipe/simple/visible/blue, -/turf/simulated/floor/plating{ - temperature = 303.15 - }, +/turf/simulated/floor/plating, /area/ihss_reclamation/atmos) "qI" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 6 }, -/turf/simulated/floor/plating{ - temperature = 303.15 - }, +/turf/simulated/floor/plating, /area/ihss_reclamation/atmos) "qL" = ( /obj/structure/cable/green{ @@ -3631,15 +3397,16 @@ dir = 8; icon_state = "term" }, +/obj/structure/bed/handrail{ + dir = 1 + }, /turf/simulated/floor, /area/shuttle/ihss_reclamation) "qN" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 1 }, -/turf/simulated/floor/tiled/dark{ - temperature = 303.15 - }, +/turf/simulated/floor/tiled/dark, /area/ihss_reclamation/mess) "qP" = ( /obj/machinery/power/portgen/basic/fusion, @@ -3648,6 +3415,13 @@ }, /turf/simulated/floor/greengrid, /area/ihss_reclamation/solars) +"qR" = ( +/obj/machinery/cryopod/living_quarters, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/dark{ + temperature = 278.15 + }, +/area/ihss_reclamation/hangarhall) "qS" = ( /obj/structure/lattice/catwalk, /obj/structure/railing/mapped{ @@ -3656,9 +3430,7 @@ /turf/template_noop, /area/ihss_reclamation/bridge) "qT" = ( -/turf/simulated/floor/tiled/dark{ - temperature = 303.15 - }, +/turf/simulated/floor/tiled/dark, /area/ihss_reclamation/crew/six) "qW" = ( /obj/effect/floor_decal/corner/mauve{ @@ -3675,20 +3447,15 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/door/airlock/engineering{ - name = "Solars" - }, -/obj/machinery/door/firedoor/noid{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark{ - temperature = 303.15 + name = "Solars"; + req_access = list(113) }, +/obj/machinery/door/firedoor/noid, +/turf/simulated/floor/tiled/dark, /area/ihss_reclamation/northhall) "qZ" = ( /obj/structure/bed/stool/chair/office/bridge/generic, -/turf/simulated/floor/tiled/dark{ - temperature = 303.15 - }, +/turf/simulated/floor/tiled/dark, /area/ihss_reclamation/bridge) "rc" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -3702,9 +3469,7 @@ color = "#941307" }, /obj/structure/bed/handrail, -/turf/simulated/floor/tiled/dark{ - temperature = 303.15 - }, +/turf/simulated/floor/tiled/dark, /area/shuttle/ihss_reclamation) "re" = ( /obj/effect/floor_decal/corner/red/diagonal{ @@ -3717,9 +3482,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 8 }, -/turf/simulated/floor/tiled/dark{ - temperature = 303.15 - }, +/turf/simulated/floor/tiled/dark, /area/ihss_reclamation/armoryfoyer) "rf" = ( /obj/machinery/atmospherics/binary/pump/on{ @@ -3729,26 +3492,40 @@ /obj/machinery/light{ dir = 4 }, -/turf/simulated/floor/plating{ - temperature = 303.15 - }, +/turf/simulated/floor/plating, /area/ihss_reclamation/atmos) "rg" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 4 }, -/turf/simulated/floor/tiled/dark{ - temperature = 303.15 - }, +/turf/simulated/floor/tiled/dark, /area/ihss_reclamation/easthall) +"ri" = ( +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ + dir = 8 + }, +/obj/machinery/embedded_controller/radio/airlock/docking_port{ + dir = 2; + pixel_y = 28; + pixel_x = -6 + }, +/obj/machinery/airlock_sensor{ + pixel_x = 6; + pixel_y = 28 + }, +/obj/effect/map_effect/marker/airlock/docking{ + landmark_tag = "nav_ihss_reclamation_dock4"; + master_tag = "airlock_reclamation_dock4"; + name = "airlock_reclamation_dock4" + }, +/turf/simulated/floor/plating, +/area/ihss_reclamation/dock) "rk" = ( /obj/structure/bed/stool/chair/office/dark, /obj/machinery/light{ dir = 4 }, -/turf/simulated/floor/tiled/dark{ - temperature = 303.15 - }, +/turf/simulated/floor/tiled/dark, /area/ihss_reclamation/crew/two) "rp" = ( /obj/effect/floor_decal/corner/red/diagonal{ @@ -3760,9 +3537,15 @@ pixel_x = -25; pixel_y = -6 }, -/turf/simulated/floor/tiled/dark{ - temperature = 303.15 +/obj/effect/map_effect/marker/airlock/shuttle{ + master_tag = "airlock_reclamation_shuttle"; + name = "airlock_reclamation_shuttle"; + req_one_access = list(113); + shuttle_tag = "IHSS Reclamation Shuttle"; + cycle_to_external_air = 1 }, +/obj/effect/map_effect/marker_helper/airlock/interior, +/turf/simulated/floor/tiled/dark, /area/shuttle/ihss_reclamation) "rq" = ( /obj/effect/floor_decal/corner/red/diagonal{ @@ -3782,21 +3565,15 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, -/turf/simulated/floor/tiled/dark{ - temperature = 303.15 - }, +/turf/simulated/floor/tiled/dark, /area/ihss_reclamation/dock) "rt" = ( /obj/machinery/atmospherics/pipe/simple/hidden/universal, -/turf/simulated/floor/plating{ - temperature = 303.15 - }, +/turf/simulated/floor/plating, /area/ihss_reclamation/equipment) "rz" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on, -/turf/simulated/floor/tiled/dark{ - temperature = 303.15 - }, +/turf/simulated/floor/tiled/dark, /area/ihss_reclamation/northhall) "rA" = ( /obj/effect/map_effect/marker/airlock/docking{ @@ -3804,14 +3581,18 @@ master_tag = "airlock_reclamation_dock4"; name = "airlock_reclamation_dock4" }, -/turf/simulated/floor/plating{ - temperature = 303.15 - }, +/turf/simulated/floor/plating, /area/ihss_reclamation/dock) "rD" = ( /obj/effect/floor_decal/corner/mauve/full{ dir = 4 }, +/obj/structure/cargo_receptacle{ + override_name = "IHSS Reclamation - Research and Development"; + payment_modifier = 0.7; + min_spawn = 1; + max_spawn = 2 + }, /turf/simulated/floor/tiled/white{ temperature = 303.15 }, @@ -3844,9 +3625,7 @@ /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 8 }, -/turf/simulated/floor/tiled/dark{ - temperature = 303.15 - }, +/turf/simulated/floor/tiled/dark, /area/ihss_reclamation/dock) "rQ" = ( /obj/structure/window/reinforced, @@ -3863,9 +3642,7 @@ color = "#ba9122"; dir = 6 }, -/turf/simulated/floor/tiled/dark{ - temperature = 303.15 - }, +/turf/simulated/floor/tiled/dark, /area/ihss_reclamation/bridge) "rS" = ( /obj/machinery/portable_atmospherics/hydroponics/soil, @@ -3882,22 +3659,16 @@ /obj/structure/cable/green{ icon_state = "1-2" }, -/turf/simulated/floor/tiled/dark{ - temperature = 303.15 - }, +/turf/simulated/floor/tiled/dark, /area/ihss_reclamation/armory) "sa" = ( /obj/machinery/atmospherics/binary/pump/high_power, /obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/plating{ - temperature = 303.15 - }, +/turf/simulated/floor/plating, /area/ihss_reclamation/fuel) "sf" = ( /obj/structure/closet/hazmat/custodial, -/turf/simulated/floor/tiled/dark{ - temperature = 303.15 - }, +/turf/simulated/floor/tiled/dark, /area/ihss_reclamation/southhall) "sg" = ( /turf/simulated/wall/shuttle/raider, @@ -3911,9 +3682,7 @@ dir = 1 }, /obj/structure/bed/stool/chair/padded/beige, -/turf/simulated/floor/tiled/dark{ - temperature = 303.15 - }, +/turf/simulated/floor/tiled/dark, /area/ihss_reclamation/armoryfoyer) "sj" = ( /obj/structure/table/rack, @@ -3922,12 +3691,11 @@ /obj/item/device/spaceflare, /obj/item/device/spaceflare, /obj/item/device/spaceflare, -/turf/simulated/floor/tiled/dark{ - temperature = 303.15 - }, +/turf/simulated/floor/tiled/dark, /area/ihss_reclamation/storage) "sl" = ( /obj/effect/floor_decal/corner/mauve/full, +/obj/machinery/firealarm/west, /turf/simulated/floor/tiled/white{ temperature = 303.15 }, @@ -3950,9 +3718,7 @@ color = "#941307" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/dark{ - temperature = 303.15 - }, +/turf/simulated/floor/tiled/dark, /area/ihss_reclamation/armoryfoyer) "ss" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -3982,13 +3748,19 @@ temperature = 303.15 }, /area/ihss_reclamation/plantroom) +"sD" = ( +/obj/machinery/firealarm/west, +/turf/simulated/floor/tiled/dark, +/area/ihss_reclamation/northhall) +"sE" = ( +/obj/machinery/firealarm/west, +/turf/simulated/floor/tiled/dark, +/area/ihss_reclamation/easthall) "sF" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 6 }, -/turf/simulated/floor/tiled/dark{ - temperature = 303.15 - }, +/turf/simulated/floor/tiled/dark, /area/ihss_reclamation/northhall) "sH" = ( /obj/effect/floor_decal/corner/lime{ @@ -4004,9 +3776,7 @@ dir = 4; icon_state = "map-scrubbers" }, -/turf/simulated/floor/plating{ - temperature = 303.15 - }, +/turf/simulated/floor/plating, /area/ihss_reclamation/atmos) "sN" = ( /obj/machinery/air_sensor{ @@ -4030,17 +3800,14 @@ color = "#ba9122"; dir = 10 }, -/turf/simulated/floor/tiled/dark{ - temperature = 303.15 - }, +/turf/simulated/floor/tiled/dark, /area/ihss_reclamation/bridge) "sQ" = ( +/obj/machinery/firealarm/south, /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 8 }, -/turf/simulated/floor/plating{ - temperature = 303.15 - }, +/turf/simulated/floor/plating, /area/ihss_reclamation/equipment) "sR" = ( /obj/structure/cable/green{ @@ -4057,16 +3824,14 @@ /obj/machinery/power/apc/high/north{ req_access = list(113) }, -/turf/simulated/floor/tiled/dark{ - temperature = 303.15 - }, +/turf/simulated/floor/tiled/dark, /area/ihss_reclamation/bridge) "sS" = ( /obj/effect/floor_decal/corner/mauve{ dir = 5 }, -/obj/machinery/alarm/north{ - req_one_access = null +/obj/machinery/alarm/warm/north{ + req_one_access = list(113) }, /turf/simulated/floor/tiled/white{ temperature = 303.15 @@ -4085,21 +3850,21 @@ dir = 1; color = "#ba9122" }, -/turf/simulated/floor/tiled/dark{ - temperature = 303.15 - }, +/turf/simulated/floor/tiled/dark, /area/ihss_reclamation/northhall) "sV" = ( /obj/item/bedsheet/red, /obj/structure/bed, /obj/structure/curtain/open/bed, -/obj/effect/ghostspawpoint{ +/obj/effect/ghostspawpoint/one_use{ name = "igs - ihss_crew"; identifier = "ihss_crew" }, -/turf/simulated/floor/tiled/dark{ - temperature = 303.15 +/obj/effect/ghostspawpoint/one_use{ + name = "igs - ihss_security"; + identifier = "ihss_security" }, +/turf/simulated/floor/tiled/dark, /area/ihss_reclamation/crew/five) "sX" = ( /obj/machinery/door/airlock/glass_mining{ @@ -4117,9 +3882,10 @@ dir = 4 }, /obj/structure/lattice/catwalk/indoor/grate, -/turf/simulated/floor/plating{ - temperature = 303.15 +/obj/machinery/door/firedoor/noid{ + dir = 4 }, +/turf/simulated/floor/plating, /area/ihss_reclamation/storage) "sY" = ( /obj/structure/cable/green{ @@ -4129,9 +3895,7 @@ /obj/machinery/power/apc/high/north{ req_access = list(113) }, -/turf/simulated/floor/tiled/dark{ - temperature = 303.15 - }, +/turf/simulated/floor/tiled/dark, /area/ihss_reclamation/crew/two) "ta" = ( /obj/structure/cable/green{ @@ -4142,9 +3906,7 @@ }, /obj/effect/floor_decal/industrial/hatch/red, /obj/machinery/power/smes/buildable/third_party_shuttle, -/turf/simulated/floor/plating{ - temperature = 303.15 - }, +/turf/simulated/floor/plating, /area/ihss_reclamation/solars) "te" = ( /obj/effect/floor_decal/corner/yellow/diagonal{ @@ -4155,24 +3917,20 @@ dir = 4; color = "#941307" }, -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 6 +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden{ dir = 4 }, -/turf/simulated/floor/tiled/dark{ - temperature = 303.15 - }, +/turf/simulated/floor/tiled/dark, /area/ihss_reclamation/dock) "tf" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 8 }, -/turf/simulated/floor/tiled/dark{ - temperature = 303.15 - }, +/turf/simulated/floor/tiled/dark, /area/ihss_reclamation/westhall) "th" = ( /obj/effect/floor_decal/corner/mauve{ @@ -4232,9 +3990,7 @@ /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 8 }, -/turf/simulated/floor/tiled/dark{ - temperature = 303.15 - }, +/turf/simulated/floor/tiled/dark, /area/ihss_reclamation/hangarhall) "ts" = ( /obj/structure/cable/green{ @@ -4250,9 +4006,28 @@ dir = 8 }, /obj/structure/lattice/catwalk/indoor/grate, -/turf/simulated/floor/plating{ - temperature = 303.15 +/turf/simulated/floor/plating, +/area/ihss_reclamation/hangar1) +"tu" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/tiled/dark, +/area/ihss_reclamation/dock) +"tz" = ( +/obj/structure/cable/green{ + icon_state = "1-2" }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/lattice/catwalk/indoor/grate, +/obj/machinery/embedded_controller/radio/simple_docking_controller{ + dir = 8; + pixel_x = 24; + id_tag = "reclamation_hangar"; + name = "Hangar Docking Controller"; + req_access = list(113); + frequency = 1380 + }, +/turf/simulated/floor/plating, /area/ihss_reclamation/hangar1) "tD" = ( /obj/effect/map_effect/map_helper/ruler_tiles_3, @@ -4265,9 +4040,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 9 }, -/turf/simulated/floor/plating{ - temperature = 303.15 - }, +/turf/simulated/floor/plating, /area/ihss_reclamation/atmos) "tM" = ( /obj/effect/floor_decal/corner/yellow{ @@ -4278,17 +4051,13 @@ color = "#ba9122"; dir = 5 }, -/turf/simulated/floor/tiled/dark{ - temperature = 303.15 - }, +/turf/simulated/floor/tiled/dark, /area/ihss_reclamation/bridge) "tQ" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 8 }, -/turf/simulated/floor/tiled/dark{ - temperature = 303.15 - }, +/turf/simulated/floor/tiled/dark, /area/ihss_reclamation/dock) "tR" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -4296,12 +4065,8 @@ name = "Bridge"; req_access = list(113) }, -/obj/machinery/door/firedoor/noid{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark{ - temperature = 303.15 - }, +/obj/machinery/door/firedoor/noid, +/turf/simulated/floor/tiled/dark, /area/ihss_reclamation/bridge) "tS" = ( /obj/machinery/light{ @@ -4311,9 +4076,7 @@ /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 4 }, -/turf/simulated/floor/tiled/dark{ - temperature = 303.15 - }, +/turf/simulated/floor/tiled/dark, /area/ihss_reclamation/dock) "tU" = ( /obj/machinery/atmospherics/pipe/simple/visible/purple, @@ -4323,15 +4086,11 @@ /obj/structure/cable/green{ icon_state = "4-8" }, -/turf/simulated/floor/plating{ - temperature = 303.15 - }, +/turf/simulated/floor/plating, /area/ihss_reclamation/fuel) "tV" = ( /obj/structure/bed/stool/chair/office/dark, -/turf/simulated/floor/tiled/dark{ - temperature = 303.15 - }, +/turf/simulated/floor/tiled/dark, /area/ihss_reclamation/crew/three) "tX" = ( /obj/machinery/atmospherics/pipe/simple/visible{ @@ -4342,12 +4101,10 @@ }, /area/ihss_reclamation/plantroom) "tZ" = ( -/obj/machinery/alarm/north{ - req_one_access = null - }, -/turf/simulated/floor/tiled/dark{ - temperature = 303.15 +/obj/machinery/alarm/warm/north{ + req_one_access = list(113) }, +/turf/simulated/floor/tiled/dark, /area/ihss_reclamation/southhall) "ud" = ( /obj/structure/cable/green{ @@ -4368,9 +4125,7 @@ /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 1 }, -/turf/simulated/floor/tiled/dark{ - temperature = 303.15 - }, +/turf/simulated/floor/tiled/dark, /area/ihss_reclamation/bridge) "uh" = ( /obj/effect/shuttle_landmark/nav_ihss_reclamation/nav2, @@ -4396,9 +4151,7 @@ /obj/structure/cable/green{ icon_state = "2-4" }, -/turf/simulated/floor/tiled/dark{ - temperature = 303.15 - }, +/turf/simulated/floor/tiled/dark, /area/ihss_reclamation/northhall) "ur" = ( /obj/structure/cable/green{ @@ -4413,9 +4166,7 @@ dir = 1; color = "#ba9122" }, -/turf/simulated/floor/tiled/dark{ - temperature = 303.15 - }, +/turf/simulated/floor/tiled/dark, /area/ihss_reclamation/easthall) "us" = ( /obj/machinery/light, @@ -4428,9 +4179,7 @@ /obj/structure/cable/green{ icon_state = "4-8" }, -/turf/simulated/floor/tiled/dark{ - temperature = 303.15 - }, +/turf/simulated/floor/tiled/dark, /area/ihss_reclamation/storage) "uy" = ( /obj/structure/cable/green{ @@ -4439,16 +4188,17 @@ /obj/machinery/power/apc/high/north{ req_access = list(113) }, -/turf/simulated/floor/tiled/dark{ - temperature = 303.15 - }, +/turf/simulated/floor/tiled/dark, /area/ihss_reclamation/northhall) "uA" = ( /obj/machinery/door/blast/regular/open{ name = "Hazardous Specimen Containment"; id = "ihss_biglizard" }, -/obj/effect/map_effect/window_spawner/full/reinforced, +/obj/machinery/door/firedoor/noid, +/obj/structure/chainlink_fence{ + desc_extended = "There is an electrical hazard sign on the fence, but the electricity has been cut from it for some time." + }, /turf/simulated/floor/exoplanet/grass/moghes/dirt{ icon_state = "edge" }, @@ -4460,9 +4210,7 @@ /obj/machinery/power/solar_control/autostart{ dir = 1 }, -/turf/simulated/floor/plating{ - temperature = 303.15 - }, +/turf/simulated/floor/plating, /area/ihss_reclamation/solars) "uF" = ( /obj/effect/floor_decal/corner/red/diagonal{ @@ -4472,15 +4220,11 @@ /obj/effect/floor_decal/industrial/loading/yellow{ dir = 8 }, -/turf/simulated/floor/tiled/dark{ - temperature = 303.15 - }, +/turf/simulated/floor/tiled/dark, /area/shuttle/ihss_reclamation) "uJ" = ( /obj/random/dirt_75, -/turf/simulated/floor/tiled/dark{ - temperature = 303.15 - }, +/turf/simulated/floor/tiled/dark, /area/ihss_reclamation/southhall) "uL" = ( /turf/simulated/wall/shuttle/raider, @@ -4489,9 +4233,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/fuel{ dir = 8 }, -/turf/simulated/floor/plating{ - temperature = 303.15 - }, +/turf/simulated/floor/plating, /area/ihss_reclamation/hangar1) "uP" = ( /obj/structure/cable{ @@ -4506,10 +4248,11 @@ req_one_access = list(113); dir = 1 }, -/obj/machinery/atmospherics/pipe/simple/hidden, -/turf/simulated/floor/plating{ - temperature = 303.15 +/obj/machinery/atmospherics/pipe/simple/hidden/aux{ + dir = 1 }, +/obj/machinery/door/firedoor/noid, +/turf/simulated/floor/plating, /area/shuttle/ihss_reclamation) "uQ" = ( /obj/structure/cable{ @@ -4522,19 +4265,17 @@ /obj/machinery/power/apc/high/north{ req_access = list(113) }, -/obj/machinery/alarm/north{ - req_one_access = null - }, -/turf/simulated/floor/tiled/dark{ - temperature = 303.15 +/obj/machinery/alarm/warm/north{ + req_one_access = list(113) }, +/turf/simulated/floor/tiled/dark, /area/shuttle/ihss_reclamation) "uR" = ( /obj/effect/floor_decal/corner/mauve{ dir = 10 }, -/obj/machinery/alarm/south{ - req_one_access = null +/obj/machinery/alarm/warm/south{ + req_one_access = list(113) }, /turf/simulated/floor/tiled/white{ temperature = 303.15 @@ -4556,19 +4297,30 @@ dir = 4 }, /area/ihss_reclamation/envirosim) +"va" = ( +/obj/effect/floor_decal/corner/red{ + color = "#941307"; + dir = 4 + }, +/obj/effect/floor_decal/corner/yellow{ + color = "#ba9122" + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/ihss_reclamation/dock) "vb" = ( /obj/structure/cable/green{ icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/alarm/east{ - req_one_access = null +/obj/machinery/alarm/warm/east{ + req_one_access = list(113) }, /obj/structure/lattice/catwalk/indoor/grate, -/turf/simulated/floor/plating{ - temperature = 303.15 - }, +/turf/simulated/floor/plating, /area/ihss_reclamation/hangar1) "ve" = ( /obj/machinery/airlock_sensor{ @@ -4587,9 +4339,7 @@ /obj/machinery/atmospherics/unary/vent_pump/high_volume{ dir = 4 }, -/turf/simulated/floor/plating{ - temperature = 303.15 - }, +/turf/simulated/floor/plating, /area/ihss_reclamation/southhall) "vh" = ( /turf/simulated/floor/exoplanet/grass/moghes, @@ -4618,9 +4368,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 10 }, -/turf/simulated/floor/tiled/dark{ - temperature = 303.15 - }, +/turf/simulated/floor/tiled/dark, /area/ihss_reclamation/hangarhall) "vl" = ( /obj/structure/closet/secure_closet/guncabinet{ @@ -4650,23 +4398,30 @@ /obj/item/recharger_backpack/high, /obj/item/recharger_backpack/high, /obj/item/recharger_backpack/high, -/turf/simulated/floor/tiled/dark{ - temperature = 303.15 - }, +/turf/simulated/floor/tiled/dark, /area/ihss_reclamation/armory) +"vm" = ( +/obj/effect/floor_decal/corner/red/diagonal{ + dir = 4; + color = "#941307" + }, +/obj/effect/floor_decal/corner/yellow/diagonal{ + dir = 1; + color = "#ba9122" + }, +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/dark, +/area/ihss_reclamation/dock) "vo" = ( /obj/machinery/pipedispenser, -/turf/simulated/floor/tiled/dark{ - temperature = 303.15 - }, +/turf/simulated/floor/tiled/dark, /area/ihss_reclamation/equipment) "vr" = ( /obj/machinery/atmospherics/pipe/simple/hidden{ dir = 10 }, -/turf/simulated/floor/tiled/dark{ - temperature = 303.15 - }, +/turf/simulated/floor/tiled/dark, /area/ihss_reclamation/dock) "vx" = ( /obj/structure/table/rack, @@ -4681,26 +4436,20 @@ color = "#941307" }, /obj/effect/floor_decal/industrial/hatch/red, -/turf/simulated/floor/tiled/dark{ - temperature = 303.15 - }, +/turf/simulated/floor/tiled/dark, /area/ihss_reclamation/armory) "vz" = ( /obj/structure/cable/green{ icon_state = "4-8" }, -/turf/simulated/floor/plating{ - temperature = 303.15 - }, +/turf/simulated/floor/plating, /area/ihss_reclamation/solars) "vB" = ( /obj/effect/floor_decal/corner/red{ color = "#941307"; dir = 8 }, -/turf/simulated/floor/tiled/dark{ - temperature = 303.15 - }, +/turf/simulated/floor/tiled/dark, /area/ihss_reclamation/bridge) "vD" = ( /obj/machinery/air_sensor{ @@ -4728,9 +4477,10 @@ }, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, /obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/turf/simulated/floor/tiled/dark{ - temperature = 303.15 +/obj/structure/cable/green{ + icon_state = "1-2" }, +/turf/simulated/floor/tiled/dark, /area/ihss_reclamation/northhall) "vG" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -4747,14 +4497,10 @@ dir = 1; color = "#ba9122" }, -/turf/simulated/floor/tiled/dark{ - temperature = 303.15 - }, +/turf/simulated/floor/tiled/dark, /area/ihss_reclamation/northhall) "vI" = ( -/turf/simulated/floor/tiled/dark{ - temperature = 303.15 - }, +/turf/simulated/floor/tiled/dark, /area/ihss_reclamation/crew/three) "vK" = ( /obj/structure/lattice/catwalk, @@ -4774,9 +4520,7 @@ color = "#941307"; dir = 9 }, -/turf/simulated/floor/tiled/dark{ - temperature = 303.15 - }, +/turf/simulated/floor/tiled/dark, /area/ihss_reclamation/mess) "vS" = ( /obj/structure/cable/green{ @@ -4797,25 +4541,21 @@ dir = 1; color = "#ba9122" }, -/obj/machinery/door/firedoor/noid, -/turf/simulated/floor/tiled/dark{ - temperature = 303.15 +/obj/machinery/door/firedoor/noid{ + dir = 4 }, +/turf/simulated/floor/tiled/dark, /area/ihss_reclamation/westhall) "vV" = ( /obj/effect/floor_decal/corner/yellow{ color = "#ba9122"; dir = 5 }, -/turf/simulated/floor/tiled/dark{ - temperature = 303.15 - }, +/turf/simulated/floor/tiled/dark, /area/ihss_reclamation/mess) "vX" = ( /obj/structure/table/standard, -/turf/simulated/floor/tiled/dark{ - temperature = 303.15 - }, +/turf/simulated/floor/tiled/dark, /area/ihss_reclamation/crew/two) "vY" = ( /obj/effect/floor_decal/corner/mauve{ @@ -4835,18 +4575,21 @@ color = "#941307" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/dark{ - temperature = 303.15 - }, +/turf/simulated/floor/tiled/dark, /area/ihss_reclamation/dock) +"wb" = ( +/obj/machinery/atmospherics/pipe/simple/visible/universal{ + dir = 4 + }, +/obj/structure/bed/handrail, +/turf/simulated/floor, +/area/shuttle/ihss_reclamation) "wg" = ( /obj/effect/floor_decal/corner/yellow/full{ color = "#ba9122"; dir = 1 }, -/turf/simulated/floor/tiled/dark{ - temperature = 303.15 - }, +/turf/simulated/floor/tiled/dark, /area/ihss_reclamation/mess) "wk" = ( /obj/effect/floor_decal/corner/red/diagonal{ @@ -4854,23 +4597,17 @@ color = "#941307" }, /obj/structure/dispenser/oxygen, -/turf/simulated/floor/tiled/dark{ - temperature = 303.15 - }, +/turf/simulated/floor/tiled/dark, /area/ihss_reclamation/armory) "wl" = ( /obj/machinery/atmospherics/pipe/simple/visible/purple, -/turf/simulated/floor/plating{ - temperature = 303.15 - }, +/turf/simulated/floor/plating, /area/ihss_reclamation/fuel) "wn" = ( /obj/machinery/light{ dir = 8 }, -/turf/simulated/floor/plating{ - temperature = 303.15 - }, +/turf/simulated/floor/plating, /area/ihss_reclamation/hangar1) "wp" = ( /obj/effect/landmark/entry_point/starboard{ @@ -4899,9 +4636,7 @@ name = "airlock_reclamation_dock3" }, /obj/effect/map_effect/marker_helper/airlock/interior, -/turf/simulated/floor/plating{ - temperature = 303.15 - }, +/turf/simulated/floor/plating, /area/ihss_reclamation/dock) "wx" = ( /obj/machinery/computer/ship/helm, @@ -4909,10 +4644,14 @@ dir = 4; color = "#941307" }, -/turf/simulated/floor/tiled/dark{ - temperature = 303.15 - }, +/turf/simulated/floor/tiled/dark, /area/shuttle/ihss_reclamation) +"wy" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/ihss_reclamation/dock) "wz" = ( /obj/structure/cable/green{ icon_state = "1-4" @@ -4923,9 +4662,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 6 }, -/turf/simulated/floor/tiled/dark{ - temperature = 303.15 - }, +/turf/simulated/floor/tiled/dark, /area/ihss_reclamation/crew/seven) "wD" = ( /obj/machinery/vending/engineering{ @@ -4933,9 +4670,7 @@ req_one_access = list(113) }, /obj/effect/floor_decal/industrial/outline/engineering, -/turf/simulated/floor/plating{ - temperature = 303.15 - }, +/turf/simulated/floor/plating, /area/ihss_reclamation/equipment) "wE" = ( /obj/structure/disposaloutlet{ @@ -4949,10 +4684,12 @@ dir = 1 }, /area/ihss_reclamation/envirosim) +"wG" = ( +/obj/machinery/firealarm/east, +/turf/simulated/floor/tiled/dark, +/area/ihss_reclamation/hangarhall) "wJ" = ( -/turf/simulated/floor/tiled/dark{ - temperature = 303.15 - }, +/turf/simulated/floor/tiled/dark, /area/ihss_reclamation/bridge) "wK" = ( /turf/simulated/floor/reinforced/carbon_dioxide, @@ -4962,9 +4699,7 @@ dir = 4; icon_state = "map_scrubber_on" }, -/turf/simulated/floor/plating{ - temperature = 303.15 - }, +/turf/simulated/floor/plating, /area/ihss_reclamation/atmos) "wR" = ( /obj/structure/cable/green{ @@ -4973,17 +4708,19 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 8 }, -/turf/simulated/floor/tiled/dark{ - temperature = 303.15 - }, +/turf/simulated/floor/tiled/dark, /area/ihss_reclamation/crew) +"wZ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/aux{ + dir = 6 + }, +/turf/simulated/floor, +/area/shuttle/ihss_reclamation) "xa" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 1 }, -/turf/simulated/floor/tiled/dark{ - temperature = 303.15 - }, +/turf/simulated/floor/tiled/dark, /area/ihss_reclamation/southhall) "xb" = ( /obj/effect/shuttle_landmark/nav_ihss_reclamation/nav4, @@ -5004,10 +4741,10 @@ req_access = list(113); dir = 4 }, -/obj/machinery/door/firedoor/noid, -/turf/simulated/floor/tiled/dark{ - temperature = 303.15 +/obj/machinery/door/firedoor/noid{ + dir = 4 }, +/turf/simulated/floor/tiled/dark, /area/ihss_reclamation/northhall) "xd" = ( /obj/structure/cable/green{ @@ -5023,25 +4760,27 @@ dir = 1; color = "#ba9122" }, -/turf/simulated/floor/tiled/dark{ - temperature = 303.15 - }, +/turf/simulated/floor/tiled/dark, /area/ihss_reclamation/crew) "xg" = ( /obj/machinery/atmospherics/portables_connector{ dir = 1 }, -/obj/machinery/portable_atmospherics/canister/air/airlock, +/obj/machinery/portable_atmospherics/canister/air/warm{ + start_pressure = 1000 + }, /obj/structure/window/reinforced, /obj/machinery/door/window/northleft, /obj/structure/window/reinforced{ dir = 8; icon_state = "rwindow" }, -/turf/simulated/floor/tiled/dark{ - temperature = 303.15 - }, +/turf/simulated/floor/tiled/dark, /area/ihss_reclamation/dock) +"xi" = ( +/obj/machinery/firealarm/north, +/turf/simulated/floor/exoplanet/grass/moghes/dirt/beach, +/area/ihss_reclamation/envirosim) "xk" = ( /obj/structure/cable/green{ icon_state = "4-8" @@ -5057,22 +4796,30 @@ dir = 1; color = "#ba9122" }, -/turf/simulated/floor/tiled/dark{ - temperature = 303.15 - }, +/turf/simulated/floor/tiled/dark, /area/ihss_reclamation/westhall) "xp" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 4 }, /obj/structure/bed/stool/padded/red, -/turf/simulated/floor/tiled/dark{ - temperature = 303.15 - }, +/turf/simulated/floor/tiled/dark, /area/ihss_reclamation/mess) "xx" = ( /turf/simulated/wall/shuttle/raider, /area/ihss_reclamation/storage) +"xA" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/lattice/catwalk/indoor/grate, +/obj/structure/cable/green{ + icon_state = "2-4" + }, +/turf/simulated/floor/plating, +/area/ihss_reclamation/hangar1) "xB" = ( /obj/structure/window/reinforced, /obj/machinery/computer/ship/sensors{ @@ -5082,30 +4829,22 @@ color = "#ba9122"; dir = 10 }, -/turf/simulated/floor/tiled/dark{ - temperature = 303.15 - }, +/turf/simulated/floor/tiled/dark, /area/ihss_reclamation/bridge) "xE" = ( /turf/simulated/wall/shuttle/raider, /area/ihss_reclamation/crew/five) "xF" = ( /obj/machinery/atmospherics/pipe/simple/visible/yellow, -/turf/simulated/floor/plating{ - temperature = 303.15 - }, +/turf/simulated/floor/plating, /area/ihss_reclamation/fuel) "xG" = ( /obj/structure/table/standard, -/turf/simulated/floor/tiled/dark{ - temperature = 303.15 - }, +/turf/simulated/floor/tiled/dark, /area/ihss_reclamation/crew/five) "xH" = ( /obj/structure/closet/secure_closet/custodial/offship, -/turf/simulated/floor/tiled/dark{ - temperature = 303.15 - }, +/turf/simulated/floor/tiled/dark, /area/ihss_reclamation/southhall) "xK" = ( /obj/structure/cable/green{ @@ -5114,9 +4853,7 @@ /obj/machinery/power/apc/high/east{ req_access = list(113) }, -/turf/simulated/floor/tiled/dark{ - temperature = 303.15 - }, +/turf/simulated/floor/tiled/dark, /area/ihss_reclamation/easthall) "xM" = ( /obj/structure/cable/green{ @@ -5135,9 +4872,7 @@ /obj/structure/cable/green{ icon_state = "1-4" }, -/turf/simulated/floor/tiled/dark{ - temperature = 303.15 - }, +/turf/simulated/floor/tiled/dark, /area/ihss_reclamation/northhall) "xN" = ( /obj/effect/floor_decal/corner/red/diagonal{ @@ -5148,9 +4883,7 @@ dir = 1; color = "#ba9122" }, -/turf/simulated/floor/tiled/dark{ - temperature = 303.15 - }, +/turf/simulated/floor/tiled/dark, /area/ihss_reclamation/easthall) "xR" = ( /obj/structure/cable/green{ @@ -5180,16 +4913,14 @@ dir = 4 }, /obj/effect/map_effect/marker/airlock/shuttle{ - cycle_to_external_air = 1; master_tag = "airlock_reclamation_shuttle"; name = "airlock_reclamation_shuttle"; req_one_access = list(113); - shuttle_tag = "IHSS Reclamation Shuttle" + shuttle_tag = "IHSS Reclamation Shuttle"; + cycle_to_external_air = 1 }, /obj/effect/map_effect/marker_helper/airlock/exterior, -/turf/simulated/floor/plating{ - temperature = 303.15 - }, +/turf/simulated/floor/plating, /area/shuttle/ihss_reclamation) "xT" = ( /obj/structure/cable/green{ @@ -5203,10 +4934,25 @@ dir = 1; color = "#ba9122" }, -/turf/simulated/floor/tiled/dark{ - temperature = 303.15 - }, +/turf/simulated/floor/tiled/dark, /area/ihss_reclamation/easthall) +"xU" = ( +/obj/effect/floor_decal/corner/yellow/diagonal{ + dir = 1; + color = "#ba9122" + }, +/obj/effect/floor_decal/corner/red/diagonal{ + dir = 4; + color = "#941307" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/turf/simulated/floor/tiled/dark, +/area/ihss_reclamation/dock) "xV" = ( /obj/structure/cable/green{ icon_state = "4-8" @@ -5228,9 +4974,7 @@ /obj/structure/cable/green{ icon_state = "2-8" }, -/turf/simulated/floor/tiled/dark{ - temperature = 303.15 - }, +/turf/simulated/floor/tiled/dark, /area/ihss_reclamation/southhall) "xX" = ( /obj/effect/floor_decal/corner/grey/diagonal, @@ -5264,9 +5008,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 8 }, -/turf/simulated/floor/tiled/dark{ - temperature = 303.15 - }, +/turf/simulated/floor/tiled/dark, /area/ihss_reclamation/southhall) "ye" = ( /obj/structure/table/standard, @@ -5275,18 +5017,14 @@ }, /obj/item/paper_bin, /obj/item/pen/black, -/turf/simulated/floor/tiled/dark{ - temperature = 303.15 - }, +/turf/simulated/floor/tiled/dark, /area/ihss_reclamation/bridge) "yf" = ( /obj/effect/floor_decal/corner/red{ color = "#941307"; dir = 9 }, -/turf/simulated/floor/tiled/dark{ - temperature = 303.15 - }, +/turf/simulated/floor/tiled/dark, /area/ihss_reclamation/bridge) "yg" = ( /obj/machinery/atmospherics/pipe/simple/hidden/fuel{ @@ -5307,9 +5045,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 8 }, -/turf/simulated/floor/tiled/dark{ - temperature = 303.15 - }, +/turf/simulated/floor/tiled/dark, /area/ihss_reclamation/hangarhall) "yi" = ( /obj/machinery/computer/general_air_control/large_tank_control{ @@ -5318,9 +5054,7 @@ output_tag = "ihss_h2_out"; sensors = list("h_sensor"="Tank") }, -/turf/simulated/floor/plating{ - temperature = 303.15 - }, +/turf/simulated/floor/plating, /area/ihss_reclamation/fuel) "yj" = ( /obj/machinery/atmospherics/pipe/manifold/visible/yellow{ @@ -5332,9 +5066,7 @@ /obj/machinery/power/apc/high/west{ req_access = list(113) }, -/turf/simulated/floor/plating{ - temperature = 303.15 - }, +/turf/simulated/floor/plating, /area/ihss_reclamation/fuel) "ym" = ( /obj/structure/cable/green{ @@ -5351,26 +5083,20 @@ /obj/machinery/power/apc/high/east{ req_access = list(113) }, -/turf/simulated/floor/plating{ - temperature = 303.15 - }, +/turf/simulated/floor/plating, /area/ihss_reclamation/hangar1) "ys" = ( /obj/effect/floor_decal/corner/yellow{ color = "#ba9122"; dir = 9 }, -/turf/simulated/floor/tiled/dark{ - temperature = 303.15 - }, +/turf/simulated/floor/tiled/dark, /area/ihss_reclamation/bridge) "yu" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 8 }, -/turf/simulated/floor/tiled/dark{ - temperature = 303.15 - }, +/turf/simulated/floor/tiled/dark, /area/ihss_reclamation/easthall) "yv" = ( /turf/simulated/wall/shuttle/raider, @@ -5381,9 +5107,7 @@ }, /obj/effect/floor_decal/industrial/outline/yellow, /obj/machinery/light, -/turf/simulated/floor/tiled/dark{ - temperature = 303.15 - }, +/turf/simulated/floor/tiled/dark, /area/ihss_reclamation/storage) "yA" = ( /obj/effect/floor_decal/corner/red/diagonal{ @@ -5395,17 +5119,14 @@ color = "#ba9122" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/dark{ - temperature = 303.15 - }, +/turf/simulated/floor/tiled/dark, /area/ihss_reclamation/dock) "yD" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 1 }, -/turf/simulated/floor/tiled/dark{ - temperature = 303.15 - }, +/obj/machinery/firealarm/west, +/turf/simulated/floor/tiled/dark, /area/ihss_reclamation/botanyhazard) "yE" = ( /turf/simulated/floor/exoplanet/grass/moghes/dirt/beach{ @@ -5416,12 +5137,10 @@ /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 1 }, -/obj/machinery/alarm/south{ - req_one_access = null - }, -/turf/simulated/floor/tiled/dark{ - temperature = 303.15 +/obj/machinery/alarm/warm/south{ + req_one_access = list(113) }, +/turf/simulated/floor/tiled/dark, /area/ihss_reclamation/crew/six) "yH" = ( /obj/structure/cable/green{ @@ -5435,9 +5154,7 @@ dir = 1; color = "#ba9122" }, -/turf/simulated/floor/tiled/dark{ - temperature = 303.15 - }, +/turf/simulated/floor/tiled/dark, /area/ihss_reclamation/southhall) "yK" = ( /obj/effect/floor_decal/corner/mauve{ @@ -5463,9 +5180,7 @@ "yM" = ( /obj/structure/closet/radiation, /obj/effect/floor_decal/industrial/outline/engineering, -/turf/simulated/floor/plating{ - temperature = 303.15 - }, +/turf/simulated/floor/plating, /area/ihss_reclamation/solars) "yO" = ( /obj/effect/shuttle_landmark/nav_ihss_reclamation/nav3, @@ -5475,9 +5190,7 @@ /obj/machinery/light{ dir = 1 }, -/turf/simulated/floor/tiled/dark{ - temperature = 303.15 - }, +/turf/simulated/floor/tiled/dark, /area/ihss_reclamation/southhall) "yR" = ( /obj/effect/map_effect/marker/airlock{ @@ -5488,9 +5201,7 @@ /obj/machinery/atmospherics/unary/vent_pump/high_volume{ dir = 4 }, -/turf/simulated/floor/plating{ - temperature = 303.15 - }, +/turf/simulated/floor/plating, /area/ihss_reclamation/southhall) "yS" = ( /obj/structure/closet/cabinet, @@ -5499,9 +5210,7 @@ /obj/item/clothing/shoes/sandals/caligae, /obj/item/clothing/shoes/sandals/caligae, /obj/item/clothing/accessory/poncho, -/turf/simulated/floor/tiled/dark{ - temperature = 303.15 - }, +/turf/simulated/floor/tiled/dark, /area/ihss_reclamation/crew/eight) "yT" = ( /obj/structure/cable/green{ @@ -5513,10 +5222,11 @@ /turf/simulated/wall/shuttle/raider, /area/ihss_reclamation/crew/two) "yW" = ( -/obj/effect/map_effect/window_spawner/full/reinforced/firedoor, -/turf/simulated/floor/plating{ - temperature = 303.15 +/obj/effect/map_effect/window_spawner/full/shuttle/raider{ + req_one_access = list(113); + spawn_firedoor = 1 }, +/turf/simulated/floor/plating, /area/ihss_reclamation/hangar1) "yZ" = ( /obj/effect/step_trigger/teleporter, @@ -5530,9 +5240,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden{ dir = 4 }, -/turf/simulated/floor/plating{ - temperature = 303.15 - }, +/turf/simulated/floor/plating, /area/ihss_reclamation/southhall) "zi" = ( /obj/structure/cable/green{ @@ -5547,19 +5255,17 @@ pixel_y = 28 }, /obj/effect/map_effect/marker/airlock/shuttle{ - cycle_to_external_air = 1; master_tag = "airlock_reclamation_shuttle"; name = "airlock_reclamation_shuttle"; req_one_access = list(113); - shuttle_tag = "IHSS Reclamation Shuttle" + shuttle_tag = "IHSS Reclamation Shuttle"; + cycle_to_external_air = 1 }, /obj/effect/map_effect/marker_helper/airlock/out, /obj/machinery/atmospherics/unary/vent_pump/high_volume{ dir = 8 }, -/turf/simulated/floor/plating{ - temperature = 303.15 - }, +/turf/simulated/floor/plating, /area/shuttle/ihss_reclamation) "zl" = ( /obj/machinery/light, @@ -5572,9 +5278,7 @@ /obj/structure/railing/mapped{ dir = 4 }, -/turf/simulated/floor/plating{ - temperature = 303.15 - }, +/turf/simulated/floor/plating, /area/shuttle/ihss_reclamation) "zt" = ( /obj/effect/map_effect/window_spawner/full/reinforced/polarized{ @@ -5590,9 +5294,7 @@ input_tag = "waste_in"; sensors = list("ihss_waste_sensor"="Tank") }, -/turf/simulated/floor/plating{ - temperature = 303.15 - }, +/turf/simulated/floor/plating, /area/ihss_reclamation/atmos) "zy" = ( /obj/effect/floor_decal/corner/red/diagonal{ @@ -5609,9 +5311,7 @@ /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 4 }, -/turf/simulated/floor/tiled/dark{ - temperature = 303.15 - }, +/turf/simulated/floor/tiled/dark, /area/ihss_reclamation/dock) "zC" = ( /obj/effect/floor_decal/corner/red/diagonal{ @@ -5631,9 +5331,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 6 }, -/turf/simulated/floor/tiled/dark{ - temperature = 303.15 - }, +/turf/simulated/floor/tiled/dark, /area/ihss_reclamation/dock) "zE" = ( /obj/structure/cable/green{ @@ -5652,46 +5350,41 @@ dir = 1; color = "#ba9122" }, -/turf/simulated/floor/tiled/dark{ - temperature = 303.15 - }, +/turf/simulated/floor/tiled/dark, /area/ihss_reclamation/westhall) "zH" = ( /obj/item/bedsheet/red, /obj/structure/bed, /obj/structure/curtain/open/bed, -/obj/effect/ghostspawpoint{ +/obj/effect/ghostspawpoint/one_use{ name = "igs - ihss_crew"; identifier = "ihss_crew" }, -/turf/simulated/floor/tiled/dark{ - temperature = 303.15 +/obj/effect/ghostspawpoint/one_use{ + name = "igs - ihss_security"; + identifier = "ihss_security" }, +/turf/simulated/floor/tiled/dark, /area/ihss_reclamation/crew/four) "zJ" = ( /obj/machinery/atmospherics/pipe/simple/hidden{ dir = 6 }, -/turf/simulated/floor/tiled/dark{ - temperature = 303.15 - }, +/turf/simulated/floor/tiled/dark, /area/ihss_reclamation/dock) "zM" = ( -/turf/simulated/floor/tiled/dark{ - temperature = 303.15 - }, +/turf/simulated/floor/tiled/dark, /area/ihss_reclamation/crew/five) "zO" = ( /obj/structure/bed/stool/chair/office/dark, /obj/machinery/light{ dir = 4 }, -/turf/simulated/floor/tiled/dark{ - temperature = 303.15 - }, +/turf/simulated/floor/tiled/dark, /area/ihss_reclamation/crew/six) "zP" = ( /obj/machinery/smartfridge, +/obj/machinery/door/firedoor/noid, /turf/simulated/floor/tiled/white{ temperature = 303.15 }, @@ -5706,17 +5399,13 @@ /obj/machinery/atmospherics/pipe/simple/hidden{ dir = 4 }, -/turf/simulated/floor/tiled/dark{ - temperature = 303.15 - }, +/turf/simulated/floor/tiled/dark, /area/ihss_reclamation/dock) "zX" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 1 }, -/turf/simulated/floor/tiled/dark{ - temperature = 303.15 - }, +/turf/simulated/floor/tiled/dark, /area/ihss_reclamation/crew) "Ac" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ @@ -5744,7 +5433,11 @@ }, /area/ihss_reclamation/plantroom) "Af" = ( -/obj/effect/map_effect/window_spawner/full/reinforced/grille/firedoor, +/obj/effect/map_effect/window_spawner/full/shuttle/raider{ + req_one_access = list(113); + spawn_firedoor = 1; + spawn_grille = 1 + }, /turf/simulated/floor/plating, /area/ihss_reclamation/bridge) "Ai" = ( @@ -5752,9 +5445,7 @@ dir = 4 }, /obj/machinery/light, -/turf/simulated/floor/tiled/dark{ - temperature = 303.15 - }, +/turf/simulated/floor/tiled/dark, /area/ihss_reclamation/dock) "Al" = ( /obj/effect/floor_decal/corner/lime{ @@ -5773,12 +5464,15 @@ /obj/structure/cable/green{ icon_state = "1-2" }, +/obj/machinery/door/firedoor/noid, +/obj/machinery/door/blast/regular/open{ + name = "Environment Simulation Chamber"; + id = "ihss_environment" + }, /obj/machinery/door/airlock/glass_research{ name = "Environmental Simulation Chamber"; - req_access = list(113) - }, -/obj/machinery/door/firedoor/noid{ - dir = 4 + req_access = list(113); + id_tag = "bolts_environment_cell" }, /turf/simulated/floor/tiled/white{ temperature = 303.15 @@ -5798,11 +5492,11 @@ }, /obj/effect/floor_decal/industrial/warning, /obj/effect/map_effect/marker/airlock/shuttle{ - cycle_to_external_air = 1; master_tag = "airlock_reclamation_shuttle"; name = "airlock_reclamation_shuttle"; req_one_access = list(113); - shuttle_tag = "IHSS Reclamation Shuttle" + shuttle_tag = "IHSS Reclamation Shuttle"; + cycle_to_external_air = 1 }, /obj/machinery/atmospherics/unary/vent_pump/high_volume{ dir = 1; @@ -5812,19 +5506,16 @@ }, /obj/effect/map_effect/marker_helper/airlock/exterior, /obj/machinery/airlock_sensor/airlock_exterior{ - dir = 1; - pixel_y = 20 - }, -/turf/simulated/floor/plating{ - temperature = 303.15 + pixel_y = 36; + dir = 8; + pixel_x = -12 }, +/turf/simulated/floor/plating, /area/shuttle/ihss_reclamation) "Au" = ( /obj/machinery/hologram/holopad/long_range, /obj/effect/overmap/visitable/sector/ihss_reclamation, -/turf/simulated/floor/tiled/dark{ - temperature = 303.15 - }, +/turf/simulated/floor/tiled/dark, /area/ihss_reclamation/bridge) "Ay" = ( /obj/structure/table/rack, @@ -5851,9 +5542,7 @@ name = "Suit Storage"; req_one_access = list(113) }, -/turf/simulated/floor/tiled/dark{ - temperature = 303.15 - }, +/turf/simulated/floor/tiled/dark, /area/ihss_reclamation/armory) "Az" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -5877,9 +5566,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/lattice/catwalk/indoor/grate, -/turf/simulated/floor/plating{ - temperature = 303.15 - }, +/turf/simulated/floor/plating, /area/ihss_reclamation/hangar1) "AC" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -5889,7 +5576,9 @@ /obj/machinery/atmospherics/pipe/manifold/hidden/fuel{ dir = 8 }, -/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/machinery/atmospherics/pipe/simple/hidden/aux{ + dir = 6 + }, /turf/simulated/floor, /area/shuttle/ihss_reclamation) "AD" = ( @@ -5899,8 +5588,8 @@ /obj/effect/floor_decal/spline/fancy/wood{ dir = 1 }, -/obj/machinery/alarm/north{ - req_one_access = null +/obj/machinery/alarm/warm/north{ + req_one_access = list(113) }, /turf/simulated/floor/wood{ temperature = 303.15 @@ -5911,17 +5600,13 @@ color = "#941307"; dir = 4 }, -/turf/simulated/floor/tiled/dark{ - temperature = 303.15 - }, +/turf/simulated/floor/tiled/dark, /area/ihss_reclamation/bridge) "AI" = ( /obj/machinery/light{ dir = 4 }, -/turf/simulated/floor/tiled/dark{ - temperature = 303.15 - }, +/turf/simulated/floor/tiled/dark, /area/ihss_reclamation/research) "AK" = ( /obj/machinery/door/airlock/external{ @@ -5933,9 +5618,7 @@ name = "airlock_reclamation_dock4" }, /obj/effect/map_effect/marker_helper/airlock/exterior, -/turf/simulated/floor/plating{ - temperature = 303.15 - }, +/turf/simulated/floor/plating, /area/ihss_reclamation/dock) "AM" = ( /obj/structure/window/reinforced{ @@ -5950,16 +5633,14 @@ color = "#ba9122"; dir = 9 }, -/turf/simulated/floor/tiled/dark{ - temperature = 303.15 - }, +/turf/simulated/floor/tiled/dark, /area/ihss_reclamation/bridge) "AO" = ( -/obj/effect/map_effect/window_spawner/full/borosilicate/reinforced/firedoor, -/obj/machinery/atmospherics/pipe/simple/visible/red, -/turf/simulated/floor/plating{ - temperature = 303.15 +/obj/effect/map_effect/window_spawner/full/borosilicate/reinforced/firedoor{ + req_one_access = list(113) }, +/obj/machinery/atmospherics/pipe/simple/visible/red, +/turf/simulated/floor/plating, /area/ihss_reclamation/atmos) "AP" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -5967,14 +5648,10 @@ dir = 4; color = "#941307" }, -/turf/simulated/floor/tiled/dark{ - temperature = 303.15 - }, +/turf/simulated/floor/tiled/dark, /area/ihss_reclamation/armory) "AS" = ( -/turf/simulated/floor/tiled/dark{ - temperature = 303.15 - }, +/turf/simulated/floor/tiled/dark, /area/ihss_reclamation/northhall) "AX" = ( /obj/effect/floor_decal/spline/fancy/wood, @@ -5998,9 +5675,7 @@ color = "#941307" }, /obj/structure/bed/stool/chair/office/bridge/pilot, -/turf/simulated/floor/tiled/dark{ - temperature = 303.15 - }, +/turf/simulated/floor/tiled/dark, /area/shuttle/ihss_reclamation) "Bc" = ( /obj/structure/cable/green{ @@ -6012,9 +5687,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 10 }, -/turf/simulated/floor/tiled/dark{ - temperature = 303.15 - }, +/turf/simulated/floor/tiled/dark, /area/ihss_reclamation/crew/eight) "Be" = ( /obj/structure/lattice/catwalk, @@ -6026,9 +5699,7 @@ dir = 4; color = "#941307" }, -/turf/simulated/floor/tiled/dark{ - temperature = 303.15 - }, +/turf/simulated/floor/tiled/dark, /area/shuttle/ihss_reclamation) "Bk" = ( /obj/machinery/door/airlock/external, @@ -6041,10 +5712,12 @@ name = "airlock_reclamation_dock1" }, /obj/effect/map_effect/marker_helper/airlock/interior, -/turf/simulated/floor/plating{ - temperature = 303.15 - }, +/turf/simulated/floor/plating, /area/ihss_reclamation/dock) +"Bo" = ( +/obj/machinery/firealarm/east, +/turf/simulated/floor/tiled/dark, +/area/ihss_reclamation/easthall) "Bq" = ( /obj/structure/cable/green{ icon_state = "4-8" @@ -6061,17 +5734,35 @@ dir = 8 }, /obj/effect/map_effect/marker/airlock/shuttle{ - cycle_to_external_air = 1; master_tag = "airlock_reclamation_shuttle"; name = "airlock_reclamation_shuttle"; req_one_access = list(113); - shuttle_tag = "IHSS Reclamation Shuttle" + shuttle_tag = "IHSS Reclamation Shuttle"; + cycle_to_external_air = 1 }, /obj/effect/map_effect/marker_helper/airlock/exterior, -/turf/simulated/floor/plating{ - temperature = 303.15 - }, +/turf/simulated/floor/plating, /area/shuttle/ihss_reclamation) +"Br" = ( +/obj/effect/floor_decal/corner/yellow/diagonal{ + dir = 1; + color = "#ba9122" + }, +/obj/effect/floor_decal/corner/red/diagonal{ + dir = 4; + color = "#941307" + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/ihss_reclamation/dock) "Bs" = ( /obj/structure/cable/green, /obj/structure/cable/green{ @@ -6081,9 +5772,7 @@ /obj/machinery/power/apc/high/south{ req_access = list(113) }, -/turf/simulated/floor/plating{ - temperature = 303.15 - }, +/turf/simulated/floor/plating, /area/ihss_reclamation/solars) "Bt" = ( /obj/machinery/atmospherics/unary/vent_pump/siphon/on/atmos{ @@ -6106,9 +5795,7 @@ dir = 1; color = "#ba9122" }, -/turf/simulated/floor/tiled/dark{ - temperature = 303.15 - }, +/turf/simulated/floor/tiled/dark, /area/ihss_reclamation/hangarhall) "BD" = ( /turf/space/transit/north, @@ -6136,13 +5823,19 @@ temperature = 303.15 }, /area/ihss_reclamation/medsci) +"BK" = ( +/obj/machinery/computer/cryopod/living_quarters{ + pixel_y = 32 + }, +/turf/simulated/floor/tiled/dark{ + temperature = 278.15 + }, +/area/ihss_reclamation/hangarhall) "BN" = ( /obj/machinery/atmospherics/pipe/manifold/visible/yellow{ dir = 8 }, -/turf/simulated/floor/plating{ - temperature = 303.15 - }, +/turf/simulated/floor/plating, /area/ihss_reclamation/fuel) "BR" = ( /obj/machinery/door/airlock/external{ @@ -6157,24 +5850,18 @@ /obj/machinery/atmospherics/pipe/simple/hidden{ dir = 10 }, -/turf/simulated/floor/plating{ - temperature = 303.15 - }, +/turf/simulated/floor/plating, /area/ihss_reclamation/southhall) "BS" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on, -/turf/simulated/floor/plating{ - temperature = 303.15 - }, +/turf/simulated/floor/plating, /area/ihss_reclamation/fuel) "BU" = ( /obj/machinery/floodlight{ dir = 1 }, /obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/dark{ - temperature = 303.15 - }, +/turf/simulated/floor/tiled/dark, /area/ihss_reclamation/storage) "BV" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ @@ -6195,9 +5882,7 @@ name = "airlock_ihss_aft" }, /obj/effect/map_effect/marker_helper/airlock/exterior, -/turf/simulated/floor/plating{ - temperature = 303.15 - }, +/turf/simulated/floor/plating, /area/ihss_reclamation/southhall) "BZ" = ( /obj/effect/map_effect/marker/airlock/docking{ @@ -6205,9 +5890,7 @@ master_tag = "airlock_reclamation_dock3"; name = "airlock_reclamation_dock3" }, -/turf/simulated/floor/plating{ - temperature = 303.15 - }, +/turf/simulated/floor/plating, /area/ihss_reclamation/dock) "Ce" = ( /obj/effect/floor_decal/corner/grey/diagonal, @@ -6235,9 +5918,7 @@ /obj/machinery/door/firedoor/multi_tile{ req_one_access = null }, -/turf/simulated/floor/tiled/dark{ - temperature = 303.15 - }, +/turf/simulated/floor/tiled/dark, /area/ihss_reclamation/easthall) "Ch" = ( /obj/effect/floor_decal/corner/mauve{ @@ -6255,9 +5936,7 @@ dir = 4; color = "#941307" }, -/turf/simulated/floor/tiled/dark{ - temperature = 303.15 - }, +/turf/simulated/floor/tiled/dark, /area/shuttle/ihss_reclamation) "Cv" = ( /obj/effect/floor_decal/corner/grey/diagonal, @@ -6271,9 +5950,7 @@ }, /area/ihss_reclamation/mess) "Cx" = ( -/turf/simulated/floor/tiled/dark{ - temperature = 303.15 - }, +/turf/simulated/floor/tiled/dark, /area/ihss_reclamation/crew/seven) "CC" = ( /obj/machinery/atmospherics/pipe/simple/visible/yellow, @@ -6284,10 +5961,14 @@ /obj/vehicle/bike/speeder/izweski{ dir = 8 }, -/turf/simulated/floor/tiled/dark{ - temperature = 303.15 - }, +/turf/simulated/floor/tiled/dark, /area/ihss_reclamation/storage) +"CI" = ( +/obj/effect/floor_decal/industrial/loading/yellow, +/turf/simulated/floor/tiled/dark{ + temperature = 278.15 + }, +/area/ihss_reclamation/hangarhall) "CJ" = ( /obj/structure/cable/green{ icon_state = "1-4" @@ -6306,33 +5987,25 @@ dir = 1; color = "#ba9122" }, -/turf/simulated/floor/tiled/dark{ - temperature = 303.15 - }, +/turf/simulated/floor/tiled/dark, /area/ihss_reclamation/southhall) "CN" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 8 }, -/turf/simulated/floor/plating{ - temperature = 303.15 - }, +/turf/simulated/floor/plating, /area/ihss_reclamation/atmos) "CP" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 1 }, -/turf/simulated/floor/tiled/dark{ - temperature = 303.15 - }, +/turf/simulated/floor/tiled/dark, /area/ihss_reclamation/southhall) "CR" = ( -/obj/machinery/alarm/south{ - req_one_access = null - }, -/turf/simulated/floor/tiled/dark{ - temperature = 303.15 +/obj/machinery/alarm/warm/south{ + req_one_access = list(113) }, +/turf/simulated/floor/tiled/dark, /area/ihss_reclamation/southhall) "CT" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -6342,7 +6015,9 @@ dir = 1 }, /obj/machinery/atmospherics/pipe/simple/hidden/fuel, -/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/machinery/atmospherics/pipe/simple/hidden/aux{ + dir = 1 + }, /turf/simulated/floor, /area/shuttle/ihss_reclamation) "CU" = ( @@ -6370,15 +6045,9 @@ color = "#941307" }, /obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, -/turf/simulated/floor/tiled/dark{ - temperature = 303.15 - }, +/turf/simulated/floor/tiled/dark, /area/ihss_reclamation/dock) "Di" = ( /obj/effect/floor_decal/corner/mauve{ @@ -6392,7 +6061,9 @@ }, /area/ihss_reclamation/medsci) "Dj" = ( -/obj/effect/map_effect/window_spawner/full/borosilicate/reinforced/firedoor, +/obj/effect/map_effect/window_spawner/full/borosilicate/reinforced/firedoor{ + req_one_access = list(113) + }, /turf/simulated/floor/reinforced, /area/ihss_reclamation/solars) "Dl" = ( @@ -6402,17 +6073,13 @@ /obj/structure/cable/green{ icon_state = "1-2" }, -/turf/simulated/floor/plating{ - temperature = 303.15 - }, +/turf/simulated/floor/plating, /area/ihss_reclamation/hangar1) "Do" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 8 }, -/turf/simulated/floor/plating{ - temperature = 303.15 - }, +/turf/simulated/floor/plating, /area/ihss_reclamation/solars) "Dp" = ( /obj/structure/window/reinforced, @@ -6421,17 +6088,13 @@ color = "#ba9122"; dir = 10 }, -/turf/simulated/floor/tiled/dark{ - temperature = 303.15 - }, +/turf/simulated/floor/tiled/dark, /area/ihss_reclamation/bridge) "Dq" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/blue{ dir = 4 }, -/turf/simulated/floor/plating{ - temperature = 303.15 - }, +/turf/simulated/floor/plating, /area/ihss_reclamation/equipment) "Dr" = ( /obj/structure/cable/green{ @@ -6448,14 +6111,10 @@ color = "#941307" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/dark{ - temperature = 303.15 - }, +/turf/simulated/floor/tiled/dark, /area/ihss_reclamation/armoryfoyer) "Ds" = ( -/turf/simulated/floor/tiled/dark{ - temperature = 303.15 - }, +/turf/simulated/floor/tiled/dark, /area/ihss_reclamation/crew/one) "Dt" = ( /obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, @@ -6470,17 +6129,13 @@ dir = 1; color = "#ba9122" }, -/turf/simulated/floor/tiled/dark{ - temperature = 303.15 - }, +/turf/simulated/floor/tiled/dark, /area/ihss_reclamation/northhall) "Du" = ( /obj/structure/cable{ icon_state = "1-8" }, -/turf/simulated/floor/plating{ - temperature = 303.15 - }, +/turf/simulated/floor/plating, /area/ihss_reclamation/solars) "DK" = ( /obj/effect/floor_decal/spline/fancy/wood{ @@ -6496,7 +6151,9 @@ req_access = list(113); dir = 8 }, -/obj/machinery/door/firedoor/noid, +/obj/machinery/door/firedoor/noid{ + dir = 4 + }, /turf/simulated/floor/tiled/white{ temperature = 303.15 }, @@ -6505,24 +6162,29 @@ /obj/item/bedsheet/red, /obj/structure/bed, /obj/structure/curtain/open/bed, -/obj/effect/ghostspawpoint{ +/obj/effect/ghostspawpoint/one_use{ name = "igs - ihss_crew"; identifier = "ihss_crew" }, -/turf/simulated/floor/tiled/dark{ - temperature = 303.15 +/obj/effect/ghostspawpoint/one_use{ + name = "igs - ihss_security"; + identifier = "ihss_security" }, +/turf/simulated/floor/tiled/dark, /area/ihss_reclamation/crew/six) "DT" = ( /obj/machinery/door/airlock/maintenance_hatch{ name = "Telecomms"; - dir = 4 + dir = 4; + req_access = list(113) }, /obj/structure/plasticflaps/airtight, -/turf/simulated/floor/plating{ - temperature = 303.15 - }, +/turf/simulated/floor/plating, /area/ihss_reclamation/equipment) +"DW" = ( +/obj/machinery/firealarm/west, +/turf/simulated/floor/tiled/dark, +/area/ihss_reclamation/westhall) "DZ" = ( /obj/structure/lattice/catwalk, /obj/structure/railing/mapped, @@ -6532,9 +6194,7 @@ /turf/template_noop, /area/ihss_reclamation/bridge) "Eb" = ( -/turf/simulated/floor/plating{ - temperature = 303.15 - }, +/turf/simulated/floor/plating, /area/ihss_reclamation/southhall) "Ec" = ( /obj/structure/cable/green{ @@ -6567,12 +6227,13 @@ dir = 1; color = "#ba9122" }, -/turf/simulated/floor/tiled/dark{ - temperature = 303.15 - }, +/turf/simulated/floor/tiled/dark, /area/ihss_reclamation/westhall) "Eg" = ( /obj/machinery/telecomms/allinone/ship, +/obj/machinery/light/small/emergency{ + dir = 8 + }, /turf/simulated/floor/tiled{ name = "cooled floor"; temperature = 278 @@ -6580,9 +6241,7 @@ /area/ihss_reclamation/equipment) "Ei" = ( /obj/structure/table/standard, -/turf/simulated/floor/tiled/dark{ - temperature = 303.15 - }, +/turf/simulated/floor/tiled/dark, /area/ihss_reclamation/crew/eight) "Eq" = ( /obj/effect/floor_decal/corner/mauve/full{ @@ -6598,23 +6257,27 @@ "Eu" = ( /obj/structure/survey_probe/hegemony, /obj/effect/floor_decal/industrial/outline/research, -/turf/simulated/floor/tiled/dark{ - temperature = 303.15 - }, +/turf/simulated/floor/tiled/dark, /area/ihss_reclamation/storage) "Ev" = ( /obj/structure/sink{ pixel_y = 28 }, -/turf/simulated/floor/tiled/dark{ - temperature = 303.15 - }, +/turf/simulated/floor/tiled/dark, /area/ihss_reclamation/crew/four) +"EG" = ( +/obj/effect/map_effect/map_helper/ruler_tiles_3, +/obj/structure/lattice/catwalk, +/obj/item/hullbeacon/red, +/turf/template_noop, +/area/space) +"EI" = ( +/obj/machinery/alarm/warm/north, +/turf/simulated/floor/tiled/dark, +/area/ihss_reclamation/dock) "ET" = ( /obj/structure/table/standard, -/turf/simulated/floor/tiled/dark{ - temperature = 303.15 - }, +/turf/simulated/floor/tiled/dark, /area/ihss_reclamation/crew/six) "EU" = ( /obj/structure/cable/green{ @@ -6659,17 +6322,30 @@ dir = 1; color = "#ba9122" }, -/turf/simulated/floor/tiled/dark{ - temperature = 303.15 - }, +/turf/simulated/floor/tiled/dark, /area/ihss_reclamation/crew) "EZ" = ( /obj/structure/closet/radiation, /obj/effect/floor_decal/industrial/outline/engineering, -/turf/simulated/floor/tiled/dark{ - temperature = 303.15 - }, +/turf/simulated/floor/tiled/dark, /area/ihss_reclamation/storage) +"Ff" = ( +/obj/effect/floor_decal/corner/red/diagonal{ + dir = 4; + color = "#941307" + }, +/obj/effect/floor_decal/corner/yellow/diagonal{ + dir = 1; + color = "#ba9122" + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/structure/cable/green{ + icon_state = "1-8" + }, +/turf/simulated/floor/tiled/dark, +/area/ihss_reclamation/northhall) "Fg" = ( /obj/effect/floor_decal/spline/fancy/wood, /obj/structure/table/wood, @@ -6684,6 +6360,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/fuel{ dir = 5 }, +/obj/machinery/firealarm/south, /turf/simulated/floor, /area/shuttle/ihss_reclamation) "Fi" = ( @@ -6695,9 +6372,7 @@ /area/space) "Fj" = ( /obj/machinery/atmospherics/unary/vent_pump/on, -/turf/simulated/floor/plating{ - temperature = 303.15 - }, +/turf/simulated/floor/plating, /area/ihss_reclamation/hangar1) "Fl" = ( /obj/effect/floor_decal/corner/red/diagonal{ @@ -6707,9 +6382,7 @@ /obj/structure/bed/stool/chair/office/bridge/pilot{ dir = 8 }, -/turf/simulated/floor/tiled/dark{ - temperature = 303.15 - }, +/turf/simulated/floor/tiled/dark, /area/shuttle/ihss_reclamation) "Fp" = ( /obj/structure/closet/crate/drop{ @@ -6721,9 +6394,7 @@ /obj/item/tank/hydrogen, /obj/item/tank/hydrogen, /obj/item/tank/hydrogen, -/turf/simulated/floor/plating{ - temperature = 303.15 - }, +/turf/simulated/floor/plating, /area/ihss_reclamation/fuel) "Fq" = ( /obj/machinery/atmospherics/pipe/simple/visible/red, @@ -6733,9 +6404,7 @@ /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 8 }, -/turf/simulated/floor/tiled/dark{ - temperature = 303.15 - }, +/turf/simulated/floor/tiled/dark, /area/ihss_reclamation/westhall) "Fu" = ( /obj/structure/closet/secure_closet/guncabinet{ @@ -6753,22 +6422,16 @@ color = "#941307" }, /obj/effect/floor_decal/industrial/hatch/red, -/turf/simulated/floor/tiled/dark{ - temperature = 303.15 - }, +/turf/simulated/floor/tiled/dark, /area/ihss_reclamation/armory) "Fx" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 8 }, -/turf/simulated/floor/plating{ - temperature = 303.15 - }, +/turf/simulated/floor/plating, /area/ihss_reclamation/atmos) "FA" = ( -/turf/simulated/floor/plating{ - temperature = 303.15 - }, +/turf/simulated/floor/plating, /area/ihss_reclamation/hangar1) "FC" = ( /obj/structure/cable/green{ @@ -6784,9 +6447,7 @@ dir = 1; color = "#ba9122" }, -/turf/simulated/floor/tiled/dark{ - temperature = 303.15 - }, +/turf/simulated/floor/tiled/dark, /area/ihss_reclamation/easthall) "FD" = ( /obj/effect/floor_decal/corner/grey/diagonal, @@ -6799,17 +6460,17 @@ /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 8 }, -/turf/simulated/floor/tiled/dark{ - temperature = 303.15 - }, +/turf/simulated/floor/tiled/dark, /area/ihss_reclamation/easthall) +"FJ" = ( +/obj/machinery/firealarm/east, +/turf/simulated/floor/tiled/dark, +/area/ihss_reclamation/dock) "FN" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/red{ dir = 4 }, -/turf/simulated/floor/plating{ - temperature = 303.15 - }, +/turf/simulated/floor/plating, /area/ihss_reclamation/equipment) "FS" = ( /obj/effect/floor_decal/corner/red/diagonal{ @@ -6821,9 +6482,7 @@ color = "#ba9122" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/dark{ - temperature = 303.15 - }, +/turf/simulated/floor/tiled/dark, /area/ihss_reclamation/southhall) "FU" = ( /obj/structure/window/reinforced{ @@ -6841,15 +6500,11 @@ color = "#941307"; dir = 9 }, -/turf/simulated/floor/tiled/dark{ - temperature = 303.15 - }, +/turf/simulated/floor/tiled/dark, /area/ihss_reclamation/bridge) "FX" = ( /obj/structure/table/standard, -/turf/simulated/floor/tiled/dark{ - temperature = 303.15 - }, +/turf/simulated/floor/tiled/dark, /area/ihss_reclamation/crew/one) "Ga" = ( /obj/structure/cable/green{ @@ -6861,9 +6516,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 5 }, -/turf/simulated/floor/tiled/dark{ - temperature = 303.15 - }, +/turf/simulated/floor/tiled/dark, /area/ihss_reclamation/northhall) "Gd" = ( /obj/machinery/atmospherics/pipe/simple/hidden/fuel{ @@ -6873,52 +6526,31 @@ dir = 4; color = "#941307" }, -/obj/machinery/atmospherics/pipe/manifold/hidden, -/turf/simulated/floor/tiled/dark{ - temperature = 303.15 - }, +/obj/machinery/atmospherics/pipe/manifold/hidden/aux, +/turf/simulated/floor/tiled/dark, /area/shuttle/ihss_reclamation) "Gf" = ( /obj/structure/table/standard, /obj/item/paper_bin, /obj/item/pen, /obj/item/device/camera, -/turf/simulated/floor/tiled/dark{ - temperature = 303.15 - }, +/turf/simulated/floor/tiled/dark, /area/ihss_reclamation/research) "Gg" = ( -/obj/machinery/door/airlock/external{ - dir = 4 - }, -/obj/machinery/access_button{ - pixel_x = -8; - pixel_y = 28; - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden{ - dir = 1 - }, -/obj/effect/map_effect/marker/airlock/docking{ - landmark_tag = "nav_ihss_reclamation_dock4"; - master_tag = "airlock_reclamation_dock4"; - name = "airlock_reclamation_dock4" - }, -/obj/effect/map_effect/marker_helper/airlock/interior, -/turf/simulated/floor/plating{ - temperature = 303.15 +/obj/effect/map_effect/window_spawner/full/shuttle/raider{ + req_one_access = list(113); + spawn_firedoor = 1 }, +/turf/simulated/floor/tiled/dark, /area/ihss_reclamation/dock) "Gi" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 1 }, -/obj/machinery/alarm/south{ - req_one_access = null - }, -/turf/simulated/floor/tiled/dark{ - temperature = 303.15 +/obj/machinery/alarm/warm/south{ + req_one_access = list(113) }, +/turf/simulated/floor/tiled/dark, /area/ihss_reclamation/crew/seven) "Gj" = ( /obj/machinery/atmospherics/pipe/simple/hidden/fuel{ @@ -6933,10 +6565,16 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 5 }, -/turf/simulated/floor/plating{ - temperature = 303.15 - }, +/turf/simulated/floor/plating, /area/ihss_reclamation/fuel) +"Gm" = ( +/obj/effect/floor_decal/corner/red/diagonal{ + dir = 4; + color = "#941307" + }, +/obj/machinery/firealarm/east, +/turf/simulated/floor/tiled/dark, +/area/shuttle/ihss_reclamation) "Gq" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 1 @@ -6945,26 +6583,20 @@ dir = 4; color = "#941307" }, -/turf/simulated/floor/tiled/dark{ - temperature = 303.15 - }, +/turf/simulated/floor/tiled/dark, /area/ihss_reclamation/armory) "Gs" = ( /obj/structure/table/standard, /obj/machinery/light{ dir = 8 }, -/turf/simulated/floor/tiled/dark{ - temperature = 303.15 - }, +/turf/simulated/floor/tiled/dark, /area/ihss_reclamation/crew/seven) "Gu" = ( /obj/structure/cable/green{ icon_state = "1-2" }, -/turf/simulated/floor/plating{ - temperature = 303.15 - }, +/turf/simulated/floor/plating, /area/ihss_reclamation/solars) "Gx" = ( /obj/structure/cable/green{ @@ -6980,9 +6612,7 @@ dir = 1; color = "#ba9122" }, -/turf/simulated/floor/tiled/dark{ - temperature = 303.15 - }, +/turf/simulated/floor/tiled/dark, /area/ihss_reclamation/westhall) "Gy" = ( /obj/effect/floor_decal/corner/mauve{ @@ -6994,9 +6624,7 @@ /area/ihss_reclamation/research) "Gz" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/plating{ - temperature = 303.15 - }, +/turf/simulated/floor/plating, /area/ihss_reclamation/atmos) "GA" = ( /obj/effect/floor_decal/corner/mauve{ @@ -7030,15 +6658,10 @@ dir = 1; color = "#ba9122" }, -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 4 - }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/turf/simulated/floor/tiled/dark{ - temperature = 303.15 + dir = 1 }, +/turf/simulated/floor/tiled/dark, /area/ihss_reclamation/dock) "GK" = ( /obj/effect/floor_decal/corner/mauve/full{ @@ -7064,9 +6687,7 @@ /obj/machinery/power/apc/high/north{ req_access = list(113) }, -/turf/simulated/floor/tiled/dark{ - temperature = 303.15 - }, +/turf/simulated/floor/tiled/dark, /area/ihss_reclamation/crew/eight) "GN" = ( /obj/structure/bed/stool/chair/shuttle{ @@ -7076,9 +6697,7 @@ dir = 4; color = "#941307" }, -/turf/simulated/floor/tiled/dark{ - temperature = 303.15 - }, +/turf/simulated/floor/tiled/dark, /area/shuttle/ihss_reclamation) "GP" = ( /obj/machinery/optable, @@ -7113,9 +6732,7 @@ color = "#941307"; dir = 5 }, -/turf/simulated/floor/tiled/dark{ - temperature = 303.15 - }, +/turf/simulated/floor/tiled/dark, /area/ihss_reclamation/mess) "GY" = ( /obj/structure/cable/green, @@ -7125,9 +6742,7 @@ /area/ihss_reclamation/solars) "Hg" = ( /obj/structure/table/standard, -/turf/simulated/floor/tiled/dark{ - temperature = 303.15 - }, +/turf/simulated/floor/tiled/dark, /area/ihss_reclamation/mess) "Hi" = ( /obj/effect/floor_decal/corner/red/diagonal{ @@ -7135,17 +6750,13 @@ color = "#941307" }, /obj/machinery/light, -/obj/machinery/alarm/west{ - req_one_access = null - }, -/turf/simulated/floor/tiled/dark{ - temperature = 303.15 +/obj/machinery/alarm/warm/west{ + req_one_access = list(113) }, +/turf/simulated/floor/tiled/dark, /area/ihss_reclamation/armoryfoyer) "Hl" = ( -/turf/simulated/floor/tiled/dark{ - temperature = 303.15 - }, +/turf/simulated/floor/tiled/dark, /area/ihss_reclamation/easthall) "Hm" = ( /obj/machinery/portable_atmospherics/canister/carbon_dioxide, @@ -7176,16 +6787,14 @@ dir = 1; color = "#ba9122" }, -/turf/simulated/floor/tiled/dark{ - temperature = 303.15 - }, +/turf/simulated/floor/tiled/dark, /area/ihss_reclamation/westhall) "Hr" = ( /obj/effect/floor_decal/corner/lime{ dir = 5 }, -/obj/machinery/alarm/north{ - req_one_access = null +/obj/machinery/alarm/warm/north{ + req_one_access = list(113) }, /turf/simulated/floor/tiled/white{ temperature = 303.15 @@ -7203,9 +6812,7 @@ dir = 1; color = "#ba9122" }, -/turf/simulated/floor/tiled/dark{ - temperature = 303.15 - }, +/turf/simulated/floor/tiled/dark, /area/ihss_reclamation/westhall) "Hv" = ( /obj/structure/cable/green{ @@ -7222,9 +6829,7 @@ dir = 1; color = "#ba9122" }, -/turf/simulated/floor/tiled/dark{ - temperature = 303.15 - }, +/turf/simulated/floor/tiled/dark, /area/ihss_reclamation/northhall) "Hw" = ( /obj/structure/table/rack, @@ -7239,10 +6844,10 @@ /obj/effect/floor_decal/industrial/hatch/red, /obj/item/ship_ammunition/francisca/frag, /obj/item/ship_ammunition/francisca/frag, -/obj/machinery/alarm/north, -/turf/simulated/floor/tiled/dark{ - temperature = 303.15 +/obj/machinery/alarm/warm/north{ + req_one_access = list(113) }, +/turf/simulated/floor/tiled/dark, /area/ihss_reclamation/armory) "HD" = ( /obj/structure/cable/green{ @@ -7257,9 +6862,7 @@ }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/plating{ - temperature = 303.15 - }, +/turf/simulated/floor/plating, /area/ihss_reclamation/solars) "HK" = ( /obj/effect/floor_decal/corner/mauve{ @@ -7300,9 +6903,7 @@ dir = 4 }, /obj/structure/bed/stool/padded/red, -/turf/simulated/floor/tiled/dark{ - temperature = 303.15 - }, +/turf/simulated/floor/tiled/dark, /area/ihss_reclamation/mess) "HP" = ( /obj/effect/floor_decal/corner/red/diagonal{ @@ -7315,9 +6916,8 @@ icon_state = "rwindow" }, /obj/item/stamp/warden, -/turf/simulated/floor/tiled/dark{ - temperature = 303.15 - }, +/obj/machinery/firealarm/west, +/turf/simulated/floor/tiled/dark, /area/ihss_reclamation/armoryfoyer) "HR" = ( /obj/effect/floor_decal/corner/red/diagonal{ @@ -7331,20 +6931,16 @@ /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 4 }, -/turf/simulated/floor/tiled/dark{ - temperature = 303.15 - }, +/turf/simulated/floor/tiled/dark, /area/ihss_reclamation/dock) "HU" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 1 }, -/obj/machinery/alarm/south{ - req_one_access = null - }, -/turf/simulated/floor/tiled/dark{ - temperature = 303.15 +/obj/machinery/alarm/warm/south{ + req_one_access = list(113) }, +/turf/simulated/floor/tiled/dark, /area/ihss_reclamation/crew/one) "HY" = ( /obj/structure/cable/green{ @@ -7356,9 +6952,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 8 }, -/turf/simulated/floor/tiled/dark{ - temperature = 303.15 - }, +/turf/simulated/floor/tiled/dark, /area/ihss_reclamation/easthall) "HZ" = ( /obj/machinery/light{ @@ -7367,9 +6961,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden{ dir = 10 }, -/turf/simulated/floor/plating{ - temperature = 303.15 - }, +/turf/simulated/floor/plating, /area/ihss_reclamation/southhall) "Ia" = ( /obj/machinery/atmospherics/pipe/simple/hidden/fuel{ @@ -7383,50 +6975,43 @@ }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/dark{ - temperature = 303.15 - }, +/turf/simulated/floor/tiled/dark, /area/ihss_reclamation/mess) "Ie" = ( /obj/machinery/door/airlock/hatch{ name = "EVA Access" }, -/turf/simulated/floor/tiled/dark{ - temperature = 303.15 - }, +/obj/machinery/door/firedoor/noid, +/turf/simulated/floor/tiled/dark, /area/ihss_reclamation/southhall) "If" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 1 }, -/obj/machinery/alarm/south{ - req_one_access = null - }, -/turf/simulated/floor/tiled/dark{ - temperature = 303.15 +/obj/machinery/alarm/warm/south{ + req_one_access = list(113) }, +/turf/simulated/floor/tiled/dark, /area/ihss_reclamation/crew/five) "Ig" = ( /obj/structure/cable/green{ icon_state = "1-8" }, -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 4 +/obj/machinery/atmospherics/pipe/simple/hidden/aux{ + dir = 8 }, /obj/machinery/door/airlock/external{ dir = 4 }, /obj/effect/map_effect/marker/airlock/shuttle{ - cycle_to_external_air = 1; master_tag = "airlock_reclamation_shuttle"; name = "airlock_reclamation_shuttle"; req_one_access = list(113); - shuttle_tag = "IHSS Reclamation Shuttle" + shuttle_tag = "IHSS Reclamation Shuttle"; + cycle_to_external_air = 1 }, /obj/effect/map_effect/marker_helper/airlock/interior, -/turf/simulated/floor/plating{ - temperature = 303.15 - }, +/turf/simulated/floor/plating, /area/shuttle/ihss_reclamation) "Ih" = ( /obj/structure/cable/green{ @@ -7438,9 +7023,7 @@ dir = 4 }, /obj/structure/lattice/catwalk/indoor/grate, -/turf/simulated/floor/plating{ - temperature = 303.15 - }, +/turf/simulated/floor/plating, /area/ihss_reclamation/hangar1) "Im" = ( /obj/machinery/atmospherics/unary/vent_pump/siphon/on/atmos{ @@ -7454,9 +7037,7 @@ /obj/machinery/light{ dir = 8 }, -/turf/simulated/floor/tiled/dark{ - temperature = 303.15 - }, +/turf/simulated/floor/tiled/dark, /area/ihss_reclamation/crew/one) "Io" = ( /obj/machinery/vending/engivend{ @@ -7464,35 +7045,36 @@ req_one_access = list(113) }, /obj/effect/floor_decal/industrial/outline/engineering, -/turf/simulated/floor/plating{ - temperature = 303.15 - }, +/turf/simulated/floor/plating, /area/ihss_reclamation/equipment) +"Ip" = ( +/obj/machinery/light{ + dir = 4; + pixel_x = 12 + }, +/turf/simulated/floor/tiled/dark, +/area/ihss_reclamation/southhall) "Iq" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ dir = 1 }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/dark{ - temperature = 303.15 - }, +/turf/simulated/floor/tiled/dark, /area/ihss_reclamation/mess) "Iu" = ( -/obj/machinery/atmospherics/unary/vent_pump{ - dir = 1 +/obj/effect/floor_decal/corner/yellow/diagonal{ + dir = 1; + color = "#ba9122" }, -/obj/machinery/light{ - dir = 8; - icon_state = "tube_empty" +/obj/effect/floor_decal/corner/red/diagonal{ + dir = 4; + color = "#941307" }, -/obj/effect/map_effect/marker/airlock/docking{ - landmark_tag = "nav_ihss_reclamation_dock1"; - master_tag = "airlock_reclamation_dock1"; - name = "airlock_reclamation_dock1" - }, -/turf/simulated/floor/plating{ - temperature = 303.15 +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4; + icon_state = "map-scrubbers" }, +/turf/simulated/floor/tiled/dark, /area/ihss_reclamation/dock) "Iv" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ @@ -7502,9 +7084,7 @@ dir = 4; color = "#941307" }, -/turf/simulated/floor/tiled/dark{ - temperature = 303.15 - }, +/turf/simulated/floor/tiled/dark, /area/shuttle/ihss_reclamation) "Ix" = ( /obj/effect/floor_decal/corner/mauve/full{ @@ -7519,10 +7099,22 @@ dir = 5 }, /obj/structure/table/standard, -/obj/item/device/taperecorder, -/obj/item/device/camera{ - pixel_x = 5; - pixel_y = 5 +/obj/machinery/button/remote/airlock{ + dir = 1; + id = "bolts_environment_cell"; + name = "Chamber Airlock Bolts"; + pixel_x = -6; + req_one_access = list(113); + specialfunctions = 4; + pixel_y = 8 + }, +/obj/machinery/button/remote/blast_door{ + name = "Environment Simulation Chamber Blast Doors"; + id = "ihss_environment"; + dir = 1; + pixel_y = -3; + pixel_x = -6; + req_one_access = list(113) }, /turf/simulated/floor/tiled/white{ temperature = 303.15 @@ -7530,28 +7122,24 @@ /area/ihss_reclamation/medsci) "IB" = ( /obj/structure/dispenser/oxygen, -/turf/simulated/floor/plating{ - temperature = 303.15 - }, +/turf/simulated/floor/plating, /area/ihss_reclamation/equipment) "ID" = ( /obj/machinery/atmospherics/unary/vent_pump/on, -/obj/machinery/alarm/north{ - req_one_access = null - }, -/turf/simulated/floor/tiled/dark{ - temperature = 303.15 +/obj/machinery/alarm/warm/north{ + req_one_access = list(113) }, +/turf/simulated/floor/tiled/dark, /area/ihss_reclamation/crew) "IJ" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/fuel, /turf/simulated/wall/shuttle/space_ship/mercenary, /area/shuttle/ihss_reclamation) "IL" = ( -/obj/effect/map_effect/window_spawner/full/borosilicate/reinforced/firedoor, -/turf/simulated/floor/plating{ - temperature = 303.15 +/obj/effect/map_effect/window_spawner/full/borosilicate/reinforced/firedoor{ + req_one_access = list(113) }, +/turf/simulated/floor/plating, /area/ihss_reclamation/fuel) "IQ" = ( /obj/machinery/light{ @@ -7561,10 +7149,12 @@ pixel_x = 32 }, /obj/random/dirt_75, -/turf/simulated/floor/tiled/dark{ - temperature = 303.15 - }, +/turf/simulated/floor/tiled/dark, /area/ihss_reclamation/southhall) +"IW" = ( +/obj/machinery/firealarm/west, +/turf/simulated/floor/plating, +/area/ihss_reclamation/hangar1) "IX" = ( /turf/simulated/wall/shuttle/raider, /area/ihss_reclamation/bridge) @@ -7581,7 +7171,11 @@ /turf/simulated/floor/reinforced/airless, /area/ihss_reclamation/atmos) "Jd" = ( -/obj/effect/map_effect/window_spawner/full/reinforced/firedoor, +/obj/effect/map_effect/window_spawner/full/shuttle/raider{ + req_one_access = list(113); + spawn_firedoor = 1; + spawn_grille = 1 + }, /turf/simulated/floor/plating, /area/ihss_reclamation/crew/seven) "Jg" = ( @@ -7596,9 +7190,7 @@ /obj/structure/cable{ icon_state = "4-8" }, -/turf/simulated/floor/plating{ - temperature = 303.15 - }, +/turf/simulated/floor/plating, /area/ihss_reclamation/solars) "Ji" = ( /obj/machinery/light{ @@ -7609,9 +7201,7 @@ master_tag = "airlock_ihss_aft"; name = "airlock_ihss_aft" }, -/turf/simulated/floor/plating{ - temperature = 303.15 - }, +/turf/simulated/floor/plating, /area/ihss_reclamation/southhall) "Jj" = ( /obj/structure/sink/kitchen{ @@ -7637,20 +7227,16 @@ /obj/effect/floor_decal/industrial/warning{ dir = 8 }, -/turf/simulated/floor/plating{ - temperature = 303.15 - }, +/turf/simulated/floor/plating, /area/shuttle/ihss_reclamation) "Jl" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 4 }, -/obj/machinery/alarm/west{ - req_one_access = null - }, -/turf/simulated/floor/tiled/dark{ - temperature = 303.15 +/obj/machinery/alarm/warm/west{ + req_one_access = list(113) }, +/turf/simulated/floor/tiled/dark, /area/ihss_reclamation/hangarhall) "Jp" = ( /obj/effect/floor_decal/corner/red/diagonal{ @@ -7661,18 +7247,14 @@ dir = 1; color = "#ba9122" }, -/turf/simulated/floor/tiled/dark{ - temperature = 303.15 - }, +/turf/simulated/floor/tiled/dark, /area/ihss_reclamation/dock) "Ju" = ( /obj/structure/bed/stool/chair/office/dark, /obj/machinery/light{ dir = 4 }, -/turf/simulated/floor/tiled/dark{ - temperature = 303.15 - }, +/turf/simulated/floor/tiled/dark, /area/ihss_reclamation/crew/eight) "Jw" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/fuel{ @@ -7687,8 +7269,8 @@ /obj/machinery/light{ dir = 1 }, -/obj/machinery/alarm/north{ - req_one_access = null +/obj/machinery/alarm/warm/north{ + req_one_access = list(113) }, /turf/simulated/floor/tiled/white{ temperature = 303.15 @@ -7710,9 +7292,7 @@ dir = 4; icon_state = "map-scrubbers" }, -/turf/simulated/floor/tiled/dark{ - temperature = 303.15 - }, +/turf/simulated/floor/tiled/dark, /area/ihss_reclamation/southhall) "JB" = ( /obj/effect/floor_decal/corner/mauve/full{ @@ -7727,9 +7307,7 @@ /obj/structure/sink{ pixel_y = 28 }, -/turf/simulated/floor/tiled/dark{ - temperature = 303.15 - }, +/turf/simulated/floor/tiled/dark, /area/ihss_reclamation/crew/five) "JK" = ( /obj/effect/floor_decal/corner/red/diagonal{ @@ -7741,9 +7319,11 @@ dir = 1; color = "#ba9122" }, -/turf/simulated/floor/tiled/dark{ - temperature = 303.15 - }, +/turf/simulated/floor/tiled/dark, +/area/ihss_reclamation/southhall) +"JP" = ( +/obj/machinery/firealarm/west, +/turf/simulated/floor/tiled/dark, /area/ihss_reclamation/southhall) "JR" = ( /turf/simulated/wall/shuttle/raider, @@ -7753,9 +7333,7 @@ dir = 5 }, /obj/machinery/light, -/turf/simulated/floor/tiled/dark{ - temperature = 303.15 - }, +/turf/simulated/floor/tiled/dark, /area/ihss_reclamation/botanyhazard) "JT" = ( /obj/machinery/light{ @@ -7764,9 +7342,7 @@ /obj/structure/table/standard, /obj/item/storage/box/mousetraps, /obj/item/grenade/chem_grenade/cleaner, -/turf/simulated/floor/tiled/dark{ - temperature = 303.15 - }, +/turf/simulated/floor/tiled/dark, /area/ihss_reclamation/southhall) "JW" = ( /obj/structure/cable/green{ @@ -7775,18 +7351,14 @@ /obj/machinery/power/apc/high/north{ req_access = list(113) }, -/obj/machinery/alarm/west{ - req_one_access = null - }, -/turf/simulated/floor/tiled/dark{ - temperature = 303.15 +/obj/machinery/alarm/warm/west{ + req_one_access = list(113) }, +/turf/simulated/floor/tiled/dark, /area/ihss_reclamation/botanyhazard) "JY" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/dark{ - temperature = 303.15 - }, +/turf/simulated/floor/tiled/dark, /area/ihss_reclamation/southhall) "JZ" = ( /obj/machinery/door/airlock/external, @@ -7804,17 +7376,13 @@ name = "airlock_reclamation_dock1" }, /obj/effect/map_effect/marker_helper/airlock/interior, -/turf/simulated/floor/plating{ - temperature = 303.15 - }, +/turf/simulated/floor/plating, /area/ihss_reclamation/dock) "Kf" = ( -/obj/machinery/alarm/north{ - req_one_access = null - }, -/turf/simulated/floor/tiled/dark{ - temperature = 303.15 +/obj/machinery/alarm/warm/north{ + req_one_access = list(113) }, +/turf/simulated/floor/tiled/dark, /area/ihss_reclamation/dock) "Kh" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -7826,12 +7394,8 @@ name = "Armory"; req_one_access = list(113) }, -/obj/machinery/door/firedoor/multi_tile{ - req_one_access = null - }, -/turf/simulated/floor/tiled/dark{ - temperature = 303.15 - }, +/obj/machinery/door/firedoor/noid, +/turf/simulated/floor/tiled/dark, /area/ihss_reclamation/armory) "Ki" = ( /turf/simulated/wall/shuttle/raider, @@ -7854,9 +7418,7 @@ name = "airlock_reclamation_dock4" }, /obj/effect/map_effect/marker_helper/airlock/exterior, -/turf/simulated/floor/plating{ - temperature = 303.15 - }, +/turf/simulated/floor/plating, /area/ihss_reclamation/dock) "Kn" = ( /obj/item/tank/jetpack/carbondioxide, @@ -7864,9 +7426,11 @@ /obj/item/tank/jetpack/carbondioxide, /obj/item/tank/jetpack/carbondioxide, /obj/structure/table/rack, -/turf/simulated/floor/plating{ - temperature = 303.15 +/obj/machinery/light{ + dir = 4; + inserted_light = /obj/item/light/tube/colored/blue }, +/turf/simulated/floor/plating, /area/ihss_reclamation/equipment) "Kp" = ( /obj/machinery/atmospherics/pipe/simple/hidden/fuel{ @@ -7879,9 +7443,7 @@ name = "Scrubber to Waste"; target_pressure = 15000 }, -/turf/simulated/floor/plating{ - temperature = 303.15 - }, +/turf/simulated/floor/plating, /area/ihss_reclamation/equipment) "Ku" = ( /obj/structure/table/standard, @@ -7890,9 +7452,7 @@ /obj/effect/floor_decal/corner/yellow{ color = "#ba9122" }, -/turf/simulated/floor/tiled/dark{ - temperature = 303.15 - }, +/turf/simulated/floor/tiled/dark, /area/ihss_reclamation/bridge) "Kz" = ( /turf/simulated/floor/tiled/white{ @@ -7916,19 +7476,23 @@ dir = 4; color = "#941307" }, -/turf/simulated/floor/tiled/dark{ - temperature = 303.15 - }, +/turf/simulated/floor/tiled/dark, /area/ihss_reclamation/armory) +"KE" = ( +/obj/effect/map_effect/map_helper/ruler_tiles_3{ + dir = 4 + }, +/obj/structure/lattice/catwalk, +/obj/item/hullbeacon/red, +/turf/template_noop, +/area/space) "KH" = ( /obj/effect/map_effect/marker/airlock/docking{ landmark_tag = "nav_ihss_reclamation_dock1"; master_tag = "airlock_reclamation_dock1"; name = "airlock_reclamation_dock1" }, -/turf/simulated/floor/plating{ - temperature = 303.15 - }, +/turf/simulated/floor/plating, /area/ihss_reclamation/dock) "KM" = ( /obj/machinery/door/airlock/external, @@ -7946,9 +7510,7 @@ /obj/structure/cable/green{ icon_state = "1-2" }, -/turf/simulated/floor/plating{ - temperature = 303.15 - }, +/turf/simulated/floor/plating, /area/ihss_reclamation/solars) "KT" = ( /obj/structure/cable/green{ @@ -7966,9 +7528,7 @@ dir = 1; color = "#ba9122" }, -/turf/simulated/floor/tiled/dark{ - temperature = 303.15 - }, +/turf/simulated/floor/tiled/dark, /area/ihss_reclamation/southhall) "KU" = ( /obj/effect/floor_decal/corner/yellow{ @@ -7976,9 +7536,7 @@ dir = 1 }, /obj/structure/bed/stool/chair/office/bridge/generic, -/turf/simulated/floor/tiled/dark{ - temperature = 303.15 - }, +/turf/simulated/floor/tiled/dark, /area/ihss_reclamation/bridge) "KX" = ( /obj/structure/cable/green{ @@ -7995,19 +7553,17 @@ color = "#ba9122" }, /obj/machinery/door/airlock/glass_command{ - name = "Hangar" - }, -/turf/simulated/floor/tiled/dark{ - temperature = 303.15 + name = "Hangar"; + req_access = list(113) }, +/obj/machinery/door/firedoor/noid, +/turf/simulated/floor/tiled/dark, /area/ihss_reclamation/northhall) "KZ" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 1 }, -/turf/simulated/floor/plating{ - temperature = 303.15 - }, +/turf/simulated/floor/plating, /area/ihss_reclamation/fuel) "La" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -8032,9 +7588,7 @@ /obj/structure/cable/green{ icon_state = "1-4" }, -/turf/simulated/floor/plating{ - temperature = 303.15 - }, +/turf/simulated/floor/plating, /area/ihss_reclamation/solars) "Lf" = ( /obj/effect/floor_decal/corner/red/diagonal{ @@ -8045,39 +7599,55 @@ dir = 1; color = "#ba9122" }, -/turf/simulated/floor/tiled/dark{ - temperature = 303.15 - }, +/turf/simulated/floor/tiled/dark, /area/ihss_reclamation/westhall) "Lg" = ( -/obj/effect/map_effect/window_spawner/full/reinforced/grille/firedoor, +/obj/effect/map_effect/window_spawner/full/shuttle/raider{ + req_one_access = list(113); + spawn_firedoor = 1; + spawn_grille = 1 + }, /turf/simulated/floor/plating, /area/ihss_reclamation/westhall) "Lh" = ( /obj/effect/floor_decal/corner/red{ color = "#941307" }, -/turf/simulated/floor/tiled/dark{ - temperature = 303.15 - }, +/turf/simulated/floor/tiled/dark, /area/ihss_reclamation/bridge) "Lk" = ( /obj/machinery/button/switch/crematorium{ _wifi_id = "ihss_crema"; pixel_y = 25 }, -/turf/simulated/floor/tiled/dark{ - temperature = 303.15 - }, +/turf/simulated/floor/tiled/dark, /area/ihss_reclamation/research) "Ln" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 8 }, -/turf/simulated/floor/plating{ - temperature = 303.15 - }, +/turf/simulated/floor/plating, /area/ihss_reclamation/atmos) +"Lp" = ( +/obj/effect/floor_decal/corner/yellow/diagonal{ + dir = 1; + color = "#ba9122" + }, +/obj/effect/floor_decal/corner/red/diagonal{ + dir = 4; + color = "#941307" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 9 + }, +/turf/simulated/floor/tiled/dark, +/area/ihss_reclamation/dock) "Ls" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -8095,9 +7665,7 @@ /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 8 }, -/turf/simulated/floor/tiled/dark{ - temperature = 303.15 - }, +/turf/simulated/floor/tiled/dark, /area/ihss_reclamation/storage) "Lv" = ( /obj/structure/flora/grass/junglegrass/random, @@ -8127,9 +7695,7 @@ pixel_y = -28; dir = 8 }, -/turf/simulated/floor/plating{ - temperature = 303.15 - }, +/turf/simulated/floor/plating, /area/ihss_reclamation/southhall) "LC" = ( /obj/structure/cable/green{ @@ -8149,17 +7715,13 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 8 }, -/turf/simulated/floor/tiled/dark{ - temperature = 303.15 - }, +/turf/simulated/floor/tiled/dark, /area/ihss_reclamation/southhall) "LD" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 4 }, -/turf/simulated/floor/plating{ - temperature = 303.15 - }, +/turf/simulated/floor/plating, /area/ihss_reclamation/solars) "LF" = ( /obj/effect/floor_decal/corner/red/diagonal{ @@ -8182,15 +7744,14 @@ /obj/structure/cable/green{ icon_state = "2-8" }, -/turf/simulated/floor/tiled/dark{ - temperature = 303.15 - }, +/turf/simulated/floor/tiled/dark, /area/ihss_reclamation/southhall) "LI" = ( -/obj/effect/map_effect/window_spawner/full/reinforced/firedoor, -/turf/simulated/floor/tiled/dark{ - temperature = 303.15 +/obj/effect/map_effect/window_spawner/full/shuttle/raider{ + req_one_access = list(113); + spawn_firedoor = 1 }, +/turf/simulated/floor/tiled/dark, /area/ihss_reclamation/westhall) "LK" = ( /obj/machinery/atmospherics/unary/vent_pump/siphon/on/atmos{ @@ -8209,26 +7770,20 @@ color = "#941307"; dir = 10 }, -/turf/simulated/floor/tiled/dark{ - temperature = 303.15 - }, +/turf/simulated/floor/tiled/dark, /area/ihss_reclamation/bridge) "LO" = ( /obj/machinery/light, /obj/structure/closet/radiation, /obj/effect/floor_decal/industrial/outline/engineering, -/turf/simulated/floor/plating{ - temperature = 303.15 - }, +/turf/simulated/floor/plating, /area/ihss_reclamation/solars) "LP" = ( /obj/effect/floor_decal/corner/yellow/full{ color = "#ba9122"; dir = 4 }, -/turf/simulated/floor/tiled/dark{ - temperature = 303.15 - }, +/turf/simulated/floor/tiled/dark, /area/ihss_reclamation/mess) "LT" = ( /obj/machinery/atmospherics/binary/pump/high_power/on{ @@ -8236,46 +7791,46 @@ target_pressure = 15000; dir = 1 }, -/turf/simulated/floor/plating{ - temperature = 303.15 - }, +/turf/simulated/floor/plating, /area/ihss_reclamation/equipment) "LY" = ( /obj/structure/window/reinforced, /obj/structure/table/standard, /obj/machinery/chemical_dispenser/coffeemaster/full, -/turf/simulated/floor/tiled/dark{ - temperature = 303.15 - }, +/turf/simulated/floor/tiled/dark, /area/ihss_reclamation/bridge) "Mf" = ( /obj/structure/cable/green{ icon_state = "1-2" }, /obj/machinery/atmospherics/unary/vent_pump/on, -/turf/simulated/floor/tiled/dark{ - temperature = 303.15 - }, +/turf/simulated/floor/tiled/dark, /area/ihss_reclamation/botanyhazard) -"Mh" = ( -/obj/machinery/door/airlock/external, -/obj/machinery/access_button{ - pixel_x = -28; - pixel_y = 12; - dir = 1 +"Mg" = ( +/obj/effect/floor_decal/corner/mauve{ + dir = 10 }, -/obj/machinery/atmospherics/pipe/manifold/hidden{ - dir = 8 - }, -/obj/effect/map_effect/marker/airlock/docking{ - landmark_tag = "nav_ihss_reclamation_dock2"; - master_tag = "airlock_reclamation_dock2"; - name = "airlock_reclamation_dock2" - }, -/obj/effect/map_effect/marker_helper/airlock/interior, -/turf/simulated/floor/plating{ +/obj/machinery/firealarm/south, +/turf/simulated/floor/tiled/white{ temperature = 303.15 }, +/area/ihss_reclamation/medsci) +"Mh" = ( +/obj/effect/floor_decal/corner/yellow/diagonal{ + dir = 1; + color = "#ba9122" + }, +/obj/effect/floor_decal/corner/red/diagonal{ + dir = 4; + color = "#941307" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, /area/ihss_reclamation/dock) "Mi" = ( /obj/effect/landmark/entry_point/fore{ @@ -8302,9 +7857,7 @@ dir = 1; color = "#ba9122" }, -/turf/simulated/floor/tiled/dark{ - temperature = 303.15 - }, +/turf/simulated/floor/tiled/dark, /area/ihss_reclamation/northhall) "Mm" = ( /obj/machinery/light{ @@ -8333,9 +7886,7 @@ dir = 1; color = "#ba9122" }, -/turf/simulated/floor/tiled/dark{ - temperature = 303.15 - }, +/turf/simulated/floor/tiled/dark, /area/ihss_reclamation/easthall) "Mq" = ( /obj/machinery/door/blast/odin{ @@ -8344,9 +7895,7 @@ /obj/effect/landmark/entry_point/aft{ name = "aft, hangar" }, -/turf/simulated/floor/plating{ - temperature = 303.15 - }, +/turf/simulated/floor/plating, /area/ihss_reclamation/hangar1) "Mr" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -8359,9 +7908,7 @@ /obj/machinery/door/firedoor/multi_tile{ req_one_access = null }, -/turf/simulated/floor/tiled/dark{ - temperature = 303.15 - }, +/turf/simulated/floor/tiled/dark, /area/ihss_reclamation/southhall) "Ms" = ( /obj/effect/floor_decal/corner/red/diagonal{ @@ -8376,9 +7923,7 @@ icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/dark{ - temperature = 303.15 - }, +/turf/simulated/floor/tiled/dark, /area/ihss_reclamation/dock) "Mt" = ( /obj/structure/cable/green{ @@ -8397,9 +7942,7 @@ dir = 9 }, /obj/structure/lattice/catwalk/indoor/grate, -/turf/simulated/floor/plating{ - temperature = 303.15 - }, +/turf/simulated/floor/plating, /area/ihss_reclamation/hangar1) "My" = ( /obj/structure/cable{ @@ -8415,7 +7958,11 @@ /turf/simulated/floor, /area/shuttle/ihss_reclamation) "Mz" = ( -/obj/effect/map_effect/window_spawner/full/reinforced/firedoor, +/obj/effect/map_effect/window_spawner/full/shuttle/raider{ + req_one_access = list(113); + spawn_firedoor = 1; + spawn_grille = 1 + }, /turf/simulated/floor/plating, /area/ihss_reclamation/crew/one) "MC" = ( @@ -8443,9 +7990,8 @@ color = "#ba9122"; dir = 5 }, -/turf/simulated/floor/tiled/dark{ - temperature = 303.15 - }, +/obj/machinery/firealarm/north, +/turf/simulated/floor/tiled/dark, /area/ihss_reclamation/bridge) "MF" = ( /obj/structure/lattice/catwalk, @@ -8453,9 +7999,7 @@ /turf/template_noop, /area/space) "MJ" = ( -/turf/simulated/floor/tiled/dark{ - temperature = 303.15 - }, +/turf/simulated/floor/tiled/dark, /area/ihss_reclamation/crew/two) "ML" = ( /obj/effect/floor_decal/corner/grey/diagonal, @@ -8475,9 +8019,7 @@ /obj/machinery/power/apc/high/north{ req_access = list(113) }, -/turf/simulated/floor/tiled/dark{ - temperature = 303.15 - }, +/turf/simulated/floor/tiled/dark, /area/ihss_reclamation/crew/three) "MR" = ( /obj/structure/cable/green{ @@ -8490,27 +8032,32 @@ dir = 8 }, /obj/structure/lattice/catwalk/indoor/grate, -/turf/simulated/floor/plating{ - temperature = 303.15 - }, +/turf/simulated/floor/plating, /area/ihss_reclamation/hangar1) "MS" = ( /obj/effect/floor_decal/corner/mauve/full{ dir = 1 }, +/obj/machinery/firealarm/east, /turf/simulated/floor/tiled/white{ temperature = 303.15 }, /area/ihss_reclamation/research) +"MX" = ( +/obj/effect/floor_decal/corner/red{ + color = "#941307"; + dir = 10 + }, +/obj/machinery/firealarm/south, +/turf/simulated/floor/tiled/dark, +/area/ihss_reclamation/mess) "Na" = ( /obj/structure/cable/green{ icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/dark{ - temperature = 303.15 - }, +/turf/simulated/floor/tiled/dark, /area/ihss_reclamation/crew) "Nb" = ( /obj/structure/cable/green{ @@ -8520,9 +8067,7 @@ req_access = list(113) }, /obj/effect/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/plating{ - temperature = 303.15 - }, +/turf/simulated/floor/plating, /area/ihss_reclamation/solars) "Nf" = ( /obj/structure/cable/green{ @@ -8544,17 +8089,13 @@ color = "#941307" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/dark{ - temperature = 303.15 - }, +/turf/simulated/floor/tiled/dark, /area/ihss_reclamation/dock) "Np" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 4 }, -/turf/simulated/floor/tiled/dark{ - temperature = 303.15 - }, +/turf/simulated/floor/tiled/dark, /area/ihss_reclamation/dock) "Nq" = ( /obj/effect/landmark/entry_point/port{ @@ -8607,49 +8148,44 @@ color = "#941307" }, /obj/effect/floor_decal/industrial/hatch/red, -/turf/simulated/floor/tiled/dark{ - temperature = 303.15 - }, +/turf/simulated/floor/tiled/dark, /area/ihss_reclamation/armory) "Ny" = ( -/obj/machinery/door/airlock/external, +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ + dir = 1 + }, +/obj/machinery/embedded_controller/radio/airlock/docking_port{ + dir = 8; + pixel_y = 6; + pixel_x = 20 + }, +/obj/machinery/airlock_sensor{ + pixel_x = 20; + dir = 8; + pixel_y = -6 + }, /obj/effect/map_effect/marker/airlock/docking{ - landmark_tag = "nav_ihss_reclamation_dock2"; - master_tag = "airlock_reclamation_dock2"; - name = "airlock_reclamation_dock2" - }, -/obj/effect/map_effect/marker_helper/airlock/exterior, -/turf/simulated/floor/plating{ - temperature = 303.15 + landmark_tag = "nav_ihss_reclamation_dock1"; + master_tag = "airlock_reclamation_dock1"; + name = "airlock_reclamation_dock1" }, +/turf/simulated/floor/plating, /area/ihss_reclamation/dock) "Nz" = ( /obj/machinery/portable_atmospherics/hydroponics, /obj/machinery/atmospherics/portables_connector{ dir = 8 }, -/turf/simulated/floor/tiled/dark{ - temperature = 303.15 - }, +/turf/simulated/floor/tiled/dark, /area/ihss_reclamation/botanyhazard) "NC" = ( /turf/simulated/floor/exoplanet/water/shallow/moghes, /area/ihss_reclamation/envirosim) "NE" = ( -/obj/effect/floor_decal/corner/red/diagonal{ - dir = 4; - color = "#941307" - }, -/obj/effect/floor_decal/corner/yellow/diagonal{ - dir = 1; - color = "#ba9122" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/turf/simulated/floor/tiled/dark{ - temperature = 303.15 +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 }, +/turf/simulated/floor/tiled/dark, /area/ihss_reclamation/dock) "NF" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/supply, @@ -8677,9 +8213,7 @@ /obj/machinery/light{ dir = 4 }, -/turf/simulated/floor/tiled/dark{ - temperature = 303.15 - }, +/turf/simulated/floor/tiled/dark, /area/ihss_reclamation/dock) "NR" = ( /obj/machinery/atmospherics/binary/pump{ @@ -8692,14 +8226,22 @@ "NS" = ( /turf/simulated/wall/shuttle/raider, /area/ihss_reclamation/medsci) +"NT" = ( +/obj/machinery/light{ + inserted_light = /obj/item/light/tube/colored/blue + }, +/turf/simulated/floor/tiled/dark, +/area/ihss_reclamation/southhall) "NZ" = ( /turf/simulated/floor/reinforced/airmix, /area/ihss_reclamation/atmos) "Oe" = ( -/obj/effect/map_effect/window_spawner/full/reinforced/firedoor, -/turf/simulated/floor/plating{ - temperature = 303.15 +/obj/effect/map_effect/window_spawner/full/shuttle/mercenary{ + req_one_access = list(113); + spawn_firedoor = 1; + spawn_grille = 1 }, +/turf/simulated/floor/plating, /area/shuttle/ihss_reclamation) "Of" = ( /obj/structure/window/reinforced{ @@ -8716,14 +8258,10 @@ color = "#941307"; dir = 6 }, -/turf/simulated/floor/tiled/dark{ - temperature = 303.15 - }, +/turf/simulated/floor/tiled/dark, /area/ihss_reclamation/bridge) "Og" = ( -/turf/simulated/floor/tiled/dark{ - temperature = 303.15 - }, +/turf/simulated/floor/tiled/dark, /area/ihss_reclamation/mess) "Ol" = ( /obj/structure/closet/cabinet, @@ -8732,31 +8270,11 @@ /obj/item/clothing/shoes/sandals/caligae, /obj/item/clothing/shoes/sandals/caligae, /obj/item/clothing/accessory/poncho, -/turf/simulated/floor/tiled/dark{ - temperature = 303.15 - }, +/turf/simulated/floor/tiled/dark, /area/ihss_reclamation/crew/six) "Op" = ( -/obj/machinery/atmospherics/unary/vent_pump{ - dir = 4 - }, -/obj/machinery/embedded_controller/radio/airlock/docking_port{ - dir = 2; - pixel_y = 28; - pixel_x = -6 - }, -/obj/machinery/airlock_sensor{ - pixel_x = 6; - pixel_y = 28 - }, -/obj/effect/map_effect/marker/airlock/docking{ - landmark_tag = "nav_ihss_reclamation_dock3"; - master_tag = "airlock_reclamation_dock3"; - name = "airlock_reclamation_dock3" - }, -/turf/simulated/floor/plating{ - temperature = 303.15 - }, +/obj/machinery/light, +/turf/simulated/floor/tiled/dark, /area/ihss_reclamation/dock) "Or" = ( /obj/structure/cable/green{ @@ -8769,13 +8287,24 @@ /obj/machinery/power/apc/high/east{ req_access = list(113) }, -/turf/simulated/floor/tiled/dark{ - temperature = 303.15 - }, +/turf/simulated/floor/tiled/dark, /area/ihss_reclamation/mess) "Os" = ( /turf/simulated/floor/exoplanet/grass/moghes/dirt/beach, /area/ihss_reclamation/envirosim) +"Ov" = ( +/obj/effect/floor_decal/corner/yellow/diagonal{ + dir = 1; + color = "#ba9122" + }, +/obj/effect/floor_decal/corner/red/diagonal{ + dir = 4; + color = "#941307" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden, +/turf/simulated/floor/tiled/dark, +/area/ihss_reclamation/dock) "OG" = ( /obj/structure/cable/green{ icon_state = "4-8" @@ -8784,9 +8313,7 @@ req_access = list(113) }, /obj/effect/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/plating{ - temperature = 303.15 - }, +/turf/simulated/floor/plating, /area/ihss_reclamation/solars) "OI" = ( /obj/structure/cable/green{ @@ -8806,9 +8333,7 @@ dir = 1; color = "#ba9122" }, -/turf/simulated/floor/tiled/dark{ - temperature = 303.15 - }, +/turf/simulated/floor/tiled/dark, /area/ihss_reclamation/easthall) "OM" = ( /obj/effect/floor_decal/corner/red/diagonal{ @@ -8823,9 +8348,7 @@ icon_state = "1-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/dark{ - temperature = 303.15 - }, +/turf/simulated/floor/tiled/dark, /area/ihss_reclamation/dock) "ON" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -8840,9 +8363,7 @@ /obj/machinery/power/apc/high/south{ req_access = list(113) }, -/turf/simulated/floor/tiled/dark{ - temperature = 303.15 - }, +/turf/simulated/floor/tiled/dark, /area/ihss_reclamation/storage) "OP" = ( /obj/structure/cable/green{ @@ -8852,23 +8373,17 @@ /obj/machinery/power/apc/high/north{ req_access = list(113) }, -/turf/simulated/floor/tiled/dark{ - temperature = 303.15 - }, +/turf/simulated/floor/tiled/dark, /area/ihss_reclamation/crew/seven) "OS" = ( -/obj/machinery/alarm/west{ - req_one_access = null - }, -/turf/simulated/floor/tiled/dark{ - temperature = 303.15 +/obj/machinery/alarm/warm/west{ + req_one_access = list(113) }, +/turf/simulated/floor/tiled/dark, /area/ihss_reclamation/dock) "OT" = ( /obj/structure/table/standard, -/turf/simulated/floor/tiled/dark{ - temperature = 303.15 - }, +/turf/simulated/floor/tiled/dark, /area/ihss_reclamation/crew/seven) "OX" = ( /turf/simulated/floor/exoplanet/grass/moghes/dirt/beach{ @@ -8879,8 +8394,8 @@ /obj/machinery/atmospherics/pipe/simple/hidden/fuel{ dir = 8 }, -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 4 +/obj/machinery/atmospherics/pipe/simple/hidden/aux{ + dir = 8 }, /obj/machinery/door/airlock/external{ dir = 4 @@ -8891,16 +8406,14 @@ dir = 8 }, /obj/effect/map_effect/marker/airlock/shuttle{ - cycle_to_external_air = 1; master_tag = "airlock_reclamation_shuttle"; name = "airlock_reclamation_shuttle"; req_one_access = list(113); - shuttle_tag = "IHSS Reclamation Shuttle" + shuttle_tag = "IHSS Reclamation Shuttle"; + cycle_to_external_air = 1 }, /obj/effect/map_effect/marker_helper/airlock/interior, -/turf/simulated/floor/plating{ - temperature = 303.15 - }, +/turf/simulated/floor/plating, /area/shuttle/ihss_reclamation) "Pa" = ( /obj/structure/lattice/catwalk, @@ -8941,39 +8454,26 @@ dir = 4; color = "#941307" }, -/obj/machinery/atmospherics/pipe/simple/hidden, -/turf/simulated/floor/tiled/dark{ - temperature = 303.15 +/obj/machinery/atmospherics/pipe/simple/hidden/aux{ + dir = 1 }, +/turf/simulated/floor/tiled/dark, /area/shuttle/ihss_reclamation) "Ph" = ( /obj/structure/reagent_dispensers/watertank, -/turf/simulated/floor/tiled/dark{ - temperature = 303.15 - }, +/turf/simulated/floor/tiled/dark, /area/ihss_reclamation/southhall) "Pi" = ( -/obj/effect/floor_decal/corner/red/diagonal{ +/obj/machinery/suit_cycler/offship/hephaestus{ + req_access = list(113) + }, +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/light{ dir = 4; - color = "#941307" + inserted_light = /obj/item/light/tube/colored/blue }, -/obj/effect/floor_decal/corner/yellow/diagonal{ - dir = 1; - color = "#ba9122" - }, -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/turf/simulated/floor/tiled/dark{ - temperature = 303.15 - }, -/area/ihss_reclamation/dock) +/turf/simulated/floor/plating, +/area/ihss_reclamation/equipment) "Pj" = ( /obj/structure/undies_wardrobe, /turf/simulated/floor/carpet/lightblue, @@ -8985,6 +8485,10 @@ /obj/structure/table/standard, /obj/item/storage/box/monkeycubes/stokcubes, /obj/item/storage/box/monkeycubes/stokcubes, +/obj/item/paper/fluff/ihss_reclamation_cell{ + pixel_x = 6; + pixel_y = 4 + }, /turf/simulated/floor/tiled/white{ temperature = 303.15 }, @@ -8997,6 +8501,15 @@ /obj/structure/lattice/catwalk, /turf/simulated/floor/airless, /area/ihss_reclamation/solars) +"Pm" = ( +/obj/structure/lattice/catwalk, +/obj/structure/bed/handrail{ + buckle_dir = 4; + dir = 4; + pixel_x = -5 + }, +/turf/template_noop, +/area/space) "Pq" = ( /obj/structure/cable/green{ icon_state = "4-8" @@ -9008,10 +8521,10 @@ name = "Habitation"; dir = 4 }, -/obj/machinery/door/firedoor/noid, -/turf/simulated/floor/tiled/dark{ - temperature = 303.15 +/obj/machinery/door/firedoor/noid{ + dir = 4 }, +/turf/simulated/floor/tiled/dark, /area/ihss_reclamation/crew) "Ps" = ( /obj/machinery/atmospherics/pipe/simple/visible/universal{ @@ -9027,6 +8540,7 @@ name = "Reactor"; req_one_access = list(113) }, +/obj/machinery/door/firedoor/noid, /turf/simulated/floor/reinforced, /area/ihss_reclamation/solars) "Pv" = ( @@ -9061,20 +8575,19 @@ /obj/machinery/door/airlock/glass_service{ name = "Mess Hall" }, -/obj/machinery/door/firedoor/noid{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark{ - temperature = 303.15 - }, +/obj/machinery/door/firedoor/noid, +/turf/simulated/floor/tiled/dark, /area/ihss_reclamation/mess) +"PI" = ( +/obj/machinery/firealarm/east, +/turf/simulated/floor/tiled/dark, +/area/ihss_reclamation/southhall) "PJ" = ( /obj/machinery/atmospherics/pipe/simple/visible/purple{ dir = 10 }, -/turf/simulated/floor/plating{ - temperature = 303.15 - }, +/obj/machinery/firealarm/east, +/turf/simulated/floor/plating, /area/ihss_reclamation/fuel) "PL" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -9104,9 +8617,7 @@ name = "airlock_reclamation_dock1" }, /obj/effect/map_effect/marker_helper/airlock/exterior, -/turf/simulated/floor/plating{ - temperature = 303.15 - }, +/turf/simulated/floor/plating, /area/ihss_reclamation/dock) "PP" = ( /obj/machinery/atmospherics/binary/pump/on{ @@ -9116,9 +8627,7 @@ dir = 8; icon_state = "tube_empty" }, -/turf/simulated/floor/plating{ - temperature = 303.15 - }, +/turf/simulated/floor/plating, /area/ihss_reclamation/atmos) "Qd" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ @@ -9128,23 +8637,17 @@ /turf/simulated/floor/exoplanet/grass/moghes, /area/ihss_reclamation/envirosim) "Qe" = ( -/turf/simulated/floor/tiled/dark{ - temperature = 303.15 - }, +/turf/simulated/floor/tiled/dark, /area/ihss_reclamation/crew/four) "Qf" = ( /obj/machinery/atmospherics/pipe/manifold4w/visible, -/turf/simulated/floor/tiled/dark{ - temperature = 303.15 - }, +/turf/simulated/floor/tiled/dark, /area/ihss_reclamation/botanyhazard) "Qg" = ( -/obj/machinery/alarm/north{ - req_one_access = null - }, -/turf/simulated/floor/tiled/dark{ - temperature = 303.15 +/obj/machinery/alarm/warm/north{ + req_one_access = list(113) }, +/turf/simulated/floor/tiled/dark, /area/ihss_reclamation/northhall) "Qh" = ( /obj/machinery/atmospherics/pipe/simple/hidden/red, @@ -9155,9 +8658,7 @@ color = "#ba9122"; dir = 6 }, -/turf/simulated/floor/tiled/dark{ - temperature = 303.15 - }, +/turf/simulated/floor/tiled/dark, /area/ihss_reclamation/bridge) "Qk" = ( /obj/machinery/door/blast/regular{ @@ -9177,9 +8678,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 10 }, -/turf/simulated/floor/tiled/dark{ - temperature = 303.15 - }, +/turf/simulated/floor/tiled/dark, /area/ihss_reclamation/crew/six) "Qn" = ( /obj/effect/floor_decal/corner/red/diagonal{ @@ -9199,9 +8698,7 @@ /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ dir = 8 }, -/turf/simulated/floor/tiled/dark{ - temperature = 303.15 - }, +/turf/simulated/floor/tiled/dark, /area/ihss_reclamation/northhall) "Qq" = ( /obj/machinery/atmospherics/pipe/manifold4w/hidden/fuel, @@ -9213,33 +8710,21 @@ icon_state = "map-supply" }, /obj/machinery/atmospherics/pipe/simple/hidden/fuel, -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 6 - }, /turf/simulated/floor, /area/shuttle/ihss_reclamation) "Qz" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 1 }, -/turf/simulated/floor/tiled/dark{ - temperature = 303.15 - }, +/turf/simulated/floor/tiled/dark, /area/ihss_reclamation/northhall) "QB" = ( -/obj/machinery/atmospherics/unary/vent_pump{ - dir = 4 +/obj/machinery/light{ + dir = 8; + pixel_x = -12 }, -/obj/machinery/light, -/obj/effect/map_effect/marker/airlock/docking{ - landmark_tag = "nav_ihss_reclamation_dock3"; - master_tag = "airlock_reclamation_dock3"; - name = "airlock_reclamation_dock3" - }, -/turf/simulated/floor/plating{ - temperature = 303.15 - }, -/area/ihss_reclamation/dock) +/turf/simulated/floor/tiled/dark, +/area/ihss_reclamation/southhall) "QD" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -9250,17 +8735,13 @@ name = "Botanical Lab"; req_access = list(113) }, -/obj/machinery/door/firedoor/noid{ - dir = 4 - }, +/obj/machinery/door/firedoor/noid, /turf/simulated/floor/tiled/white{ temperature = 303.15 }, /area/ihss_reclamation/plantroom) "QF" = ( -/turf/simulated/floor/plating{ - temperature = 303.15 - }, +/turf/simulated/floor/plating, /area/ihss_reclamation/equipment) "QG" = ( /obj/machinery/door/airlock/multi_tile/glass{ @@ -9296,17 +8777,13 @@ /obj/machinery/computer/ship/targeting{ dir = 4 }, -/turf/simulated/floor/tiled/dark{ - temperature = 303.15 - }, +/turf/simulated/floor/tiled/dark, /area/shuttle/ihss_reclamation) "QJ" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 8 }, -/turf/simulated/floor/tiled/dark{ - temperature = 303.15 - }, +/turf/simulated/floor/tiled/dark, /area/ihss_reclamation/hangarhall) "QK" = ( /obj/effect/floor_decal/spline/fancy/wood{ @@ -9325,17 +8802,13 @@ dir = 1; color = "#ba9122" }, -/turf/simulated/floor/tiled/dark{ - temperature = 303.15 - }, +/turf/simulated/floor/tiled/dark, /area/ihss_reclamation/crew) "QU" = ( /obj/machinery/light{ dir = 1 }, -/turf/simulated/floor/tiled/dark{ - temperature = 303.15 - }, +/turf/simulated/floor/tiled/dark, /area/ihss_reclamation/dock) "QY" = ( /obj/structure/cable/green{ @@ -9351,9 +8824,7 @@ dir = 1; color = "#ba9122" }, -/turf/simulated/floor/tiled/dark{ - temperature = 303.15 - }, +/turf/simulated/floor/tiled/dark, /area/ihss_reclamation/easthall) "QZ" = ( /obj/effect/floor_decal/corner/mauve{ @@ -9383,9 +8854,7 @@ icon_state = "rwindow" }, /obj/item/pen/black, -/turf/simulated/floor/tiled/dark{ - temperature = 303.15 - }, +/turf/simulated/floor/tiled/dark, /area/ihss_reclamation/armoryfoyer) "Rd" = ( /obj/structure/lattice/catwalk, @@ -9397,9 +8866,7 @@ }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/dark{ - temperature = 303.15 - }, +/turf/simulated/floor/tiled/dark, /area/ihss_reclamation/northhall) "Rg" = ( /obj/structure/cable/green{ @@ -9409,9 +8876,7 @@ /obj/machinery/power/apc/high/north{ req_access = list(113) }, -/turf/simulated/floor/tiled/dark{ - temperature = 303.15 - }, +/turf/simulated/floor/tiled/dark, /area/ihss_reclamation/crew/five) "Rk" = ( /obj/effect/floor_decal/corner/red/diagonal{ @@ -9426,9 +8891,7 @@ dir = 9; pixel_y = 0 }, -/turf/simulated/floor/tiled/dark{ - temperature = 303.15 - }, +/turf/simulated/floor/tiled/dark, /area/ihss_reclamation/dock) "Rl" = ( /obj/structure/table/standard, @@ -9474,9 +8937,7 @@ dir = 4 }, /obj/machinery/portable_atmospherics/powered/scrubber, -/turf/simulated/floor/plating{ - temperature = 303.15 - }, +/turf/simulated/floor/plating, /area/ihss_reclamation/equipment) "Rr" = ( /obj/effect/floor_decal/corner/mauve{ @@ -9506,9 +8967,7 @@ /obj/structure/morgue/crematorium{ _wifi_id = "ihss_crema" }, -/turf/simulated/floor/tiled/dark{ - temperature = 303.15 - }, +/turf/simulated/floor/tiled/dark, /area/ihss_reclamation/research) "Rv" = ( /obj/effect/floor_decal/corner/red/diagonal{ @@ -9525,9 +8984,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 6 }, -/turf/simulated/floor/tiled/dark{ - temperature = 303.15 - }, +/turf/simulated/floor/tiled/dark, /area/ihss_reclamation/dock) "RA" = ( /obj/structure/cable/green{ @@ -9558,14 +9015,14 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/door/airlock/engineering{ - name = "Engineering Storage" + name = "Engineering Storage"; + req_access = list(113) }, -/obj/machinery/door/firedoor/noid{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark{ - temperature = 303.15 +/obj/machinery/door/firedoor/noid, +/obj/structure/cable/green{ + icon_state = "1-2" }, +/turf/simulated/floor/tiled/dark, /area/ihss_reclamation/northhall) "RI" = ( /obj/structure/bed/stool/chair/wood, @@ -9579,9 +9036,7 @@ dir = 8; icon_state = "tube_empty" }, -/turf/simulated/floor/tiled/dark{ - temperature = 303.15 - }, +/turf/simulated/floor/tiled/dark, /area/ihss_reclamation/dock) "RN" = ( /obj/effect/floor_decal/spline/fancy/wood{ @@ -9607,9 +9062,7 @@ dir = 1; color = "#ba9122" }, -/turf/simulated/floor/tiled/dark{ - temperature = 303.15 - }, +/turf/simulated/floor/tiled/dark, /area/ihss_reclamation/southhall) "RX" = ( /obj/structure/cable/green{ @@ -9629,17 +9082,13 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 10 }, -/turf/simulated/floor/tiled/dark{ - temperature = 303.15 - }, +/turf/simulated/floor/tiled/dark, /area/ihss_reclamation/northhall) "RZ" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, -/turf/simulated/floor/plating{ - temperature = 303.15 - }, +/turf/simulated/floor/plating, /area/ihss_reclamation/atmos) "Sd" = ( /obj/machinery/door/airlock/external{ @@ -9656,15 +9105,11 @@ name = "airlock_reclamation_dock3" }, /obj/effect/map_effect/marker_helper/airlock/exterior, -/turf/simulated/floor/plating{ - temperature = 303.15 - }, +/turf/simulated/floor/plating, /area/ihss_reclamation/dock) "Sp" = ( /obj/machinery/atmospherics/unary/vent_pump/on, -/turf/simulated/floor/tiled/dark{ - temperature = 303.15 - }, +/turf/simulated/floor/tiled/dark, /area/ihss_reclamation/southhall) "Sr" = ( /obj/structure/cable/green{ @@ -9673,15 +9118,14 @@ /obj/machinery/power/apc/high/west{ req_access = list(113) }, -/turf/simulated/floor/tiled/dark{ - temperature = 303.15 - }, +/turf/simulated/floor/tiled/dark, /area/ihss_reclamation/westhall) "Su" = ( -/obj/effect/map_effect/window_spawner/full/reinforced/firedoor, -/turf/simulated/floor/tiled/dark{ - temperature = 303.15 +/obj/effect/map_effect/window_spawner/full/shuttle/raider{ + req_one_access = list(113); + spawn_firedoor = 1 }, +/turf/simulated/floor/tiled/dark, /area/ihss_reclamation/easthall) "Sw" = ( /obj/effect/floor_decal/corner/mauve{ @@ -9710,11 +9154,8 @@ temperature = 303.15 }, /area/ihss_reclamation/medsci) -"Sz" = ( -/obj/effect/map_effect/window_spawner/full/reinforced/grille/firedoor, -/turf/simulated/floor/plating, -/area/ihss_reclamation/southhall) "SA" = ( +/obj/effect/decal/cleanable/blood, /obj/effect/decal/remains, /turf/simulated/floor/exoplanet/grass/moghes, /area/ihss_reclamation/envirosim) @@ -9726,9 +9167,7 @@ /obj/structure/cable/green{ icon_state = "1-8" }, -/turf/simulated/floor/tiled/dark{ - temperature = 303.15 - }, +/turf/simulated/floor/tiled/dark, /area/ihss_reclamation/armoryfoyer) "SC" = ( /obj/effect/floor_decal/corner/red/diagonal{ @@ -9744,9 +9183,7 @@ }, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, /obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/turf/simulated/floor/tiled/dark{ - temperature = 303.15 - }, +/turf/simulated/floor/tiled/dark, /area/ihss_reclamation/northhall) "SD" = ( /obj/structure/bed/stool/chair/shuttle{ @@ -9759,9 +9196,7 @@ /obj/machinery/light{ dir = 4 }, -/turf/simulated/floor/tiled/dark{ - temperature = 303.15 - }, +/turf/simulated/floor/tiled/dark, /area/shuttle/ihss_reclamation) "SE" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -9773,9 +9208,7 @@ /obj/structure/cable/green{ icon_state = "4-8" }, -/turf/simulated/floor/tiled/dark{ - temperature = 303.15 - }, +/turf/simulated/floor/tiled/dark, /area/ihss_reclamation/storage) "SH" = ( /obj/machinery/power/apc/high/south{ @@ -9784,18 +9217,14 @@ /obj/structure/cable/green{ icon_state = "0-8" }, -/turf/simulated/floor/plating{ - temperature = 303.15 - }, +/turf/simulated/floor/plating, /area/ihss_reclamation/atmos) "SK" = ( /obj/effect/floor_decal/corner/red/full{ color = "#941307"; dir = 8 }, -/turf/simulated/floor/tiled/dark{ - temperature = 303.15 - }, +/turf/simulated/floor/tiled/dark, /area/ihss_reclamation/mess) "SM" = ( /obj/structure/cable/green{ @@ -9809,13 +9238,14 @@ }, /obj/machinery/door/airlock/glass_command{ name = "Hangar"; + dir = 4; + req_access = list(113) + }, +/obj/machinery/door/firedoor/noid{ dir = 4 }, -/obj/machinery/door/firedoor/noid, /obj/structure/lattice/catwalk/indoor/grate, -/turf/simulated/floor/plating{ - temperature = 303.15 - }, +/turf/simulated/floor/plating, /area/ihss_reclamation/hangar1) "SO" = ( /obj/machinery/computer/general_air_control/large_tank_control{ @@ -9823,28 +9253,24 @@ output_tag = "ihss_air_out"; sensors = list("ihss_air_sensor"="Tank") }, -/turf/simulated/floor/plating{ - temperature = 303.15 - }, +/turf/simulated/floor/plating, /area/ihss_reclamation/atmos) "SR" = ( /obj/structure/cable/green{ icon_state = "4-8" }, /obj/effect/map_effect/marker/airlock/shuttle{ - cycle_to_external_air = 1; master_tag = "airlock_reclamation_shuttle"; name = "airlock_reclamation_shuttle"; req_one_access = list(113); - shuttle_tag = "IHSS Reclamation Shuttle" + shuttle_tag = "IHSS Reclamation Shuttle"; + cycle_to_external_air = 1 }, -/obj/machinery/atmospherics/unary/vent_pump/high_volume{ +/obj/machinery/atmospherics/unary/vent_pump/high_volume/aux{ dir = 4 }, /obj/structure/bed/handrail, -/turf/simulated/floor/plating{ - temperature = 303.15 - }, +/turf/simulated/floor/plating, /area/shuttle/ihss_reclamation) "ST" = ( /obj/effect/floor_decal/corner/red/diagonal{ @@ -9859,9 +9285,7 @@ /obj/structure/cable/green{ icon_state = "4-8" }, -/turf/simulated/floor/tiled/dark{ - temperature = 303.15 - }, +/turf/simulated/floor/tiled/dark, /area/ihss_reclamation/northhall) "SU" = ( /obj/structure/cable/green{ @@ -9873,9 +9297,7 @@ /obj/structure/cable{ icon_state = "0-2" }, -/turf/simulated/floor/plating{ - temperature = 303.15 - }, +/turf/simulated/floor/plating, /area/ihss_reclamation/solars) "SV" = ( /obj/structure/cable/green{ @@ -9884,18 +9306,15 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 10 }, -/turf/simulated/floor/tiled/dark{ - temperature = 303.15 - }, +/obj/machinery/firealarm/east, +/turf/simulated/floor/tiled/dark, /area/ihss_reclamation/northhall) "SW" = ( /obj/effect/floor_decal/corner/red/diagonal{ dir = 4; color = "#941307" }, -/turf/simulated/floor/tiled/dark{ - temperature = 303.15 - }, +/turf/simulated/floor/tiled/dark, /area/ihss_reclamation/armoryfoyer) "SX" = ( /obj/machinery/air_sensor{ @@ -9922,9 +9341,7 @@ dir = 4 }, /obj/structure/lattice/catwalk/indoor/grate, -/turf/simulated/floor/plating{ - temperature = 303.15 - }, +/turf/simulated/floor/plating, /area/ihss_reclamation/hangar1) "SZ" = ( /obj/structure/cable/green{ @@ -9944,15 +9361,16 @@ dir = 1; color = "#ba9122" }, -/turf/simulated/floor/tiled/dark{ - temperature = 303.15 - }, +/turf/simulated/floor/tiled/dark, /area/ihss_reclamation/northhall) "Tf" = ( /obj/machinery/atmospherics/binary/pump/fuel{ dir = 8 }, /obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/atmospherics/pipe/simple/hidden/aux{ + dir = 8 + }, /turf/simulated/floor, /area/shuttle/ihss_reclamation) "Tk" = ( @@ -9973,33 +9391,23 @@ dir = 1; color = "#ba9122" }, -/turf/simulated/floor/tiled/dark{ - temperature = 303.15 - }, +/turf/simulated/floor/tiled/dark, /area/ihss_reclamation/northhall) "Tl" = ( -/turf/simulated/floor/tiled/dark{ - temperature = 303.15 - }, +/turf/simulated/floor/tiled/dark, /area/ihss_reclamation/storage) "Tp" = ( /obj/structure/sink{ pixel_y = 28 }, -/turf/simulated/floor/tiled/dark{ - temperature = 303.15 - }, +/turf/simulated/floor/tiled/dark, /area/ihss_reclamation/crew/eight) "Tu" = ( -/turf/simulated/floor/tiled/dark{ - temperature = 303.15 - }, +/turf/simulated/floor/tiled/dark, /area/ihss_reclamation/southhall) "Tw" = ( /obj/machinery/portable_atmospherics/canister/carbon_dioxide, -/turf/simulated/floor/plating{ - temperature = 303.15 - }, +/turf/simulated/floor/plating, /area/ihss_reclamation/equipment) "Tx" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -10008,23 +9416,18 @@ icon_state = "1-2" }, /obj/machinery/door/airlock/atmos{ - name = "Atmospherics" - }, -/obj/machinery/door/firedoor/noid{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark{ - temperature = 303.15 + name = "Atmospherics"; + req_access = list(113) }, +/obj/machinery/door/firedoor/noid, +/turf/simulated/floor/tiled/dark, /area/ihss_reclamation/northhall) "Ty" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 4; icon_state = "map_scrubber_on" }, -/turf/simulated/floor/tiled/dark{ - temperature = 303.15 - }, +/turf/simulated/floor/tiled/dark, /area/ihss_reclamation/easthall) "TA" = ( /obj/structure/cable/green{ @@ -10040,14 +9443,10 @@ /obj/structure/cable/green{ icon_state = "1-4" }, -/turf/simulated/floor/plating{ - temperature = 303.15 - }, +/turf/simulated/floor/plating, /area/ihss_reclamation/hangar1) "TE" = ( -/turf/simulated/floor/tiled/dark{ - temperature = 303.15 - }, +/turf/simulated/floor/tiled/dark, /area/ihss_reclamation/hangarhall) "TI" = ( /obj/structure/lattice/catwalk, @@ -10055,11 +9454,29 @@ /obj/effect/floor_decal/industrial/warning/cee, /turf/simulated/floor/airless, /area/ihss_reclamation/bridge) +"TL" = ( +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ + dir = 4 + }, +/obj/machinery/embedded_controller/radio/airlock/docking_port{ + dir = 2; + pixel_y = 28; + pixel_x = -6 + }, +/obj/machinery/airlock_sensor{ + pixel_x = 6; + pixel_y = 28 + }, +/obj/effect/map_effect/marker/airlock/docking{ + landmark_tag = "nav_ihss_reclamation_dock3"; + master_tag = "airlock_reclamation_dock3"; + name = "airlock_reclamation_dock3" + }, +/turf/simulated/floor/plating, +/area/ihss_reclamation/dock) "TM" = ( /obj/machinery/atmospherics/pipe/simple/hidden, -/turf/simulated/floor/tiled/dark{ - temperature = 303.15 - }, +/turf/simulated/floor/tiled/dark, /area/ihss_reclamation/dock) "TO" = ( /obj/effect/map_effect/marker/airlock{ @@ -10068,9 +9485,7 @@ name = "airlock_ihss_aft" }, /obj/random/dirt_75, -/turf/simulated/floor/plating{ - temperature = 303.15 - }, +/turf/simulated/floor/plating, /area/ihss_reclamation/southhall) "TQ" = ( /obj/effect/floor_decal/corner/lime{ @@ -10110,9 +9525,7 @@ pixel_x = 36; pixel_y = 2 }, -/turf/simulated/floor/tiled/dark{ - temperature = 303.15 - }, +/turf/simulated/floor/tiled/dark, /area/ihss_reclamation/armory) "TT" = ( /obj/structure/cable/green{ @@ -10123,9 +9536,7 @@ color = "#941307"; dir = 5 }, -/turf/simulated/floor/tiled/dark{ - temperature = 303.15 - }, +/turf/simulated/floor/tiled/dark, /area/ihss_reclamation/bridge) "TV" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -10147,9 +9558,7 @@ /obj/machinery/atmospherics/pipe/simple/visible/yellow{ dir = 10 }, -/turf/simulated/floor/plating{ - temperature = 303.15 - }, +/turf/simulated/floor/plating, /area/ihss_reclamation/fuel) "Ue" = ( /obj/structure/table/standard, @@ -10159,24 +9568,22 @@ maxhealth = 80 }, /obj/item/reagent_containers/food/drinks/drinkingglass/newglass/coffeecup/hegemony, -/turf/simulated/floor/tiled/dark{ - temperature = 303.15 - }, +/turf/simulated/floor/tiled/dark, /area/ihss_reclamation/bridge) "Uf" = ( /obj/machinery/atmospherics/portables_connector{ dir = 1 }, -/obj/machinery/portable_atmospherics/canister/air/airlock, +/obj/machinery/portable_atmospherics/canister/air/warm{ + start_pressure = 1000 + }, /obj/structure/window/reinforced, /obj/machinery/door/window/northright, /obj/structure/window/reinforced{ dir = 4; icon_state = "rwindow" }, -/turf/simulated/floor/tiled/dark{ - temperature = 303.15 - }, +/turf/simulated/floor/tiled/dark, /area/ihss_reclamation/dock) "Uh" = ( /obj/effect/floor_decal/corner/red/diagonal{ @@ -10196,9 +9603,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, -/turf/simulated/floor/tiled/dark{ - temperature = 303.15 - }, +/turf/simulated/floor/tiled/dark, /area/ihss_reclamation/dock) "Ul" = ( /obj/structure/cable/green{ @@ -10220,9 +9625,7 @@ "Up" = ( /obj/structure/table/steel, /obj/item/clothing/ears/earmuffs, -/turf/simulated/floor/tiled/dark{ - temperature = 303.15 - }, +/turf/simulated/floor/tiled/dark, /area/shuttle/ihss_reclamation) "Uq" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ @@ -10243,9 +9646,7 @@ /obj/structure/cable/green{ icon_state = "1-2" }, -/turf/simulated/floor/tiled/dark{ - temperature = 303.15 - }, +/turf/simulated/floor/tiled/dark, /area/ihss_reclamation/southhall) "Ut" = ( /obj/machinery/computer/ship/sensors, @@ -10253,9 +9654,7 @@ dir = 4; color = "#941307" }, -/turf/simulated/floor/tiled/dark{ - temperature = 303.15 - }, +/turf/simulated/floor/tiled/dark, /area/shuttle/ihss_reclamation) "UC" = ( /obj/item/bedsheet/black, @@ -10277,9 +9676,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/lattice/catwalk/indoor/grate, -/turf/simulated/floor/plating{ - temperature = 303.15 - }, +/turf/simulated/floor/plating, /area/ihss_reclamation/hangar1) "UK" = ( /obj/structure/closet/walllocker/medical/secure{ @@ -10314,17 +9711,13 @@ /obj/structure/sink{ pixel_y = 28 }, -/turf/simulated/floor/tiled/dark{ - temperature = 303.15 - }, +/turf/simulated/floor/tiled/dark, /area/ihss_reclamation/crew/two) "UM" = ( /obj/structure/cable/green{ icon_state = "1-2" }, -/turf/simulated/floor/tiled/dark{ - temperature = 303.15 - }, +/turf/simulated/floor/tiled/dark, /area/ihss_reclamation/botanyhazard) "UO" = ( /obj/effect/floor_decal/corner/grey/diagonal, @@ -10339,9 +9732,7 @@ /turf/simulated/wall/shuttle/raider, /area/ihss_reclamation/mess) "UT" = ( -/turf/simulated/floor/tiled/dark{ - temperature = 303.15 - }, +/turf/simulated/floor/tiled/dark, /area/ihss_reclamation/research) "UU" = ( /mob/living/simple_animal/hostile/biglizard, @@ -10357,28 +9748,22 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 10 }, -/turf/simulated/floor/tiled/dark{ - temperature = 303.15 - }, +/turf/simulated/floor/tiled/dark, /area/ihss_reclamation/crew/two) "UX" = ( /obj/structure/sink{ pixel_y = 28 }, -/turf/simulated/floor/tiled/dark{ - temperature = 303.15 - }, +/turf/simulated/floor/tiled/dark, /area/ihss_reclamation/crew/six) "Vc" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 1 }, -/obj/machinery/alarm/south{ - req_one_access = null - }, -/turf/simulated/floor/tiled/dark{ - temperature = 303.15 +/obj/machinery/alarm/warm/south{ + req_one_access = list(113) }, +/turf/simulated/floor/tiled/dark, /area/ihss_reclamation/crew/two) "Ve" = ( /obj/structure/cable/green{ @@ -10390,9 +9775,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 6 }, -/turf/simulated/floor/tiled/dark{ - temperature = 303.15 - }, +/turf/simulated/floor/tiled/dark, /area/ihss_reclamation/crew/one) "Vi" = ( /obj/machinery/atmospherics/pipe/simple/visible/blue, @@ -10407,22 +9790,24 @@ }, /area/ihss_reclamation/captain) "Vk" = ( -/obj/effect/floor_decal/corner/red/diagonal{ - dir = 4; - color = "#941307" - }, /obj/effect/floor_decal/corner/yellow/diagonal{ dir = 1; color = "#ba9122" }, -/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/effect/floor_decal/corner/red/diagonal{ + dir = 4; + color = "#941307" + }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9; - pixel_y = 0 + dir = 4 }, -/turf/simulated/floor/tiled/dark{ - temperature = 303.15 +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, /area/ihss_reclamation/dock) "Vl" = ( /obj/effect/landmark/entry_point/fore{ @@ -10440,18 +9825,23 @@ name = "Captain's Quarters"; req_one_access = list(114) }, -/obj/machinery/door/firedoor/noid{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark{ - temperature = 303.15 - }, +/obj/machinery/door/firedoor/noid, +/turf/simulated/floor/tiled/dark, /area/ihss_reclamation/crew) +"Vq" = ( +/obj/machinery/light{ + dir = 4; + status = 2 + }, +/turf/simulated/floor/tiled/dark, +/area/ihss_reclamation/dock) "Vt" = ( /obj/machinery/button/remote/blast_door{ name = "Hazardous Specimen Blast Doors"; id = "ihss_biglizard"; - pixel_y = 25 + pixel_y = 25; + dir = 1; + req_access = list(113) }, /turf/simulated/floor/exoplanet/grass/moghes/dirt/beach, /area/ihss_reclamation/envirosim) @@ -10463,9 +9853,7 @@ color = "#941307"; dir = 6 }, -/turf/simulated/floor/tiled/dark{ - temperature = 303.15 - }, +/turf/simulated/floor/tiled/dark, /area/ihss_reclamation/mess) "Vy" = ( /obj/structure/cable/green{ @@ -10498,9 +9886,7 @@ /obj/machinery/ammunition_loader/francisca{ weapon_id = "IHSS Rotary Gun" }, -/turf/simulated/floor/tiled/dark{ - temperature = 303.15 - }, +/turf/simulated/floor/tiled/dark, /area/shuttle/ihss_reclamation) "VE" = ( /turf/simulated/floor/greengrid, @@ -10511,17 +9897,13 @@ /obj/structure/cable/green{ icon_state = "0-2" }, -/turf/simulated/floor/plating{ - temperature = 303.15 - }, +/turf/simulated/floor/plating, /area/ihss_reclamation/hangar1) "VH" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 1 }, -/turf/simulated/floor/plating{ - temperature = 303.15 - }, +/turf/simulated/floor/plating, /area/ihss_reclamation/hangar1) "VW" = ( /obj/structure/cable/green{ @@ -10533,9 +9915,7 @@ dir = 6 }, /obj/structure/lattice/catwalk/indoor/grate, -/turf/simulated/floor/plating{ - temperature = 303.15 - }, +/turf/simulated/floor/plating, /area/ihss_reclamation/hangar1) "VX" = ( /obj/machinery/atmospherics/pipe/manifold/visible{ @@ -10559,19 +9939,17 @@ }, /obj/machinery/light, /obj/effect/map_effect/marker/airlock/shuttle{ - cycle_to_external_air = 1; master_tag = "airlock_reclamation_shuttle"; name = "airlock_reclamation_shuttle"; req_one_access = list(113); - shuttle_tag = "IHSS Reclamation Shuttle" + shuttle_tag = "IHSS Reclamation Shuttle"; + cycle_to_external_air = 1 }, /obj/effect/map_effect/marker_helper/airlock/out, /obj/machinery/atmospherics/unary/vent_pump/high_volume{ dir = 8 }, -/turf/simulated/floor/plating{ - temperature = 303.15 - }, +/turf/simulated/floor/plating, /area/shuttle/ihss_reclamation) "Wc" = ( /obj/effect/floor_decal/corner/mauve{ @@ -10580,6 +9958,15 @@ /obj/structure/table/standard, /obj/item/paper_bin, /obj/item/pen, +/obj/item/device/camera{ + pixel_x = 5; + pixel_y = 5 + }, +/obj/item/device/taperecorder, +/obj/machinery/recharger{ + pixel_x = -6; + pixel_y = 6 + }, /turf/simulated/floor/tiled/white{ temperature = 303.15 }, @@ -10628,17 +10015,17 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, -/turf/simulated/floor/tiled/dark{ - temperature = 303.15 +/obj/machinery/door/firedoor/noid{ + dir = 4 }, +/turf/simulated/floor/tiled/dark, /area/ihss_reclamation/dock) "Wo" = ( /obj/machinery/door/airlock/service{ name = "Custodial" }, -/turf/simulated/floor/tiled/dark{ - temperature = 303.15 - }, +/obj/machinery/door/firedoor/noid, +/turf/simulated/floor/tiled/dark, /area/ihss_reclamation/southhall) "Ws" = ( /obj/effect/floor_decal/corner/red/diagonal{ @@ -10653,9 +10040,7 @@ dir = 6 }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/dark{ - temperature = 303.15 - }, +/turf/simulated/floor/tiled/dark, /area/ihss_reclamation/dock) "Wt" = ( /obj/structure/cable/green{ @@ -10663,15 +10048,11 @@ }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/dark{ - temperature = 303.15 - }, +/turf/simulated/floor/tiled/dark, /area/ihss_reclamation/northhall) "Wv" = ( /obj/structure/bed/stool/chair/office/dark, -/turf/simulated/floor/tiled/dark{ - temperature = 303.15 - }, +/turf/simulated/floor/tiled/dark, /area/ihss_reclamation/crew/five) "Ww" = ( /obj/effect/floor_decal/corner/red/diagonal{ @@ -10686,19 +10067,35 @@ /obj/structure/cable/green{ icon_state = "1-2" }, -/turf/simulated/floor/tiled/dark{ - temperature = 303.15 +/turf/simulated/floor/tiled/dark, +/area/ihss_reclamation/dock) +"Wy" = ( +/obj/effect/floor_decal/corner/yellow/diagonal{ + dir = 1; + color = "#ba9122" }, +/obj/effect/floor_decal/corner/red/diagonal{ + dir = 4; + color = "#941307" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, /area/ihss_reclamation/dock) "Wz" = ( /obj/machinery/door/blast/regular/open{ name = "Hazardous Specimen Containment"; id = "ihss_biglizard" }, -/obj/machinery/door/airlock/glass_research{ +/obj/machinery/door/airlock/highsecurity{ + id_tag = "bolts_reclamation_cell"; + req_access = list(113); name = "Hazardous Specimen Containment"; - req_access = list(113) + locked = 1 }, +/obj/machinery/door/firedoor/noid, /turf/simulated/floor/exoplanet/grass/moghes/dirt{ icon_state = "edge" }, @@ -10715,13 +10112,11 @@ dir = 4; icon_state = "map_scrubber_on" }, -/turf/simulated/floor/tiled/dark{ - temperature = 303.15 - }, +/turf/simulated/floor/tiled/dark, /area/ihss_reclamation/westhall) "WG" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 4 +/obj/machinery/atmospherics/pipe/simple/hidden/aux{ + dir = 8 }, /turf/simulated/floor, /area/shuttle/ihss_reclamation) @@ -10739,17 +10134,13 @@ dir = 1; color = "#ba9122" }, -/turf/simulated/floor/tiled/dark{ - temperature = 303.15 - }, +/turf/simulated/floor/tiled/dark, /area/ihss_reclamation/northhall) "WM" = ( /obj/structure/janitorialcart/full/water{ dir = 4 }, -/turf/simulated/floor/tiled/dark{ - temperature = 303.15 - }, +/turf/simulated/floor/tiled/dark, /area/ihss_reclamation/southhall) "WQ" = ( /obj/effect/floor_decal/corner/mauve{ @@ -10770,33 +10161,30 @@ /obj/effect/shuttle_landmark/ihss_reclamation_shuttle{ dir = 8 }, -/turf/simulated/floor/plating{ - temperature = 303.15 - }, +/turf/simulated/floor/plating, /area/ihss_reclamation/hangar1) "WZ" = ( /obj/machinery/atmospherics/unary/vent_pump{ dir = 8 }, -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 4 - }, /turf/simulated/floor, /area/shuttle/ihss_reclamation) "Xa" = ( -/obj/effect/map_effect/window_spawner/full/reinforced/grille/firedoor, -/turf/simulated/floor/plating{ - temperature = 303.15 +/obj/effect/map_effect/window_spawner/full/shuttle/raider{ + req_one_access = list(113); + spawn_firedoor = 1 }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, /area/ihss_reclamation/dock) "Xd" = ( /obj/machinery/atmospherics/unary/vent_pump/on, /obj/machinery/light{ dir = 1 }, -/turf/simulated/floor/tiled/dark{ - temperature = 303.15 - }, +/turf/simulated/floor/tiled/dark, /area/ihss_reclamation/northhall) "Xf" = ( /obj/structure/cable/green{ @@ -10809,9 +10197,7 @@ dir = 4 }, /obj/structure/lattice/catwalk/indoor/grate, -/turf/simulated/floor/plating{ - temperature = 303.15 - }, +/turf/simulated/floor/plating, /area/ihss_reclamation/hangar1) "Xk" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -10841,9 +10227,7 @@ dir = 8; name = "gas extraction" }, -/turf/simulated/floor/tiled/dark{ - temperature = 303.15 - }, +/turf/simulated/floor/tiled/dark, /area/ihss_reclamation/botanyhazard) "Xo" = ( /obj/machinery/atmospherics/portables_connector{ @@ -10893,9 +10277,7 @@ /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ dir = 1 }, -/turf/simulated/floor/tiled/dark{ - temperature = 303.15 - }, +/turf/simulated/floor/tiled/dark, /area/ihss_reclamation/southhall) "Xu" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ @@ -10905,12 +10287,10 @@ color = "#941307"; dir = 6 }, -/obj/machinery/alarm/east{ - req_one_access = null - }, -/turf/simulated/floor/tiled/dark{ - temperature = 303.15 +/obj/machinery/alarm/warm/east{ + req_one_access = list(113) }, +/turf/simulated/floor/tiled/dark, /area/ihss_reclamation/mess) "Xv" = ( /obj/effect/floor_decal/corner/red/diagonal{ @@ -10924,9 +10304,7 @@ dir = 1; color = "#ba9122" }, -/turf/simulated/floor/tiled/dark{ - temperature = 303.15 - }, +/turf/simulated/floor/tiled/dark, /area/ihss_reclamation/easthall) "Xx" = ( /obj/structure/closet/crate/freezer/rations, @@ -10934,9 +10312,7 @@ /obj/machinery/light{ dir = 1 }, -/turf/simulated/floor/tiled/dark{ - temperature = 303.15 - }, +/turf/simulated/floor/tiled/dark, /area/ihss_reclamation/storage) "Xy" = ( /obj/effect/floor_decal/corner/red/diagonal{ @@ -10948,9 +10324,7 @@ color = "#ba9122" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/dark{ - temperature = 303.15 - }, +/turf/simulated/floor/tiled/dark, /area/ihss_reclamation/southhall) "XB" = ( /obj/effect/floor_decal/corner/mauve{ @@ -10970,9 +10344,7 @@ /obj/machinery/atmospherics/pipe/manifold/visible/purple{ dir = 8 }, -/turf/simulated/floor/plating{ - temperature = 303.15 - }, +/turf/simulated/floor/plating, /area/ihss_reclamation/fuel) "XH" = ( /obj/effect/floor_decal/corner/red/diagonal{ @@ -10984,9 +10356,7 @@ color = "#ba9122" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/dark{ - temperature = 303.15 - }, +/turf/simulated/floor/tiled/dark, /area/ihss_reclamation/dock) "XJ" = ( /obj/structure/disposalpipe/segment, @@ -11024,10 +10394,11 @@ /turf/simulated/wall/shuttle/space_ship/mercenary, /area/shuttle/ihss_reclamation) "XS" = ( -/obj/effect/map_effect/window_spawner/full/reinforced/firedoor, -/turf/simulated/floor/tiled/dark{ - temperature = 303.15 +/obj/effect/map_effect/window_spawner/full/shuttle/raider{ + req_one_access = list(113); + spawn_firedoor = 1 }, +/turf/simulated/floor/tiled/dark, /area/ihss_reclamation/northhall) "XT" = ( /obj/structure/cable/green{ @@ -11046,9 +10417,7 @@ dir = 1; color = "#ba9122" }, -/turf/simulated/floor/tiled/dark{ - temperature = 303.15 - }, +/turf/simulated/floor/tiled/dark, /area/ihss_reclamation/crew) "XW" = ( /obj/structure/lattice/catwalk, @@ -11068,7 +10437,9 @@ icon_state = "2-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/fuel, -/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/machinery/atmospherics/pipe/simple/hidden/aux{ + dir = 1 + }, /turf/simulated/floor, /area/shuttle/ihss_reclamation) "XY" = ( @@ -11084,6 +10455,19 @@ temperature = 303.15 }, /area/ihss_reclamation/research) +"XZ" = ( +/obj/machinery/door/airlock/external, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 9 + }, +/obj/effect/map_effect/marker/airlock/docking{ + landmark_tag = "nav_ihss_reclamation_dock2"; + master_tag = "airlock_reclamation_dock2"; + name = "airlock_reclamation_dock2" + }, +/obj/effect/map_effect/marker_helper/airlock/interior, +/turf/simulated/floor/plating, +/area/ihss_reclamation/dock) "Yg" = ( /obj/machinery/light{ dir = 4 @@ -11098,9 +10482,7 @@ /obj/structure/table/standard, /obj/item/device/hand_labeler, /obj/item/reagent_containers/food/drinks/drinkingglass/newglass/coffeecup/hegemony, -/turf/simulated/floor/tiled/dark{ - temperature = 303.15 - }, +/turf/simulated/floor/tiled/dark, /area/ihss_reclamation/bridge) "Yr" = ( /obj/structure/cable/green{ @@ -11136,9 +10518,8 @@ name = "Armory"; req_one_access = list(113) }, -/turf/simulated/floor/tiled/dark{ - temperature = 303.15 - }, +/obj/machinery/door/firedoor/noid, +/turf/simulated/floor/tiled/dark, /area/ihss_reclamation/armory) "Yw" = ( /obj/machinery/light{ @@ -11148,21 +10529,17 @@ color = "#ba9122"; dir = 9 }, -/turf/simulated/floor/tiled/dark{ - temperature = 303.15 - }, +/turf/simulated/floor/tiled/dark, /area/ihss_reclamation/mess) "YB" = ( /obj/item/bedsheet/red, /obj/structure/bed, /obj/structure/curtain/open/bed, /obj/effect/ghostspawpoint{ - name = "igs - ihss_crew"; - identifier = "ihss_crew" - }, -/turf/simulated/floor/tiled/dark{ - temperature = 303.15 + identifier = "ihss_crew"; + name = "igs - ihss_crew" }, +/turf/simulated/floor/tiled/dark, /area/ihss_reclamation/crew/eight) "YI" = ( /obj/effect/map_effect/map_helper/ruler_tiles_3{ @@ -11181,9 +10558,7 @@ /obj/machinery/mech_recharger/hephaestus, /obj/effect/floor_decal/industrial/hatch/yellow, /mob/living/heavy_vehicle/premade/ripley/loader, -/turf/simulated/floor/tiled/dark{ - temperature = 303.15 - }, +/turf/simulated/floor/tiled/dark, /area/shuttle/ihss_reclamation) "YL" = ( /obj/structure/lattice/catwalk, @@ -11212,22 +10587,33 @@ dir = 1; color = "#ba9122" }, -/turf/simulated/floor/tiled/dark{ - temperature = 303.15 - }, +/turf/simulated/floor/tiled/dark, /area/ihss_reclamation/crew) "YO" = ( -/turf/simulated/floor/tiled/dark{ - temperature = 303.15 - }, +/turf/simulated/floor/tiled/dark, /area/ihss_reclamation/westhall) +"YP" = ( +/obj/effect/floor_decal/corner/yellow/diagonal{ + dir = 1; + color = "#ba9122" + }, +/obj/effect/floor_decal/corner/red/diagonal{ + dir = 4; + color = "#941307" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/ihss_reclamation/dock) "YS" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 4 }, -/turf/simulated/floor/tiled/dark{ - temperature = 303.15 - }, +/turf/simulated/floor/tiled/dark, /area/ihss_reclamation/hangarhall) "YV" = ( /obj/effect/floor_decal/corner/red/diagonal{ @@ -11241,9 +10627,7 @@ /obj/structure/cable/green{ icon_state = "1-8" }, -/turf/simulated/floor/tiled/dark{ - temperature = 303.15 - }, +/turf/simulated/floor/tiled/dark, /area/ihss_reclamation/northhall) "YW" = ( /obj/effect/floor_decal/corner/red/diagonal{ @@ -11257,9 +10641,7 @@ /obj/structure/cable/green{ icon_state = "4-8" }, -/turf/simulated/floor/tiled/dark{ - temperature = 303.15 - }, +/turf/simulated/floor/tiled/dark, /area/ihss_reclamation/northhall) "YX" = ( /obj/machinery/light, @@ -11287,29 +10669,25 @@ /obj/structure/cable/green{ icon_state = "4-8" }, -/obj/machinery/alarm/south{ - req_one_access = null - }, -/turf/simulated/floor/plating{ - temperature = 303.15 +/obj/machinery/alarm/warm/south{ + req_one_access = list(113) }, +/turf/simulated/floor/plating, /area/ihss_reclamation/solars) "Zk" = ( -/obj/machinery/door/airlock/external{ - dir = 4 +/obj/effect/floor_decal/corner/yellow/diagonal{ + dir = 1; + color = "#ba9122" }, -/obj/machinery/atmospherics/pipe/simple/hidden{ +/obj/effect/floor_decal/corner/red/diagonal{ + dir = 4; + color = "#941307" + }, +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 5 }, -/obj/effect/map_effect/marker/airlock/docking{ - landmark_tag = "nav_ihss_reclamation_dock4"; - master_tag = "airlock_reclamation_dock4"; - name = "airlock_reclamation_dock4" - }, -/obj/effect/map_effect/marker_helper/airlock/interior, -/turf/simulated/floor/plating{ - temperature = 303.15 - }, +/turf/simulated/floor/tiled/dark, /area/ihss_reclamation/dock) "Zn" = ( /obj/structure/cable/green{ @@ -11332,9 +10710,13 @@ /obj/effect/floor_decal/corner/red/full{ color = "#941307" }, -/turf/simulated/floor/tiled/dark{ - temperature = 303.15 +/obj/structure/cargo_receptacle{ + override_name = "IHSS Reclamation - Mess Hall"; + payment_modifier = 0.4; + min_spawn = 0; + max_spawn = 1 }, +/turf/simulated/floor/tiled/dark, /area/ihss_reclamation/mess) "Zu" = ( /obj/effect/floor_decal/corner/red/diagonal{ @@ -11348,9 +10730,7 @@ /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ dir = 8 }, -/turf/simulated/floor/tiled/dark{ - temperature = 303.15 - }, +/turf/simulated/floor/tiled/dark, /area/ihss_reclamation/dock) "ZD" = ( /obj/effect/floor_decal/corner/lime{ @@ -11368,9 +10748,7 @@ dir = 1 }, /obj/machinery/portable_atmospherics/canister/hydrogen, -/turf/simulated/floor/plating{ - temperature = 303.15 - }, +/turf/simulated/floor/plating, /area/ihss_reclamation/fuel) "ZI" = ( /obj/effect/floor_decal/corner/red/diagonal{ @@ -11380,10 +10758,12 @@ /obj/structure/cable/green{ icon_state = "1-2" }, -/turf/simulated/floor/tiled/dark{ - temperature = 303.15 - }, +/turf/simulated/floor/tiled/dark, /area/ihss_reclamation/armory) +"ZJ" = ( +/obj/machinery/atmospherics/unary/vent_pump/on, +/turf/simulated/floor/tiled/dark, +/area/ihss_reclamation/dock) "ZW" = ( /obj/effect/floor_decal/corner/red/diagonal{ dir = 4; @@ -11394,9 +10774,7 @@ name = "Armory"; req_one_access = list(113) }, -/turf/simulated/floor/tiled/dark{ - temperature = 303.15 - }, +/turf/simulated/floor/tiled/dark, /area/ihss_reclamation/armoryfoyer) "ZX" = ( /obj/machinery/door/airlock/external{ @@ -11414,10 +10792,25 @@ dir = 4 }, /obj/machinery/atmospherics/pipe/manifold/hidden, -/turf/simulated/floor/plating{ - temperature = 303.15 - }, +/turf/simulated/floor/plating, /area/ihss_reclamation/southhall) +"ZY" = ( +/obj/machinery/door/airlock/external, +/obj/machinery/access_button{ + pixel_x = -28; + pixel_y = -8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden{ + dir = 8 + }, +/obj/effect/map_effect/marker/airlock/docking{ + landmark_tag = "nav_ihss_reclamation_dock2"; + master_tag = "airlock_reclamation_dock2"; + name = "airlock_reclamation_dock2" + }, +/obj/effect/map_effect/marker_helper/airlock/interior, +/turf/simulated/floor/plating, +/area/ihss_reclamation/dock) (1,1,1) = {" gn @@ -32876,6 +32269,13 @@ gn gn gn gn +gn +gn +gn +gn +gn +gn +gn tD gn gn @@ -32999,13 +32399,6 @@ gn gn gn gn -gn -gn -gn -gn -gn -gn -gn "} (85,1,1) = {" gn @@ -33647,6 +33040,13 @@ gn gn gn gn +gn +gn +gn +gn +gn +gn +gn tD gn gn @@ -33770,13 +33170,6 @@ gn gn gn gn -gn -gn -gn -gn -gn -gn -gn "} (88,1,1) = {" gn @@ -34418,6 +33811,13 @@ gn gn gn gn +gn +gn +gn +gn +gn +gn +gn tD gn gn @@ -34541,13 +33941,6 @@ gn gn gn gn -gn -gn -gn -gn -gn -gn -gn "} (91,1,1) = {" gn @@ -35189,6 +34582,13 @@ dX yv yv zc +gn +gn +gn +gn +gn +gn +gn tD gn gn @@ -35312,13 +34712,6 @@ gn gn gn gn -gn -gn -gn -gn -gn -gn -gn "} (94,1,1) = {" gn @@ -35960,6 +35353,13 @@ nW MC yv zc +gn +gn +gn +gn +gn +gn +gn tD gn gn @@ -36083,13 +35483,6 @@ gn gn gn gn -gn -gn -gn -gn -gn -gn -gn "} (97,1,1) = {" gn @@ -36189,9 +35582,9 @@ Hg Hg Hg py -ji +MX UP -iW +op QL iW bB @@ -36466,7 +35859,7 @@ iW lk iW dA -iW +hq bB EU ar @@ -36731,6 +36124,13 @@ QK RN yv zc +gn +gn +gn +gn +gn +gn +gn tD gn gn @@ -36854,13 +36254,6 @@ gn gn gn gn -gn -gn -gn -gn -gn -gn -gn "} (100,1,1) = {" gn @@ -37502,6 +36895,13 @@ RQ UC yv zc +gn +gn +gn +gn +gn +gn +gn tD gn gn @@ -37625,13 +37025,6 @@ gn gn gn gn -gn -gn -gn -gn -gn -gn -gn "} (103,1,1) = {" gn @@ -38273,6 +37666,13 @@ gn gn gn gn +gn +gn +gn +gn +gn +gn +gn tD gn gn @@ -38396,13 +37796,6 @@ gn gn gn gn -gn -gn -gn -gn -gn -gn -gn "} (106,1,1) = {" gn @@ -38752,7 +38145,7 @@ dO nj AS AS -AS +sD LI YO YO @@ -38763,7 +38156,7 @@ YO mg YO xk -YO +DW Sr WF cJ @@ -38777,9 +38170,9 @@ YO YO YO LI +JP Tu -Tu -Tu +QB Tu hu zc @@ -38994,7 +38387,7 @@ TA FA wn FA -FA +IW FA FA FA @@ -39044,6 +38437,13 @@ gn gn gn gn +gn +gn +gn +gn +gn +gn +gn tD gn gn @@ -39167,13 +38567,6 @@ gn gn gn gn -gn -gn -gn -gn -gn -gn -gn "} (109,1,1) = {" gn @@ -39506,7 +38899,7 @@ FA FA hF AA -AA +xA VW bW bW @@ -39551,7 +38944,7 @@ LI Tu dK ax -Tu +by hu zc gn @@ -39581,6 +38974,13 @@ gn gn gn gn +gn +gn +gn +gn +gn +gn +gn YI gn gn @@ -39681,13 +39081,6 @@ gn gn gn gn -gn -gn -gn -gn -gn -gn -gn "} (111,1,1) = {" gn @@ -39815,6 +39208,13 @@ gn gn gn gn +gn +gn +gn +gn +gn +gn +gn tD gn gn @@ -39938,13 +39338,6 @@ gn gn gn gn -gn -gn -gn -gn -gn -gn -gn "} (112,1,1) = {" gn @@ -40294,7 +39687,7 @@ dO AS vG oZ -AS +gB dO gn gn @@ -40331,6 +39724,13 @@ gn gn gn gn +gn +gn +gn +gn +gn +gn +gn YI gn gn @@ -40452,13 +39852,6 @@ gn gn gn gn -gn -gn -gn -gn -gn -gn -gn "} (114,1,1) = {" gn @@ -40575,7 +39968,7 @@ gn gn gn gn -Sz +bj Tu dK ax @@ -40594,6 +39987,13 @@ gn gn gn gn +gn +gn +gn +gn +gn +gn +gn aR Ki Sd @@ -40709,13 +40109,6 @@ gn gn gn gn -gn -gn -gn -gn -gn -gn -gn "} (115,1,1) = {" gn @@ -40786,7 +40179,7 @@ dl ej CZ IJ -Ps +wb NR gD qL @@ -40832,7 +40225,7 @@ gn gn gn gn -Sz +bj Tu dK ax @@ -40851,11 +40244,18 @@ gn gn gn gn +gn +gn +gn +gn +gn +gn +gn zc -Xa +bK BZ BZ -Xa +bK zc gn gn @@ -40966,13 +40366,6 @@ gn gn gn gn -gn -gn -gn -gn -gn -gn -gn "} (116,1,1) = {" gn @@ -41089,7 +40482,7 @@ gn gn gn gn -Sz +bj yQ dK ya @@ -41107,11 +40500,18 @@ gn gn gn gn +gn +gn +gn +gn +gn +gn +gn zc Pa Ki -Op -QB +TL +kM Ki MF zc @@ -41223,13 +40623,6 @@ gn gn gn gn -gn -gn -gn -gn -gn -gn -gn "} (117,1,1) = {" gn @@ -41346,7 +40739,7 @@ gn gn gn gn -Sz +bj Sp JK KT @@ -41364,6 +40757,13 @@ gn gn gn gn +gn +gn +gn +gn +gn +gn +gn zc Ki Ki @@ -41480,13 +40880,6 @@ gn gn gn gn -gn -gn -gn -gn -gn -gn -gn "} (118,1,1) = {" gn @@ -41579,7 +40972,7 @@ dO AS vG oZ -AS +gB dO gn gn @@ -41603,7 +40996,7 @@ gn gn gn gn -Sz +bj ld ah ab @@ -41621,6 +41014,13 @@ gn gn gn gn +gn +gn +gn +gn +gn +gn +gn zc Ki QU @@ -41633,7 +41033,7 @@ lJ lw Ki Ki -Xa +bK Ki gn gn @@ -41737,13 +41137,6 @@ gn gn gn gn -gn -gn -gn -gn -gn -gn -gn "} (119,1,1) = {" gn @@ -41814,7 +41207,7 @@ dl ej CZ IJ -WG +wZ kr Jw Fh @@ -41824,7 +41217,7 @@ Bf Bf Bf Bf -Bf +Gm ox WS FA @@ -41860,7 +41253,7 @@ gn gn gn gn -Sz +bj Tu dK ax @@ -41878,6 +41271,13 @@ gn gn gn gn +gn +gn +gn +gn +gn +gn +gn zc Ki lJ @@ -41889,7 +41289,7 @@ Jp Jp lJ JZ -Iu +pQ KH PO gn @@ -41994,13 +41394,6 @@ gn gn gn gn -gn -gn -gn -gn -gn -gn -gn "} (120,1,1) = {" gn @@ -42117,7 +41510,7 @@ gn gn gn gn -Sz +bj Tu dK ax @@ -42135,6 +41528,13 @@ gn gn gn gn +gn +gn +gn +gn +gn +gn +gn zc Ki Kf @@ -42146,7 +41546,7 @@ iE iE TM Bk -cM +Ny KH kO gn @@ -42251,13 +41651,6 @@ gn gn gn gn -gn -gn -gn -gn -gn -gn -gn "} (121,1,1) = {" gn @@ -42374,7 +41767,7 @@ gn gn gn gn -Sz +bj Tu dK ax @@ -42392,9 +41785,16 @@ gn gn gn gn +gn +gn +gn +gn +gn +gn +gn zc Ki -lJ +ae rq zT tQ @@ -42404,7 +41804,7 @@ lJ lJ Ki Ki -Xa +bK Ki gn gn @@ -42508,13 +41908,6 @@ gn gn gn gn -gn -gn -gn -gn -gn -gn -gn "} (122,1,1) = {" gn @@ -42631,7 +42024,7 @@ gn gn gn gn -Sz +bj Tu dK ax @@ -42649,6 +42042,13 @@ gn gn gn gn +gn +gn +gn +gn +gn +gn +gn zc Ki lJ @@ -42765,13 +42165,6 @@ gn gn gn gn -gn -gn -gn -gn -gn -gn -gn "} (123,1,1) = {" gn @@ -42888,7 +42281,7 @@ gn gn gn gn -Sz +bj Tu dK ax @@ -42906,6 +42299,13 @@ gn gn gn gn +gn +gn +gn +gn +gn +gn +gn zc Ki lJ @@ -42917,14 +42317,7 @@ zc zc zc zc -gn -gn -gn -gn -gn -gn -gn -gn +zc gn gn gn @@ -43145,7 +42538,7 @@ gn gn gn gn -Sz +bj Tu dK ax @@ -43163,6 +42556,13 @@ gn gn gn gn +gn +gn +gn +gn +gn +gn +gn zc Ki lJ @@ -43279,13 +42679,6 @@ gn gn gn gn -gn -gn -gn -gn -gn -gn -gn "} (125,1,1) = {" gn @@ -43402,7 +42795,7 @@ gn gn gn gn -Sz +bj Tu dK ax @@ -43420,6 +42813,13 @@ gn gn gn gn +gn +gn +gn +gn +gn +gn +gn zc Ki lJ @@ -43536,13 +42936,6 @@ gn gn gn gn -gn -gn -gn -gn -gn -gn -gn "} (126,1,1) = {" gn @@ -43626,8 +43019,8 @@ AA AA AA Ih -AA -AA +tz +je vb Mt yq @@ -43659,7 +43052,7 @@ gn gn gn gn -Sz +bj yQ dK ax @@ -43672,6 +43065,13 @@ hu zc zc zc +Fi +zc +zc +zc +zc +zc +zc zc zc zc @@ -43687,17 +43087,10 @@ zc zc zc zc -gn -gn -gn -gn -gn -gn -gn -gn -gn -gn -gn +zc +zc +zc +zc gn gn gn @@ -43916,7 +43309,7 @@ gn gn gn gn -Sz +bj tZ dK xV @@ -43932,13 +43325,24 @@ Ki Ki Ki Ki -Ki -Ki -Ki -Ki bK +bK +bK +bK +bK +bK +Ki +Ki +Ki +Ki +Ki +Gg Wl -an +Xa +Ki +Ki +Ki +Ki Ki Ki Ki @@ -44001,17 +43405,6 @@ gn gn gn gn -gd -gn -gn -gn -gn -gn -gn -gn -gn -gn -gn gn gn gn @@ -44130,9 +43523,9 @@ zc zc zc zc -zc iB -TE +qR +CI TE TE yh @@ -44173,7 +43566,7 @@ gn gn gn gn -Sz +bj Tu dK ax @@ -44188,6 +43581,13 @@ Np lJ kU lJ +mc +lJ +lJ +Np +lJ +lJ +lJ OS lJ lJ @@ -44198,13 +43598,13 @@ rq vr TM RJ +TM +TM +TM +RJ xg Ki zc -gn -gn -gn -gn tD gn gn @@ -44307,13 +43707,6 @@ gn gn gn gn -gn -gn -gn -gn -gn -gn -gn "} (129,1,1) = {" gn @@ -44386,10 +43779,10 @@ gn gn gn gn -gn zc iB -TE +BK +iM iM iM vk @@ -44430,7 +43823,7 @@ gn gn gn gn -Sz +bj Tu dK LF @@ -44448,11 +43841,22 @@ vZ vZ vZ vZ +HR +yA +yA +vZ +vZ +vZ +vZ vZ HR vZ -Dg -iE +mf +vm +vm +vm +Ov +Zk iE cB Uf @@ -44460,10 +43864,6 @@ Mi zc gn gn -gn -gn -gn -gn YI gn gn @@ -44564,13 +43964,6 @@ gn gn gn gn -gn -gn -gn -gn -gn -gn -gn "} (130,1,1) = {" gn @@ -44643,22 +44036,22 @@ gn gn gn gn -gn zc iB +qR +CI +an TE TE TE -TE -TE -TE +an TE TE tl QJ TE -TE -TE +an +wG XS AS vG @@ -44687,7 +44080,7 @@ gn gn gn gn -Sz +bj Tu dK Xr @@ -44705,11 +44098,22 @@ Ng Ng Ng Ng +Zu +XH +XH +Ng +Ng +Ng +Ng Ng Zu Ng -te -iE +Iu +GH +GH +GH +Ng +Br iE cB xg @@ -44721,35 +44125,24 @@ gn gn gn gn -YI gn gn -YI gn gn -YI gn gn -YI gn gn -YI gn gn -YI gn gn -YI gn gn -YI gn gn -YI gn gn -YI -gn gn gn gn @@ -44900,7 +44293,6 @@ gn gn gn gn -gn zc iB iB @@ -44916,6 +44308,7 @@ iB iB iB iB +iB dO Xd Dt @@ -44944,45 +44337,45 @@ gn gn gn gn -Sz +bj Tu dK np Tu hu pE +FJ lJ -lJ -lJ +if pE tQ lJ lJ lJ +Vq lJ lJ +tQ +lJ +lJ +lJ +pE +lJ lJ lJ rK lJ +FJ +lJ +lJ +pE +lJ Uh zJ -TM NK Uf Ki -zc -gn -gn -gn -gn -tD -gn -gn -gn -gn -gn -gn +MF gn gn gn @@ -45157,7 +44550,7 @@ tE Jg Nf GY -gn +zc zc zc zc @@ -45168,7 +44561,7 @@ Eg uL Rm Rm -dN +og dN vo pY @@ -45201,7 +44594,7 @@ gn gn gn gn -Sz +bj Sp FS LC @@ -45217,17 +44610,28 @@ Ki Ki Ki Ki -Ki -Ki -Ki -Ki bK -cd -an +bK +bK +bK +bK +bK Ki Ki Ki Ki +Ki +Ki +Ki +Ki +Ki +Ki +Gg +cd +Xa +Ki +Ki +Ki zc gn gn @@ -45331,17 +44735,6 @@ gn gn gn gn -gn -gn -gn -gn -gn -gn -gn -gn -gn -gn -gn "} (133,1,1) = {" gn @@ -45423,7 +44816,7 @@ zc uL DT uL -bY +dH bY nt Dq @@ -45458,7 +44851,7 @@ gn gn gn gn -Sz +bj ld Xy JA @@ -45471,6 +44864,18 @@ hu zc zc zc +Pm +zc +zc +zc +zc +zc +zc +zc +zc +zc +zc +Pm zc zc zc @@ -45478,25 +44883,13 @@ zc zc zc Ki -QU +lJ Uh -zT +va +lJ Ki zc zc -zc -zc -gn -gn -gn -gn -gn -gn -gn -gn -gn -gn -gn gn gn gn @@ -45690,7 +45083,7 @@ nH RC aF vF -YW +Ff AS dO gn @@ -45715,7 +45108,7 @@ gn gn gn gn -Sz +bj Tu dK RU @@ -45729,15 +45122,28 @@ zc gn gn gn +YI gn gn +YI +gn +gn +YI +gn +gn +YI +gn +gn +YI +gn gn gn zc Ki lJ -Uh -zT +Vk +Dg +lJ Ki zc gn @@ -45747,19 +45153,6 @@ gn gn gn gn -tD -gn -gn -gn -gn -gn -gn -gn -gn -gn -gn -gn -gn gn gn gn @@ -45972,7 +45365,7 @@ gn gn gn gn -Sz +bj Tu dK RU @@ -45990,12 +45383,25 @@ gn gn gn gn +gn +gn +gn +gn +gn +gn +gn +gn +gn +gn +gn +gn zc Ki +QU +Vk +Dg lJ -Uh -Ai -Ki +bK zc gn gn @@ -46100,19 +45506,6 @@ gn gn gn gn -gn -gn -gn -gn -gn -gn -gn -gn -gn -gn -gn -gn -gn "} (136,1,1) = {" gn @@ -46193,7 +45586,7 @@ gn zc uL lg -lg +Pi IB pi qc @@ -46205,7 +45598,7 @@ dO AS vG YW -AS +gB dO gn gn @@ -46229,7 +45622,7 @@ gn gn gn gn -Sz +bj yQ dK RU @@ -46247,26 +45640,26 @@ gn gn gn gn +gn +gn +gn +gn +gn +gn +gn +gn +gn +gn +tD +gn zc Ki lJ -Uh -zT -Ki +Vk +Dg +lJ +bK zc -zc -zc -zc -zc -zc -gn -gn -gn -gn -gn -gn -gn -gn gn gn gn @@ -46486,7 +45879,7 @@ gn gn gn gn -Sz +bj Tu dK RU @@ -46504,26 +45897,26 @@ gn gn gn gn +gn +gn +gn +gn +gn +gn +gn +gn +gn +gn +gn +gn +Pa +Ki +ZJ +te +YP +NE +bK zc -Ki -lJ -Uh -zT -Ki -Ki -Ki -Ki -Ki -Ki -Fi -zc -aR -tD -gn -gn -gn -gn -gn gn gn gn @@ -46743,7 +46136,7 @@ gn gn gn gn -Sz +bj Tu dK RU @@ -46761,26 +46154,26 @@ gn gn gn gn +gn +gn +gn +gn +gn +gn +gn +gn +gn +gn +gn +gn zc Ki lJ -Uh -zT -tS +Vk +Dg lJ -lJ -lJ -lw Ki -Ki -Xa -Ki -gn -gn -gn -gn -gn -gn +zc gn gn gn @@ -47000,7 +46393,7 @@ gn gn gn gn -Sz +bj Tu dK RU @@ -47018,26 +46411,26 @@ gn gn gn gn +gn +gn +gn +gn +gn +gn +gn +gn +gn +gn +tD +gn zc Ki -Kf -Pi -bC +EI Vk -iE -iE -iE -TM -Mh -gB -er -Ny -gn -gn -gn -gn -gn -gn +Dg +lJ +Ki +zc gn gn gn @@ -47257,7 +46650,7 @@ gn gn gn gn -Sz +bj Tu dK RU @@ -47275,26 +46668,26 @@ gn gn gn gn +gn +gn +gn +gn +gn +gn +gn +gn +gn +gn +gn +gn zc Ki -lJ -GH -XH -NE -Jp -Jp -Jp -lJ -gw -fd -er -kM -gn -gn -gn -gn -gn -gn +ae +Vk +Dg +Op +Ki +MF gn gn gn @@ -47514,7 +46907,7 @@ gn gn gn gn -Sz +bj Tu dK RU @@ -47532,26 +46925,26 @@ gn gn gn gn +gn +gn +gn +gn +gn +gn +gn +gn +gn +gn +gn +gn zc Ki -QU -zT -lJ -tQ -lJ -lJ lJ +Vk +Dg lJ Ki -Ki -Xa -Ki -gn -gn -gn -gn -gn -gn +zc gn gn gn @@ -47771,7 +47164,7 @@ gn gn gn gn -Sz +bj Tu dK RU @@ -47789,26 +47182,26 @@ gn gn gn gn +gn +gn +gn +gn +gn +gn +gn +gn +gn +gn +EG +zc zc Ki -Ki -Gg -Zk -Ki -Ki -Ki -Ki -Ki -Ki -YL +QU +Vk +Dg +lJ +bK zc -aR -tD -gn -gn -gn -gn -gn gn gn gn @@ -47999,12 +47392,12 @@ oP vz Jh Do -hB +qG dO AS vG hi -AS +gB dO gn gn @@ -48028,7 +47421,7 @@ gn gn gn gn -Sz +bj yQ dK RU @@ -48046,26 +47439,26 @@ gn gn gn gn -zc -Pa +gn +gn +gn +gn +gn +gn +gn +gn +gn +gn Ki -by -ib +bK Ki -MF +Ki +lJ +Vk +Dg +lJ +bK zc -zc -zc -zc -zc -gn -gn -gn -gn -gn -gn -gn -gn gn gn gn @@ -48285,7 +47678,7 @@ gn gn gn gn -Sz +bj Tu dK RU @@ -48304,25 +47697,25 @@ gn gn gn gn +gn +gn +gn +gn +gn +gn +gn +gn +gn +ib +er +gU +ZY +TM +Lp +Dg +lJ +bK zc -Xa -rA -rA -Xa -zc -gn -gn -gn -gn -gn -gn -gn -gn -gn -gn -gn -gn -gn gn gn gn @@ -48561,25 +47954,25 @@ gn gn gn gn -aR +gn +gn +gn +gn +gn +gn +gn +gn +gn +qD +er +go +XZ +lJ +Mh +Dg +lJ Ki -Kl -AK -Ki -aR -gn -gn -gn -gn -gn -gn -gn -tD -gn -gn -gn -gn -gn +zc gn gn gn @@ -48772,7 +48165,7 @@ bO yM LO dO -AS +qt vG hi AS @@ -48812,24 +48205,6 @@ gn gn gn gn -YI -gn -gn -YI -gn -gn -YI -gn -gn -gn -gn -YI -gn -gn -YI -gn -gn -YI gn gn gn @@ -48845,6 +48220,24 @@ gn gn gn gn +Ki +bK +Ki +Ki +lJ +Mh +Dg +lJ +Ki +zc +gn +gn +gn +gn +gn +gn +gn +gn gn gn gn @@ -49084,6 +48477,16 @@ gn gn gn gn +EG +zc +zc +Ki +lJ +Mh +Dg +Op +Ki +zc gn gn gn @@ -49115,17 +48518,7 @@ gn gn gn gn -gn -gn -gn -gn -gn -gn -gn -gn -gn -gn -gn +gd gn gn gn @@ -49291,7 +48684,7 @@ vG hi AS Su -Hl +sE Hl Hl Hl @@ -49325,7 +48718,6 @@ gn gn gn gn -tD gn gn gn @@ -49344,13 +48736,14 @@ gn gn gn gn -tD -tD -gn -gn -gn -gn -gn +zc +Ki +QU +Mh +Dg +lJ +Ki +zc gn gn gn @@ -49574,7 +48967,7 @@ lr dp dp yH -Tu +NT hu zc gn @@ -49600,38 +48993,38 @@ gn gn gn gn +zc +Ki +lJ +Mh +Dg +lJ +bK +zc +gn +gn gn gn gn gn -YI gn gn -YI gn gn -YI gn gn -YI gn gn -YI gn gn -YI gn gn -YI gn gn -YI gn gn -YI gn gn -YI gn gn gn @@ -49855,16 +49248,16 @@ gn gn gn gn +tD gn -gn -gn -gn -gn -gn -gn -gn -gn -gn +zc +Ki +lJ +Mh +Dg +lJ +bK +zc gn gn gn @@ -50054,13 +49447,13 @@ jn jn jn qI -tF +ez fy dO AS AS AS -AS +of Su Hl Hl @@ -50083,10 +49476,10 @@ Hl yu FH Hl -Hl +Bo Su -Tu -Tu +PI +Ip Tu Tu hu @@ -50096,7 +49489,6 @@ zc gn gn gn -tD gn gn gn @@ -50115,13 +49507,14 @@ gn gn gn gn -tD -gn -gn -gn -gn -gn -gn +Pa +Ki +tu +xU +Wy +wy +bK +zc gn gn gn @@ -50312,7 +49705,7 @@ jn wQ RZ ls -ez +ls dO dO dO @@ -50371,14 +49764,14 @@ gn gn gn gn -gn -gn -gn -gn -gn -gn -gn -gn +zc +Ki +lJ +fd +Dg +lJ +Ki +zc gn gn gn @@ -50626,16 +50019,16 @@ gn gn gn gn +tD gn -gn -gn -gn -gn -gn -gn -gn -gn -gn +zc +Ki +lJ +lJ +zT +Op +Ki +zc gn gn gn @@ -50826,7 +50219,7 @@ ls ls ls sg -Os +xi NC NC wF @@ -50867,7 +50260,6 @@ zc gn gn gn -tD gn gn gn @@ -50886,13 +50278,14 @@ gn gn gn gn -tD -gn -gn -gn -gn -gn -gn +zc +Ki +Ki +bC +gw +Ki +Ki +MF gn gn gn @@ -51126,30 +50519,30 @@ gn gn gn gn +YI +gn +gn +YI +gn +gn +YI +gn +gn +YI +gn +gn +YI gn gn gn -gn -gn -gn -gn -gn -gn -gn -gn -gn -gn -gn -gn -gn -gn -gn -gn -gn -gn -gn -gn -gn +zc +zc +Ki +ri +cM +Ki +zc +zc gn gn gn @@ -51400,12 +50793,12 @@ gn gn gn gn -gn -gn -gn -gn -gn -gn +zc +bK +rA +rA +bK +zc gn gn gn @@ -51638,7 +51031,6 @@ zc gn gn gn -tD gn gn gn @@ -51652,23 +51044,24 @@ gn gn gn gn +YI gn gn +YI gn gn -gn -tD -gn -gn -gn -gn -gn -gn -gn +KE +Ki +Kl +AK +Ki +KE gn gn +YI gn gn +YI gn gn gn @@ -52111,7 +51504,7 @@ sg sg sg sg -Os +eg NC NC wF @@ -52163,6 +51556,7 @@ gn gn gn gn +tD gn gn gn @@ -52183,8 +51577,7 @@ gn gn gn gn -gn -gn +tD gn gn gn @@ -52409,7 +51802,6 @@ zc gn gn gn -tD gn gn gn @@ -52428,7 +51820,8 @@ gn gn gn gn -tD +gn +gn gn gn gn @@ -52896,7 +52289,7 @@ Xq Xq Xq Xq -iT +Mg NS MS GQ @@ -52934,6 +52327,7 @@ gn gn gn gn +tD gn gn gn @@ -52954,8 +52348,7 @@ gn gn gn gn -gn -gn +tD gn gn gn @@ -53180,7 +52573,6 @@ zc gn gn gn -tD gn gn gn @@ -53199,7 +52591,8 @@ gn gn gn gn -tD +gn +gn gn gn gn @@ -53416,7 +52809,7 @@ Lk UT Gf dy -IY +gh rS IY rS @@ -53705,6 +53098,7 @@ gn gn gn gn +tD gn gn gn @@ -53725,8 +53119,7 @@ gn gn gn gn -gn -gn +tD gn gn gn @@ -53951,7 +53344,6 @@ zc gn gn gn -tD gn gn gn @@ -53970,7 +53362,8 @@ gn gn gn gn -tD +gn +gn gn gn gn @@ -54476,6 +53869,7 @@ gn gn gn gn +tD gn gn gn @@ -54496,8 +53890,7 @@ gn gn gn gn -gn -gn +tD gn gn gn @@ -54722,7 +54115,6 @@ gn gn gn gn -tD gn gn gn @@ -54741,7 +54133,8 @@ gn gn gn gn -tD +gn +gn gn gn gn @@ -55247,6 +54640,7 @@ gn gn gn gn +tD gn gn gn @@ -55267,8 +54661,7 @@ gn gn gn gn -gn -gn +tD gn gn gn @@ -55493,7 +54886,6 @@ gn gn gn gn -tD gn gn gn @@ -55512,7 +54904,8 @@ gn gn gn gn -tD +gn +gn gn gn gn @@ -56018,6 +55411,7 @@ gn gn gn gn +tD gn gn gn @@ -56038,8 +55432,7 @@ gn gn gn gn -gn -gn +tD gn gn gn @@ -56264,7 +55657,6 @@ gn gn gn gn -tD gn gn gn @@ -56283,7 +55675,8 @@ gn gn gn gn -tD +gn +gn gn gn gn diff --git a/maps/away/away_site/uueoaesa/reclamation/ihss_reclamation_ghostroles.dm b/maps/away/away_site/uueoaesa/reclamation/ihss_reclamation_ghostroles.dm index 1348b45bf9f..bbc560b68b7 100644 --- a/maps/away/away_site/uueoaesa/reclamation/ihss_reclamation_ghostroles.dm +++ b/maps/away/away_site/uueoaesa/reclamation/ihss_reclamation_ghostroles.dm @@ -3,7 +3,6 @@ short_name = "ihss_reclamation" desc = "Crew the IHSS Reclamation" tags = list("External") - spawnpoints = list("ihss_crew") req_perms = null max_count = 4 @@ -11,7 +10,7 @@ possible_species = list(SPECIES_UNATHI, SPECIES_VAURCA_WORKER, SPECIES_DIONA, SPECIES_DIONA_COEUS) allow_appearance_change = APPEARANCE_PLASTICSURGERY welcome_message = "You are a crewmember aboard the IHSS Reclamation, an Izweski Hegemony ecological monitoring and terraforming station for coordinating the restoration of the Moghes Wasteland.\ - IMPORTANT - If you choose to play a Vaurca, know that they are very a alien species, and difficult to roleplay. Reading the wiki page for the species is highly encouraged." + IMPORTANT - If you choose to play a Vaurca, know that they are a very alien species, and difficult to roleplay. Reading the wiki page for the species is highly encouraged." assigned_role = "IHSS Reclamation Crewmember" special_role = "IHSS Reclamation Crewmember" extra_languages = list(LANGUAGE_UNATHI) @@ -43,8 +42,10 @@ H.equip_or_collect(new /obj/item/device/uv_light, slot_in_backpack) /datum/ghostspawner/human/ihss_reclamation/security + short_name = "ihss_security" name = "IHSS Reclamation Security" desc = "Protect the crew of the IHSS Reclamation" + spawnpoints = list("ihss_security") max_count = 3 uses_species_whitelist = TRUE possible_species = list(SPECIES_UNATHI, SPECIES_VAURCA_WARRIOR) @@ -60,6 +61,7 @@ accessory_contents = /obj/item/gun/energy/pistol/hegemony /datum/ghostspawner/human/ihss_reclamation/captain + short_name = "ihss_captain" name = "IHSS Reclamation Captain" desc = "Command the IHSS Reclamation" spawnpoints = list("ihss_captain")